/* Vetriq Website Styles */

/* ========================================
   CSS Variables & Font Imports
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --forest: #102F2A;
  --lime: #C5D947;
  --silver: #D9DFDE;
  --white: #FFFFFF;
  --text-dark: #102F2A;
  --forest-light: #1a3d36;
}

/* ========================================
   Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow', sans-serif;
  letter-spacing: -0.02em;
}

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

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

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--forest);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   Focus Styles (Accessibility)
   ======================================== */
/* Global focus outline for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Button focus states */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(197, 217, 71, 0.3);
}

/* Link focus states */
a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Nav link focus */
.nav-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

/* FAQ accordion focus */
.faq-question:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  background: rgba(197, 217, 71, 0.1);
}

/* Modal close button focus */
.modal-close:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.bg-forest { background-color: var(--forest); }
.text-forest { color: var(--forest); }
.bg-lime { background-color: var(--lime); }
.text-lime { color: var(--lime); }
.bg-silver { background-color: var(--silver); }
.text-white { color: var(--white); }

/* Gradient text - light to full lime */
.text-gradient-lime {
  background: linear-gradient(90deg, rgba(197, 217, 71, 0.6) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Textures
   ======================================== */
.texture-dots {
  background-image: radial-gradient(var(--lime) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.texture-grid {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  background-color: var(--lime);
  color: var(--forest);
  font-weight: 700;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 217, 71, 0.4);
}

.btn-secondary {
  padding: 1rem 2rem;
  border: 1px solid #6b7280;
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* ========================================
   Cards
   ======================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 47, 42, 0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-radius: 2px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.glass-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

.nav.scrolled {
  background-color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-mark {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background-color: var(--lime);
}

.nav.scrolled .nav-logo-mark {
  background-color: var(--forest);
}

.nav-logo-mark span {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--forest);
}

.nav.scrolled .nav-logo-mark span {
  color: var(--lime);
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
}

.nav.scrolled .nav-brand {
  color: var(--forest);
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  color: #e5e7eb;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--lime);
}

.nav.scrolled .nav-link {
  color: var(--forest);
}

.nav.scrolled .nav-link:hover {
  color: var(--lime);
}

.nav-cta {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-mobile-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}

.nav.scrolled .nav-mobile-btn {
  color: var(--forest);
}

@media (min-width: 768px) {
  .nav-mobile-btn {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--forest);
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-menu .btn-primary {
  padding: 0.75rem 2rem;
}

/* ========================================
   Stakes Section (Split Impact Layout)
   ======================================== */
.stakes-section {
  padding: 6rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--silver);
}

.stakes-grid {
  display: grid;
  gap: 3rem;
}

/* Desktop: Side-by-side layout */
@media (min-width: 1024px) {
  .stakes-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 6rem;
  }
}

.stakes-header {
  /* Sticky on desktop */
  position: relative;
}

@media (min-width: 1024px) {
  .stakes-header {
    position: sticky;
    top: 8rem;
    align-self: start;
  }

  /* Short yellow vertical divider line on right side of header */
  .stakes-header::after {
    content: '';
    position: absolute;
    right: -3rem;
    top: 0;
    width: 3px;
    height: 120px;
    background: var(--lime);
    border-radius: 2px;
  }
}

.stakes-header h2 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .stakes-header h2 {
    font-size: 3rem;
  }
}

.stakes-header .highlight-text {
  color: var(--forest);
  background-repeat: no-repeat;
  background-size: 100% 0.35em;
  background-position: 0 85%;
  background-image: linear-gradient(120deg, var(--lime) 0%, var(--lime) 100%);
}

/* Body Text Styling */
.stakes-body {
  padding-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
}

.stakes-body p {
  margin-bottom: 1.5rem;
}

.stakes-body .lead-paragraph {
  font-size: 1.25rem;
  color: var(--forest);
  font-weight: 500;
}

.stakes-body .fw-bold {
  font-weight: 700;
}

/* The Insight Box */
/* Insight Statement - stark typographic presentation */
.insight-statement {
  margin: 2.5rem 0 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
  text-align: center;
}

.insight-emphasis {
  color: var(--lime);
  position: relative;
}

.insight-emphasis::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  opacity: 0.4;
}

/* Stakes Visual Elements */
.stakes-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stakes-stat {
  background-color: #f8fafc;
  border: 1px solid var(--silver);
  padding: 1.25rem;
  border-radius: 4px;
  text-align: center;
}

.stakes-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
  font-family: 'Barlow', sans-serif;
  line-height: 1;
}

.stakes-stat-value.negative {
  color: #dc2626;
}

.stakes-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-top: 0.5rem;
}

.stakes-image-placeholder {
  background: linear-gradient(135deg, var(--silver) 0%, #e2e8f0 100%);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
  border: 2px dashed #cbd5e1;
}

.stakes-image-placeholder span {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
}

/* Reveal Blocks - Scroll-triggered animation */
.reveal-block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin-bottom: 2rem;
}

.reveal-block:last-child {
  margin-bottom: 0;
}

.reveal-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Statement text */
.reveal-statement {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  font-family: 'Barlow', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* Stat cards */
.stat-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--silver);
  border-left: 4px solid var(--lime);
  padding: 1.5rem;
  border-radius: 0 4px 4px 0;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--forest);
  font-family: 'Barlow', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.5;
}

.stat-compare {
  color: #475569;
  font-weight: 600;
}

.stat-source {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.stat-source:hover {
  text-decoration: underline;
  color: #a8c02f;
}

/* Featured Stat Card with Background Image */
.stat-card--featured {
  position: relative;
  background: url('images/burnout-doctor.webp') center center / cover no-repeat;
  border: 2px solid var(--lime);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}

.stat-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 47, 42, 0.8) 0%, rgba(16, 47, 42, 0.9) 100%);
  z-index: 1;
}

.stat-card--featured .stat-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 280px;
}

.stat-card--featured .stat-value {
  color: var(--lime);
  font-size: 4rem;
}

.stat-card--featured .stat-label {
  color: var(--white);
  font-size: 1.125rem;
}

.stat-card--featured .stat-source {
  color: rgba(197, 217, 71, 0.8);
}

.stat-card--featured .stat-source:hover {
  color: var(--lime);
}

@media (max-width: 768px) {
  .stat-card--featured {
    min-height: 220px;
  }

  .stat-card--featured .stat-card-content {
    min-height: 220px;
    padding: 1.5rem;
  }

  .stat-card--featured .stat-value {
    font-size: 3rem;
  }
}

/* Turnover stat card variant */
.stat-card--turnover {
  background-image: url('images/female-turnover.webp');
  background-position: center right;
}

.stat-card--turnover .stat-compare {
  color: rgba(255, 255, 255, 0.7);
}

/* Cost stat card variant */
.stat-card--cost {
  background-image: url('images/stakes-employees-documents.webp');
  background-position: center;
}

/* Stakes figure - image + caption as unified element */
.stakes-figure {
  margin-bottom: 1.5rem;
}

.stakes-image {
  position: relative;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  height: 280px;
}

.stakes-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 47, 42, 0.15) 0%, rgba(16, 47, 42, 0.05) 100%);
  pointer-events: none;
}

.stakes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Cycle as figcaption - continuous left accent connects both */
.stakes-figure .cycle-visual {
  background: var(--forest);
  padding: 1rem 1.5rem;
  border-radius: 0 0 4px 4px;
  margin: 0;
}

/* Ensure enough scroll height for sticky effect */
@media (min-width: 1024px) {
  .stakes-body {
    min-height: 120vh;
  }
}

/* Cycle visual */
.cycle-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.cycle-step {
  background-color: var(--forest);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
}

.cycle-arrow {
  color: var(--lime);
  font-size: 1.25rem;
}

/* Sequential flash animation for cycle */
@keyframes cycleFlash {
  0%, 15% {
    background-color: var(--lime);
    color: var(--forest);
  }
  20%, 100% {
    background-color: var(--forest);
    color: var(--white);
  }
}

@keyframes arrowFlash {
  0%, 15% {
    color: var(--white);
    transform: scale(1.2);
  }
  20%, 100% {
    color: var(--lime);
    transform: scale(1);
  }
}

/* Apply staggered animations - 5s total cycle */
.cycle-step:nth-child(1) {
  animation: cycleFlash 5s ease-in-out infinite;
}

.cycle-arrow:nth-child(2) {
  animation: arrowFlash 5s ease-in-out infinite;
  animation-delay: 0.8s;
}

.cycle-step:nth-child(3) {
  animation: cycleFlash 5s ease-in-out infinite;
  animation-delay: 1.2s;
}

