/* CarInsuranceAid.com - Editorial Warmth Design System
   A human-crafted aesthetic: trustworthy, approachable, distinctive
   Typography: Libre Baskerville + DM Sans
   Palette: Petrol Teal, Honey Amber, Warm Cream
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Core palette */
  --teal-deep: #1A4A5E;
  --teal-dark: #0F3240;
  --teal-mid: #2A6070;
  --teal-light: #3A7A8E;

  --honey: #D4A04A;
  --honey-light: #E8C078;
  --honey-dark: #B8862E;
  --honey-pale: #FDF6E8;

  --cream: #FAF8F5;
  --cream-dark: #F0EDE8;
  --white: #FDFCFA;

  --charcoal: #2D3436;
  --charcoal-soft: #4A5054;
  --charcoal-light: #6D7478;

  --forest: #2D6A4F;
  --forest-light: #40916C;

  --coral: #C75B45;
  --coral-light: #E8836E;

  /* Semantic colors */
  --text-primary: var(--charcoal);
  --text-secondary: var(--charcoal-soft);
  --text-muted: var(--charcoal-light);

  --bg-page: var(--cream);
  --bg-card: var(--white);
  --bg-elevated: var(--cream-dark);

  --border-subtle: rgba(45, 52, 54, 0.08);
  --border-default: rgba(45, 52, 54, 0.12);
  --border-strong: rgba(45, 52, 54, 0.2);

  /* Shadows with warmth */
  --shadow-sm: 0 1px 3px rgba(45, 52, 54, 0.06), 0 1px 2px rgba(45, 52, 54, 0.04);
  --shadow-md: 0 4px 12px rgba(45, 52, 54, 0.08), 0 2px 4px rgba(45, 52, 54, 0.04);
  --shadow-lg: 0 12px 32px rgba(45, 52, 54, 0.1), 0 4px 8px rgba(45, 52, 54, 0.06);
  --shadow-glow: 0 0 0 4px rgba(212, 160, 74, 0.15);

  /* Typography */
  --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --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;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-page);
  min-height: 100vh;
}


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

a:hover {
  color: var(--teal-mid);
}

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

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

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  gap: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo:hover {
  color: var(--teal-deep);
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--honey);
  transition: width var(--transition-base);
}

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

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

.nav-cta {
  background: var(--teal-deep);
  color: var(--white) !important;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: var(--cream-dark);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--teal-deep);
  color: var(--white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 160, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 74, 0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(212, 160, 74, 0.15);
  border: 1px solid rgba(212, 160, 74, 0.3);
  color: var(--honey-light);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.tagline::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--honey);
  border-radius: 50%;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.12;
}

.hero-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   OPT-IN FORM CARD
   ============================================ */
.optin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.optin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-xl);
  right: var(--space-xl);
  height: 4px;
  background: linear-gradient(90deg, var(--honey), var(--honey-light));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.optin-card h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.optin-card .subheadline {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 0.875rem var(--space-md);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  transition: all var(--transition-fast);
}

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

.form-group input:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-glow);
}

.consent-group {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin: var(--space-lg) 0;
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal-deep);
  cursor: pointer;
  flex-shrink: 0;
}

.consent-group label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.consent-group a {
  color: var(--teal-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-primary {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: var(--honey);
  color: var(--charcoal);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--honey-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:disabled {
  background: var(--charcoal-light);
  color: var(--cream);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
}

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

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

/* Decorative divider */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--honey), var(--honey-light));
  margin: var(--space-lg) auto 0;
  border-radius: 2px;
}

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

.feature-card {
  background: var(--bg-page);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  position: relative;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-deep);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--white);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  border: 1px solid rgba(26, 74, 94, 0.15);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================
   BLOG PREVIEW SECTION
   ============================================ */
