/**
 * US LLC Landing Page — Modern American SaaS Design System
 * Inspired by Stripe / Vercel / Linear aesthetic
 * Bold typography · Mesh gradients · Glassmorphism · Layered shadows
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Hero — Deep Navy with blue undertone */
  --color-navy-900: #090f1e;
  --color-navy-800: #0d1424;
  --color-navy-700: #131c30;
  --color-navy-600: #1a2540;
  --color-navy-500: #243352;
  --color-navy-400: #324a73;
  --color-navy-300: #5670a0;
  --color-navy-200: #8ba1c8;
  --color-navy-100: #c5d4e8;
  --color-navy-50:  #eef2f9;

  --color-white: #ffffff;
  --color-bg-dark-soft: #0d1424;

  /* Slate — Cool gray scale */
  --color-slate-50:  #F8FAFC;
  --color-slate-100: #F1F5F9;
  --color-slate-200: #E2E8F0;
  --color-slate-300: #CBD5E1;
  --color-slate-400: #94A3B8;
  --color-slate-500: #64748B;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1E293B;
  --color-slate-900: #0F172A;

  /* Brand — Vibrant electric blue */
  --color-blue-50:  #EFF6FF;
  --color-blue-100: #DBEAFE;
  --color-blue-200: #BFDBFE;
  --color-blue-300: #93C5FD;
  --color-blue-400: #60A5FA;
  --color-blue-500: #3B82F6;
  --color-blue-600: #2563EB;
  --color-blue-700: #1D4ED8;
  --color-blue-800: #1E40AF;

  /* Accent — Cyan for gradient pairs */
  --color-cyan-400: #60A5FA;
  --color-cyan-500: #3B82F6;
  --color-cyan-600: #2563EB;

  /* Accent — Indigo for depth (mapped to blue for unified palette) */
  --color-indigo-400: #60A5FA;
  --color-indigo-500: #3B82F6;
  --color-indigo-600: #2563EB;

  /* Legacy variable mapping (compatibility with component CSS) */
  --color-ivory:      #FFFFFF;
  --color-ivory-deep: #F8FAFC;
  --color-cream:      #FFFFFF;
  --color-espresso:   var(--color-slate-900);
  --color-taupe-900:  var(--color-slate-900);
  --color-taupe-700:  var(--color-slate-600);
  --color-taupe-500:  var(--color-slate-500);
  --color-taupe-300:  var(--color-slate-300);
  --color-taupe-100:  var(--color-slate-200);
  --color-taupe-50:   var(--color-slate-50);

  --color-champagne:     var(--color-blue-600);
  --color-champagne-hi:  var(--color-blue-400);
  --color-champagne-lo:  var(--color-blue-700);
  --color-champagne-bg:  var(--color-blue-50);
  --color-champagne-line: var(--color-blue-200);

  /* Semantic */
  --color-bg-primary:   var(--color-white);
  --color-bg-surface:   var(--color-white);
  --color-bg-secondary: var(--color-white);
  --color-bg-dark:      var(--color-navy-900);

  --color-text-primary:   var(--color-slate-900);
  --color-text-secondary: var(--color-slate-600);
  --color-text-muted:     var(--color-slate-400);
  --color-text-inverse:   var(--color-white);
  --color-text-inverse-muted: var(--color-slate-400);

  --color-accent:       var(--color-blue-600);
  --color-accent-hover: var(--color-blue-700);
  --color-accent-light: var(--color-blue-50);
  --color-accent-cyan:  var(--color-cyan-500);

  --color-border:       var(--color-slate-200);
  --color-border-dark:  var(--color-slate-300);

  --color-success: var(--color-blue-500);
  --color-error:   #EF4444;
  --color-warning: #F59E0B;

  /* Typography — Modern geometric sans */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'Plus Jakarta Sans', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 960px;

  /* Radius — Modern, generous */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows — Layered, colored, modern */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03), 0 0 0 1px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.03);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 32px rgba(37, 99, 235, 0.15), 0 0 64px rgba(37, 99, 235, 0.08);
  --shadow-glow-cyan: 0 0 32px rgba(37, 99, 235, 0.15);
  --shadow-blue: 0 8px 24px rgba(37, 99, 235, 0.12);
  --shadow-blue-lg: 0 12px 40px rgba(37, 99, 235, 0.18);

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #1D4ED8 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(29, 78, 216, 0.08) 100%);
  --gradient-text: linear-gradient(135deg, #2563EB 0%, #3B82F6 40%, #1D4ED8 100%);
  --gradient-dark: linear-gradient(180deg, #090f1e 0%, #0d1424 50%, #090f1e 100%);
  --gradient-card-hover: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(29, 78, 216, 0.03) 100%);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Header height */
  --header-height: 72px;

  /* Section label */
  --label-line-width: 32px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-variant-emoji: text;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  overflow-x: hidden;
  letter-spacing: -0.011em;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* Selection */
::selection {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-blue-700);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-slate-100);
}
::-webkit-scrollbar-thumb {
  background: var(--color-slate-300);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-slate-400);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
}

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

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

