/* ============================================================
   FISHER'S FORESTRY & LAND MANAGEMENT
   Design System & Complete Styles
   ============================================================ */

/* --- Google Fonts loaded in HTML head:
   Headings: "Outfit" (bold geometric sans)
   Body: "DM Sans" (clean, warm, modern)
   Accent: "Playfair Display" (editorial flair for taglines)
--- */

:root {
  /* Color Palette - Earthy, Professional, Forest-Inspired */
  --forest-900: #1a2e1a;
  --forest-800: #1e3a1e;
  --forest-700: #24472a;
  --forest-600: #2d5a34;
  --forest-500: #3a7043;
  --forest-400: #4a8a54;
  --forest-300: #6aad6e;
  --forest-200: #a3d4a3;
  --forest-100: #d4edd4;
  --forest-50:  #edf7ed;

  --earth-900: #3e2723;
  --earth-800: #4e342e;
  --earth-700: #5d4037;
  --earth-600: #6d4c41;
  --earth-500: #795548;
  --earth-400: #8d6e63;
  --earth-300: #a1887f;
  --earth-200: #d7ccc8;
  --earth-100: #efebe9;

  --gold-500: #c8a94e;
  --gold-400: #d4b85a;
  --gold-300: #e0c96d;

  --neutral-950: #0f0f0f;
  --neutral-900: #1a1a1a;
  --neutral-800: #2d2d2d;
  --neutral-700: #404040;
  --neutral-600: #555555;
  --neutral-500: #717171;
  --neutral-400: #999999;
  --neutral-300: #bdbdbd;
  --neutral-200: #e0e0e0;
  --neutral-100: #f2f2f2;
  --neutral-50:  #fafafa;

  --white: #ffffff;
  --red-600: #c62828;

  /* Semantic Colors */
  --color-primary: var(--forest-700);
  --color-primary-dark: var(--forest-900);
  --color-primary-light: var(--forest-100);
  --color-accent: var(--gold-500);
  --color-accent-hover: var(--gold-400);
  --color-text: var(--neutral-800);
  --color-text-light: var(--neutral-600);
  --color-text-muted: var(--neutral-500);
  --color-bg: var(--white);
  --color-bg-alt: var(--neutral-50);
  --color-bg-dark: var(--forest-900);
  --color-border: var(--neutral-200);

  /* Typography Scale */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;

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

  /* 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;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --container-wide: 1400px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

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

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

h1 { font-size: var(--text-5xl); margin-bottom: var(--space-lg); }
h2 { font-size: var(--text-4xl); margin-bottom: var(--space-lg); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
h4 { font-size: var(--text-xl); margin-bottom: var(--space-md); }

p { margin-bottom: var(--space-md); color: var(--color-text-light); line-height: 1.8; }
.lead { font-size: var(--text-lg); color: var(--color-text); }
.text-accent { font-family: var(--font-accent); font-style: italic; }
.text-muted { color: var(--color-text-muted); }
.text-gold { color: var(--color-accent); }
.text-center { text-align: center; }

/* Section Label (the small caps above headings) */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 2.5rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 2px;
  background: var(--color-accent);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section {
  padding: var(--space-5xl) 0;
}
.section--sm { padding: var(--space-3xl) 0; }
.section--dark {
  background: var(--color-bg-dark);
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--neutral-300); }
.section--alt { background: var(--color-bg-alt); }
.section--earth { background: var(--earth-100); }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--forest-900);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 78, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--forest-900);
}

.btn--outline-dark {
  background: transparent;
  color: var(--forest-700);
  border-color: var(--forest-700);
}
.btn--outline-dark:hover {
  background: var(--forest-700);
  color: var(--white);
}

.btn--dark {
  background: var(--forest-900);
  color: var(--white);
  border-color: var(--forest-900);
}
.btn--dark:hover {
  background: var(--forest-700);
  border-color: var(--forest-700);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-base);
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}
.header.scrolled {
  background: rgba(26, 46, 26, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.header__logo img {
  height: 45px;
  width: auto;
}
.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--white);
  line-height: 1.2;
}
.header__logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: var(--space-2xl); }
.nav__links { display: flex; gap: var(--space-xl); align-items: center; }
.nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-300);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -10px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: all var(--transition-fast);
}
.nav__dropdown-menu a:hover {
  background: var(--forest-50);
  color: var(--forest-700);
  padding-left: 1.8rem;
}

.nav__cta .btn { padding: 0.7rem 1.5rem; }

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--forest-900);
  z-index: 999;
  flex-direction: column;
  padding: var(--space-5xl) var(--space-xl) var(--space-xl);
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--white);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: var(--text-3xl);
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-heading);
}

/* Phone bar */
.topbar {
  background: var(--forest-900);
  padding: var(--space-xs) var(--space-xl);
  text-align: right;
  font-size: var(--text-xs);
  color: var(--neutral-400);
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar a {
  color: var(--color-accent);
  font-weight: 600;
}
.topbar a:hover { color: var(--color-accent-hover); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--forest-900);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,26,0.92) 0%, rgba(26,46,26,0.7) 50%, rgba(26,46,26,0.85) 100%);
  z-index: 1;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Texture overlay */