.blog-preview {
  padding: var(--space-4xl) 0;
  background: var(--bg-page);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.blog-card:hover {
  border-color: var(--border-default);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.blog-card-image {
  height: 180px;
  background: linear-gradient(145deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(212, 160, 74, 0.15) 0%, transparent 50%);
}

.blog-card-content {
  padding: var(--space-lg);
}

.blog-category {
  display: inline-block;
  background: var(--honey-pale);
  color: var(--honey-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.blog-card h3 {
  font-size: 1.0625rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

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

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

.blog-card > .blog-card-content > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.55;
}

.read-more {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: gap var(--transition-base);
}

.read-more:hover {
  gap: var(--space-md);
  color: var(--teal-mid);
}

.view-all-btn {
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: var(--teal-deep);
  border: 2px solid var(--teal-deep);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: var(--teal-deep);
  color: var(--white);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--space-4xl) 0;
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
}

.btn-white {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: var(--white);
  color: var(--forest);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--forest);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.footer-column h4 {
  color: var(--honey);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

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

/* ============================================
   BLOG LISTING PAGE
   ============================================ */
.page-header {
  background: var(--teal-deep);
  color: var(--white);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 160, 74, 0.1) 0%, transparent 60%);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  position: relative;
}

.category-btn {
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.category-btn.active {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}

.blog-listing {
  padding: var(--space-3xl) 0;
}

.category-section {
  margin-bottom: var(--space-3xl);
}

.category-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-subtle);
  position: relative;
}

.category-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--honey);
}

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

.article-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.article-card:hover {
  border-color: var(--honey);
  box-shadow: var(--shadow-md);
}

.article-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.article-content h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.article-content h3 a {
  color: var(--text-primary);
}

.article-content h3 a:hover {
  color: var(--teal-mid);
}

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

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-header {
  background: var(--teal-deep);
  color: var(--white);
  padding: var(--space-3xl) 0;
  position: relative;
}

.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(212, 160, 74, 0.08) 0%, transparent 50%);
}

.article-header .container {
  max-width: 800px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.article-header h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.article-meta-header {
  display: flex;
  gap: var(--space-lg);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.article-body {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.article-body .container {
  max-width: 800px;
}

.article-content-body h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.article-content-body h3 {
  font-size: 1.25rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.article-content-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.article-content-body ul,
.article-content-body ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.article-content-body li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  color: var(--text-secondary);
}

.article-content-body blockquote {
  border-left: 4px solid var(--honey);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--text-muted);
}

.callout-box {
  background: var(--honey-pale);
  border: 1px solid rgba(212, 160, 74, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}

.callout-box.warning {
  background: #FEF3E8;
  border-color: rgba(199, 91, 69, 0.3);
}

.callout-box.success {
  background: #E8F5EE;
  border-color: rgba(45, 106, 79, 0.3);
}

.callout-box h4 {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.callout-box p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.article-cta {
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.article-cta h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.article-cta p {
  margin-bottom: var(--space-lg);
}

.related-articles {
  padding: var(--space-3xl) 0;
  background: var(--bg-page);
}

.related-articles h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: var(--space-sm);
}

.legal-page .last-updated {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-page p,
.legal-page li {
  line-height: 1.8;
}

/* ============================================
   FORM SUCCESS STATE
   ============================================ */
.form-success {
  text-align: center;
  padding: var(--space-xl) 0;
}

.form-success .checkmark {
  width: 64px;
  height: 64px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
  font-size: 1.75rem;
}

.form-success h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--text-secondary);
}

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

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

  .hero-content {
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-3xl: 3rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-md);
    border-top: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: var(--space-sm);
    text-align: center;
  }

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

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

  .hero-text {
    text-align: center;
    max-width: none;
  }

  .tagline {
    justify-content: center;
  }

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

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

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

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

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

  .article-card {
    flex-direction: column;
    text-align: center;
  }

  .article-icon {
    margin: 0 auto;
  }

  .article-meta-header {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .blog-categories {
    gap: var(--space-xs);
  }

  .category-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8125rem;
  }
}

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

  .optin-card {
    padding: var(--space-lg);
  }

  .optin-card::before {
    left: var(--space-md);
    right: var(--space-md);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