/* ============================================
   TYPOGRAPHY — Bold, confident, modern
   ============================================ */
.heading-1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
}

.heading-2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.heading-3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
}

.heading-4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

.body-large {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  font-weight: var(--weight-normal);
}

.body-small {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-text-muted);
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS — Pill-shaped, gradient, glow
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.005em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
  isolation: isolate;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #1E40AF 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg), var(--shadow-glow);
  color: var(--color-white);
}

.btn-primary:hover::before {
  opacity: 1;
}

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

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text-primary);
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-blue-300);
  color: var(--color-blue-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-slate-900);
  border: 1px solid var(--color-slate-200);
}

.btn-light:hover {
  background: var(--color-slate-50);
  border-color: var(--color-slate-300);
}

.btn-dark {
  background: var(--color-slate-900);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-slate-800);
  transform: translateY(-1px);
}

.btn-large {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

.btn-block {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
}

.badge-gold {
  background: var(--color-blue-50);
  color: var(--color-blue-700);
  border: 1px solid var(--color-blue-100);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: var(--space-24) 0;
  background: var(--color-bg-primary);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}

.section-header h2 {
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
}

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

/* Eyebrow label above section titles */
.section-header::before {
  content: '';
  display: block;
  width: var(--label-line-width);
  height: 3px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-5);
}

.section-dark {
  background: var(--color-white);
  color: var(--color-text-primary);
}

.section-dark .section-header h2 {
  color: var(--color-text-primary);
}

.section-dark .section-header p {
  color: var(--color-text-secondary);
}

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

/* ============================================
   HEADER & NAVIGATION — Glassmorphism
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

/* Subpage header — always solid white background with dark text */
.site-header-solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(226, 232, 240, 0.6);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.site-header-solid .brand {
  color: var(--color-slate-900);
}

.site-header-solid .lang-switch {
  border-color: var(--color-slate-200);
  background: var(--color-white);
}

.site-header-solid .lang-switch a {
  color: var(--color-slate-400);
}

.site-header-solid .lang-switch a.active,
.site-header-solid .lang-switch a:hover {
  background: var(--color-slate-900);
  color: var(--color-white);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-base);
  letter-spacing: -0.02em;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-md);
  background: #E6B800;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
  flex-shrink: 0;
}

.site-header.scrolled .brand {
  color: var(--color-slate-900);
}

.brand span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  letter-spacing: -0.005em;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-actions-inline {
  margin-left: auto;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  transition: border-color var(--transition-base);
  backdrop-filter: blur(8px);
}

.site-header.scrolled .lang-switch {
  border-color: var(--color-slate-200);
  background: var(--color-white);
}

