/* ============================================
   PolicySuite — Landing Page Styles
   Design System: Enterprise (Normalized)
   Font: Inter (matches app design system)
   Accent: #2563EB (matches app design system)
   Phase 3: Distill + Normalize + Bolder
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --bg-card: #FFFFFF;

  /* Typography */
  --text-heading: #0F172A;
  --text-body: #334155;
  --text-secondary: #64748B;
  --text-muted: #64748B;

  /* Borders */
  --border-color: #E2E8F0;
  --border-strong: #CBD5E1;
  --border-light: #F1F5F9;

  /* Accent — aligned to app design system (#2563EB) */
  --accent: #2563EB;
  --accent-hover: #3B82F6;
  --accent-light: #DBEAFE;
  --accent-mid: #BFDBFE;
  --accent-dark: #1D4ED8;

  /* Semantic colors */
  --green: #059669;
  --green-light: #D1FAE5;
  --orange: #EA580C;
  --orange-light: #FFF7ED;
  --purple: #7C3AED;
  --purple-light: #EDE9FE;
  --red: #DC2626;
  --red-light: #FEE2E2;
  --amber: #D97706;
  --amber-light: #FEF3C7;

  /* Shadows — Apple-inspired multi-layer */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 8px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.10), 0 4px 8px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.08), 0 4px 12px -2px rgba(37, 99, 235, 0.12);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 14px;
  --text-md: 15px;
  --text-lg: 17px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 28px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: #F8FAFC;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transform: translateY(-100%);
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.skip-to-content:focus {
  transform: translateY(0);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Stagger children within reveal containers */
.reveal .step-card,
.reveal .capability-card,
.reveal .feature-card,
.reveal .testimonial-column,
.reveal .checklist-highlight-card,
.reveal .price-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible .step-card,
.reveal.visible .capability-card,
.reveal.visible .feature-card,
.reveal.visible .testimonial-column,
.reveal.visible .checklist-highlight-card,
.reveal.visible .price-card {
  opacity: 1;
  transform: translateY(0);
}

/* Steps grid stagger */
.reveal.visible .steps-grid .step-card:nth-child(1) { transition-delay: 0.05s; }
.reveal.visible .steps-grid .step-card:nth-child(2) { transition-delay: 0.12s; }
.reveal.visible .steps-grid .step-card:nth-child(3) { transition-delay: 0.19s; }

/* Capabilities grid stagger */
.reveal.visible .capabilities-grid .capability-card:nth-child(1) { transition-delay: 0.05s; }
.reveal.visible .capabilities-grid .capability-card:nth-child(2) { transition-delay: 0.12s; }
.reveal.visible .capabilities-grid .capability-card:nth-child(3) { transition-delay: 0.19s; }
.reveal.visible .capabilities-grid .capability-card:nth-child(4) { transition-delay: 0.26s; }
.reveal.visible .capabilities-grid .capability-card:nth-child(5) { transition-delay: 0.33s; }
.reveal.visible .capabilities-grid .capability-card:nth-child(6) { transition-delay: 0.40s; }

/* Testimonials stagger */
.reveal.visible .testimonials-columns .testimonial-column:nth-child(1) { transition-delay: 0.05s; }
.reveal.visible .testimonials-columns .testimonial-column:nth-child(2) { transition-delay: 0.12s; }
.reveal.visible .testimonials-columns .testimonial-column:nth-child(3) { transition-delay: 0.19s; }

/* Pricing stagger */
.reveal.visible .packs-grid .price-card:nth-child(1) { transition-delay: 0.05s; }
.reveal.visible .packs-grid .price-card:nth-child(2) { transition-delay: 0.12s; }
.reveal.visible .packs-grid .price-card:nth-child(3) { transition-delay: 0.19s; }

/* Checklist highlights stagger */
.reveal.visible .checklist-highlights .checklist-highlight-card:nth-child(1) { transition-delay: 0.05s; }
.reveal.visible .checklist-highlights .checklist-highlight-card:nth-child(2) { transition-delay: 0.12s; }
.reveal.visible .checklist-highlights .checklist-highlight-card:nth-child(3) { transition-delay: 0.19s; }

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(var(--text-3xl), 4vw, 42px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Left-aligned section header — used for asymmetric layouts */
.section-header-left {
  max-width: 520px;
  margin: 0 0 48px;
}

.section-header-left h2 {
  font-size: clamp(var(--text-3xl), 4vw, 42px);
  margin-bottom: 16px;
}

.section-header-left p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-wrapper {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  animation: fadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

.nav-glass {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-glass.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  text-decoration: none;
  transition: opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 28px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 12px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover {
  color: var(--text-heading);
  background: var(--bg-tertiary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  min-height: 44px;
  font-size: var(--text-base);
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.btn-primary {
  color: #F8FAFC;
  background: linear-gradient(180deg, var(--accent-hover) 0%, var(--accent) 100%);
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #60A5FA 0%, var(--accent-hover) 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--text-heading);
  background: transparent;
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-strong);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 6px 14px;
  font-size: var(--text-sm);
}

/* ============================================
   CURRENCY SELECTOR
   ============================================ */
.currency-selector {
  position: relative;
  margin: 0 4px;
}

.currency-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.currency-toggle:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-strong);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  list-style: none;
  padding: 6px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.currency-selector.open .currency-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.currency-dropdown li {
  padding: 10px 14px;
  font-size: var(--text-base);
  color: var(--text-body);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.currency-dropdown li:hover {
  background: var(--bg-tertiary);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-heading);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-heading);
  font-size: var(--text-xl);
  font-weight: 600;
}

.mobile-nav .btn {
  max-width: 280px;
  width: 100%;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  background: linear-gradient(180deg, #EFF6FF 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100vw);
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

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

/* Split hero layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

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

.hero-text .hero-badge-animated {
  margin-bottom: 24px;
}

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

.hero-text .hero-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero-text .hero-cta {
  justify-content: flex-start;
}

/* Product screenshot */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.7s forwards;
}

.hero-screenshot-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(37, 99, 235, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(37, 99, 235, 0.08);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.hero-screenshot-wrapper:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
  box-shadow:
    0 28px 80px rgba(37, 99, 235, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(37, 99, 235, 0.12);
}

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

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.hero-badge-section {
  margin-bottom: 24px;
}

.hero-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 5px 5px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 28px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-badge-animated:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.hero-badge-text {
  color: var(--text-body);
}

.hero-badge-divider {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--border-color);
}

.hero-badge-arrow {
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  overflow: hidden;
  transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-badge-animated:hover .hero-badge-arrow {
  background: var(--accent-mid);
}

.hero-badge-arrow-inner {
  display: flex;
  width: 48px;
  transform: translateX(-50%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-badge-animated:hover .hero-badge-arrow-inner {
  transform: translateX(0);
}

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
}

.arrow-icon svg {
  width: 12px;
  height: 12px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-heading);
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}

.hero-description {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 40px auto 0;
  opacity: 0;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.stat-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.stat-card:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

.stat-value[data-target] {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   TRUST BAR (Combined security + frameworks)
   ============================================ */
.trust-bar {
  padding: 40px 24px;
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.trust-bar-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.trust-items {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-items span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-items span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Legacy trust sections (kept for compatibility) */
.trust-section {
  padding: 32px 24px;
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.trust-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.trust-scroll {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-scroll span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-scroll span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.logo-trust-bar {
  padding: 48px 24px 40px;
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.logo-trust-bar .trust-bar-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.logo-trust-bar .trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.trust-logo-item:hover {
  color: var(--text-secondary);
}

.trust-logo-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.trust-logo-item:hover svg {
  opacity: 0.8;
}

.trust-logo-item span {
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============================================
   PROBLEM / SOLUTION (Best section — kept)
   ============================================ */
.visual-showcase {
  padding: 96px 24px;
  background: var(--bg-primary);
}

.showcase-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--orange-light);
  border: 1px solid #FED7AA;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}

.showcase-header h2 {
  font-size: clamp(var(--text-3xl), 4vw, 42px);
  margin-bottom: 12px;
  color: var(--text-heading);
}

.showcase-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-card,
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.problem-card:hover,
.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.problem-card:active,
.solution-card:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.solution-card {
  border-color: var(--accent-mid);
  background: linear-gradient(135deg, #EFF6FF 0%, var(--bg-primary) 100%);
  box-shadow: var(--shadow-glow);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon {
  background: linear-gradient(135deg, var(--red-light), #FDE2E2);
  color: var(--red);
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.12);
}

.solution-icon {
  background: linear-gradient(135deg, var(--green-light), #A7F3D0);
  color: var(--green);
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.12);
}

.card-highlight {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.problem-highlight {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.solution-highlight {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.highlight-title {
  display: block;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-heading);
  margin-bottom: 2px;
}

.highlight-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

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

.card-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.5;
}

.point-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-point {
  background: var(--red-light);
  position: relative;
}

.problem-point::after {
  content: '\00d7';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--red);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1;
}

.solution-point {
  background: var(--green-light);
  position: relative;
}

.solution-point::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* ============================================
   HOW IT WORKS — 3-step horizontal
   ============================================ */
.how-it-works {
  padding: 96px 24px;
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   KEY CAPABILITIES — Mixed layout
   ============================================ */
.capabilities-section {
  padding: 96px 24px;
  background: var(--bg-primary);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* Wide capability card spans full width */
.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.capability-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.capability-card:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.capability-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.capability-card .cap-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.capability-card .cap-icon.green {
  background: var(--green-light);
  color: var(--green);
}

.capability-card .cap-icon.purple {
  background: var(--purple-light);
  color: var(--purple);
}

.capability-card .cap-icon.orange {
  background: var(--orange-light);
  color: var(--orange);
}

.capability-card .cap-icon.amber {
  background: var(--amber-light);
  color: var(--amber);
}

.capability-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
}

.capability-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Inline feature list inside wide cards */
.cap-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cap-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--text-body);
}

.cap-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23059669' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================
   COST COMPARISON (Strong section — kept)
   ============================================ */
.cost-comparison {
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.cost-comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.cost-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.cost-comparison-row-last {
  border-bottom: none;
}

.cost-comparison-header {
  padding-bottom: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-muted);
}

.cost-comparison-label {
  font-weight: 500;
}

.cost-comparison-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
}

.cost-comparison-stats .stat-card {
  text-align: center;
}

.text-green { color: var(--green); }
.text-accent { color: var(--accent); }
.text-red { color: var(--red); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-section-sm { margin-top: 24px; }
.mt-section-lg { margin-top: 64px; }
.btn-full { width: 100%; }

/* Pack card layout (used in pricing section) */
.pack-card {
  text-align: center;
  padding: 32px 24px;
}

.pack-card h3 {
  margin-bottom: 8px;
}

.pack-description {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.pack-price-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  overflow-wrap: break-word;
}

.pack-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Pricing section layout */
.pricing-section-heading {
  text-align: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.pricing-section-subhead {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-grid-centered {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid-centered .price-card {
  text-align: center;
}

.pricing-grid-centered .price-features {
  display: inline-flex;
  flex-direction: column;
  text-align: left;
}

/* Checklist section */
.checklist-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

#checklist {
  background: var(--bg-secondary);
}

.checklist-intro {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.checklist-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.checklist-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.checklist-email-input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-heading);
  font-size: 16px;
  outline: none;
}

.checklist-email-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checklist-submit {
  white-space: nowrap;
  padding: 14px 24px;
}

.checklist-disclaimer {
  color: var(--text-muted);
  font-size: 13px;
  margin: 12px 0 0;
}

.checklist-success {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  animation: successFadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.checklist-success-icon {
  margin-bottom: 12px;
}

/* Animated SVG checkmark */
.success-checkmark .success-circle {
  opacity: 0;
  animation: successCircleIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) 0.1s forwards;
}

.success-checkmark .success-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: successCheckDraw 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.35s forwards;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes successCircleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes successCheckDraw {
  to { stroke-dashoffset: 0; }
}

.checklist-success-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.checklist-success-subtitle {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.highlight-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.highlight-subtitle {
  color: var(--text-muted);
  font-size: 14px;
}

/* Policy search empty state */
.search-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

.search-empty svg {
  margin: 0 auto 16px;
  display: block;
  opacity: 0.5;
}

.search-empty-hint {
  font-size: 13px;
}

.search-spacer td {
  height: 52px;
}

/* Pagination */
.pagination-controls {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
}

.page-info {
  color: var(--text-secondary);
  font-size: 14px;
}

.search-stats {
  display: none;
  text-align: center;
  padding: 12px;
  color: var(--text-muted);
  font-size: 13px;
}

/* Fallback pack cards */
.fallback-pack-card {
  text-align: center;
}

.fallback-pack-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-logo {
  border-radius: 6px;
}

#category-filter {
  flex: 0 0 180px;
}

/* ============================================
   FEATURES GRID (shared)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-light), #DBEAFE);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.12);
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.feature-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #EFF6FF 50%, var(--bg-secondary) 100%);
}

.testimonials-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-height: 600px;
  overflow: hidden;
}

.testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.testimonial-card:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  font-size: var(--text-base);
  color: #F59E0B;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--text-md);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-info .testimonial-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-heading);
}

.testimonial-info p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   PRICING
   ============================================ */
#pricing {
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #FAFBFE 50%, var(--bg-primary) 100%);
}

.pricing-grid {
  display: grid;
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.price-card:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-xl);
  position: relative;
}

.price-card.featured:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 24px 48px -8px rgba(37, 99, 235, 0.18);
  transform: translateY(-4px);
}

.price-name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.price-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  overflow-wrap: break-word;
}

.price-period {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  font-size: var(--text-base);
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23059669' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pack-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-light), #DBEAFE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.12);
}

.pack-price {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.packs-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   LEAD MAGNET / CHECKLIST
   ============================================ */
.checklist-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.checklist-highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.checklist-highlight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.checklist-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-light), #DBEAFE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.12);
}

/* ============================================
   POLICY SEARCH / COMPARISON TABLE
   ============================================ */
.plan-comparison-section {
  background: var(--bg-primary);
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-filters {
  display: flex;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-search {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-body);
  font-size: var(--text-base);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.comparison-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.comparison-reset {
  flex: 0 0 auto;
}

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

.comparison-table-interactive {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table-interactive th {
  text-align: left;
  padding: 14px 20px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.comparison-table-interactive td {
  padding: 14px 20px;
  font-size: var(--text-base);
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}

.comparison-table-interactive td:nth-child(3) {
  white-space: nowrap;
}

.plan-name-cell {
  font-weight: 600;
  color: var(--text-heading);
}

.category-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.category-hr { background: var(--purple-light); color: var(--purple); }
.category-security { background: var(--accent-light); color: var(--accent); }
.category-compliance { background: var(--green-light); color: var(--green); }
.category-operations { background: var(--orange-light); color: var(--orange); }
.category-finance { background: var(--amber-light); color: var(--amber); }
.category-health { background: #FCE7F3; color: #DB2777; }
.category-it-security { background: var(--accent-light); color: var(--accent-dark); }
.category-governance { background: #E0E7FF; color: #4338CA; }

.pack-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.3;
  background: var(--accent-light);
  color: var(--accent);
  max-width: 140px;
  text-align: center;
  justify-content: center;
}

.policy-placeholder td {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
#faq {
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #EFF6FF 100%);
}

.faq-tabs-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-tab-btn {
  padding: 8px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-tab-btn:hover {
  border-color: var(--border-strong);
  color: var(--text-heading);
}

.faq-tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #F8FAFC;
}

.faq-tab-panel {
  display: none;
}

.faq-tab-panel.active {
  display: block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
  font-family: inherit;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.open .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              padding 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION (Final)
   ============================================ */
.cta-section {
  padding: 96px 24px;
  text-align: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: #F8FAFC;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 100vw);
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.6;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #F8FAFC;
  font-size: clamp(var(--text-3xl), 4vw, 42px);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-section .btn-primary {
  background: var(--bg-primary);
  color: var(--text-heading);
}

.cta-section .btn-primary:hover {
  background: #F1F5F9;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #F8FAFC;
}

.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--text-heading);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand img {
  border-radius: var(--radius-sm);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-social a:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.footer-column h4 {
  color: #F8FAFC;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: var(--text-base);
  padding: 4px 0;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-column a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.section-tinted {
  background: var(--bg-secondary);
}

.section-fade-in {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 8%, var(--bg-secondary) 92%, var(--bg-primary) 100%);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capability-card.wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta,
  .currency-selector {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 48px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

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

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

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

  .hero-text .hero-cta {
    justify-content: center;
  }

  .hero-screenshot-wrapper {
    transform: none;
  }

  .hero-screenshot-wrapper:hover {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 14px;
  }

  .stat-value {
    font-size: 22px;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-grid::before {
    display: none;
  }

  .testimonials-columns {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .testimonial-column:nth-child(2),
  .testimonial-column:nth-child(3) {
    display: none;
  }

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

  section {
    padding: 64px 24px;
  }

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

  .comparison-filters {
    flex-direction: column;
  }

  .comparison-search {
    flex: none;
  }

  .logo-trust-bar .trust-logos {
    gap: 24px;
  }

  .trust-logo-item span {
    font-size: var(--text-xs);
  }

  .trust-logo-item svg {
    width: 22px;
    height: 22px;
  }

  .packs-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 20px;
  }

  .trust-items {
    gap: 16px;
  }

  .steps-grid {
    gap: 20px;
  }

  .problem-card,
  .solution-card {
    padding: 24px;
  }

  .capability-card {
    padding: 24px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .footer-grid {
    gap: 24px;
  }

  .cost-comparison-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cost-comparison-card {
    padding: 20px;
  }

  .section-header-left {
    text-align: center;
    margin: 0 auto 48px;
  }
}

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

  .checklist-form {
    flex-direction: column;
  }

  .checklist-form-card {
    padding: 24px 20px;
    max-width: 100%;
  }

  .checklist-submit {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 56px;
  }

  .hero h1 {
    font-size: clamp(26px, 8vw, 36px);
  }

  section {
    padding: 48px 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .solution-card {
    padding: 20px;
  }

  .capability-card {
    padding: 20px;
  }

  .steps-grid {
    gap: 16px;
  }

  .step-card {
    padding: 20px;
  }

  .price-card {
    padding: 16px;
  }

  .price-value {
    font-size: clamp(24px, 7vw, 36px);
  }

  .pack-price-value {
    font-size: 22px;
  }

  .pack-card {
    padding: 24px 16px;
  }

  .trust-items {
    gap: 12px;
  }

  .trust-items span {
    white-space: normal;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    padding: 48px 16px 24px;
  }
}

/* ── Hero Reel — Cinematic Video Section ──────────────── */

.hero-reel-section {
  padding: 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0F172A 8%, #0F172A 92%, var(--bg-primary) 100%);
  overflow: hidden;
}

.hero-reel-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px 96px;
  text-align: center;
}

.hero-reel-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 12px;
}

.hero-reel-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #F1F5F9;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.2;
}

.hero-reel-theater {
  position: relative;
  margin: 0 auto;
}

.hero-reel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-reel-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 48px -12px rgba(0, 0, 0, 0.5),
    0 0 80px -20px rgba(37, 99, 235, 0.15);
  transition: box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-reel-wrapper:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 32px 64px -12px rgba(0, 0, 0, 0.6),
    0 0 100px -20px rgba(37, 99, 235, 0.25);
}

.hero-reel-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #0F172A;
  object-fit: cover;
}

/* Custom play button overlay */
.hero-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-reel-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-reel-play:focus-visible {
  outline: 2px solid #60A5FA;
  outline-offset: 8px;
  border-radius: 50%;
}

.hero-reel-play svg circle {
  transition: fill 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-reel-play:hover svg circle {
  fill: rgba(37, 99, 235, 0.5);
}

.hero-reel-caption {
  margin-top: 24px;
  font-size: 14px;
  color: #94A3B8;
  letter-spacing: 0.04em;
}

/* Reveal animation for the video section */
.hero-reel-section.reveal .hero-reel-eyebrow,
.hero-reel-section.reveal .hero-reel-heading {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-reel-section.reveal .hero-reel-heading {
  transition-delay: 0.1s;
}

.hero-reel-section.reveal .hero-reel-wrapper {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.hero-reel-section.reveal .hero-reel-caption {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.hero-reel-section.reveal.visible .hero-reel-eyebrow,
.hero-reel-section.reveal.visible .hero-reel-heading {
  opacity: 1;
  transform: translateY(0);
}

.hero-reel-section.reveal.visible .hero-reel-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-reel-section.reveal.visible .hero-reel-caption {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-reel-container {
    padding: 56px 16px 72px;
  }

  .hero-reel-heading {
    margin-bottom: 32px;
  }

  .hero-reel-wrapper {
    border-radius: 12px;
  }

  .hero-reel-play svg {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .hero-reel-container {
    padding: 48px 12px 56px;
  }

  .hero-reel-wrapper {
    border-radius: 8px;
  }

  .hero-reel-play svg {
    width: 48px;
    height: 48px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-reel-section.reveal .hero-reel-eyebrow,
  .hero-reel-section.reveal .hero-reel-heading,
  .hero-reel-section.reveal .hero-reel-wrapper,
  .hero-reel-section.reveal .hero-reel-caption {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-reel-play {
    transition: none;
  }

  .hero-reel-wrapper {
    transition: none;
  }
}

/* ── Cookie Consent Banner ─────────────────────────────── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 16px 16px;
  pointer-events: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cookie-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  animation: cookieBannerSlideUp 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.cookie-banner-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-banner-text {
  color: #F8FAFC;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-links {
  margin-top: 6px;
}

.cookie-banner-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-banner-links a:hover,
.cookie-banner-links a:focus-visible {
  color: #93C5FD;
}

.cookie-banner-links .cookie-link-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 8px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-btn-accept {
  color: #F8FAFC;
  background: var(--accent);
  border: none;
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus-visible {
  background: #3B82F6;
}

.cookie-btn-necessary {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-necessary:hover,
.cookie-btn-necessary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

@keyframes cookieBannerSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner-inner {
    animation: none;
  }
}

/* ============================================
   CONTENT PAGES (Legal, About, etc.)
   Light theme — matches main landing page
   ============================================ */
.content-page-hero {
  padding: 140px 24px 48px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.content-page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.content-page-hero p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.content-page-updated {
  display: inline-block;
  margin-top: 12px;
  font-size: var(--text-sm);
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.content-page-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.content-page-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

@media (max-width: 640px) {
  .content-page-card {
    padding: 24px 20px !important;
  }

  .content-page-body {
    padding: 32px 16px 56px;
  }

  .content-page-hero h1 {
    font-size: clamp(22px, 6vw, 32px);
  }
}

.content-page-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.content-page-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.content-page-section h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.content-page-section h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-heading);
  margin-top: 20px;
  margin-bottom: 8px;
}

.content-page-section p {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.content-page-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.content-page-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 6px;
}

.content-page-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================
   CONTENT PAGE ENHANCEMENTS
   ============================================ */

/* ── Breadcrumb Navigation ─────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: var(--text-sm);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .breadcrumb-sep {
  color: var(--border-strong);
  font-size: 12px;
}

.breadcrumb .breadcrumb-current {
  color: var(--text-body);
  font-weight: 500;
}

/* ── Table of Contents ─────────────────────── */
.content-toc {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.content-toc h2 {
  font-size: var(--text-base) !important;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 24px;
}

.content-toc li {
  break-inside: avoid;
  margin-bottom: 6px;
}

.content-toc a {
  color: var(--text-body);
  text-decoration: none;
  font-size: var(--text-sm);
  line-height: 1.6;
  transition: color 0.2s;
  display: block;
  padding: 2px 0;
}

.content-toc a:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .content-toc ol {
    columns: 1;
  }
}

/* ── Back to Top Button ────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ── Content Page Table Improvements ───────── */
.content-page-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.content-page-table caption {
  text-align: left;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.content-page-table thead th {
  background: var(--bg-secondary);
  font-weight: 600;
  color: var(--text-heading);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.content-page-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: top;
}

.content-page-table tbody tr:hover {
  background: var(--bg-secondary);
}

.content-page-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
  .content-page-table thead th,
  .content-page-table tbody td {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* ── Policy Search & Filter ────────────────── */
.policy-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.policy-search {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.policy-search input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-family: inherit;
  color: var(--text-heading);
  background: var(--bg-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.policy-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.policy-search input::placeholder {
  color: var(--text-muted);
}

.policy-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.policy-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
  white-space: nowrap;
}

.policy-count strong {
  color: var(--text-heading);
}

/* ── Category Switcher ─────────────────────── */
.category-switcher {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 4px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.category-switcher a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.category-switcher a:hover {
  color: var(--text-heading);
  background: var(--bg-primary);
}

.category-switcher a.active {
  background: var(--bg-primary);
  color: var(--text-heading);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

@media (max-width: 640px) {
  .category-switcher {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── Certification Badges ──────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.cert-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.cert-icon.blue { background: var(--accent-light); color: var(--accent-dark); }
.cert-icon.green { background: var(--green-light); color: var(--green); }
.cert-icon.purple { background: var(--purple-light); color: var(--purple); }
.cert-icon.amber { background: var(--amber-light); color: var(--amber); }

.cert-info strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-heading);
  margin-bottom: 2px;
}

.cert-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Security CTA Card ─────────────────────── */
.security-cta-card {
  background: linear-gradient(135deg, var(--accent-light), #EDE9FE);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-top: 32px;
}

.security-cta-card h2 {
  color: var(--text-heading) !important;
  margin-bottom: 8px !important;
}

.security-cta-card p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.security-cta-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Data Residency Callout ────────────────── */
.callout-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-md);
  margin: 16px 0;
}

.callout-box svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-box p {
  margin: 0 !important;
  font-size: var(--text-sm) !important;
  color: var(--text-heading) !important;
}

/* ============================================
   HELP CENTRE HUB
   ============================================ */
.help-hub-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.help-hub-search {
  max-width: 560px;
  margin: 24px auto 0;
  position: relative;
}

.help-hub-search input {
  width: 100%;
  padding: 12px 48px 12px 20px;
  font-size: var(--text-base);
  font-family: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  color: var(--text-body);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.help-hub-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.help-hub-search input::placeholder {
  color: var(--text-muted);
}

.help-hub-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.help-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

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

.help-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s;
}

.help-category-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.help-category-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}

.help-category-card h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.help-category-card > p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.help-category-links {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.help-category-links li {
  margin-bottom: 6px;
}

.help-category-links a {
  font-size: var(--text-sm);
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
  text-decoration: none;
}

.help-category-links a:hover {
  color: var(--accent);
}

.help-category-links a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.help-category-all {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap 0.15s;
}

.help-category-all:hover {
  gap: 8px;
}

.help-full-index {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.help-full-index-section {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-light);
}

.help-full-index-section:last-child {
  border-bottom: none;
}

.help-full-index-section h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.help-article-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.1s;
}

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

.help-article-item a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-heading);
  text-decoration: none;
  flex: 1;
  transition: color 0.15s;
}

.help-article-item a:hover {
  color: var(--accent);
}

.help-article-item .help-article-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.help-contact-strip {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin-top: 32px;
}

.help-contact-strip h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.help-contact-strip p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .help-hub-body {
    padding: 32px 20px 64px;
  }
  .help-full-index-section {
    padding: 20px;
  }
  .help-contact-strip {
    padding: 28px 20px;
  }
}

/* ============================================
   BLOG INDEX
   Light theme — matches main landing page
   ============================================ */
.blog-hero {
  padding: 140px 24px 48px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.blog-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.blog-hero p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.blog-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.blog-category-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.15s ease;
}

.blog-category-btn:hover,
.blog-category-btn.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.blog-card-image {
  width: 100%;
  height: 180px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.blog-card-image svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-muted);
  stroke-width: 1.5;
}

.blog-card-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog post hero image */
.blog-post-hero {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-card-category {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.blog-card-date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.blog-card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s ease;
}

.blog-card-link:hover {
  gap: 8px;
}

.blog-card-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

/* ============================================================
   Blog Post Page
   ============================================================ */
.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  margin: 104px 0 28px;
  transition: all 0.2s;
}
.blog-post-back:hover { color: var(--accent); gap: 12px; }
.blog-post-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.blog-post-article {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px;
  margin-bottom: 64px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.blog-post-tag {
  padding: 4px 12px;
  background: var(--accent-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.blog-post-article h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.blog-post-article h2 {
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 700;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.blog-post-article h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text-heading);
}

.blog-post-article p {
  margin: 14px 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-post-article strong { color: var(--text-heading); font-weight: 600; }

.blog-post-article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-post-article a:hover { opacity: 0.8; }

.blog-post-article ul,
.blog-post-article ol {
  margin: 14px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.blog-post-article li {
  margin: 8px 0;
  line-height: 1.7;
  font-size: 16px;
}

.blog-post-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 14px;
}

.blog-post-article th {
  background: var(--bg-secondary);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-heading);
  border-bottom: 1px solid var(--border-color);
}

.blog-post-article td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.blog-post-article tr:last-child td { border-bottom: none; }

.blog-post-highlight {
  background: var(--accent-light);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
}
.blog-post-highlight p { margin: 0; font-size: 15px; color: var(--text-secondary); }

.blog-post-cta {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  text-align: center;
}
.blog-post-cta h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 12px;
}
.blog-post-cta p { color: var(--text-secondary); margin-bottom: 24px; }

/* ---- Blog Category Page ---- */
.blog-cat-hero {
  padding: 120px 24px 48px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}
.blog-cat-hero h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.blog-cat-hero .lead {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.blog-cat-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

@media (max-width: 768px) {
  .blog-post-article { padding: 24px 20px; }
  .blog-post-back { margin-top: 80px; }
  .blog-cat-hero { padding: 96px 20px 40px; }
}

/* ============================================
   Landing Page Image Styles
   ============================================ */

/* ── Browser Mockup Frame ───────────────────────────────── */
.browser-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.06);
}

.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid #e2e8f0;
}

.browser-frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
}

.browser-frame-dot:nth-child(1) { background: #FCA5A5; }
.browser-frame-dot:nth-child(2) { background: #FDE68A; }
.browser-frame-dot:nth-child(3) { background: #86EFAC; }

.browser-frame-url {
  flex: 1;
  min-width: 0;
  margin-left: 8px;
  padding: 5px 12px;
  background: #F1F5F9;
  border-radius: 6px;
  font-size: 11px;
  color: #94A3B8;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.solution-browser-frame {
  margin-top: 16px;
  max-width: 360px;
}

/* Problem/Solution card preview images */
.card-preview-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
}

/* How It Works step screenshots — in browser frames */
.step-card .browser-frame {
  margin-bottom: 16px;
}

.step-screenshot {
  width: 100%;
  height: auto;
}

/* Capability card screenshots — in browser frames */
.capability-card .browser-frame {
  margin-top: 16px;
}

.cap-screenshot {
  width: 100%;
  height: auto;
}

/* Checklist capture row — form + preview side by side */
.checklist-capture-row {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}

.checklist-capture-row .checklist-form-card {
  flex: 1;
  max-width: 480px;
}

.checklist-preview {
  flex-shrink: 0;
}

.checklist-preview img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.checklist-preview img:hover {
  transform: translateY(-4px);
}

/* Wide capability cards with screenshots — keep image below text */
.capability-card.wide .browser-frame {
  max-width: 420px;
}

/* Standard capability card browser frames — constrain size */
.capability-card:not(.wide) .browser-frame {
  max-width: 400px;
}

/* Responsive: stack images on mobile */
@media (max-width: 768px) {
  .card-preview-img {
    max-width: 100%;
  }
  .checklist-capture-row {
    flex-direction: column;
    gap: 20px;
  }
  .checklist-preview {
    display: none;
  }
  .step-card .browser-frame {
    margin-bottom: 12px;
  }
  .browser-frame-bar {
    padding: 8px 10px;
    gap: 5px;
  }
  .browser-frame-dot {
    width: 8px;
    height: 8px;
  }
  .browser-frame-url {
    font-size: 10px;
    padding: 4px 10px;
  }
  .solution-card .browser-frame {
    max-width: 100%;
  }
}

/* Browser frame — small mobile */
@media (max-width: 480px) {
  .browser-frame-bar {
    padding: 6px 8px;
    gap: 4px;
  }
  .browser-frame-dot {
    width: 6px;
    height: 6px;
  }
  .browser-frame-url {
    font-size: 9px;
    padding: 3px 8px;
  }
}
