/* ============================================
   WALKER TREE SERVICE — Modern Design System
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; }
button { cursor: pointer; background: none; }

/* --- CSS Variables --- */
:root {
  --green-900: #0b3d2c;
  --green-800: #14532d;
  --green-700: #166534;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-100: #ffedd5;
  --dark: #0f172a;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-600);
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: .5rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide { max-width: 1400px; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark p { color: #fff; }
.section-dark p { color: rgba(255,255,255,.7); }
.section-green {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
}
.section-green h2, .section-green h3, .section-green p { color: #fff; }
.section-green p { color: rgba(255,255,255,.8); }

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

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

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  transition: height .3s cubic-bezier(.4,0,.2,1);
}
.header.scrolled .header-inner { height: 72px; }
.header-logo img {
  height: 80px;
  width: auto;
  transition: height .3s cubic-bezier(.4,0,.2,1);
}
.header.scrolled .header-logo img { height: 48px; }
@media (max-width: 1024px) {
  .header-inner { height: 88px; }
  .header-logo img { height: 64px; }
  .header.scrolled .header-inner { height: 68px; }
  .header.scrolled .header-logo img { height: 44px; }
}
.nav { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem 1rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green-700); }
.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: .5rem 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-dropdown a:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.header-cta {
  margin-left: 1rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-orange {
  background: var(--orange-500);
  color: #fff;
}
.btn-orange:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 2px solid var(--green-700);
  color: var(--green-700);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-700);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--green-800);
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn svg { width: 18px; height: 18px; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,61,44,.85), rgba(15,23,42,.7));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  margin-bottom: 1.5rem;
  min-height: 72px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .hero h1 { white-space: normal; min-height: 110px; }
}
.hero .hero-sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 72px;
}
.hero .btn { margin-right: 1rem; margin-bottom: .5rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  color: #fff;
  font-size: .875rem;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--green-400); }

/* Page hero (shorter) */
.page-hero {
  position: relative;
  padding: 11rem 0 4rem;
  overflow: hidden;
}
.page-hero .hero-bg,
.page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(11,61,44,.88), rgba(15,23,42,.75));
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.125rem; max-width: 640px; }

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card-body { padding: 1.75rem; }
.card-body h3 { margin-bottom: .75rem; }
.card-body p { font-size: .9375rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-weight: 600;
  color: var(--green-700);
  margin-top: 1rem;
  font-size: .9375rem;
}
.card-link:hover { gap: .625rem; }
.card-link svg { width: 16px; height: 16px; }

/* Icon cards */
.icon-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.icon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.icon-card .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: var(--radius-md);
  color: var(--green-700);
}
.icon-card .icon-wrap svg { width: 28px; height: 28px; }
.icon-card h4 { margin-bottom: .5rem; }
.icon-card p { font-size: .9375rem; }

/* --- Image Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }

/* --- Service Blocks --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}
.service-block:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.service-block.reverse .service-content { order: 2; }
.service-block.reverse .service-gallery { order: 1; }
.service-text h2 { margin-bottom: .5rem; }
.service-text .section-subtitle { margin-bottom: 1.25rem; }
.service-text p { margin-bottom: 1rem; }
.service-text .btn { margin-top: .5rem; }

/* --- Specialty Section --- */
.specialty-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}
.specialty-block:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.specialty-block.reverse .specialty-content { order: 2; }
.specialty-block.reverse .specialty-gallery { order: 1; }

/* --- CTA Banner --- */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  text-align: center;
  color: #fff;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.cta-banner .phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-400);
  margin-top: 1rem;
}
.cta-banner .phone-link:hover { color: var(--orange-500); }

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-card h2 { margin-bottom: .5rem; font-size: 1.5rem; }
.form-card > p { margin-bottom: 1.5rem; }

/* Hidden honeypot */
.form-hp { position: absolute; left: -9999px; }