.lang-switch a {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.site-header.scrolled .lang-switch a {
  color: var(--color-slate-400);
}

.lang-switch a.active,
.lang-switch a:hover {
  background: var(--color-white);
  color: var(--color-slate-900);
}

.site-header.scrolled .lang-switch a.active,
.site-header.scrolled .lang-switch a:hover {
  background: var(--color-slate-900);
  color: var(--color-white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.site-header.scrolled .mobile-toggle span {
  background: var(--color-slate-900);
}

/* ============================================
   HERO SECTION — Mesh gradient, glow, grid
   ============================================ */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  color: var(--color-text-inverse);
  overflow: hidden;
  padding-top: var(--header-height);
  padding-bottom: var(--space-12);
}

/* Animated mesh gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(37, 99, 235, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse 40% 35% at 70% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse 45% 40% at 30% 75%, rgba(37, 99, 235, 0.12) 0%, transparent 45%);
  animation: meshMove 20s ease-in-out infinite alternate;
}

@keyframes meshMove {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.05) translate(-1%, 1%); }
  100% { transform: scale(1) translate(1%, -1%); }
}

/* Dot grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

/* Glow orb */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-blue-300);
  margin-bottom: var(--space-5);
  max-width: 100%;
  font-weight: var(--weight-medium);
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-blue-400);
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.hero h1 .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-slate-300);
  margin-bottom: var(--space-8);
  font-weight: var(--weight-normal);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
  color: var(--color-blue-300);
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(96, 165, 250, 0.08);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.hero-trust-label {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
}

.hero-trust-logos {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  opacity: 0.5;
}

.trust-logo {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-slate-400);
  letter-spacing: 0.02em;
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  box-shadow: var(--shadow-blue);
}

.hero-card-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
}

.hero-card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-slate-400);
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-slate-300);
}

.hero-feature-item .check {
  width: 20px;
  height: 20px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-success);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

/* Hero Card — Status badge */
.hero-card-badge {
  margin-left: auto;
  padding: var(--space-1) var(--space-3);
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-blue-300);
  white-space: nowrap;
}

/* Hero Card — Progress tracker */
.hero-progress-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero-progress-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.hero-progress-check {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.hero-progress-item.done .hero-progress-check {
  background: var(--color-blue-500);
  color: var(--color-white);
  border: 1px solid var(--color-blue-400);
}

.hero-progress-item.active .hero-progress-check {
  background: rgba(37, 99, 235, 0.2);
  color: var(--color-blue-400);
  border: 1px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.hero-progress-item.pending .hero-progress-check {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-slate-500);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-progress-info {
  flex: 1;
  min-width: 0;
}

.hero-progress-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-slate-200);
  margin-bottom: var(--space-2);
}

.hero-progress-item.pending .hero-progress-name {
  color: var(--color-slate-500);
}

.hero-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-progress-item.done .hero-progress-fill {
  background: var(--color-blue-500);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.35);
}

.hero-progress-item.active .hero-progress-fill {
  background: var(--gradient-brand);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

.hero-progress-status {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-slate-400);
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 32px;
  text-align: right;
}

.hero-progress-item.done .hero-progress-status {
  color: var(--color-blue-400);
}

.hero-progress-item.active .hero-progress-status {
  color: var(--color-blue-400);
}

/* Hero Card — Footer */
.hero-card-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-eta {
  font-size: var(--text-xs);
  color: var(--color-slate-400);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-card-eta::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-blue-400);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-10) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-1);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.pain-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

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

.pain-icon {
  width: 48px;
  height: 48px;
  background: var(--color-blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.pain-card p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* Pain Split */
.pain-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.pain-col {
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  background: var(--color-bg-surface);
}

.pain-col-left {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
}

.pain-col-right {
  background: var(--gradient-brand-soft);
  border: 1px solid var(--color-blue-100);
}

.pain-col-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  letter-spacing: -0.02em;
}

.pain-col-left .pain-col-title {
  color: var(--color-slate-600);
}

.pain-col-right .pain-col-title {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.pain-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pain-icon-cross {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  color: var(--color-slate-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.pain-icon-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
  box-shadow: var(--shadow-blue);
}

/* ============================================
   PAIN POINTS — 2026 Policy Changes & Document Checklist
   ============================================ */

/* Part A: policy changes card */
.pain-policy {
  max-width: 880px;
  margin: 0 auto;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-error);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-sm);
}

.pain-block-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  letter-spacing: -0.02em;
}

