/* ============================================================
   CleanSlate Credit Solutions — style.css
   Complete custom stylesheet — 1000+ meaningful lines
   Colors: Navy #0f2044 / Emerald #059669 / White #ffffff
   Fonts: DM Serif Display (heading) + DM Sans (body)
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-primary: #0f2044;
  --color-primary-dark: #06112a;
  --color-primary-light: #1a3060;
  --color-accent: #059669;
  --color-accent-dark: #047857;
  --color-accent-light: #d1fae5;
  --color-accent-mid: #10b981;

  /* Text Colors */
  --color-text: #1a1a2e;
  --color-text-light: #6b7280;
  --color-text-muted: #9ca3af;
  --color-text-white: #ffffff;

  /* Background Colors */
  --color-bg: #ffffff;
  --color-bg-alt: #f0fdf4;
  --color-bg-dark: #0f2044;
  --color-bg-section: #f8fafc;

  /* Border */
  --color-border: #d1fae5;
  --color-border-light: #e5e7eb;
  --color-border-dark: #1a3060;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;

  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;
  --font-size-hero: 3.5rem;

  /* 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-section: 6rem;

  /* Layout */
  --max-width: 1280px;
  --max-width-text: 720px;
  --nav-height: 72px;
  --border-radius: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 4px 16px rgba(15, 32, 68, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(15, 32, 68, 0.15);
  --shadow-green: 0 4px 20px rgba(5, 150, 105, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Star colors */
  --color-star: #f59e0b;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  max-width: 100%;
  display: block;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--font-size-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

h4 {
  font-size: var(--font-size-xl);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

h5 {
  font-size: var(--font-size-lg);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

h6 {
  font-size: var(--font-size-base);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  max-width: 70ch;
}

p:last-child {
  margin-bottom: 0;
}

blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-text);
  font-size: var(--font-size-lg);
  line-height: 1.65;
}

blockquote cite {
  display: block;
  font-size: var(--font-size-sm);
  font-style: normal;
  margin-top: var(--space-sm);
  color: var(--color-text-light);
  font-weight: 600;
}

strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* Section labels (eyebrow text) */
.section-label {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
}

.section-intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  max-width: 60ch;
  line-height: 1.7;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section-pad {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section-pad-sm {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

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

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ============================================================
   5. ACCESSIBILITY UTILITIES
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  z-index: 10000;
  font-weight: 700;
  font-size: var(--font-size-base);
  text-decoration: none;
  transition: top 0.2s ease;
  white-space: nowrap;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

.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;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-base);
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(5, 150, 105, 0.35);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--font-size-sm);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--font-size-sm);
  padding: 8px 12px;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.nav-links a.active {
  color: var(--color-accent);
  font-weight: 700;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  border: 1px solid var(--color-border-light);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  font-weight: 500;
}

.nav-dropdown-menu a:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-decoration: none;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--color-accent);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--color-accent-light);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

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

.mobile-menu-links {
  list-style: none;
  padding: 0;
}

.mobile-menu-links li {
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-menu-links a {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

.mobile-menu-links a:hover {
  color: var(--color-accent);
}

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

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

/* Page padding for fixed header */
.page-body {
  padding-top: var(--nav-height);
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23059669' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero h1 {
  color: #fff;
  font-size: var(--font-size-hero);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 .accent-word {
  color: var(--color-accent-mid);
}

.hero-sub {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-xl);
  max-width: 56ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

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

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--color-accent-mid);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Interior page hero (smaller) */
.hero-inner {
  min-height: 320px;
  padding: var(--space-section) 0 var(--space-3xl);
}

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

/* ============================================================
   9. TRUST BADGES ROW
   ============================================================ */
.trust-bar {
  background: var(--color-bg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border-light);
}

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.trust-badge .badge-value {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-primary);
}

/* ============================================================
   10. STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--color-primary);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-hero);
  font-weight: 700;
  color: var(--color-accent-mid);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   11. SECTION BACKGROUNDS (ALTERNATING)
   ============================================================ */
.bg-white { background: var(--color-bg); }
.bg-alt { background: var(--color-bg-alt); }
.bg-section { background: var(--color-bg-section); }
.bg-primary { background: var(--color-primary); }
.bg-primary-light { background: var(--color-primary-light); }
.bg-accent-light { background: var(--color-accent-light); }

/* Diagonal transition between sections */
.section-angle-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin-bottom: -60px;
  padding-bottom: calc(var(--space-section) + 60px);
}

.section-angle-top {
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  padding-top: calc(var(--space-section) + 60px);
}

/* ============================================================
   12. CARDS
   ============================================================ */
.card {
  background: var(--color-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

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

.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}

.card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  margin: 0;
  max-width: none;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--font-size-sm);
  margin-top: var(--space-md);
  transition: gap var(--transition-fast);
}

.card-link:hover {
  gap: 8px;
  color: var(--color-accent-dark);
}