/* --- Contact Info Sidebar --- */
.contact-sidebar {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-sidebar h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.contact-sidebar p { font-size: .9375rem; margin-bottom: .25rem; }
.contact-sidebar a { color: var(--green-700); font-weight: 500; }
.contact-sidebar a:hover { text-decoration: underline; }
.sidebar-section { margin-bottom: 1.75rem; }
.sidebar-section:last-child { margin-bottom: 0; }

/* --- Project Cards --- */
.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}
.project-card:last-child { margin-bottom: 0; }
.project-img {
  height: 100%;
  min-height: 400px;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-body { padding: 3rem; }
.project-body h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.project-body p { margin-bottom: .75rem; }

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  padding: .25rem 0;
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .9375rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-400);
}
.footer-contact-item a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--green-700);
  color: #fff;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* --- Phone Badge (floating) --- */
.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--orange-500);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
}
.phone-badge:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}
.phone-badge svg { width: 18px; height: 18px; }

/* --- Bulleted Lists --- */
.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  color: var(--text-secondary);
}
.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
}

/* --- Stats Row --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .875rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Badge row (BBB, insurance, etc.) --- */
.trust-badges {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.trust-badge {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-badge:hover { box-shadow: var(--shadow-md); }
.trust-badge img { height: 80px; width: auto; }

/* --- Contact Quick Bar --- */
.contact-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-bar-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex: 1;
  min-width: 280px;
}
.contact-bar-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-bar-item .icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: 50%;
  color: var(--green-700);
  flex-shrink: 0;
}
.contact-bar-item .icon-circle svg { width: 22px; height: 22px; }
.contact-bar-item h4 { font-size: .9375rem; margin-bottom: .125rem; }
.contact-bar-item p { font-size: .875rem; margin: 0; }
.contact-bar-item a { color: var(--green-700); font-weight: 600; }

/* ============================================
   UPGRADED COMPONENTS — Services & Specialties
   ============================================ */

/* Sticky jump-nav under hero */
.jump-nav {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.jump-nav-inner {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .875rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.jump-nav-inner::-webkit-scrollbar { display: none; }
.jump-nav a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.125rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
}
.jump-nav a:hover,
.jump-nav a.active {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}
.jump-nav a svg { width: 14px; height: 14px; }

/* Trust bar (under hero) */
.trust-bar {
  background: var(--green-900);
  color: #fff;
  padding: 1.5rem 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.9);
}
.trust-bar-item svg {
  width: 24px;
  height: 24px;
  color: var(--green-400);
  flex-shrink: 0;
}
.trust-bar-item strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}
.trust-bar-item span {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
}

/* Feature section — image left, text with benefit icons right */
.feature-section {
  padding: 5rem 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-grid.reverse > :first-child { order: 2; }
.feature-grid.reverse > :last-child { order: 1; }
.feature-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.feature-img-badge .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-img-badge .icon svg { width: 20px; height: 20px; }
.feature-img-badge strong { display: block; color: var(--dark); font-size: .9375rem; }
.feature-img-badge span { font-size: .8125rem; color: var(--text-secondary); }

.benefit-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}
.benefit-item .check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-item .check svg { width: 16px; height: 16px; }
.benefit-item strong { color: var(--dark); }
.benefit-item p { margin: 0; font-size: .9375rem; }

/* Quote section — testimonial style */
.quote-block {
  background: linear-gradient(135deg, var(--green-50), #fff);
  border-left: 4px solid var(--green-600);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--green-300, #86efac);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .5;
}
.quote-block p {
  font-size: 1.0625rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.quote-block cite {
  font-style: normal;
  font-weight: 600;
  color: var(--green-800);
  font-size: .9375rem;
}

/* Process steps (numbered) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.process-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.process-step-num {
  position: absolute;
  top: -14px;
  left: 1.75rem;
  width: 36px;
  height: 36px;
  background: var(--green-700);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(22, 101, 52, .3);
}
.process-step h5 {
  margin: .5rem 0 .5rem;
  font-size: 1rem;
}
.process-step p {
  font-size: .875rem;
  margin: 0;
}

/* Emergency callout (storm cleanup section) */
.emergency-callout {
  background: linear-gradient(135deg, #1a1a1a, #374151);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.emergency-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, .25), transparent 70%);
  pointer-events: none;
}
.emergency-callout-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.emergency-callout h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.emergency-callout p {
  color: rgba(255,255,255,.8);
  margin-bottom: 1.5rem;
}
.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--orange-500);
  border-radius: 50px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.emergency-badge svg { width: 14px; height: 14px; }
.emergency-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.emergency-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Check list (debris removal) */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.check-grid-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: var(--transition);
}
.check-grid-item:hover {
  border-color: var(--green-400);
  transform: translateX(4px);
}
.check-grid-item .check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-grid-item .check-icon svg { width: 14px; height: 14px; }

/* Floating info card (commercial section) */
.info-card-floating {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}
.info-card-floating h3 {
  margin-bottom: 1rem;
}
.info-card-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.info-card-stat-row .stat-number { font-size: 1.75rem; }

/* Service icon large */
.service-icon-lg {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(22, 101, 52, .25);
}
.service-icon-lg svg { width: 32px; height: 32px; }

/* Service meta tag row */
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .25rem .75rem;
  background: var(--green-50);
  color: var(--green-800);
  font-size: .75rem;
  font-weight: 600;
  border-radius: 50px;
}
.service-tag svg { width: 12px; height: 12px; }