.pain-block-title--center {
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.pain-policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pain-policy-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.pain-policy-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pain-policy-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
}

/* CSS-styled ✕ icon (warning / blocked) */
.pain-x-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--color-error);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

/* Transition guiding copy */
.pain-transition {
  text-align: center;
  margin: var(--space-12) auto;
  max-width: 760px;
}

.pain-transition-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: var(--leading-snug);
}

/* Part B: 6 document checklist */
.pain-doc-head {
  text-align: center;
  margin-bottom: var(--space-10);
}

.pain-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 980px;
  margin: 0 auto;
}

.pain-doc-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.pain-doc-card:hover {
  border-color: var(--color-blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* CSS-styled numbered badge */
.doc-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  box-shadow: var(--shadow-blue);
}

.pain-doc-text {
  font-size: var(--text-base);
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
  font-weight: var(--weight-medium);
}

/* ============================================
   STATE COMPARISON
   ============================================ */
.state-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.state-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.state-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.state-card:hover::before {
  transform: scaleX(1);
}

.state-flag {
  width: 48px;
  height: 48px;
  background: var(--color-slate-900);
  color: var(--color-white);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.state-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.state-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.state-best {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-blue-700);
  background: var(--color-blue-50);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  display: inline-block;
}

/* ============================================
   ADVANTAGES
   ============================================ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.adv-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

.adv-icon {
  width: 56px;
  height: 56px;
  background: var(--color-blue-50);
  border: 1px solid var(--color-blue-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin: 0 auto var(--space-5);
  transition: all var(--transition-base);
}

.adv-card:hover .adv-icon {
  background: var(--gradient-brand);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
  transform: scale(1.05);
}

.adv-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.adv-card p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-blue-200), transparent);
  z-index: 0;
}

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

.step-num {
  width: 64px;
  height: 64px;
  background: var(--color-bg-surface);
  border: 2px solid var(--color-blue-200);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto var(--space-5);
  transition: all var(--transition-base);
}

.process-step:hover .step-num {
  border-color: var(--color-blue-500);
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================
   DOCUMENTS
   ============================================ */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: all var(--transition-base);
}

.doc-item:hover {
  border-color: var(--color-blue-200);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.doc-item .doc-check {
  width: 24px;
  height: 24px;
  background: var(--color-blue-600);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

/* ============================================
   DELIVERABLES — 7 Document Package
   ============================================ */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.deliv-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
}

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

/* File icon container — emoji stays native (does not recolor) */
.deliv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--color-blue-50);
  border: 1px solid var(--color-blue-100);
  border-radius: var(--radius-lg);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  transition: all var(--transition-base);
}

.deliv-card:hover .deliv-icon {
  transform: scale(1.06);
  box-shadow: var(--shadow-blue);
}

.deliv-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.deliv-use {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================
   EIN & BANKING
   ============================================ */
.ein-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.ein-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.ein-card:hover {
  border-color: var(--color-blue-200);
  box-shadow: var(--shadow-lg);
}

.ein-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-4);
  color: var(--color-slate-900);
  letter-spacing: -0.01em;
}

.ein-card p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================
   COMPLIANCE
   ============================================ */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.comp-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.comp-card:hover {
  border-color: var(--color-blue-200);
  box-shadow: var(--shadow-md);
}