.hero__bg::after {
  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='%23ffffff' fill-opacity='0.03'%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");
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: var(--space-5xl) var(--space-xl);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(200, 169, 78, 0.15);
  border: 1px solid rgba(200, 169, 78, 0.3);
  border-radius: 50px;
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}
.hero__badge svg { width: 14px; height: 14px; fill: var(--color-accent); }

.hero h1 {
  font-size: var(--text-6xl);
  color: var(--white);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-lg);
}
.hero h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--neutral-300);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
}

.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  margin-top: var(--space-xs);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest-200);
}

.card__body { padding: var(--space-xl); }
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--forest-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--forest-700);
}
.card__icon svg { width: 28px; height: 28px; }

.card h3 a { color: var(--forest-900); }
.card h3 a:hover { color: var(--forest-600); }

/* Service card variant */
.service-card {
  position: relative;
  padding: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-accent);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  transition: height var(--transition-base);
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  border-color: var(--forest-200);
  box-shadow: var(--shadow-md);
}
.service-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--neutral-100);
  line-height: 1;
  margin-bottom: var(--space-md);
}
.service-card h3 { margin-bottom: var(--space-sm); }
.service-card p { font-size: var(--text-sm); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest-700);
  margin-top: var(--space-lg);
  transition: gap var(--transition-base);
}
.service-card__link:hover { gap: var(--space-sm); color: var(--forest-500); }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  counter-reset: step;
}
.process__step {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
}
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--forest-100);
  margin-bottom: var(--space-md);
}
.process__step h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
}
.process__step p { font-size: var(--text-sm); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--forest-800);
  padding: var(--space-2xl) 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.stats-bar__item h3 {
  font-size: var(--text-4xl);
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}
.stats-bar__item p {
  color: var(--neutral-400);
  font-size: var(--text-sm);
  margin: 0;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.benefit {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}
.benefit:hover {
  border-color: var(--forest-200);
  box-shadow: var(--shadow-sm);
}
.benefit__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--forest-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-700);
}
.benefit h4 { font-size: var(--text-lg); margin-bottom: var(--space-xs); }
.benefit p { font-size: var(--text-sm); margin: 0; }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-900) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(200, 169, 78, 0.05);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}
.cta-banner p {
  color: var(--neutral-300);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* ============================================================
   SERVICE AREA MAP
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.area-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.area-card:hover {
  border-color: var(--forest-300);
  background: var(--forest-50);
  transform: translateX(4px);
}
.area-card svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--forest-600);
}
.area-card span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.testimonial {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--color-border);
  position: relative;
}
.testimonial__stars { color: var(--color-accent); font-size: var(--text-lg); margin-bottom: var(--space-md); }
.testimonial__text {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial__author { font-weight: 700; color: var(--forest-900); }
.testimonial__role { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--forest-700); }
.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}
.faq-answer p { margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--neutral-950);
  color: var(--neutral-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand p {
  color: var(--neutral-500);
  font-size: var(--text-sm);
  max-width: 320px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.footer__logo img { height: 40px; }
.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: var(--text-lg);
}

.footer h4 {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.footer__links a {
  display: block;
  font-size: var(--text-sm);
  color: var(--neutral-500);
  padding: var(--space-xs) 0;
  transition: all var(--transition-fast);
}
.footer__links a:hover { color: var(--color-accent); padding-left: 4px; }

.footer__contact a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--neutral-400);
  padding: var(--space-xs) 0;
}
.footer__contact a:hover { color: var(--color-accent); }
.footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}
.footer__bottom p { color: var(--neutral-600); margin: 0; }
.footer__social { display: flex; gap: var(--space-md); }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--neutral-500);
  transition: all var(--transition-base);
}
.footer__social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(200, 169, 78, 0.1);
}
.footer__social svg { width: 16px; height: 16px; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--neutral-400);
}
.breadcrumbs a { color: var(--neutral-500); }
.breadcrumbs a:hover { color: var(--forest-700); }
.breadcrumbs span { margin: 0 var(--space-sm); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-800) 100%);
  padding: calc(var(--space-5xl) + 80px) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
}
.page-hero h1 { color: var(--white); font-size: var(--text-5xl); margin-bottom: var(--space-md); }
.page-hero p { color: var(--neutral-300); font-size: var(--text-lg); max-width: 650px; }
.page-hero .breadcrumbs { margin-bottom: var(--space-lg); }
.page-hero .breadcrumbs, .page-hero .breadcrumbs a { color: var(--neutral-400); }

/* ============================================================
   CONTENT PAGES (blog, about, etc.)
   ============================================================ */
.content { max-width: var(--container-narrow); margin: 0 auto; }
.content h2 { margin-top: var(--space-3xl); }
.content h3 { margin-top: var(--space-2xl); }
.content ul, .content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.content li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  color: var(--color-text-light);
}
.content ul li { list-style: disc; }
.content ol li { list-style: decimal; }

/* ============================================================
   SCHEMA / SEO (visually hidden structured data label) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

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

.animate { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

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

@media (max-width: 768px) {
  :root { font-size: 15px; }
  
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  .hero h1 { font-size: var(--text-4xl); }
  .hero__stats { gap: var(--space-xl); }
  .hero__stat-number { font-size: var(--text-2xl); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

  .section { padding: var(--space-3xl) 0; }
  .container { padding: 0 var(--space-lg); }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); }
  
  .btn-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: var(--text-3xl); }
  .hero__stats { flex-direction: column; gap: var(--space-lg); }
  .process { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
}