/* FAQ accordion */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] {
  border-color: var(--green-600);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-700);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
}
.faq-item-body p:last-child { margin-bottom: 0; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.breadcrumbs a {
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs .separator {
  color: rgba(255,255,255,.4);
}

/* Audience selector (specialties page) */
.audience-picker {
  background: var(--bg-alt);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audience-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.audience-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.audience-tab:hover,
.audience-tab.active {
  border-color: var(--green-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.audience-tab .tab-icon {
  width: 48px;
  height: 48px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-tab .tab-icon svg { width: 24px; height: 24px; }
.audience-tab strong {
  font-size: .9375rem;
  color: var(--dark);
}

/* Benefit grid for specialties */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
.benefit-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.benefit-box:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-sm);
}
.benefit-box-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.benefit-box-icon svg { width: 22px; height: 22px; }
.benefit-box h5 { margin-bottom: .375rem; font-size: 1rem; }
.benefit-box p { font-size: .875rem; margin: 0; }

/* Partner program badge banner */
.partner-banner {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.partner-banner h3 { color: #fff; margin-bottom: .5rem; }
.partner-banner p { color: rgba(255,255,255,.9); margin: 0; max-width: 560px; }
.partner-banner .savings-badge {
  background: #fff;
  color: var(--orange-600);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}
.partner-banner .savings-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.partner-banner .savings-badge span {
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--orange-500);
}

/* Stats small grid */
.stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  text-align: center;
}
.stats-mini .stat-number { font-size: 1.75rem; margin-bottom: 0; }
.stats-mini .stat-label { font-size: .75rem; }

/* Compliance badges (gov section) */
.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem .875rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text);
}
.compliance-badge svg {
  width: 14px;
  height: 14px;
  color: var(--green-600);
}

/* Section with alternating bg */
.section-gradient-green {
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
}

/* ============================================
   INTERACTIVE CONTACT FORM COMPONENTS
   ============================================ */

/* Quick tiles wrapper — extra padding above */
.quick-tiles-wrap {
  padding-top: 1.5rem;
}

/* Quick contact tiles */
.quick-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.quick-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: var(--transition);
  text-align: left;
}
.quick-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--green-400);
}
.quick-tile-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-tile-icon svg { width: 22px; height: 22px; }
.quick-tile-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.quick-tile-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}
.quick-tile-value a {
  color: var(--green-700);
}
.quick-tile-value a:hover { text-decoration: underline; }
.quick-tile-sub {
  font-size: .875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Form card upgrades */
.form-card-lg {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* ============================================
   MULTI-STEP FORM
   ============================================ */

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  position: relative;
}
.stepper-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  position: relative;
  z-index: 2;
}
.stepper-item::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
  transition: background .4s;
}
.stepper-item:last-child::after { display: none; }
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8125rem;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.step-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  transition: color .3s;
  letter-spacing: .02em;
}
.stepper-item.active .step-circle {
  border-color: var(--green-600);
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(22,163,74,.15);
}
.stepper-item.active .step-label {
  color: var(--green-700);
}
.stepper-item.complete .step-circle {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}
.stepper-item.complete::after {
  background: var(--green-600);
}
.stepper-item.complete .step-circle .num { display: none; }
.stepper-item.complete .step-circle::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg 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'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

/* Form steps */
.form-step {
  display: none;
  animation: stepIn .35s cubic-bezier(.4,0,.2,1);
}
.form-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-step-header {
  margin-bottom: 1.5rem;
}
.form-step-header h3 {
  margin-bottom: .25rem;
  font-size: 1.25rem;
}
.form-step-header p {
  color: var(--text-secondary);
  font-size: .9375rem;
  margin: 0;
}