.comp-icon {
  width: 56px;
  height: 56px;
  background: var(--color-slate-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  margin: 0 auto var(--space-4);
}

.comp-card h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.comp-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================
   COMPANY TYPE COMPARISON TABLE
   ============================================ */
.compare-table-wrap {
  overflow-x: auto;
  margin-top: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
  min-width: 600px;
}

.compare-table thead th {
  background: var(--color-slate-900);
  color: var(--color-white);
  padding: var(--space-5) var(--space-4);
  text-align: left;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}

.compare-table thead th.compare-col-llc {
  border-bottom: 3px solid var(--color-blue-500);
}

.compare-table thead th.compare-col-ccorp {
  border-bottom: 3px solid var(--color-blue-400);
}

.compare-table tbody td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: var(--leading-normal);
}

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

.compare-table tbody tr:hover td {
  background: var(--color-slate-50);
}

.compare-dim {
  font-weight: var(--weight-semibold);
  color: var(--color-slate-600);
  background: var(--color-slate-50);
  white-space: nowrap;
  font-size: var(--text-sm);
}

.compare-highlight {
  color: var(--color-blue-700);
  font-weight: var(--weight-semibold);
}

.compare-tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.compare-tip {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.compare-tip-llc {
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
}

.compare-tip-ccorp {
  background: var(--gradient-brand-soft);
  border: 1px solid var(--color-blue-100);
}

.compare-tip-badge {
  flex-shrink: 0;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  background: var(--color-slate-900);
}

.compare-tip-ccorp .compare-tip-badge {
  background: var(--gradient-brand);
}

.compare-tip p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

/* ============================================
   PROCESS GRID — 6 STEPS
   ============================================ */
.process-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.process-grid-6 .process-step {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
}

.process-grid-6 .process-step:hover {
  border-color: var(--color-blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ============================================
   PROCESS TABLE — 6 STEPS (3-COLUMN)
   ============================================ */
.process-table-wrap {
  margin-top: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-surface);
  overflow: hidden;
}

.process-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.process-table thead th {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}

.process-table thead th.col-step-head {
  width: 42%;
}

.process-table thead th.col-we-head {
  width: 58%;
}

.process-table tbody td {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  line-height: var(--leading-normal);
}

.process-table tbody tr:nth-child(odd) td {
  background: var(--color-white);
}

.process-table tbody tr:nth-child(even) td {
  background: var(--color-slate-50);
}

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

.process-table tbody tr:hover td {
  background: var(--color-blue-50);
}

/* Step number badge — override base .step-num for table context */
.process-table .step-cell {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.process-table .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  border: none;
  -webkit-text-fill-color: var(--color-white);
  color: var(--color-white);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  margin: 0;
  box-shadow: var(--shadow-blue);
  transition: transform var(--transition-base);
}

.process-table tbody tr:hover .step-num {
  transform: scale(1.1);
}

.process-table .step-title {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  color: var(--color-slate-900);
}

.process-table .col-we {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.process-table .col-you {
  color: var(--color-blue-700);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
}

/* Process table — mobile card-style */
@media (max-width: 768px) {
  .process-table thead {
    display: none;
  }

  .process-table,
  .process-table tbody,
  .process-table tr,
  .process-table td {
    display: block;
    width: 100%;
  }

  .process-table tbody tr {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--color-white) !important;
  }

  .process-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .process-table tbody td {
    border: none;
    padding: var(--space-3) 0;
    background: transparent !important;
  }

  .process-table tbody td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
  }

  .process-table td:first-child {
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-2);
  }

  .process-table td:first-child::before {
    display: none;
  }
}

/* ============================================
   STATE COMPARISON TABLE — 4 STATES (5-COLUMN)
   ============================================ */
.state-table-wrap {
  margin-top: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-surface);
  overflow: hidden;
}

