/* ==========================================================================
   FLINN G EVANS — AI-READY JSON-LD SERVICES
   Performance-Optimized Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --color-bg: #0a0a0f;
  --color-bg-elevated: #12121a;
  --color-bg-card: rgba(18, 18, 26, 0.85);
  --color-bg-glass: rgba(255, 255, 255, 0.03);
  
  --color-text: #e8e8ed;
  --color-text-muted: #8a8a99;
  --color-text-subtle: #5a5a6e;
  
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-dark: #4f46e5;
  
  --color-accent: #22d3ee;
  --color-accent-secondary: #a78bfa;
  
  --color-success: #34d399;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.15);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
  --gradient-accent: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
  --gradient-text: linear-gradient(135deg, #22d3ee 0%, #818cf8 50%, #a78bfa 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(34, 211, 238, 0.2);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: var(--color-primary);
  color: white;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: rgba(99, 102, 241, 0.15);
  color: var(--color-accent);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
}

strong {
  font-weight: 600;
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   SKIP LINK (ACCESSIBILITY)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* --------------------------------------------------------------------------
   AMBIENT BACKGROUND (Static - No Animation for Performance)
   -------------------------------------------------------------------------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Static orbs - no animation, just ambient color */
.bg__orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.bg__orb--a {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(99, 102, 241, 0.08) 35%, transparent 65%);
  top: -300px;
  right: -300px;
}

.bg__orb--b {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, rgba(34, 211, 238, 0.06) 35%, transparent 65%);
  bottom: -250px;
  left: -250px;
}

.bg__orb--c {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, rgba(167, 139, 250, 0.07) 35%, transparent 65%);
  top: 40%;
  left: 45%;
}

.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --------------------------------------------------------------------------
   HEADER (No backdrop-filter for smooth scrolling)
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  /* Solid background instead of backdrop-filter for performance */
  background: rgba(10, 10, 15, 0.97);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: opacity var(--transition-fast);
}

.brand:hover {
  opacity: 0.85;
}

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  box-shadow: var(--shadow-glow);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.brand__sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-text);
  background: var(--color-bg-glass);
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn--primary:active {
  transform: translateY(0);
}

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

.btn--ghost:hover {
  background: var(--color-bg-glass);
  border-color: var(--color-border-hover);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Pill */
.pill {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

/* Hero Title */
.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

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

.hero__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

/* Stats */
.stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat__kpi {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary-light);
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Hero Panel */
.hero__panel {
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   CARDS
   -------------------------------------------------------------------------- */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition-base);
}

.card:hover {
  border-color: var(--color-border-hover);
}

.card--glow {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.card--glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-accent);
  opacity: 0.6;
}

.card__head {
  margin-bottom: var(--space-lg);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.card__sub {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.card__foot {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Ticks List */
.ticks {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ticks li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(52, 211, 153, 0.15);
  color: var(--color-success);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.fine {
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  text-align: center;
}

/* --------------------------------------------------------------------------
   TRUST STRIP
   -------------------------------------------------------------------------- */
.strip {
  padding: var(--space-xl) 0;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-primary-light);
  font-size: 1.125rem;
}

.strip__item strong {
  display: block;
  font-size: 0.9375rem;
}

.strip__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

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

/* --------------------------------------------------------------------------
   SECTIONS
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-4xl) 0;
}

.section--soft {
  background: var(--color-bg-elevated);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section__head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.section__head p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   GRIDS
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

/* --------------------------------------------------------------------------
   PANELS
   -------------------------------------------------------------------------- */
.panel {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.panel:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.panel h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.panel p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.panel--outline {
  background: transparent;
  border-style: dashed;
}

/* --------------------------------------------------------------------------
   LIST
   -------------------------------------------------------------------------- */
.list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.list li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

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

/* --------------------------------------------------------------------------
   CTA BOXES
   -------------------------------------------------------------------------- */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-3xl);
}

.cta--tight {
  margin-top: var(--space-xl);
}

.cta__copy {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   STEPS (PROCESS)
   -------------------------------------------------------------------------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.step__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.step__body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   PLACEHOLDER (FOR SCREENSHOTS)
   -------------------------------------------------------------------------- */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-top: var(--space-lg);
  background: var(--color-bg-glass);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-subtle);
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   PRICING
   -------------------------------------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 960px;
  margin: 0 auto;
}

.pricecard {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.pricecard:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.pricecard--featured {
  position: relative;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.pricecard--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricecard--featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
}

.pricecard__top {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.pricecard__top h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.pricecard .list {
  flex-grow: 1;
  margin-bottom: var(--space-xl);
}

/* --------------------------------------------------------------------------
   AUDIT SECTION
   -------------------------------------------------------------------------- */
.audit {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.audit--centered {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.audit__main {
  display: flex;
  flex-direction: column;
}

.audit__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.audit__content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.audit__content .ticks .tick {
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
}

.audit__side {
  position: sticky;
  top: 100px;
}

.audit__side h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.audit__side h3:not(:first-child) {
  margin-top: var(--space-lg);
}

.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-lg) 0;
}

/* --------------------------------------------------------------------------
   FORM
   -------------------------------------------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  transition: all var(--transition-fast);
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-subtle);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238a8a99' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

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

.faq details {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

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

.faq details[open] {
  border-color: var(--color-primary);
}

.faq summary {
  padding: var(--space-lg);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   MICRO CTA
   -------------------------------------------------------------------------- */
.microcta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  flex-wrap: wrap;
}

.microcta__copy {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Pricing section - full-width button */
#pricing .cta {
  display: block;
}

#pricing .cta .btn {
  width: 100%;
  height: 90%;
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.footer__links {
  display: flex;
  gap: var(--space-xl);
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .hero__panel {
    order: -1;
  }
  
  .pricing {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricecard--featured {
    transform: none;
    order: -1;
  }
  
  .pricecard--featured:hover {
    transform: translateY(-4px);
  }
  
  .audit,
  .audit--centered {
    grid-template-columns: 1fr;
  }
  
  .audit__side {
    position: static;
  }
}

@media (max-width: 768px) {
  .header__inner {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
  }
  
  .header__cta {
    margin-left: auto;
  }
  
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  
  .stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .strip__inner {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .strip__item {
    flex-direction: column;
    text-align: center;
  }
  
  .strip__divider {
    width: 60px;
    height: 1px;
  }
  
  .cta {
    flex-direction: column;
    text-align: center;
  }
  
  .form__row {
    grid-template-columns: 1fr;
  }
  
  .microcta {
    flex-direction: column;
  }
  
  .footer__inner {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .footer__links {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .brand__sub {
    display: none;
  }
  
  .nav__link {
    padding: var(--space-sm);
    font-size: 0.8125rem;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
}