/* Step navigation */
.form-nav {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.form-nav .btn-back {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  padding: .875rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9375rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.form-nav .btn-back:hover {
  border-color: var(--text-secondary);
  color: var(--dark);
}
.form-nav .btn-back svg { width: 16px; height: 16px; }
.form-nav .btn-next,
.form-nav .form-submit {
  flex: 1;
  padding: .875rem 1.5rem;
}
.form-nav .btn-next {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: var(--transition);
  cursor: pointer;
}
.form-nav .btn-next:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 101, 52, .25);
}
.form-nav .btn-next:disabled { opacity: .5; cursor: not-allowed; }
.form-nav .btn-next svg { width: 16px; height: 16px; }

/* Service picker cards (step 1 of estimate) */
.service-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.service-picker.with-full-last > *:last-child {
  grid-column: 1 / -1;
}
.service-pick {
  position: relative;
  cursor: pointer;
}
.service-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  inset: 0;
}
.service-pick-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 1.25rem .75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: var(--transition);
  height: 100%;
}
.service-pick:hover .service-pick-inner {
  border-color: var(--green-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.service-pick input:checked + .service-pick-inner,
.service-pick:has(input:checked) .service-pick-inner {
  border-color: var(--green-600);
  background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}
.service-pick-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: 50%;
  color: var(--green-700);
  transition: var(--transition);
}
.service-pick:has(input:checked) .service-pick-icon {
  background: var(--green-600);
  color: #fff;
}
.service-pick-icon svg { width: 20px; height: 20px; }
.service-pick-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* ============================================
   BLOG — per BLOG-TEMPLATE.md spec
   ============================================ */

/* Category filter buttons */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .5rem 1.125rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  color: var(--green-700);
  border-color: var(--green-400);
}
.filter-btn.active {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}

/* Post card grid — uses .post-card per template spec */
#postGrid.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.post-card-thumb {
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
  background: var(--bg-alt);
}
.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
}
.post-card-cat {
  display: inline-block;
  align-self: flex-start;
  padding: .25rem .75rem;
  background: var(--green-50);
  color: var(--green-800);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 50px;
}
.post-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
  margin: 0;
}
.post-card-meta {
  font-size: .8125rem;
  color: var(--text-light);
  margin-top: auto;
}

@media (max-width: 1024px) {
  #postGrid.blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #postGrid.blog-grid { grid-template-columns: 1fr; }
}

/* === Individual post page — template-compliant === */

/* HERO */
.blog-post-hero {
  position: relative;
  padding: 9rem 1.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-post-hero > img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}
.blog-post-hero-content {
  max-width: 900px;
}
.blog-post-cat {
  display: inline-block;
  padding: .375rem 1rem;
  background: var(--green-50);
  color: var(--green-800);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.blog-post-hero-content h1 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--dark);
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  font-size: .95rem;
  color: var(--text-secondary);
}
.post-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .4;
}