.state-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.state-table thead th {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: var(--space-5) var(--space-4);
  text-align: left;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.state-table thead th:first-child {
  padding-left: var(--space-6);
}

.state-table thead th:last-child {
  padding-right: var(--space-6);
}

.state-table tbody td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.state-table tbody td:first-child {
  padding-left: var(--space-6);
}

.state-table tbody td:last-child {
  padding-right: var(--space-6);
}

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

.state-table tbody tr:hover td {
  background: var(--color-slate-50);
}

.state-table .state-name {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  color: var(--color-slate-900);
  white-space: nowrap;
}

.state-table .state-tax {
  white-space: nowrap;
}

/* 0% tax — blue highlight bold */
.state-table .tax-zero {
  color: var(--color-blue-600);
  font-weight: var(--weight-bold);
}

/* $800 franchise tax — red/orange warning */
.state-table .tax-warn {
  color: var(--color-error);
  font-weight: var(--weight-semibold);
}

/* Weak CTA link */
.state-cta-wrap {
  margin-top: var(--space-6);
}

.state-cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-blue-600);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  text-decoration: none;
  transition: color var(--transition-base), gap var(--transition-base);
}

.state-cta-link:hover {
  color: var(--color-blue-700);
  gap: var(--space-3);
}

.state-cta-link .arrow {
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.state-cta-link:hover .arrow {
  transform: translateX(3px);
}

/* State table — mobile horizontal scroll */
@media (max-width: 768px) {
  .state-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .state-table {
    min-width: 680px;
  }

  .state-table thead th,
  .state-table tbody td {
    font-size: var(--text-sm);
  }
}

/* ============================================
   FEE TRANSPARENCY
   ============================================ */
.fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.fee-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
}

.fee-card-service {
  border-color: var(--color-blue-200);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.fee-card-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.fee-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-slate-900);
  letter-spacing: -0.01em;
}

.fee-card-service .fee-card-title {
  border-bottom-color: var(--color-blue-100);
}

.fee-gov-list {
  margin-bottom: var(--space-4);
}

.fee-gov-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.fee-gov-item:last-child {
  border-bottom: none;
}

.fee-gov-state {
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
}

.fee-gov-fee {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-slate-600);
  font-weight: var(--weight-semibold);
}

.fee-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-top: var(--space-3);
}

.fee-service-item {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.fee-service-item:last-of-type {
  border-bottom: none;
}

.fee-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
}

.fee-service-name {
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  font-size: var(--text-base);
}

.fee-service-fee {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--text-xl);
}

.fee-quote-link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-4);
  border: 1.5px solid var(--color-accent);
  border-radius: 999px;
  text-decoration: none;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}

.fee-quote-link:hover {
  background: var(--color-accent);
  -webkit-text-fill-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.fee-service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.fee-guarantee-box {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--color-blue-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-blue-100);
}

.fee-guarantee-title {
  font-weight: var(--weight-bold);
  color: var(--color-blue-700);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.fee-guarantee-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.fee-cta-wrap {
  margin-top: var(--space-10);
  text-align: center;
}

/* ============================================
   COMPLIANCE ALERT
   ============================================ */
.compliance-alert-section {
  background: var(--color-bg-secondary);
}

.compliance-alert-section .section-header h2 {
  color: var(--color-warning);
}

.compliance-alert-section .section-header p {
  color: var(--color-text-secondary);
}

.alert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.alert-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-base);
}

.alert-card:hover {
  border-color: var(--color-slate-300);
  border-left-color: var(--color-blue-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.alert-number {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-slate-100);
  line-height: 1;
}

.alert-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-slate-900);
  margin-bottom: var(--space-3);
  padding-right: var(--space-10);
  letter-spacing: -0.01em;
}