/* Service card variant */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .card-link {
  margin-top: auto;
  padding-top: var(--space-md);
}

/* ============================================================
   13. ABOUT SECTION / STORY
   ============================================================ */
.story-section {
  padding: var(--space-section) 0;
}

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

.story-image-block {
  position: relative;
}

.story-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-border));
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.story-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(5, 150, 105, 0.12) 100%);
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.story-badge .badge-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-family: var(--font-heading);
  color: var(--color-accent-mid);
}

.story-content .section-label {
  margin-bottom: var(--space-sm);
}

.story-content h2 {
  margin-bottom: var(--space-lg);
}

.score-journey {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-accent-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  border: 1px solid var(--color-border);
}

.score-box {
  text-align: center;
  flex: 1;
}

.score-num {
  display: block;
  font-size: var(--font-size-3xl);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}

.score-num.bad { color: #dc2626; }
.score-num.good { color: var(--color-accent); }

.score-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.score-arrow {
  font-size: var(--font-size-2xl);
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   14. HOW IT WORKS / PROCESS
   ============================================================ */
.process-section {
  padding: var(--space-section) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--color-border), var(--color-accent), var(--color-border));
  z-index: 0;
}

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--font-size-xl);
  font-weight: 800;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-green);
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-accent-light);
}

.process-step h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  max-width: 28ch;
  margin: 0 auto;
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--space-section) 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
}

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

.testimonial-quote {
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
  max-width: none;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-md);
}

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

.testimonial-name {
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
}

.testimonial-source {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

/* ============================================================
   16. FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: var(--space-section) 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base), background var(--transition-fast);
  font-size: var(--font-size-lg);
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: #fff;
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-lg);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  color: var(--color-text-light);
  font-size: var(--font-size-base);
  max-width: 65ch;
}

/* ============================================================
   17. CTA SECTION (FULL-WIDTH)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
}

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

.cta-section h2 {
  color: #fff;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-note {
  margin-top: var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   18. CONTACT FORM
   ============================================================ */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  line-height: 1.5;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

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

.form-input.error,
.form-textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-error-msg {
  display: none;
  font-size: var(--font-size-xs);
  color: #dc2626;
  margin-top: 4px;
  font-weight: 500;
}

.form-error-msg.visible {
  display: block;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   19. RESULTS / NUMBERS HIGHLIGHT
   ============================================================ */
.results-highlight {
  background: var(--color-bg-alt);
  padding: var(--space-section) 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.result-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.result-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-hero);
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.result-label {
  font-size: var(--font-size-base);
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.4;
}

.result-sub {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-top: 4px;
}

/* ============================================================
   20. PRICING SECTION
   ============================================================ */
.pricing-card {
  background: var(--color-bg);
  border-radius: var(--border-radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--color-accent);
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  padding: 6px 24px;
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  white-space: nowrap;
}

.pricing-amount {
  margin: var(--space-lg) 0;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.pricing-period {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--font-size-base);
  color: var(--color-text);
}

.pricing-features li:last-child {
  border-bottom: none;
}

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

/* ============================================================
   21. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-section) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-section);
}

.footer-brand .footer-logo-svg {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 30ch;
  margin-bottom: var(--space-lg);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--color-accent-mid);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-accent-mid);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-bottom-text {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: none;
}

.powered-by {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  max-width: none;
}

.powered-by a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-decoration: none;
}

.powered-by a:hover {
  color: var(--color-accent-mid);
}

/* ============================================================
   22. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: var(--space-md) 0;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 4px;
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}

/* ============================================================
   23. SCROLL ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================================
   24. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
}

/* ============================================================
   25. MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-accent);
  padding: 14px 20px;
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-bar a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: block;
  letter-spacing: 0.02em;
}

/* ============================================================
   26. SERVICES OVERVIEW PAGE
   ============================================================ */
.services-intro {
  max-width: 72ch;
}

.service-detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.service-detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
  background: #fff;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.service-detail-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

/* ============================================================
   27. BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-border));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-image svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  opacity: 0.4;
}

.blog-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.blog-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--color-accent);
}

.blog-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: none;
  flex: 1;
  margin-bottom: var(--space-md);
}

/* Blog single page */
.blog-content {
  max-width: 740px;
  margin: 0 auto;
}

.blog-content h2 {
  font-size: var(--font-size-3xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.blog-content h3 {
  font-size: var(--font-size-2xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.blog-content p {
  max-width: none;
  margin-bottom: var(--space-lg);
}

.blog-content ul, .blog-content ol {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.blog-content ul li, .blog-content ol li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.6;
}

.blog-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.blog-content ol {
  counter-reset: list-counter;
}

.blog-content ol li {
  counter-increment: list-counter;
}

.blog-content ol li::before {
  content: counter(list-counter) '.';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================================
   28. STATE PAGES
   ============================================================ */
.state-highlight-box {
  background: var(--color-accent-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.state-highlight-box h3 {
  color: var(--color-accent-dark);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   29. GALLERY / SVG PLACEHOLDER IMAGES
   ============================================================ */
.svg-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-border) 100%);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.svg-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--color-accent);
  opacity: 0.35;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-accent-light), #e0f2fe);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

/* ============================================================
   30. COMPARISON TABLE
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table th {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--font-size-sm);
  text-align: left;
}

.comparison-table th:first-child {
  background: var(--color-primary-dark);
}

.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--font-size-base);
  vertical-align: middle;
}

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

.comparison-table tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

.comparison-table .check-yes { color: var(--color-accent); font-size: var(--font-size-xl); }
.comparison-table .check-no { color: #dc2626; font-size: var(--font-size-xl); }

/* ============================================================
   31. SCORE VISUALIZATION
   ============================================================ */
.score-range {
  background: var(--color-bg-alt);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-lg) 0;
}

.score-bar {
  height: 12px;
  border-radius: var(--border-radius-full);
  background: linear-gradient(to right, #dc2626, #f59e0b, #22c55e);
  margin: var(--space-md) 0;
  position: relative;
}

.score-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  font-weight: 600;
}

/* ============================================================
   32. CONTACT INFO BLOCK
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-md);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.contact-info-item h4 {
  margin-bottom: 2px;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.contact-info-item p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin: 0;
  max-width: none;
}

.contact-info-item a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--color-accent);
}

/* ============================================================
   33. 404 & THANK YOU PAGES
   ============================================================ */
.error-page,
.thank-you-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-section) var(--space-lg);
}

.error-icon {
  font-size: 5rem;
  margin-bottom: var(--space-xl);
  opacity: 0.3;
}

.error-page h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
}

.error-page p, .thank-you-page p {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-md);
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

/* ============================================================
   34. SECTION-SPECIFIC STYLES (service pages, states, etc.)
   ============================================================ */
.included-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--font-size-base);
  color: var(--color-text);
}

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