/* 2-col wrap */
.blog-post-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
@media (max-width: 900px) {
  .blog-post-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* ARTICLE */
.blog-article {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
}
.blog-article h2 {
  font-size: 1.625rem;
  line-height: 1.3;
  margin: 2.75rem 0 1rem;
  color: var(--dark);
}
.blog-article h2:first-child { margin-top: 0; }
.blog-article h3 {
  font-size: 1.3125rem;
  line-height: 1.35;
  margin: 2rem 0 .75rem;
  color: var(--dark);
}
.blog-article h4 {
  font-size: 1.125rem;
  margin: 1.5rem 0 .5rem;
  color: var(--dark);
}
.blog-article p {
  margin-bottom: 1.25rem;
}
.blog-article ul,
.blog-article ol {
  margin: 0 0 1.25rem 1.5rem;
}
.blog-article ul li { list-style-type: disc; margin-bottom: .5rem; }
.blog-article ol li { list-style-type: decimal; margin-bottom: .5rem; }
.blog-article img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}
.blog-article a {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.blog-article a:hover { color: var(--green-800); }
.blog-article blockquote {
  border-left: 4px solid var(--green-500);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
  background: var(--green-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.blog-article strong { color: var(--dark); font-weight: 700; }

/* SIDEBAR */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: start;
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) { .blog-sidebar { position: static; } }
.sidebar-card {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: #fff;
}
.sidebar-head {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .875rem;
  font-size: 1rem;
}
.sidebar-body {
  display: flex;
  flex-direction: column;
}
.sidebar-link {
  display: block;
  padding: .625rem 0;
  font-size: .9375rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  line-height: 1.4;
  transition: var(--transition);
}
.sidebar-link:hover { color: var(--green-700); }
.sidebar-link:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-cta {
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff;
}
.sidebar-cta-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: .5rem;
  color: #fff;
}
.sidebar-cta p {
  color: rgba(255,255,255,.9);
  font-size: .9375rem;
  margin-bottom: 1rem;
}
.sidebar-cta a {
  display: inline-block;
  padding: .625rem 1.5rem;
  background: var(--orange-500);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}
.sidebar-cta a:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

/* ============================================
   BLOG ARTICLE ENHANCEMENT COMPONENTS
   (used inline inside .blog-article content)
   ============================================ */

/* Callout box — use for warnings, tips, important notes */
.article-callout {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--green-50);
  border-left: 4px solid var(--green-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  align-items: flex-start;
}
.article-callout .callout-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-callout .callout-icon svg { width: 18px; height: 18px; }
.article-callout .callout-body { flex: 1; }
.article-callout .callout-body strong { display: block; color: var(--green-800); margin-bottom: .25rem; }
.article-callout .callout-body p { margin: 0; color: var(--text); }
/* Variant: warning/danger (orange) */
.article-callout.warn {
  background: #fff7ed;
  border-left-color: var(--orange-500);
}
.article-callout.warn .callout-icon { background: var(--orange-500); }
.article-callout.warn .callout-body strong { color: var(--orange-600); }
/* Variant: tip (blue) */
.article-callout.tip {
  background: #eff6ff;
  border-left-color: #3b82f6;
}
.article-callout.tip .callout-icon { background: #3b82f6; }
.article-callout.tip .callout-body strong { color: #1e40af; }
/* Variant: danger (red) */
.article-callout.danger {
  background: #fef2f2;
  border-left-color: #ef4444;
}
.article-callout.danger .callout-icon { background: #ef4444; }
.article-callout.danger .callout-body strong { color: #991b1b; }

/* Card grid — 3 feature/takeaway/step cards */
.article-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.article-cards.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .article-cards, .article-cards.two { grid-template-columns: 1fr; } }
.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.article-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-sm);
}
.article-card .card-icon {
  width: 40px;
  height: 40px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
}
.article-card .card-icon svg { width: 20px; height: 20px; }
.article-card h4 {
  font-size: 1.0625rem;
  margin: 0;
  line-height: 1.3;
}
.article-card p {
  font-size: .9375rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
}
/* Numbered cards variant */
.article-card.numbered { position: relative; padding-top: 2rem; }
.article-card .step-num {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  width: 32px;
  height: 32px;
  background: var(--green-700);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9375rem;
  box-shadow: 0 4px 10px rgba(22, 101, 52, .3);
}

/* Two-column image + text */
.article-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.article-two-col.reverse { direction: rtl; }
.article-two-col.reverse > * { direction: ltr; }
@media (max-width: 700px) { .article-two-col, .article-two-col.reverse { grid-template-columns: 1fr; direction: ltr; } }
.article-two-col img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0;
}
.article-two-col .tc-body h3 { margin-top: 0; }
.article-two-col .tc-body p:last-child { margin-bottom: 0; }

/* Pull quote */
.article-pullquote {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--green-50), #fff);
  border-left: 5px solid var(--green-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}
.article-pullquote::before {
  content: '"';
  position: absolute;
  top: -.25rem;
  left: 1rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-300, #86efac);
  font-family: Georgia, serif;
  opacity: .5;
}
.article-pullquote p {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  margin: 0 0 .5rem;
  position: relative;
  z-index: 1;
}
.article-pullquote cite {
  font-style: normal;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--green-800);
}