.alert-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ============================================
   PRICING (legacy)
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--color-blue-300);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: scale(1.02);
  z-index: 2;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-blue-50);
  letter-spacing: -0.01em;
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-6);
  min-height: 2.5em;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.pricing-feature .check {
  width: 20px;
  height: 20px;
  background: var(--color-blue-50);
  color: var(--color-blue-600);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

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

.testimonial-stars {
  color: var(--color-warning);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-white);
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.faq-item.active {
  border-color: var(--color-blue-300);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  transition: color var(--transition-fast);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-4);
  color: var(--color-blue-500);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================
   CTA / CONTACT SECTION — Redesigned
   Left: contact cards  |  Right: lead form
   ============================================ */
.cta-section {
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 50% at 15% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 90% 80%, rgba(29, 78, 216, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* ---- Two-column layout ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--space-12);
  position: relative;
  z-index: 1;
  align-items: stretch;
}

/* ---- Left column: intro + cards ---- */
.contact-cards-col {
  padding-top: var(--space-2);
  display: flex;
  flex-direction: column;
}

.contact-intro {
  margin-bottom: var(--space-8);
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

.contact-intro p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ---- Contact card list ---- */
.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

/* Colored left bar — accent per channel */
.contact-card-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-blue-500);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  transition: width var(--transition-base);
}

.contact-card:hover,
.contact-card--link:hover {
  border-color: var(--color-blue-200);
  box-shadow: var(--shadow-md);
  transform: translateX(2px);
}

.contact-card:hover .contact-card-bar {
  width: 6px;
}

/* Icon circles — distinct tint per channel */
.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: transform var(--transition-base);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.08);
}

.contact-card-icon--phone {
  background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.contact-card-icon--chat {
  background: linear-gradient(135deg, #1D4ED8, #2563EB);
}

.contact-card-icon--mail {
  background: linear-gradient(135deg, #2563EB, #60A5FA);
}

/* Card text */
.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact-card-value {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  word-break: break-all;
}

.contact-card-sub {
  font-size: var(--text-xs);
  color: var(--color-blue-600);
  margin-top: 2px;
  font-weight: var(--weight-medium);
}

/* Footer text below cards */
.contact-footer-text {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border);
}

/* ---- Right column: form card ---- */
.contact-form-col {
  position: relative;
  display: flex;
}

.contact-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8) var(--space-8);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Top gradient accent strip */
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

/* Form header */
.contact-form-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.contact-form-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.contact-form-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.form-group {
  margin-bottom: var(--space-3);
}

.contact-form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
  color: var(--color-text-secondary);
}

.form-group .req {
  color: var(--color-error);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--color-text-primary);
  background: var(--color-slate-50);
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue-500);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

/* Submit button */
.contact-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-4);
  background: var(--gradient-brand);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-blue);
  margin-top: var(--space-2);
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
}

.contact-form-submit:active {
  transform: translateY(0);
}

.contact-form-submit svg {
  transition: transform var(--transition-base);
}

.contact-form-submit:hover svg {
  transform: translateX(3px);
}

.contact-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form message (success/error) */
.form-msg {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  display: none;
}

.form-msg.ok {
  display: block;
  background: rgba(59, 130, 246, 0.08);
  color: var(--color-blue-600);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-msg.err {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-blue-600);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Privacy text */
.contact-form-privacy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-3);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.contact-form-privacy a {
  color: var(--color-blue-600);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-white);
  color: var(--color-slate-600);
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
  border-top: 1px solid var(--color-slate-200);
}

.site-footer .container {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
}

.footer-brand-col {
  max-width: 360px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-slate-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-brand span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-slate-500);
  margin-bottom: var(--space-6);
}

/* Contact list in footer */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-slate-600);
  transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--color-blue-600);
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  color: var(--color-slate-500);
  transition: all var(--transition-fast);
}

.footer-contact-list a:hover .footer-contact-icon {
  background: var(--color-blue-50);
  border-color: var(--color-blue-200);
  color: var(--color-blue-600);
}

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-slate-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-slate-600);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-blue-600);
}

.footer-bottom {
  border-top: 1px solid var(--color-slate-200);
  padding-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: center;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--color-slate-500);
}

.footer-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-slate-600);
  line-height: var(--leading-relaxed);
}

.footer-links {
  font-size: var(--text-xs);
  color: var(--color-slate-500);
  text-align: center;
}

.footer-links a {
  color: var(--color-slate-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-blue-600);
}