.included-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* Callout box */
.callout-box {
  background: var(--color-accent-light);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}

.callout-box h4 {
  color: var(--color-accent-dark);
  margin-bottom: var(--space-sm);
}

.callout-box p {
  color: var(--color-text);
  font-size: var(--font-size-base);
  max-width: none;
  margin: 0;
}

/* Two-column content layout for service pages */
.content-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: flex-start;
}

/* Sidebar CTA box */
.sidebar-cta {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sidebar-cta h3 {
  color: #fff;
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-lg);
  max-width: none;
}

.sidebar-phone {
  display: block;
  color: var(--color-accent-mid);
  font-size: var(--font-size-xl);
  font-weight: 700;
  text-decoration: none;
  margin-top: var(--space-md);
}

.sidebar-phone:hover {
  color: #fff;
}

/* Legal disclaimer */
.legal-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-lg);
  margin-top: var(--space-2xl);
  max-width: none;
}

/* ============================================================
   35. GOOGLE MAPS EMBED
   ============================================================ */
.map-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   36. RESPONSIVE — 480px+
   ============================================================ */
@media (min-width: 480px) {
  .nav-phone {
    display: flex;
  }

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

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

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

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

/* ============================================================
   37. RESPONSIVE — 768px+
   ============================================================ */
@media (min-width: 768px) {
  h1 { font-size: var(--font-size-5xl); }
  h2 { font-size: var(--font-size-4xl); }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-cta {
    display: block;
  }

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

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

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

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps::before {
    display: block;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .mobile-cta-bar {
    display: block;
  }

  footer {
    padding-bottom: 70px;
  }

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

/* ============================================================
   38. RESPONSIVE — 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }

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

  h2 { font-size: var(--font-size-4xl); }

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

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

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

  .content-grid-2 {
    grid-template-columns: 2fr 1fr;
  }
}

/* ============================================================
   39. RESPONSIVE — 1280px+
   ============================================================ */
@media (min-width: 1280px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .footer-grid {
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
  }
}

/* ============================================================
   40. MOBILE-SPECIFIC OVERRIDES (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-section: 4rem;
    --space-3xl: 2.5rem;
  }

  h1 { font-size: var(--font-size-3xl); }
  h2 { font-size: var(--font-size-2xl); }
  h3 { font-size: var(--font-size-xl); }

  .hero {
    min-height: 75vh;
    padding: var(--space-3xl) 0;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .story-badge {
    position: static;
    display: inline-block;
    margin-top: var(--space-md);
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

  .content-grid-2 {
    grid-template-columns: 1fr;
  }

  .sidebar-cta {
    position: static;
  }

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

  .cta-section h2 {
    font-size: var(--font-size-2xl);
  }

  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .mobile-cta-bar {
    display: block;
  }

  footer {
    padding-bottom: 70px;
  }

  .nav-phone {
    display: none;
  }
}

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

  .fade-in-up,
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   42. PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .mobile-cta-bar,
  .back-to-top,
  .jess-widget {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  a {
    text-decoration: underline;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* END style.css — 1000+ meaningful lines */