.cycle-arrow:nth-child(4) {
  animation: arrowFlash 5s ease-in-out infinite;
  animation-delay: 2s;
}

.cycle-step:nth-child(5) {
  animation: cycleFlash 5s ease-in-out infinite;
  animation-delay: 2.4s;
}

.cycle-arrow:nth-child(6) {
  animation: arrowFlash 5s ease-in-out infinite;
  animation-delay: 3.2s;
}

/* Repeat step - same animation as others */
.cycle-step.repeat {
  animation: cycleFlash 5s ease-in-out infinite;
  animation-delay: 3.6s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  background-color: var(--forest);
  padding: 8rem 0 5rem;
  overflow: hidden;
  color: var(--white);
}

@media (min-width: 1024px) {
  .hero {
    padding: 12rem 0 8rem;
  }
}

.hero-texture {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, #0c2420, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(197, 217, 71, 0.3);
  border-radius: 9999px;
  background-color: rgba(197, 217, 71, 0.1);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero h1 span {
  color: var(--lime);
}

.hero-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  line-height: 1.75;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  display: none;
}

@media (min-width: 1024px) {
  .hero-decoration {
    display: block;
  }
}

/* ========================================
   Value Proposition Section
   ======================================== */
.value-section {
  background-color: var(--forest);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.value-texture {
  display: none;
}

.value-content {
  position: relative;
  z-index: 10;
}

.value-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}

.value-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .value-header h2 {
    font-size: 3rem;
  }
}

/* Staggered Bento Grid */
.value-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Outcome Cards - Number as Hero */
.outcome-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(16, 47, 42, 0.1);
  border-radius: 4px;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Staggered positioning on desktop */
@media (min-width: 768px) {
  .outcome-card:nth-child(2) {
    transform: translateY(2rem);
  }

  .outcome-card:nth-child(3) {
    transform: translateY(1rem);
  }
}

/* Gradient accent line */
.outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime) 0%, rgba(197, 217, 71, 0.3) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.outcome-card:hover::before,
.outcome-card.visible::before {
  transform: scaleX(1);
}

.outcome-card:hover {
  border-color: var(--lime);
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(16, 47, 42, 0.1);
}

@media (min-width: 768px) {
  .outcome-card:nth-child(2):hover {
    transform: translateY(calc(2rem - 8px));
  }

  .outcome-card:nth-child(3):hover {
    transform: translateY(calc(1rem - 8px));
  }
}

/* Icon as hero element */
.outcome-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.outcome-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Forest green color filter */
  filter: brightness(0) saturate(100%) invert(15%) sepia(20%) saturate(1000%) hue-rotate(120deg) brightness(95%);
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.outcome-card:hover .outcome-icon-img {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(70%) sepia(30%) saturate(600%) hue-rotate(25deg) brightness(100%);
}

/* Card content wrapper */
.outcome-content {
  display: flex;
  flex-direction: column;
}

/* Card content */
.outcome-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.outcome-card:hover .outcome-title {
  color: var(--forest);
}

.outcome-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.outcome-card:hover .outcome-description {
  color: #374151;
}

/* Reveal animation for cards */
.outcome-card {
  opacity: 0;
  transform: translateY(30px);
}

.outcome-card.visible {
  opacity: 1;
}

@media (min-width: 768px) {
  .outcome-card.visible:nth-child(1) {
    transform: translateY(0);
  }

  .outcome-card.visible:nth-child(2) {
    transform: translateY(2rem);
  }

  .outcome-card.visible:nth-child(3) {
    transform: translateY(1rem);
  }
}

@media (max-width: 767px) {
  .outcome-card.visible {
    transform: translateY(0);
  }
}

/* Stagger the reveal animation */
.outcome-card:nth-child(1) { transition-delay: 0s; }
.outcome-card:nth-child(2) { transition-delay: 0.15s; }
.outcome-card:nth-child(3) { transition-delay: 0.3s; }

/* ========================================
   Empathy Section (Guide Part 1)
   ======================================== */
.empathy-section {
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.empathy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--silver) 50%, transparent 100%);
}

/* Opening Statement - Bookend Top */
.empathy-opener {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.empathy-opener.visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow-text {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  background: var(--forest);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.empathy-opener h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .empathy-opener h2 {
    font-size: 3rem;
  }
}

/* Obstacles Grid - Center Column */
.obstacles-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Vertical connector line - removed with numbers */

/* Obstacle Cards - Advanced Styling */
.obstacle-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: 8px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(30px);
}

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

.obstacle-card:nth-child(1) { transition-delay: 0.1s; }
.obstacle-card:nth-child(2) { transition-delay: 0.25s; }
.obstacle-card:nth-child(3) { transition-delay: 0.4s; }

/* Hover state with lift and glow */
.obstacle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 217, 71, 0.4);
  box-shadow:
    0 10px 40px rgba(16, 47, 42, 0.08),
    0 0 0 1px rgba(197, 217, 71, 0.1);
}

/* Icon container - large yellow icons */
.obstacle-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.obstacle-icon .icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Dark forest color */
  filter: brightness(0) saturate(100%) invert(15%) sepia(20%) saturate(800%) hue-rotate(120deg) brightness(95%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.obstacle-card:hover .obstacle-icon .icon-img {
  opacity: 1;
  transform: scale(1.1);
}

/* Content area */
.obstacle-content {
  padding-top: 0.25rem;
}

.obstacle-content h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.obstacle-card:hover .obstacle-content h3 {
  color: var(--forest);
}

.obstacle-content p {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Closing Punchline - Bookend Bottom */
.empathy-closer {
  text-align: center;
  max-width: 600px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}

.empathy-closer.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative line above closer */
.empathy-closer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}

.empathy-closer p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .empathy-closer p {
    font-size: 2rem;
  }
}

/* ========================================
   Authority Section (Guide Part 2)
   ======================================== */
.authority-section {
  background-color: var(--forest);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.authority-texture {
  display: none;
}

.authority-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.authority-header {
  margin-bottom: 3rem;
}

.authority-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  .authority-header h2 {
    font-size: 1.35rem;
  }
}

/* Logo Bar */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(197, 217, 71, 0.2);
  border-bottom: 1px solid rgba(197, 217, 71, 0.2);
}

