/* =========================================
   EDEN TREE COMPANY — DESIGN SYSTEM
   edentreeco.com | Oklahoma City, OK
   ========================================= */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --green-primary: #2d6a4f;
  --green-dark: #1b4332;
  --green-mid: #40916c;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --green-accent: #74c69d;
  --cream: #f8f5f0;
  --dark: #1a1a1a;
  --dark-mid: #2c2c2c;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --orange: #e05c00;
  --orange-light: #ff7a1a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --max-width: 1140px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-primary); text-decoration: none; }
a:hover { color: var(--green-mid); }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); margin-bottom: 0.6rem; }
h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.text-white { color: var(--white); }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* --- TOP BAR --- */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  text-align: center;
}
.top-bar a { color: var(--green-accent); font-weight: 600; }
.top-bar a:hover { color: var(--white); }
.top-bar .tb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- HEADER / NAV --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--green-pale);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { color: var(--white); }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--green-dark);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  font-family: var(--font-body);
}
nav { display: flex; align-items: center; gap: 0.25rem; }
nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-mid);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
nav a:hover { background: var(--green-pale); color: var(--green-primary); }
nav a.active { color: var(--green-primary); }
.nav-cta {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--dark);
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--green-pale);
  padding: 1rem 1.25rem;
}
.mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-mid);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--white);
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-secondary:hover { background: var(--green-pale); transform: translateY(-1px); }
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: #c44d00; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover { background: var(--cream); color: var(--green-dark); transform: translateY(-1px); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn-phone { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em; }

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 60%, var(--green-mid) 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  opacity: 1;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}
.trust-badge svg { opacity: 0.85; }

/* --- QUOTE FORM (Hero) --- */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.quote-card h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-mid);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d1d5db;
  border-radius: 7px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  transition: border-color 0.15s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 0.9rem; }

/* --- STAT BARS / TRUST STRIP --- */
.trust-strip {
  background: var(--cream);
  border-top: 3px solid var(--green-primary);
  padding: 2rem 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1;
}
.trust-item-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* --- SERVICE CARDS --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-primary);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green-primary);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: var(--gray); margin-bottom: 1rem; }
.service-card a.learn-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-card a.learn-more:hover { color: var(--green-dark); gap: 0.5rem; }

/* --- PROCESS STEPS --- */
.process-bg { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* --- REVIEWS --- */
.reviews-bg { background: var(--green-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.stars { color: #fbbf24; font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.review-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.review-author {
  font-weight: 700;
  color: var(--white);
  font-size: 0.88rem;
}
.review-location {
  font-size: 0.8rem;
  color: var(--green-accent);
}

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--green-pale); }
.faq-question.open { background: var(--green-pale); color: var(--green-primary); }
.faq-icon { font-size: 1.25rem; font-weight: 900; flex-shrink: 0; transition: transform 0.2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
}
.faq-answer.open { display: block; }

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- CITY AREAS GRID --- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.city-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-mid);
  transition: all 0.15s;
  text-decoration: none;
}
.city-chip:hover {
  border-color: var(--green-primary);
  background: var(--green-pale);
  color: var(--green-primary);
}
.city-chip svg { color: var(--green-primary); flex-shrink: 0; }

/* --- BREADCRUMBS --- */
.breadcrumbs {
  background: var(--gray-light);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  margin: 0;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.25rem; margin: 0; }
.breadcrumbs li + li::before { content: '›'; color: var(--gray); }
.breadcrumbs a { color: var(--green-primary); font-weight: 500; }
.breadcrumbs span { color: var(--gray); }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { opacity: 0.88; font-size: 1.05rem; margin: 0 0 1.25rem; }
.page-hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  opacity: 0.8;
}

/* --- CONTENT LAYOUT --- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.content-main h2 { margin-top: 2rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul, .content-main ol { margin-bottom: 1.25rem; }
.content-main li { margin-bottom: 0.5rem; }
.sidebar-box {
  background: var(--cream);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.sidebar-box h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--green-pale);
}
.sidebar-phone {
  background: var(--green-primary);
  color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 1rem;
}
.sidebar-phone p { font-size: 0.88rem; opacity: 0.88; margin-bottom: 0.25rem; }
.sidebar-phone a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { margin: 0; }
.sidebar-links li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-mid);
  border-bottom: 1px solid #e5e7eb;
}
.sidebar-links li a:hover { color: var(--green-primary); padding-left: 0.4rem; }
.sidebar-links li:last-child a { border-bottom: none; }

/* --- GALLERY GRID --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-light);
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-img:hover img { transform: scale(1.04); }

/* --- MAP EMBED --- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-embed iframe { display: block; }

/* --- CONTACT FORM --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-size: 1rem; color: var(--gray); font-weight: 500; margin-bottom: 0.25rem; font-family: var(--font-body); }
.contact-info p, .contact-info a { font-size: 1.05rem; font-weight: 600; color: var(--dark); }
.contact-info .info-block { margin-bottom: 1.5rem; }
.contact-form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* --- ICON SVGs (inline CSS tricks) --- */
.icon-check::before { content: '✓'; color: var(--green-primary); font-weight: 700; }
.icon-phone::before { content: '📞'; }

/* --- FOOTER --- */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.7;
  margin: 0.75rem 0 1rem;
  line-height: 1.65;
}
.footer-nap {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.9;
}
.footer-nap a { color: rgba(255,255,255,0.7); }
.footer-nap a:hover { color: var(--green-accent); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--green-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
}
footer h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
footer ul li a:hover { color: var(--green-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* --- PHONE STICKY MOBILE --- */
.phone-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--green-primary);
  padding: 0.9rem 1rem;
  text-align: center;
}
.phone-sticky a {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* --- HIGHLIGHT BOX --- */
.highlight-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; font-size: 0.95rem; color: var(--green-dark); font-weight: 500; }

/* --- PRICE TABLE --- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th {
  background: var(--green-primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
}
.price-table td {
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid #e5e7eb;
}
.price-table tr:nth-child(even) td { background: var(--gray-light); }
.price-table tr:last-child td { border-bottom: none; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-card { max-width: 480px; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 3rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .phone-sticky { display: block; }
  body { padding-bottom: 60px; }
  .top-bar .tb-inner { justify-content: center; }
  .top-bar .tb-hide-mobile { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
}

/* --- SCHEMA / Hidden elements --- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- UTILITY --- */
.bg-cream { background: var(--cream); }
.bg-green-pale { background: var(--green-pale); }
.bg-dark { background: var(--dark); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }

/* --- CHECKLIST STYLE --- */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 900;
  font-size: 1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}