/* Inline mid-post CTA */
.article-cta {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-cta h4 { color: #fff; font-size: 1.375rem; margin: 0 0 .5rem; }
.article-cta p { color: rgba(255,255,255,.9); margin: 0 0 1.25rem; }
.article-cta .article-cta-btns {
  display: inline-flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.article-cta a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--orange-500);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}
.article-cta a:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}
.article-cta a.secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
}
.article-cta a.secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* Checklist (styled UL) */
.article-checklist {
  list-style: none !important;
  margin: 1.5rem 0 !important;
  padding: 0 !important;
}
.article-checklist li {
  list-style: none !important;
  position: relative;
  padding: .5rem 0 .5rem 2rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}
.article-checklist li:last-child { border-bottom: none; }
.article-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-600) url("data:image/svg+xml;utf8,<svg 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'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 14px;
}

/* Stats row */
.article-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.75rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  margin: 2rem 0;
  text-align: center;
}
@media (max-width: 600px) { .article-stats { grid-template-columns: 1fr; gap: 1.25rem; } }
.article-stats .stat { }
.article-stats .stat .n {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: .25rem;
}
.article-stats .stat .l {
  font-size: .8125rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}

/* Legacy blog-card (kept for internal backwards compat) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-card-img {
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
  background: var(--bg-alt);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  flex: 1;
}
.blog-card-date {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--green-700);
}
.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
  margin: 0;
}
.blog-card-excerpt {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-700);
  padding-top: .5rem;
}
.blog-card-link svg { width: 14px; height: 14px; transition: transform .2s; }
.blog-card:hover .blog-card-link svg { transform: translateX(3px); }

/* Blog pagination / load more */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: .5rem;
}
.blog-pagination button,
.blog-pagination a {
  padding: .625rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.blog-pagination button:hover,
.blog-pagination a:hover { border-color: var(--green-600); color: var(--green-700); }
.blog-pagination .active {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}

/* Blog post page (single) */
.post-hero {
  padding: 9rem 0 3rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
}
.post-hero .container { max-width: 820px; }
.post-hero .post-date {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1rem;
}
.post-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}
.post-hero .post-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.post-cover {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.post-cover img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
}
.post-body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.post-body h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.post-body h4 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.post-body p {
  margin-bottom: 1.25rem;
  color: var(--text);
}
.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}
.post-body ul,
.post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-body ul li,
.post-body ol li {
  margin-bottom: .5rem;
  list-style-type: disc;
}
.post-body ol li { list-style-type: decimal; }
.post-body a {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.post-body a:hover { color: var(--green-800); }
.post-body blockquote {
  border-left: 4px solid var(--green-500);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
  background: var(--green-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-body strong { color: var(--dark); }

/* Post back / nav */
.post-nav {
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}
.post-nav a.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--green-700);
  padding: .625rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.post-nav a.back-link:hover { border-color: var(--green-600); background: var(--green-50); }
.post-nav svg { width: 16px; height: 16px; }

/* Related posts on post page */
.related-posts {
  background: var(--bg-alt);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.related-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.related-posts .blog-grid {
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-hero { padding: 7rem 0 2rem; }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.reviews-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff 0%, var(--green-50) 100%);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-xl);
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.reviews-rating .big-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.reviews-rating .stars {
  display: flex;
  gap: .125rem;
  margin-bottom: .25rem;
}
.reviews-rating .stars svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  fill: #fbbf24;
}
.reviews-rating .review-count {
  font-size: .875rem;
  color: var(--text-secondary);
}
.reviews-rating .review-count strong { color: var(--green-700); }
.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.reviews-google-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.reviews-google-badge img { height: 20px; }
.google-g {
  width: 20px;
  height: 20px;
  background: conic-gradient(from 0deg at 50% 50%, #ea4335 0deg, #fbbc04 90deg, #34a853 180deg, #4285f4 270deg);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.545 10.239v3.821h5.445c-.712 2.315-2.647 3.972-5.445 3.972a6.033 6.033 0 110-12.064c1.498 0 2.866.549 3.921 1.453l2.814-2.814A9.969 9.969 0 0012.545 2C7.021 2 2.543 6.477 2.543 12s4.478 10 10.002 10c8.396 0 10.249-7.85 9.426-11.748l-9.426-.013z'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.545 10.239v3.821h5.445c-.712 2.315-2.647 3.972-5.445 3.972a6.033 6.033 0 110-12.064c1.498 0 2.866.549 3.921 1.453l2.814-2.814A9.969 9.969 0 0012.545 2C7.021 2 2.543 6.477 2.543 12s4.478 10 10.002 10c8.396 0 10.249-7.85 9.426-11.748l-9.426-.013z'/></svg>") no-repeat center / contain;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-card .stars {
  display: flex;
  gap: .125rem;
}
.review-card .stars svg {
  width: 16px;
  height: 16px;
  color: #fbbf24;
  fill: #fbbf24;
}
.review-card .review-text {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-card .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}
.review-card .reviewer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.review-card .reviewer-name {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: .9375rem;
  line-height: 1.2;
}
.review-card .reviewer-time {
  font-size: .8125rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-rating .big-score { font-size: 2.5rem; }
  .reviews-hero { padding: 1.5rem; gap: 1rem; }
}

/* Specialties 3-2 centered grid (home page) */
.specialties-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}
.specialties-5 > * { grid-column: span 2; }
.specialties-5 > :nth-child(4) { grid-column: 2 / span 2; }
@media (max-width: 900px) {
  .specialties-5 { grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 640px; }
  .specialties-5 > *,
  .specialties-5 > :nth-child(4) { grid-column: auto; }
  .specialties-5 > :nth-child(5) { grid-column: 1 / -1; max-width: calc(50% - .5rem); margin: 0 auto; }
}
@media (max-width: 560px) {
  .specialties-5 > :nth-child(5) { max-width: none; }
  .specialties-5 { grid-template-columns: 1fr; }
}

/* Summary / review line for multi-step */
.step-summary {
  background: var(--green-50);
  border: 1px solid var(--green-300, #86efac);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  margin-bottom: 1.5rem;
}
.step-summary svg {
  width: 18px;
  height: 18px;
  color: var(--green-700);
  flex-shrink: 0;
}
.step-summary strong { color: var(--green-800); }

/* Form tabs */
.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .375rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}
.form-tab {
  background: transparent;
  border: none;
  padding: .875rem 1rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: calc(var(--radius-md) - 4px);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.form-tab svg { width: 16px; height: 16px; }
.form-tab:hover { color: var(--dark); }
.form-tab.active {
  background: #fff;
  color: var(--green-700);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Form panels */
.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Progress bar */
.form-progress {
  margin-bottom: 2rem;
}
.form-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: .5rem;
}
.form-progress-label .pct {
  color: var(--green-700);
  font-size: .875rem;
  font-weight: 700;
}
.form-progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--green-600));
  border-radius: 10px;
  width: 0;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}