/* ============================================
   CHATBOT WIDGET
   ============================================ */
.chatbot-widget {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 9999;
  font-family: var(--font-sans);
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  background: var(--gradient-brand);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  box-shadow: var(--shadow-blue-lg), var(--shadow-glow);
  transition: all var(--transition-base);
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-blue-lg), var(--shadow-glow), var(--shadow-glow-cyan);
}

.chatbot-toggle .notification {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: var(--color-error);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

.chatbot-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all var(--transition-base);
}

.chatbot-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  background: var(--color-slate-900);
  color: var(--color-white);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.chatbot-header-text h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.chatbot-header-text span {
  font-size: var(--text-xs);
  color: var(--color-slate-400);
}

.chatbot-close {
  color: var(--color-slate-400);
  font-size: var(--text-xl);
  padding: var(--space-1);
  transition: color var(--transition-fast);
}

.chatbot-close:hover {
  color: var(--color-white);
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.chat-message {
  max-width: 85%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  animation: messageIn 0.3s ease;
}

.chat-message.bot {
  align-self: flex-start;
  background: var(--color-slate-100);
  color: var(--color-text-primary);
  border-bottom-left-radius: var(--space-1);
}

.chat-message.user {
  align-self: flex-end;
  background: var(--gradient-brand);
  color: var(--color-white);
  border-bottom-right-radius: var(--space-1);
}

.chat-typing {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.chat-typing-dots {
  display: flex;
  gap: 4px;
}

.chat-typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--color-text-muted);
  border-radius: var(--radius-full);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0 var(--space-4);
  margin-bottom: var(--space-3);
}

.chatbot-quick-replies button {
  padding: var(--space-1) var(--space-3);
  background: var(--color-slate-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.chatbot-quick-replies button:hover {
  background: var(--color-blue-50);
  border-color: var(--color-blue-300);
  color: var(--color-blue-700);
}

.chatbot-footer {
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-2);
}

.chatbot-footer input {
  flex: 1;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  transition: border-color var(--transition-fast);
}

.chatbot-footer input:focus {
  outline: none;
  border-color: var(--color-blue-500);
}

.chatbot-send {
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.chatbot-send:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-blue);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

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

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

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

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --text-7xl: 3.5rem;
    --text-6xl: 2.75rem;
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
  }

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

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

  .hero-visual {
    display: none;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .state-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand-col {
    max-width: none;
  }

  .pain-doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --text-7xl: 2.5rem;
    --text-6xl: 2.25rem;
    --text-5xl: 1.875rem;
    --text-4xl: 1.625rem;
    --text-3xl: 1.375rem;
    --space-24: 4rem;
    --space-20: 3rem;
    --space-16: 2.5rem;
    --header-height: 64px;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .hero-description {
    font-size: var(--text-base);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .pain-grid,
  .adv-grid,
  .process-grid,
  .doc-grid,
  .ein-grid,
  .pricing-grid,
  .testimonials-grid,
  .pain-doc-grid,
  .deliv-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .chatbot-panel {
    width: calc(100vw - var(--space-8));
    right: calc(-1 * var(--space-4));
    max-height: 60vh;
  }

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

  .pain-split {
    grid-template-columns: 1fr;
  }

  .compare-tips {
    grid-template-columns: 1fr;
  }

  .process-grid-6 {
    grid-template-columns: 1fr;
  }

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

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

  .compare-table {
    font-size: var(--text-sm);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .pricing-card.featured {
    transform: none;
  }

  .contact-form-card {
    padding: var(--space-6);
  }

  .contact-intro h2 {
    font-size: var(--text-2xl);
  }

  .hero h1 {
    font-size: var(--text-4xl);
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.mobile-menu-links a {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ============================================
   PRIVACY / TERMS PAGES
   ============================================ */
.page-content {
  padding-top: calc(var(--header-height) + var(--space-12));
  padding-bottom: var(--space-24);
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.page-content p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.page-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.page-content li {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}