.logo-placeholder {
  color: rgba(197, 217, 71, 0.5);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Trust Badges */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(197, 217, 71, 0.1);
  border: 1px solid rgba(197, 217, 71, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-badge svg {
  color: var(--lime);
}

@media (max-width: 640px) {
  .trust-row {
    gap: 0.35rem;
  }

  .trust-badge {
    padding: 0.35rem 0.5rem;
    font-size: 0.6rem;
    gap: 0.25rem;
  }

  .trust-badge svg {
    width: 12px;
    height: 12px;
  }

  /* Burnout cycle - smaller on mobile */
  .cycle-visual {
    gap: 0.25rem;
    flex-wrap: nowrap;
  }

  .cycle-step {
    padding: 0.4rem 0.5rem;
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .cycle-arrow {
    font-size: 0.875rem;
  }
}

/* Capability Statement */
.capability-statement {
  margin: 2.5rem 0;
}

.capability-statement p {
  font-size: 1.25rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.metric-highlight {
  color: var(--lime);
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
}

/* Product Preview */
.product-preview {
  margin-top: 3rem;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.preview-image {
  max-width: 100%;
  width: 800px;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(197, 217, 71, 0.2);
}

/* Dark variant placeholder for forest backgrounds */
.visual-placeholder--dark {
  background: linear-gradient(135deg, rgba(197, 217, 71, 0.08) 0%, rgba(197, 217, 71, 0.03) 100%);
  border: 2px dashed rgba(197, 217, 71, 0.3);
  border-radius: 12px;
  padding: clamp(3rem, 8vw, 5rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visual-placeholder--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(197, 217, 71, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(197, 217, 71, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(197, 217, 71, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(197, 217, 71, 0.05) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.visual-placeholder--dark span {
  position: relative;
  font-size: 0.875rem;
  color: rgba(197, 217, 71, 0.7);
  font-style: italic;
  font-weight: 500;
}

/* Metrics Row (legacy, can be removed) */
.metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-family: 'Barlow', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: #94a3b8;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   Plan Section - Large Number Hero Cards
   ======================================== */
.plan-section {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
}

.plan-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.plan-header h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .plan-header h2 {
    font-size: 3rem;
  }
}

/* Steps Container */
.plan-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual Step Card */
.plan-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--silver);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.plan-step:nth-child(1) { transition-delay: 0.1s; }
.plan-step:nth-child(2) { transition-delay: 0.25s; }
.plan-step:nth-child(3) { transition-delay: 0.4s; }

/* Number Container with Vertical Line */
.step-number-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-number {
  font-family: 'Barlow', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  opacity: 0.15;
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  .step-number {
    font-size: 6rem;
  }
}

.plan-step:hover .step-number {
  opacity: 0.3;
  color: var(--lime);
}

/* Vertical connector line */
.step-line {
  width: 2px;
  flex-grow: 1;
  min-height: 40px;
  background: linear-gradient(180deg, var(--lime) 0%, var(--silver) 100%);
  opacity: 0.4;
}

/* Step Content */
.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .step-content h3 {
    font-size: 1.75rem;
  }
}

.step-content p {
  color: #64748b;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 600px;
}

/* Step CTA Link */
.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background: var(--lime);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.step-cta:hover {
  background: var(--forest);
  color: var(--lime);
  transform: translateX(4px);
}

.step-cta .arrow {
  transition: transform 0.3s ease;
}

.step-cta:hover .arrow {
  transform: translateX(4px);
}

/* ========================================
   Cost of Waiting Section
   ======================================== */
.cost-section {
  background-color: var(--forest);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cost-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

.cost-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Subheader - the pain statement */
.cost-subheader {
  color: #94a3b8;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cost-subheader.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Main header */
.cost-header {
  font-family: 'Barlow', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.1s;
}

.cost-header.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cost-header {
    font-size: 3rem;
  }
}

/* Body text */
.cost-body {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.2s;
}

.cost-body.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Math visualization */
.cost-math {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.2s;
}

.cost-math.visible {
  opacity: 1;
  transform: translateY(0);
}

.math-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 100px;
}

.math-block.math-result {
  background: rgba(197, 217, 71, 0.15);
  border-color: rgba(197, 217, 71, 0.4);
}

.math-value {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.math-result .math-value {
  color: var(--lime);
}

.math-label {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.math-operator {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #64748b;
}

@media (min-width: 768px) {
  .cost-math {
    gap: 1.5rem;
  }

  .math-block {
    padding: 1.5rem 2rem;
    min-width: 120px;
  }

  .math-value {
    font-size: 2.25rem;
  }

  .math-operator {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .cost-math {
    gap: 0.4rem;
    flex-wrap: nowrap;
  }

  .math-block {
    padding: 0.75rem 0.6rem;
    min-width: auto;
  }

  .math-value {
    font-size: 1.25rem;
  }

  .math-label {
    font-size: 0.65rem;
  }

  .math-operator {
    font-size: 1rem;
  }
}

/* Cost continuation - flows from math */
.cost-continuation {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.3s;
}

.cost-continuation.visible {
  opacity: 1;
  transform: translateY(0);
}

.cost-equation {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cost-equation .highlight {
  color: #94a3b8;
}

.cost-equation .highlight-big {
  font-family: 'Barlow', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lime);
}

@media (min-width: 768px) {
  .cost-equation {
    font-size: 1.5rem;
  }

  .cost-equation .highlight-big {
    font-size: 2.25rem;
  }
}

.cost-multiplier {
  font-size: 1.125rem;
  color: #94a3b8;
}

/* Source citation - directly after the claim */
.cost-source {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.25s;
}

.cost-source.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Standalone CTA in cost section */
.cost-section .cost-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.4s;
}

.cost-section .cost-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Callout box */
.cost-callout {
  background: rgba(197, 217, 71, 0.08);
  border: 1px solid rgba(197, 217, 71, 0.3);
  border-radius: 8px;
  padding: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.3s;
}

.cost-callout.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cost range display */
.cost-range {
  margin-bottom: 1.5rem;
}

.cost-amount {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .cost-amount {
    font-size: 4rem;
  }
}

.cost-period {
  display: block;
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 500;
}

.cost-description {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* CTA button */
.cost-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cost-cta .arrow {
  transition: transform 0.3s ease;
}

.cost-cta:hover .arrow {
  transform: translateX(4px);
}

/* ========================================
   Comparison Section - Stacked Rows
   ======================================== */
.compare-section {
  background: var(--white);
  padding: 4rem 0;
  position: relative;
}

/* Split Panel Layout */
.split-panel {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .split-panel {
    flex-direction: row;
    gap: 2rem;
    padding: 0 2rem;
  }
}

/* Split Card Container */
.split-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-card.visible {
  opacity: 1;
}

.split-card:first-child {
  transform: translateX(-30px);
}

.split-card:first-child.visible {
  transform: translateX(0);
}

.split-card:last-child {
  transform: translateX(30px);
}

.split-card:last-child.visible {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .split-card:first-child {
    transform: translateY(-20px);
  }

  .split-card:last-child {
    transform: translateY(20px);
  }
}

/* File Folder Tabs */
.split-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 8px 8px 0 0;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
}

.split-tab--them {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--silver);
  border-bottom: none;
}

.split-tab--us {
  background: var(--white);
  border: 2px solid var(--silver);
  border-bottom: none;
  padding: 0.5rem 1rem;
}

.tab-logo {
  height: 18px;
  width: auto;
}

/* Split Side Panels */
.split-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  border-radius: 0 12px 12px 12px;
  flex: 1;
}

.split-them {
  background: var(--forest);
  border: 2px solid var(--silver);
}

.split-us {
  background: var(--white);
  border: 2px solid var(--silver);
}

/* Citation row - aligned under left box */
.split-citation-row {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .split-citation-row {
    padding: 0 2rem;
  }
}

.split-citation {
  font-size: 0.75rem;
  color: #64748b;
  font-style: italic;
  margin-top: 0.75rem;
  width: calc(50% - 1rem);
}

.split-content {
  max-width: 400px;
}

/* Split Headlines */
.split-headline {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .split-headline {
    font-size: 2.5rem;
  }
}

.split-them .split-headline {
  color: var(--white);
}

.split-us .split-headline {
  color: var(--forest);
}

/* Split Lists */
.split-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.split-list li {
  padding: 0.625rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .split-list li {
    font-size: 1.125rem;
  }
}

.split-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.split-them .split-list li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.split-them .split-list li:last-child {
  border-bottom: none;
}

.split-them .split-list li::before {
  background: rgba(255, 255, 255, 0.5);
}

.split-us .split-list li {
  color: var(--forest);
  border-bottom: 1px solid var(--silver);
}

.split-us .split-list li:last-child {
  border-bottom: none;
}

.split-us .split-list li::before {
  background: var(--lime);
}

/* Inline source marker (asterisk inside dark box) */
.split-source {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  vertical-align: super;
  margin-left: 0.125rem;
}

/* Legacy row-based styles below (kept for reference) */
.compare-header {
  font-family: 'Barlow', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--forest);
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.compare-header.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .compare-header {
    font-size: 3rem;
  }
}

/* Column labels above the rows */
.compare-labels {
  max-width: 900px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}

.compare-label-spacer {
  flex: 0 0 auto;
  width: 3rem; /* matches logo width */
}

.compare-label-spacer:first-child {
  display: none;
}

.compare-side-label {
  flex: 1;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.compare-side-label.label-old {
  color: #94a3b8;
}

.compare-side-label.label-new {
  color: var(--forest);
}

@media (max-width: 640px) {
  .compare-labels {
    display: none;
  }
}

/* Stacked rows container */
.compare-rows {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(16, 47, 42, 0.08);
  overflow: hidden;
  border: 1px solid var(--silver);
}

/* Individual row */
.compare-row {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--silver);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.compare-row:nth-child(1) { transition-delay: 0.05s; }
.compare-row:nth-child(2) { transition-delay: 0.1s; }
.compare-row:nth-child(3) { transition-delay: 0.15s; }
.compare-row:nth-child(4) { transition-delay: 0.2s; }

/* Row hover effect */
.compare-row:hover {
  background: linear-gradient(90deg, rgba(197, 217, 71, 0.03) 0%, rgba(197, 217, 71, 0.08) 100%);
}

/* Row label (category name) */
.compare-row-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 1rem;
}

/* Row content - the comparison boxes */
.compare-row-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 640px) {
  .compare-row-content {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Option boxes (old and new) */
.compare-option {
  flex: 1;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

/* Option label - mobile only */
.compare-option-label {
  display: none;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  .compare-option-label {
    display: block;
  }
}

.compare-option.compare-old .compare-option-label {
  color: #64748b;
}

.compare-option.compare-new .compare-option-label {
  color: var(--forest);
  opacity: 0.6;
}

/* Old way option - black/dark */
.compare-option.compare-old {
  background: var(--forest);
  border: 1px solid var(--forest);
}

.compare-option.compare-old .compare-value {
  font-family: 'Barlow', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: var(--lime);
  display: block;
  line-height: 1.3;
}

.compare-option.compare-old .compare-desc {
  font-size: 0.8125rem;
  color: #64748b;
  display: block;
  margin-top: 0.25rem;
}

/* New way option - yellow/lime */
.compare-option.compare-new {
  background: var(--lime);
  border: 1px solid var(--lime);
  box-shadow: 0 4px 20px rgba(197, 217, 71, 0.3);
}

.compare-option.compare-new .compare-value {
  font-family: 'Barlow', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
  display: block;
  line-height: 1.3;
}

.compare-option.compare-new .compare-desc {
  font-size: 0.8125rem;
  color: var(--forest);
  opacity: 0.7;
  display: block;
  margin-top: 0.25rem;
}

/* Vetriq logo badge on new option */
.compare-option.compare-new .compare-v-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(16, 47, 42, 0.3);
  background: var(--white);
}

/* Arrow between options */
.compare-arrow {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 3px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(16, 47, 42, 0.2);
}

.compare-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--forest);
}

@media (max-width: 640px) {
  .compare-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

/* ========================================
   Offer Section - 3D Stacked Cards
   ======================================== */
.offer-section {
  background: linear-gradient(180deg,
    var(--forest) 0%,
    #0a1a17 100%
  );
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

/* Grid texture overlay for depth context */
.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 217, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 217, 71, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(
    transparent,
    rgba(0,0,0,0.5) 15%,
    rgba(0,0,0,0.5) 85%,
    transparent
  );
  pointer-events: none;
}

.offer-perspective {
  perspective: 1500px;
  perspective-origin: center top;
  position: relative;
  z-index: 1;
}

/* Header */
.offer-header {
  text-align: center;
  margin-bottom: 4rem;
}

.offer-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  background: rgba(197, 217, 71, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.offer-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.offer-subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto;
}

/* Card Stack Container */
.offer-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  transform-style: preserve-3d;
  position: relative;
}

/* Radial glow behind cards for depth context */
.offer-stack::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 130%;
  background: radial-gradient(
    ellipse at center,
    rgba(197, 217, 71, 0.1) 0%,
    rgba(197, 217, 71, 0.05) 30%,
    transparent 60%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

/* Ensure each card can receive hover */
.offer-card-3d {
  position: relative;
  z-index: 1;
}

.offer-card-3d:nth-child(1) { z-index: 5; }
.offer-card-3d:nth-child(2) { z-index: 4; }
.offer-card-3d:nth-child(3) { z-index: 3; }
.offer-card-3d:nth-child(4) { z-index: 2; }
.offer-card-3d:nth-child(5) { z-index: 1; }

/* Individual 3D Cards */
.offer-card-3d {
  --depth: calc(var(--index) * -15px);

  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(
    145deg,
    rgba(26, 61, 54, 0.95) 0%,
    rgba(16, 47, 42, 0.9) 100%
  );
  /* Edge highlights for light direction */
  border: 1px solid rgba(197, 217, 71, 0.12);
  border-top: 1px solid rgba(197, 217, 71, 0.25);
  border-left: 1px solid rgba(197, 217, 71, 0.18);
  border-radius: 20px;
  position: relative;
  transform-style: preserve-3d;
  /* Subtle 3D - not gimmicky */
  transform:
    translateZ(var(--depth))
    rotateX(0.5deg);
  /* Layered shadows for depth */
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.15),
    0 25px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  cursor: default;
}

/* Card depth shadow */
.offer-card-3d::after {
  content: '';
  position: absolute;
  inset: 10%;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(30px);
  transform: translateZ(-30px);
  z-index: -1;
  border-radius: inherit;
  transition: filter 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

/* Hover - Bring card forward */
.offer-card-3d:hover {
  transform:
    translateZ(30px)
    rotateX(0deg)
    scale(1.01);
  border-color: rgba(197, 217, 71, 0.4);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.2),
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(197, 217, 71, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 50 !important;
}

.offer-card-3d:hover::after {
  filter: blur(40px);
  opacity: 0.7;
}

/* Card Icon - SVG image */
.offer-card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  /* CSS filter to make black SVGs yellow/lime */
  filter: brightness(0) saturate(100%) invert(83%) sepia(45%) saturate(497%) hue-rotate(27deg) brightness(97%) contrast(89%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.offer-card-3d:hover .offer-card-icon {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(93%) sepia(30%) saturate(600%) hue-rotate(27deg) brightness(105%) contrast(95%);
}

/* Card Content */
.offer-card-content {
  flex: 1;
  padding-top: 0.25rem;
}

.offer-card-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.offer-card-desc {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Scroll reveal animation for cards */
.offer-card-3d {
  opacity: 0;
  transform:
    translateZ(-40px)
    rotateX(3deg)
    translateY(30px);
}

.offer-card-3d.visible {
  opacity: 1;
  transform:
    translateZ(var(--depth))
    rotateX(0.5deg)
    translateY(0);
}

/* Staggered animation delays */
.offer-card-3d:nth-child(1) { transition-delay: 0ms; }
.offer-card-3d:nth-child(2) { transition-delay: 80ms; }
.offer-card-3d:nth-child(3) { transition-delay: 160ms; }
.offer-card-3d:nth-child(4) { transition-delay: 240ms; }
.offer-card-3d:nth-child(5) { transition-delay: 320ms; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .offer-card-3d {
    transform: none !important;
    opacity: 1;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .offer-card-3d:hover {
    transform: none !important;
  }

  .offer-card-icon {
    transition: none;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .offer-section {
    padding: 4rem 0;
  }

  .offer-section::before {
    background-size: 30px 30px;
  }

  .offer-header {
    margin-bottom: 3rem;
  }

  .offer-perspective {
    perspective: none;
  }

  .offer-stack::before {
    width: 120%;
    filter: blur(40px);
  }

  .offer-card-3d {
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    transform: none;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.15),
      0 12px 30px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .offer-card-3d.visible,
  .offer-card-3d:hover {
    transform: none;
  }

  .offer-card-3d:hover {
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.15),
      0 16px 40px rgba(0, 0, 0, 0.25),
      0 0 30px rgba(197, 217, 71, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .offer-card-3d::after {
    display: none;
  }

  .offer-card-icon {
    width: 56px;
    height: 56px;
  }

  .offer-card-title {
    font-size: 1.25rem;
  }
}

/* ========================================
   Module Sections
   ======================================== */
.module-section {
  padding: 6rem 0;
}

.module-section.dark {
  background-color: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.module-section.dark .module-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.module-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .module-container {
    flex-direction: row;
  }

  .module-container.reverse {
    flex-direction: row-reverse;
  }
}

.module-content {
  flex: 1;
}

.module-label {
  color: var(--lime);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.module-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.module-section:not(.dark) .module-content h2 {
  color: var(--forest);
}

.module-description {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.module-section:not(.dark) .module-description {
  color: #475569;
}

.module-section.dark .module-description {
  color: #d1d5db;
}

/* Feature List */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.feature-icon {
  margin-top: 0.25rem;
  color: var(--lime);
  flex-shrink: 0;
}

.feature-item h4 {
  font-weight: 700;
  color: var(--forest);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: #64748b;
  font-size: 0.875rem;
}

/* Feature Grid (Dark Section) */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background-color: var(--forest-light);
  padding: 1.5rem;
  border-radius: 2px;
  border: 1px solid #374151;
}

.feature-card-icon {
  color: var(--lime);
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Module Visual */
.module-visual {
  flex: 1;
  width: 100%;
}

/* UI Mockup */
.ui-mockup {
  background-color: var(--forest);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #374151;
}

.ui-dots {
  display: flex;
  gap: 0.5rem;
}

.ui-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.ui-dot.red { background-color: #ef4444; }
.ui-dot.yellow { background-color: #eab308; }
.ui-dot.green { background-color: #22c55e; }

.ui-status {
  color: #9ca3af;
  font-size: 0.75rem;
  font-family: monospace;
}

.ui-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.ui-content-header span:first-child {
  font-weight: 700;
  font-size: 1.125rem;
}

.ui-content-header span:last-child {
  color: var(--lime);
  font-size: 0.875rem;
}

.ui-row {
  background-color: var(--forest-light);
  padding: 1rem;
  border-radius: 2px;
  border-left: 4px solid var(--lime);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.ui-row-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.ui-row-value {
  color: var(--white);
  font-family: monospace;
  font-size: 0.875rem;
}

.ui-row-badge {
  padding: 0.25rem 0.75rem;
  background-color: rgba(197, 217, 71, 0.2);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
}

.ui-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ui-stat {
  flex: 1;
  background-color: var(--forest-light);
  border-radius: 2px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  height: 8rem;
}

.ui-stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.ui-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.5rem;
}

.ui-stat-icon {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  color: var(--lime);
  opacity: 0.5;
}

/* Reconciliation Card */
.recon-wrapper {
  position: relative;
}

.recon-bg {
  position: absolute;
  inset: -1rem;
  background-color: rgba(197, 217, 71, 0.1);
  border-radius: 2px;
  transform: rotate(2deg);
}

.recon-card {
  background-color: var(--white);
  color: var(--forest);
  padding: 2rem;
  border-radius: 2px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.recon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.recon-label {
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
}

.recon-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--forest);
}

.recon-change {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(197, 217, 71, 0.2);
  color: #4d7c0f;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.recon-progress {
  margin-bottom: 1.5rem;
}

.recon-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.recon-progress-bar {
  width: 100%;
  height: 0.5rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

.recon-progress-fill {
  height: 100%;
}

.recon-progress-fill.forest {
  background-color: var(--forest);
}

.recon-progress-fill.lime {
  background-color: var(--lime);
}

.recon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.recon-grid-item {
  padding: 0.75rem;
  background-color: #f9fafb;
  border-radius: 4px;
  text-align: center;
}

.recon-grid-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.recon-grid-value {
  font-weight: 700;
}

.recon-grid-value.red { color: #dc2626; }
.recon-grid-value.orange { color: #f97316; }
.recon-grid-value.forest { color: var(--forest); }

/* ========================================
   Comparison Table Section
   ======================================== */
.comparison-section {
  padding: 6rem 0;
  background-color: var(--silver);
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comparison-header h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--forest);
}

@media (min-width: 1024px) {
  .comparison-header h2 {
    font-size: 2.25rem;
  }
}

.comparison-header p {
  color: #475569;
  margin-top: 1rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  min-width: 768px;
  background-color: var(--white);
  border-radius: 2px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
  padding: 1.5rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  text-align: left;
}

.comparison-table th:not(:first-child) {
  border-left: 1px solid #e5e7eb;
}

.comparison-table th.vetriq {
  color: var(--forest);
  background-color: rgba(16, 47, 42, 0.05);
}

.comparison-table th.vetriq .logo-mark {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  background-color: var(--forest);
  color: var(--lime);
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border-radius: 2px;
  margin-right: 0.5rem;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.comparison-table td:not(:first-child) {
  border-left: 1px solid #f3f4f6;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background-color: #f9fafb;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #374151;
}

.comparison-table td.bad {
  color: #6b7280;
}

.comparison-table td.good {
  color: var(--forest);
  font-weight: 700;
  background-color: rgba(16, 47, 42, 0.05);
}

.comparison-table td .icon-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-table td .icon-x {
  color: #f87171;
}

.comparison-table td .icon-check {
  color: var(--lime);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
  background-color: var(--white);
  padding: 6rem 0;
}

.faq-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }
}

.faq-header {
  position: relative;
}

@media (min-width: 1024px) {
  .faq-header {
    position: sticky;
    top: 120px;
  }
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.faq-header p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
}

/* Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--lime);
}

.faq-item.active {
  border-color: var(--lime);
  box-shadow: 0 4px 20px rgba(197, 217, 71, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest);
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, rgba(197, 217, 71, 0.08) 0%, rgba(197, 217, 71, 0.03) 100%);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
  color: var(--lime);
}

.faq-item.active .faq-icon {
  color: var(--lime);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* ========================================
   Compliance Section (Security Page)
   ======================================== */
.compliance-section {
  background: var(--white);
  padding: 6rem 0;
}

.compliance-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.compliance-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.compliance-section .section-header p {
  font-size: 1.125rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }

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

.compliance-card {
  background: var(--white);
  border: 1px solid rgba(16, 47, 42, 0.15);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.compliance-card:hover {
  border-color: var(--lime);
  box-shadow: 0 8px 30px rgba(16, 47, 42, 0.1);
  transform: translateY(-4px);
}

.compliance-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.compliance-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.compliance-icon svg {
  width: 40px;
  height: 40px;
}

.compliance-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--forest);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.compliance-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.compliance-description {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.compliance-details {
  background: var(--white);
  border: 1px solid rgba(16, 47, 42, 0.08);
  border-radius: 2px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.compliance-details h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.compliance-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.compliance-checklist li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: var(--forest);
  background: var(--lime);
  padding: 0.375rem 0.625rem;
  border-radius: 2px;
  font-weight: 500;
  width: fit-content;
}

.compliance-checklist li svg {
  color: var(--forest);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.compliance-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
  margin-top: auto;
}

.compliance-link:hover {
  color: var(--lime);
}

.compliance-link:hover svg {
  transform: translateX(4px);
}

.compliance-link svg {
  transition: transform 0.2s ease;
}

/* ========================================
   Technical Security Section
   ======================================== */
.tech-security-section {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
}

.tech-security-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tech-security-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.tech-security-section .section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 1024px) {
  .tech-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tech-security-grid {
    grid-template-columns: 1fr;
  }

  .tech-security-section .section-header h2 {
    font-size: 2rem;
  }
}

.tech-card {
  background: var(--white);
  border: 1px solid rgba(16, 47, 42, 0.1);
  border-radius: 2px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.tech-card:hover {
  border-color: var(--lime);
  box-shadow: 0 8px 30px rgba(16, 47, 42, 0.1);
  transform: translateY(-4px);
}

.tech-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.tech-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.tech-card > p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.tech-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-features li {
  font-size: 0.8rem;
  color: #64748b;
  padding-left: 1rem;
  position: relative;
}

.tech-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
}

/* ========================================
   Infrastructure Section (Redesigned)
   ======================================== */
.infrastructure-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}

/* Live Status Indicator */
.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.status-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.infrastructure-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.infrastructure-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.infrastructure-section .section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .infrastructure-section .section-header h2 {
    font-size: 2rem;
  }
}

/* Stats Wrapper */
.infra-stats-wrapper {
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Unified Grid - Stat + Capability Cards in one row */
.infra-unified-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.infra-unified-grid .infra-stat-card {
  border-radius: 0;
}

.infra-unified-grid .capability-card {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.infra-unified-grid .capability-card:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .infra-unified-grid {
    grid-template-columns: 1fr;
  }

  .infra-unified-grid .capability-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .infra-unified-grid .capability-card:last-child {
    border-bottom: none;
  }
}

/* Stats Grid - 3 cards */
.infra-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

/* Individual Stat Card */
.infra-stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.infra-stat-card:last-child {
  border-right: none;
}

.infra-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(197, 217, 71, 0.15);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.infra-stat-icon svg {
  stroke: var(--lime);
}

.infra-stat-value {
  display: block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: 'Barlow', sans-serif;
}

.infra-stat-unit {
  font-size: 0.5em;
  font-weight: 600;
  margin-left: 0.1em;
}

.infra-stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Azure Provider Bar - Connected to cards */
.infra-provider-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(197, 217, 71, 0.15);
  padding: 0.875rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.infra-provider-bar strong {
  color: var(--white);
  font-weight: 600;
}

.azure-logo {
  color: var(--lime);
  flex-shrink: 0;
}

.provider-divider {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* Capability Cards */
.capability-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.capability-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

.capability-icon {
  display: none;
}

.capability-card h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.capability-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-card li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .capability-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .capability-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Quote inside infrastructure section (dark background) */
.infrastructure-section .leadership-quote {
  margin-top: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(197, 217, 71, 0.2);
  position: relative;
}

/* Lime border on footer for security page (no final-cta section) */
.page-security .footer {
  border-top: 3px solid var(--lime);
}

.infrastructure-section .leadership-quote::before {
  color: var(--lime);
  opacity: 0.3;
}

.infrastructure-section .leadership-quote p {
  color: var(--white);
}

.infrastructure-section .quote-author {
  color: var(--white);
}

.infrastructure-section .quote-title {
  color: rgba(255, 255, 255, 0.7);
}

.infrastructure-section .quote-headshot {
  border: 3px solid var(--lime);
  box-shadow: 0 4px 20px rgba(197, 217, 71, 0.25);
}

@media (max-width: 640px) {
  .infra-stats-grid {
    grid-template-columns: 1fr;
    border-radius: 12px 12px 0 0;
  }

  .infra-stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
  }

  .infra-stat-card:last-child {
    border-bottom: none;
  }

  .infra-stat-value {
    font-size: 2.25rem;
  }

  .infra-provider-bar {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Capability Cards */
.infra-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.infra-card {
  background: var(--white);
  border: 1px solid rgba(16, 47, 42, 0.12);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}

.infra-card:hover {
  border-color: var(--forest);
  box-shadow: 0 4px 16px rgba(16, 47, 42, 0.1);
}

.infra-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(16, 47, 42, 0.06);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.infra-card-icon svg {
  color: var(--forest);
}

.infra-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.infra-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infra-card-list li {
  font-size: 0.875rem;
  color: #000000;
  padding: 0.375rem 0;
  border-top: 1px solid rgba(16, 47, 42, 0.08);
}

.infra-card-list li:first-child {
  border-top: none;
}

@media (max-width: 768px) {
  .infra-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .infra-card {
    padding: 1.25rem;
  }
}

/* Dark Forest Background Variant */
.infrastructure-section--lime {
  background: var(--forest);
}

.infrastructure-section--lime .section-header h2 {
  color: var(--white);
}

.infrastructure-section--lime .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.infrastructure-section--lime .infra-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.infrastructure-section--lime .infra-card-title {
  color: var(--white);
}

.infrastructure-section--lime .infra-card-list li {
  color: rgba(255, 255, 255, 0.8);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.infrastructure-section--lime .infra-card:hover {
  border-color: var(--lime);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.infrastructure-section--lime .infra-card-icon {
  background: rgba(197, 217, 71, 0.15);
}

.infrastructure-section--lime .infra-card-icon svg {
  stroke: var(--lime);
}

/* ========================================
   Data Protection Section
   ======================================== */
.data-protection-section {
  background: var(--forest);
  padding: 6rem 0;
}

.data-protection-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.data-protection-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.data-protection-section .section-header p {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .data-protection-section .section-header h2 {
    font-size: 2rem;
  }
}

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

@media (max-width: 900px) {
  .data-grid {
    grid-template-columns: 1fr;
  }
}

.data-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.data-card:hover {
  border-color: var(--lime);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.data-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.data-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.data-list li svg {
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========================================
   Leadership Quote Section
   ======================================== */
.leadership-quote-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}

.leadership-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.leadership-quote::before {
  content: '"';
  display: block;
  font-size: 6rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  margin-bottom: -1.5rem;
  opacity: 0.15;
}

.leadership-quote p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.leadership-quote footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leadership-quote cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.quote-author {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
}

.quote-title {
  font-size: 0.9rem;
  color: #64748b;
}

.quote-logo {
  height: 20px;
  width: auto;
  margin-top: 0.75rem;
  opacity: 0.9;
}

.quote-headshot {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--forest);
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(16, 47, 42, 0.15);
}

/* Quote inside authority section (dark background) */
.authority-section .leadership-quote {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(197, 217, 71, 0.2);
}

.authority-section .leadership-quote::before {
  color: var(--lime);
  opacity: 0.3;
}

.authority-section .leadership-quote p {
  color: var(--white);
}

.authority-section .quote-author {
  color: var(--white);
}

.authority-section .quote-title {
  color: rgba(255, 255, 255, 0.7);
}

.authority-section .quote-headshot {
  border: 3px solid var(--lime);
  box-shadow: 0 4px 20px rgba(197, 217, 71, 0.25);
}

.authority-section .quote-logo {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .quote-headshot {
    width: 80px;
    height: 80px;
  }

  .leadership-quote p {
    font-size: 1.25rem;
  }

  .leadership-quote::before {
    font-size: 4rem;
  }
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta-section {
  background: linear-gradient(180deg, var(--forest) 0%, #0a1a17 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 217, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 217, 71, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(transparent, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 85%, transparent);
  pointer-events: none;
}

.final-cta-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.final-cta-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--white);
}

.final-cta-text p {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.6;
}

.final-cta-section .btn-primary {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
}

.footer-texture {
  position: absolute;
  inset: 0;
}

.footer-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, #0c2420, transparent);
}

.footer-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  display: none;
}

@media (min-width: 1024px) {
  .footer-decoration {
    display: block;
  }
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer-links {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-mark {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.footer-brand .logo-mark span {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--forest);
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-column h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--lime);
  margin-bottom: 1rem;
}

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

.footer-column a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-copyright {
  margin-top: 4rem;
  text-align: center;
  color: #4b5563;
  font-size: 0.75rem;
}

/* ========================================
   Icons (SVG Styling)
   ======================================== */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}

.icon.lg {
  width: 2rem;
  height: 2rem;
}

.icon.sm {
  width: 0.875rem;
  height: 0.875rem;
}

/* ========================================
   Platform Page - Feature Sections
   Enterprise Clean Layout with Progressive Disclosure
   ======================================== */

/* Feature Section Container */
.feature-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--silver);
}

.feature-section:nth-child(even) {
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
}

/* Feature Block - Main Container */
.feature-block {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

/* Pain Callout - Data-Driven Stat Lead */
.feature-pain {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-pain.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-stat {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pain-stat-context {
  display: block;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #64748b;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.feature-pain p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 600px;
}

.pain-source {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pain-source:hover {
  color: var(--forest);
  text-decoration: underline;
}

/* Solution Header */
.feature-solution {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.1s;
}

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

.feature-solution h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.1;
  margin: 0;
}

/* Process Section - How It Works */
.feature-process {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.2s;
}

.feature-process.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Process Steps - Horizontal Flow */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(16, 47, 42, 0.06);
}

@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    align-items: stretch;
  }
}

/* Individual Step */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.5rem);
  flex: 1;
  position: relative;
  transition: background-color 0.3s ease;
}

.process-step:hover {
  background-color: rgba(197, 217, 71, 0.05);
}

@media (min-width: 768px) {
  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Step Number */
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--forest);
  color: var(--lime);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.process-step:hover .step-num {
  background: var(--lime);
  color: var(--forest);
  transform: scale(1.1);
}

/* Step Text */
.step-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.step-text strong {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

.step-text span {
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  color: #64748b;
  line-height: 1.4;
}

/* Process Connector - Arrow Between Steps */
.process-connector {
  display: none;
}

@media (min-width: 768px) {
  .process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    flex-shrink: 0;
    position: relative;
  }

  .process-connector::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--lime);
  }

  .process-connector::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 8px);
    height: 2px;
    background: linear-gradient(90deg, var(--silver) 0%, var(--lime) 100%);
  }
}

/* Visual Placeholder */
.feature-visual {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.3s;
}

.feature-visual.visible {
  opacity: 1;
  transform: translateY(0);
}

.visual-placeholder {
  background: linear-gradient(135deg, var(--silver) 0%, #e2e8f0 100%);
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: clamp(3rem, 8vw, 5rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visual-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(16, 47, 42, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(16, 47, 42, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(16, 47, 42, 0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(16, 47, 42, 0.02) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.visual-placeholder span {
  position: relative;
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
  font-weight: 500;
}

/* Feature Screenshots */
.feature-screenshot {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(16, 47, 42, 0.12);
  border: 1px solid rgba(16, 47, 42, 0.08);
}

.feature-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Outcome - Data-Driven Result */
.feature-outcome {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  border-top: 1px solid var(--silver);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.feature-outcome.visible {
  opacity: 1;
  transform: translateY(0);
}

.outcome-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--lime);
  color: var(--forest);
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.outcome-stat svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-outcome p {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.4;
  margin: 0 auto;
  max-width: 500px;
}

.feature-outcome p span {
  color: #64748b;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  display: block;
  margin-top: 0.5rem;
}

/* ========================================
   Sticky Scroll Feature Layout
   ======================================== */

.feature-scrolly {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 768px) {
  .feature-scrolly {
    grid-template-columns: 0.8fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

/* Left Column - Sticky Stat */
.feature-stat-sticky {
  position: relative;
}

@media (min-width: 768px) {
  .feature-stat-sticky {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding-bottom: 2rem;
  }
}

.stat-sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sticky-stat {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 0.9;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.sticky-stat-context {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.sticky-source {
  display: inline-block;
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: color 0.2s ease;
}

.sticky-source:hover {
  color: var(--forest);
  text-decoration: underline;
}

/* Right Column - Scrolling Content */
.feature-content-scroll {
  display: flex;
  flex-direction: column;
}

/* Scroll Blocks */
.scroll-block {
  padding: clamp(2rem, 4vw, 3rem) 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-block.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .scroll-block {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .scroll-block:first-child {
    padding-top: 0;
  }
}

/* Problem Statement - Minimal Typography */
.scroll-problem {
  position: relative;
}

.problem-statement {
  /* No visual treatment - typography only */
}

.problem-text {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.5;
  margin: 0;
}

.problem-text strong {
  font-weight: 700;
}

/* Transition Element - "With Vetriq" (Attached to Solution) */
.scroll-transition {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding-top: 3rem;    /* More space above - separation from problem */
  padding-bottom: 0.75rem; /* Minimal space below - attached to solution */
  margin-bottom: -0.5rem; /* Pull solution closer */
  min-height: auto !important;
  position: relative;
}

/* Only dots above - creates visual separation from problem */
.scroll-transition::before {
  content: '·  ·  ·';
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--lime);
  margin-bottom: 1rem;
}

.transition-text {
  font-family: 'Barlow', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.transition-logo {
  height: 1.25rem;
  width: auto;
  opacity: 0.7;
}

/* Solution Block - tightly connected to transition above */
.scroll-solution {
  padding-top: 0; /* Connects tightly with transition above */
}

.scroll-solution h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.15;
  text-align: center;
  margin: 0;
}

/* Outcome Block - Final Result */
.scroll-outcome {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lime);
  color: var(--forest);
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.outcome-badge svg {
  width: 1rem;
  height: 1rem;
}

.scroll-outcome p {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.5;
  margin: 0;
}

.scroll-outcome p span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  color: #64748b;
}

/* Mobile: Show stat inline instead of sticky */
@media (max-width: 767px) {
  .feature-scrolly {
    display: flex;
    flex-direction: column;
  }

  .feature-stat-sticky {
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--silver);
    width: 100%;
  }

  .stat-sticky-inner {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .sticky-stat,
  .sticky-stat-context,
  .sticky-source {
    width: 100%;
    text-align: center !important;
  }

  .sticky-stat-context {
    max-width: 100%;
  }

  .scroll-block {
    min-height: auto;
    padding: clamp(1.5rem, 3vw, 2rem) 0;
  }

  .problem-statement {
    padding-left: 1rem;
  }
}

/* ========================================
   Consolidated Block Layout (Option 8)
   Problem → Transformation → Result
   ======================================== */
.consolidated-block {
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.consolidated-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.block-label {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  background: rgba(197, 217, 71, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.block-statement {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.6;
  margin: 0;
}

.block-statement strong {
  font-weight: 700;
}

/* Transition block - "With Vetriq" */
.block-transition {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 0;
}

.block-transition .transition-text {
  font-family: 'Barlow', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.block-transition .transition-logo {
  height: 1.5rem;
  width: auto;
}

/* Tighten gap between headline and result */
.consolidated-block:has(.block-headline) {
  padding-bottom: 1.5rem;
}

.consolidated-block:has(.block-result) {
  padding-top: 1.25rem;
}

.block-headline {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin: 0;
}

.block-result {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.5;
  margin: 0;
}

.block-result span {
  display: block;
  margin-top: 0.375rem;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
}

@media (max-width: 640px) {
  .block-headline,
  .block-result {
    text-align: center;
  }
}

/* Vetriq + Steps Combo (for mobile two-column layout) */
.vetriq-steps-combo {
  display: block;
}

.vetriq-steps-combo .combo-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.vetriq-steps-combo .combo-brand .transition-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

.vetriq-steps-combo .combo-brand .transition-logo {
  height: 28px;
  width: auto;
}

.combo-divider {
  display: none;
}

@media (max-width: 640px) {
  .vetriq-steps-combo {
    display: grid;
    grid-template-columns: auto 3px 1fr;
    gap: 1rem;
    align-items: stretch;
  }

  .vetriq-steps-combo .combo-brand {
    margin-bottom: 0;
    justify-content: center;
  }

  .combo-divider {
    display: block;
    background: var(--lime);
    border-radius: 2px;
  }

  .vetriq-steps-combo .transform-steps {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Horizontal Transform Steps */
.transform-steps {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.transform-step {
  flex: 1;
  min-width: 0;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.transform-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #1a3a35 0%, var(--forest) 100%);
  border: 1.5px solid rgba(255, 229, 0, 0.3);
  color: #FFE500 !important;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 50%;
  margin-bottom: 0.375rem;
  opacity: 0;
  transform: scale(0);
  box-shadow: 0 0 0 0 rgba(255, 229, 0, 0);
  /* Ensure text renders above background */
  position: relative;
  z-index: 1;
  isolation: isolate;
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

/* Pop-in keyframe with subtle glow */
@keyframes numPopIn {
  0% {
    opacity: 0;
    transform: scale(0);
    box-shadow: 0 0 0 0 rgba(255, 229, 0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 12px 4px rgba(255, 229, 0, 0.5);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 6px 2px rgba(255, 229, 0, 0.15);
  }
}

/* Final pulse for step 4 */
@keyframes numBlink {
  0%, 100% {
    box-shadow: 0 0 6px 2px rgba(255, 229, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 14px 6px rgba(255, 229, 0, 0.6);
  }
}

/* Sequential pop-in when parent block is visible */
.consolidated-block.visible .transform-step:nth-child(1) .transform-num {
  animation: numPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.consolidated-block.visible .transform-step:nth-child(2) .transform-num {
  animation: numPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.0s forwards;
}

.consolidated-block.visible .transform-step:nth-child(3) .transform-num {
  animation: numPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.8s forwards;
}

.consolidated-block.visible .transform-step:nth-child(4) .transform-num {
  animation:
    numPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 2.6s forwards,
    numBlink 0.4s ease-in-out 3.1s 4;
}

.transform-step strong,
.transform-step > span {
  opacity: 0;
  transform: translateY(6px);
}

.transform-step strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.25;
}

.transform-step > span {
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.3;
}

/* Text fade-in keyframe */
@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step 1 text appears with number */
.consolidated-block.visible .transform-step:nth-child(1) strong {
  animation: textFadeIn 0.3s ease-out 0.2s forwards;
}
.consolidated-block.visible .transform-step:nth-child(1) > span {
  animation: textFadeIn 0.3s ease-out 0.25s forwards;
}

/* Step 2 text appears with number */
.consolidated-block.visible .transform-step:nth-child(2) strong {
  animation: textFadeIn 0.3s ease-out 1.0s forwards;
}
.consolidated-block.visible .transform-step:nth-child(2) > span {
  animation: textFadeIn 0.3s ease-out 1.05s forwards;
}

/* Step 3 text appears with number */
.consolidated-block.visible .transform-step:nth-child(3) strong {
  animation: textFadeIn 0.3s ease-out 1.8s forwards;
}
.consolidated-block.visible .transform-step:nth-child(3) > span {
  animation: textFadeIn 0.3s ease-out 1.85s forwards;
}

/* Step 4 text appears with number */
.consolidated-block.visible .transform-step:nth-child(4) strong {
  animation: textFadeIn 0.3s ease-out 2.6s forwards;
}
.consolidated-block.visible .transform-step:nth-child(4) > span {
  animation: textFadeIn 0.3s ease-out 2.65s forwards;
}


/* Mobile: Stack transform steps */
@media (max-width: 640px) {
  .transform-steps {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .transform-step {
    display: grid;
    grid-template-columns: 26px 1fr;
    grid-template-rows: auto auto;
    gap: 0.25rem 0.5rem;
    min-width: 100%;
    max-width: none;
  }

  .transform-num {
    grid-row: 1 / 3;
    align-self: start;
  }

  .transform-step strong {
    font-size: 0.875rem;
    grid-column: 2;
  }

  .transform-step > span {
    font-size: 0.75rem;
    grid-column: 2;
  }
}

/* Platform Hero Variant */
.hero--platform {
  min-height: auto;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .hero--platform {
    padding-bottom: 8rem;
  }
}

/* ========================================
   Platform Page - Trust Section
   ======================================== */
.trust-section {
  background: var(--forest);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
}

.trust-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.trust-header {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Metrics */
.trust-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.1s;
}

.trust-metrics.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-metric {
  text-align: center;
}

.trust-metric-value {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-metric-label {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-metric-divider {
  width: 1px;
  height: 4rem;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 480px) {
  .trust-metric-divider {
    display: none;
  }

  .trust-metrics {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.2s;
}

.trust-badges.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-section .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trust-section .trust-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 217, 71, 0.3);
}

.trust-section .trust-badge svg {
  color: var(--lime);
}

/* Testimonial */
.trust-testimonial {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.3s;
}

.trust-testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-testimonial blockquote {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2rem);
  margin: 0;
}

.trust-testimonial blockquote p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-style: italic;
  color: #e2e8f0;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.trust-testimonial blockquote cite {
  font-style: normal;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 600;
}

/* ========================================
   Integrations Section
   ======================================== */
.integrations-section {
  background: var(--white);
  padding: 5rem 0;
}

.integrations-content {
  text-align: center;
}

.integrations-header {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.integrations-subhead {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: left;
}

.integration-category h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lime);
}

.integration-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.integration-list li {
  font-size: 0.95rem;
  color: #000000;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(16, 47, 42, 0.08);
}

.integration-list li:last-child {
  border-bottom: none;
}

.integrations-note {
  font-size: 0.9rem;
  color: #64748b;
}

.integrations-link {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.integrations-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ========================================
   Audience / Who It's For Section
   ======================================== */
.audience-section {
  background: var(--forest);
  padding: 5rem 0;
}

.audience-header {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

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

.audience-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

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

.audience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 217, 71, 0.3);
}

.audience-icon {
  width: 56px;
  height: 56px;
  background: rgba(197, 217, 71, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.audience-icon svg {
  color: var(--lime);
}

.audience-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.audience-card > p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.audience-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-benefits li {
  font-size: 0.875rem;
  color: var(--lime);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.audience-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 600;
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ========================================
   Platform FAQ Section (namespaced to avoid index.html conflict)
   ======================================== */
.platform-faq-section {
  background: var(--white);
  padding: 5rem 0;
}

.platform-faq-header {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--forest);
  text-align: center;
  margin-bottom: 3rem;
}

.platform-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-faq-item {
  background: rgba(16, 47, 42, 0.03);
  border: 1px solid rgba(16, 47, 42, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.platform-faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.platform-faq-item:hover {
  border-color: rgba(16, 47, 42, 0.15);
}

.platform-faq-q {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.platform-faq-a {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.7;
  margin: 0;
}

.platform-faq-a a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.platform-faq-a a:hover {
  text-decoration: underline;
}

/* ========================================
   Company Page Styles
   ======================================== */

/* Company Hero */
.hero--company {
  min-height: 50vh;
}

.hero--company h1 {
  max-width: 800px;
}

/* Story Section */
.story-section {
  padding: 5rem 0;
  background: var(--white);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-section .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.story-section .section-header h2 {
  font-size: 2.5rem;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
}

.story-lead {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.story-text p {
  margin-bottom: 1.25rem;
}

.story-text strong {
  color: var(--forest);
}

/* Approach Section */
.approach-section {
  padding: 5rem 0;
  background: var(--forest);
}

.approach-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-section .section-header h2 {
  font-size: 2.5rem;
  color: var(--white);
}

.approach-section .section-header h2 .text-lime {
  color: var(--lime);
}

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

.approach-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.approach-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 217, 71, 0.3);
  transform: translateY(-2px);
}

.approach-icon {
  width: 56px;
  height: 56px;
  background: var(--lime);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--forest);
}

.approach-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.approach-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .approach-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--forest);
}

.team-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-section .section-header h2 {
  font-size: 2.5rem;
  color: var(--white);
}

.team-section .section-header h2 .text-lime {
  color: var(--lime);
}

/* Founder Profile */
.founder-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-profile:last-child {
  margin-bottom: 0;
}

.founder-image {
  display: flex;
  justify-content: center;
}

.founder-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--lime);
}

.founder-image-placeholder {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 3px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}

.founder-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.founder-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-info p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.founder-info p:last-child {
  margin-bottom: 0;
}

/* Expandable bio */
.founder-expanded {
  display: none;
  overflow: hidden;
}

.founder-info.expanded .founder-expanded {
  display: block;
}

.founder-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: var(--lime);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  transition: opacity 0.2s ease;
}

.founder-toggle:hover {
  opacity: 0.8;
}

.founder-toggle svg {
  transition: transform 0.3s ease;
}

.founder-info.expanded .founder-toggle svg {
  transform: rotate(180deg);
}

@media (max-width: 800px) {
  .founder-profile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .founder-image {
    justify-content: center;
  }

  .founder-image img,
  .founder-image-placeholder {
    width: 180px;
    height: 180px;
  }

  .founder-info {
    text-align: left;
  }
}

/* Founding Team */
.founding-team {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.founding-team > h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.founding-team > p {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.team-highlight {
  background: rgba(16, 47, 42, 0.02);
  border: 1px solid rgba(16, 47, 42, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
}

.team-highlight-icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--lime);
}

.team-highlight strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.team-highlight p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 800px) {
  .team-highlights {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Legal Pages (Privacy Policy, Terms)
   ======================================== */
.hero--legal {
  padding-bottom: 3rem;
}

.hero--legal .hero-description {
  font-size: 1rem;
  opacity: 0.8;
}

.legal-content-section {
  padding: 4rem 0 6rem;
  background: var(--white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Table of Contents */
.legal-toc {
  background: rgba(16, 47, 42, 0.03);
  border: 1px solid rgba(16, 47, 42, 0.08);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.legal-toc h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  columns: 2;
  column-gap: 2rem;
}

.legal-toc li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

.legal-toc a {
  color: var(--forest);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.legal-toc a:hover {
  color: var(--lime);
  text-decoration: underline;
}

/* Legal Sections */
.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(16, 47, 42, 0.08);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.5rem;
  scroll-margin-top: 100px;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin: 2rem 0 1rem;
}

.legal-section p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}

.legal-section li {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--forest);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: #1a4a42;
}

.legal-section strong {
  color: var(--forest);
  font-weight: 600;
}

/* Legal Table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.legal-table th,
.legal-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid rgba(16, 47, 42, 0.1);
}

.legal-table th {
  background: rgba(16, 47, 42, 0.05);
  font-weight: 600;
  color: var(--forest);
}

.legal-table td {
  color: #374151;
}

.legal-table tr:nth-child(even) td {
  background: rgba(16, 47, 42, 0.02);
}

/* Contact Info Box */
.contact-info-box {
  background: rgba(16, 47, 42, 0.03);
  border: 1px solid rgba(16, 47, 42, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.contact-info-box p {
  margin: 0.25rem 0;
}

.contact-info-box p:first-child {
  margin-top: 0;
}

.contact-info-box p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-content-section {
    padding: 3rem 0 4rem;
  }

  .legal-toc ol {
    columns: 1;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.125rem;
  }

  .legal-table {
    font-size: 0.875rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.75rem;
  }
}

/* ========================================
   Form Modal
   ======================================== */

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 47, 42, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.modal {
  background: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

/* Modal Header */
.modal-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.modal-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.9375rem;
  color: #64748b;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.modal-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748b;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(16, 47, 42, 0.05);
  color: var(--forest);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Modal Body (Form) */
.modal-body {
  padding: 1.5rem;
}

/* Form Styles */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
}

.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--forest);
  background: var(--white);
  border: 2px solid var(--silver);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(16, 47, 42, 0.1);
}

.form-input.error {
  border-color: #ef4444;
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Error Message */
.form-error {
  font-size: 0.8125rem;
  color: #ef4444;
  display: none;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.form-error.visible {
  display: flex;
}

.form-error svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Form Footer */
.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--forest);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  background-color: #1a4a42;
  box-shadow: 0 6px 20px rgba(16, 47, 42, 0.3);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Loading Spinner */
.form-submit .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.form-submit.loading .spinner {
  display: block;
}

.form-submit.loading .btn-text {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Privacy Notice */
.form-privacy {
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy a:hover {
  color: #1a4a42;
}

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(16, 47, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--forest);
}

.form-success-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.form-success-message {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Intent Badge (shows what they clicked) */
.modal-intent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(16, 47, 42, 0.08);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.modal-intent-badge svg {
  width: 14px;
  height: 14px;
  color: var(--forest);
}

/* Responsive */
@media (max-width: 640px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }

  .modal-overlay.active .modal {
    transform: translateY(0);
  }

  .modal-header {
    padding: 1.25rem 1.25rem 0;
  }

  .modal-body {
    padding: 1.25rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .form-input {
    font-size: 16px; /* Prevents iOS zoom */
  }
}

/* ========================================
   ACCESSIBILITY PAGE FORM
   ======================================== */

.accessibility-form-container {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--snow);
  border-radius: 12px;
  border: 1px solid var(--silver);
}

.accessibility-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.accessibility-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.accessibility-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.accessibility-form select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23102f2a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.accessibility-form .form-footer {
  margin-top: 1rem;
}

.accessibility-form .form-submit {
  width: auto;
  padding: 0.875rem 2rem;
}

.accessibility-form .btn-loading {
  display: none;
}

.accessibility-form .form-submit.loading .btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accessibility-form .form-submit.loading .btn-text {
  display: none;
}

.accessibility-form .spinner {
  animation: spin 0.8s linear infinite;
}

.accessibility-form-container .form-success {
  padding: 2.5rem 1rem;
}

@media (max-width: 640px) {
  .accessibility-form-container {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .accessibility-form .form-row {
    grid-template-columns: 1fr;
  }

  .accessibility-form .form-submit {
    width: 100%;
  }
}