/* Interactive form field wrapper */
.field {
  position: relative;
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .375rem;
  letter-spacing: .02em;
}
.field label .req { color: var(--orange-500); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .875rem 2.5rem .875rem 1rem;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  padding-right: 1rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}
.field.valid input,
.field.valid select,
.field.valid textarea {
  border-color: var(--green-500);
}
.field-check {
  position: absolute;
  right: .875rem;
  top: 2.15rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .25s, transform .25s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.field-check svg { width: 12px; height: 12px; }
.field.valid .field-check {
  opacity: 1;
  transform: scale(1);
}
.field-hint {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .375rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Form submit button with loading state */
.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
}
.form-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 101, 52, .25);
}
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-submit svg { width: 18px; height: 18px; }
.form-submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
.form-submit.loading .label { display: none; }
.form-submit.loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Trust row below form */
.form-trust-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.form-trust-row span {
  font-size: .75rem;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
}
.form-trust-row svg {
  width: 14px;
  height: 14px;
  color: var(--green-600);
}

/* What happens next timeline */
.next-steps {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.next-steps h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.timeline-item {
  display: flex;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.25rem;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  border: 2px solid var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-content strong {
  display: block;
  color: var(--dark);
  font-size: .9375rem;
  margin-bottom: .125rem;
}
.timeline-content p {
  font-size: .875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Trust panel */
.trust-panel {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.25rem;
}
.trust-panel-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .875rem;
}
.trust-panel-row svg {
  width: 18px;
  height: 18px;
  color: var(--green-700);
  flex-shrink: 0;
}
.trust-panel-row strong { color: var(--green-800); }

/* Service area map */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.map-embed iframe { border: 0; width: 100%; height: 100%; display: block; }

/* Confetti / success (thank you page) */
.success-hero {
  position: relative;
  text-align: center;
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, var(--green-50), #fff);
  overflow: hidden;
}
.success-checkmark {
  width: 96px;
  height: 96px;
  margin: 0 auto 2rem;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(22,101,52,.3);
  animation: pop .6s cubic-bezier(.17,.67,.4,1.32);
}
.success-checkmark svg {
  width: 48px;
  height: 48px;
  color: #fff;
  animation: drawCheck .5s .3s both cubic-bezier(.4,0,.2,1);
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@keyframes drawCheck {
  from { stroke-dashoffset: 30; }
  to { stroke-dashoffset: 0; }
}

.success-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--dark);
}
.success-hero .lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.success-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.success-next {
  padding: 4rem 0;
}
.success-next h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.next-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.next-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  text-align: left;
}
.next-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.next-card .icon {
  width: 48px;
  height: 48px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.next-card .icon svg { width: 24px; height: 24px; }
.next-card h4 { font-size: 1.0625rem; margin-bottom: .5rem; }
.next-card p { font-size: .875rem; margin-bottom: 1rem; }
.next-card a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
}
.next-card a:hover { gap: .5rem; }
.next-card a svg { width: 14px; height: 14px; }

/* Enhanced CTA button variations */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  /* Mobile nav overlay */
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    height: calc(100vh - 88px);
    height: calc(100dvh - 88px);
    background: #fff;
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    z-index: 9999;
  }
  .header.scrolled ~ * .nav.open,
  .header.scrolled .nav.open {
    top: 68px;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
  }
  .nav.open .nav-item { width: 100%; }
  .nav.open .nav-link {
    padding: .875rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    display: none;
  }
  .nav.open .nav-item.dropdown-open .nav-dropdown {
    display: block;
  }
  .nav.open .nav-dropdown a {
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav.open .mobile-cta {
    display: block !important;
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: 70vh; padding: 7rem 0 3rem; }
  .hero h1 { min-height: 100px; }
  .hero .hero-sub { min-height: 90px; }
  .hero .btn-lg { 
    width: 100%; 
    max-width: 280px; 
    justify-content: center; 
    margin: 0 auto .5rem; 
    display: flex;
  }
  .page-hero { padding: 8rem 0 3rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .service-block,
  .specialty-block,
  .project-card { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse .service-content,
  .service-block.reverse .service-gallery,
  .specialty-block.reverse .specialty-content,
  .specialty-block.reverse .specialty-gallery { order: unset; }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .project-img { min-height: 250px; }
  .contact-bar { flex-direction: column; }
  .contact-bar-item { min-width: unset; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-number { font-size: 2rem; }
  .cta-banner { padding: 3.5rem 0; }
  .trust-badges { justify-content: center; }
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .audience-tabs { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .feature-grid,
  .emergency-callout-inner { grid-template-columns: 1fr; gap: 2rem; }
  .feature-grid.reverse > :first-child,
  .feature-grid.reverse > :last-child { order: unset; }
  .process-steps { grid-template-columns: 1fr; }
  .audience-tabs { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .emergency-callout { padding: 2rem; }
  .info-card-floating { margin-top: 0; padding: 1.5rem; }
  .partner-banner { padding: 1.5rem; flex-direction: column; text-align: center; }
  .info-card-stat-row { grid-template-columns: 1fr; gap: .75rem; }
  .quote-block { padding: 1.5rem 1.75rem; }
  .quote-block::before { top: .5rem; left: .5rem; font-size: 3rem; }
  .jump-nav-inner { padding: .75rem 1.5rem; }
  .feature-img-wrap { aspect-ratio: 4/3; }
}

@media (max-width: 1024px) {
  .quick-tiles { grid-template-columns: 1fr; }
  .next-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .form-card-lg { padding: 1.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .form-tab { font-size: .875rem; padding: .75rem .5rem; }
  .service-picker { grid-template-columns: repeat(2, 1fr); }
  .service-picker.with-full-last > *:last-child { grid-column: 1 / -1; }
  .step-label { display: none; }
  .stepper-item::after { top: 16px; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn-back { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 60vh; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-bar-grid { grid-template-columns: 1fr; }
  .audience-tabs { grid-template-columns: 1fr; }
}
