/* ==========================================================================
   Schofield Outdoors — styles.css v1
   Design system: warm-trustworthy | #77b03a green | Nunito
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #77b03a;
  --color-primary-dark: #5e8e2d;
  --color-primary-light: #eaf4dc;
  --color-secondary: #1a1a1a;
  --color-accent: #8bc34a;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f6f2;
  --color-bg-dark: #1a1a1a;
  --color-text: #2d2d2d;
  --color-text-muted: #6b7280;
  --color-text-light: #ffffff;
  --color-border: #e5e2de;
  --color-success: #22c55e;
  --color-error: #ef4444;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.14);
  --spacing-section: 80px;
  --spacing-section-sm: 48px;
  --max-width: 1200px;
  --header-height: 72px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-secondary);
}

h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.25rem; margin-bottom: 10px; }

p { margin-bottom: 16px; }
ul, ol { margin-bottom: 16px; padding-left: 24px; }
li { margin-bottom: 6px; }

/* --- Skip to Content --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Section --- */
.section { padding: var(--spacing-section) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: var(--color-text-light); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-text-light); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: var(--color-text-muted); font-size: 1.1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

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

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

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

.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn--full { width: 100%; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.text-center { text-align: center; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img { height: 52px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secondary);
  transition: color var(--transition);
  position: relative;
}
.header__nav a:hover,
.header__nav a.active { color: var(--color-primary); }
.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__phone:hover { color: var(--color-primary); }
.header__phone svg { width: 18px; height: 18px; }

.header__cta { display: inline-flex; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 100;
  padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
  border-bottom: none;
}
.nav-dropdown-menu a:hover { background: var(--color-primary-light); color: var(--color-primary); }
.dropdown-arrow { font-size: 0.6em; transition: transform var(--transition); }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Hamburger */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}
.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Mobile Nav --- */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    overflow-y: auto;
  }
  .header__nav.open { right: 0; }
  .header__nav a { font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--color-border); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { width: 100%; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    min-width: unset;
  }
  .nav-dropdown-menu a { padding: 10px 16px; font-size: 1rem; border-bottom: none; }
  .header__toggle { display: block; }
  .header__phone span { display: none; }
  .header__cta .btn { padding: 10px 20px; font-size: 0.85rem; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }
  .nav-overlay.active { display: block; }
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #2d3a1e 100%);
  color: #fff;
}

.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: 3rem; max-width: 680px; }
.hero p { color: rgba(255, 255, 255, 0.9); font-size: 1.2rem; max-width: 560px; margin-bottom: 24px; }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
}

.hero--inner { padding: 64px 0 48px; }
.hero--inner h1 { font-size: 2.25rem; }

.hero .breadcrumbs { margin-bottom: 12px; }
.hero .breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.hero .breadcrumbs a:hover { color: #fff; }
.hero .breadcrumbs .current { color: rgba(255, 255, 255, 0.9); }
.hero .breadcrumbs span { color: rgba(255, 255, 255, 0.5); }

/* --- Breadcrumbs --- */
.breadcrumbs { font-size: 0.85rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs .current { color: var(--color-text); font-weight: 600; }
.breadcrumbs span { color: var(--color-text-muted); }

/* --- Trust Bar --- */
.trust-bar { background: var(--color-primary); padding: 16px 0; }
.trust-bar .container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.trust-bar__item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* --- Cards --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.card-grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid--2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.card-img { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 24px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card-body h3 a { color: var(--color-secondary); }
.card-body h3 a:hover { color: var(--color-primary); }
.card-body p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 12px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card-link:hover svg { transform: translateX(4px); }

/* --- Image Placeholder System --- */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  z-index: 0;
}
.img-placeholder span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}

.img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.img-real.loaded { opacity: 1; }

/* --- Stats Bar --- */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-bar__item h3 { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 4px; }
.stats-bar__item p { color: var(--color-text-muted); font-size: 0.9rem; font-weight: 600; }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-primary-light);
  font-family: Georgia, serif;
}
.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial-card__author { font-weight: 700; color: var(--color-secondary); }
.testimonial-card__stars { color: #f59e0b; margin-bottom: 8px; letter-spacing: 2px; font-size: 1.1rem; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-align: left;
  line-height: 1.4;
  gap: 16px;
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { display: none; padding: 0 0 20px; color: var(--color-text-muted); line-height: 1.7; }
.faq-item__answer.open { display: block; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* SMS Consent */
.sms-consent { margin: 16px 0; }
.sms-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  cursor: pointer;
  margin-bottom: 12px;
}
.sms-consent__label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--color-primary);
}
.sms-consent__label a { color: var(--color-primary); text-decoration: underline; }

/* Thank you message */
.thanks-msg {
  text-align: center;
  padding: 48px 24px;
  background: var(--color-primary-light);
  border-radius: var(--radius);
}
.thanks-msg h2 { color: var(--color-primary); margin-bottom: 12px; }

/* Address Autocomplete Dropdown */
.address-dropdown{position:absolute;top:100%;left:0;right:0;z-index:1000;background:#fff;border:1px solid #ddd;border-top:none;border-radius:0 0 8px 8px;box-shadow:0 4px 12px rgba(0,0,0,.1);list-style:none;margin:0;padding:0;max-height:240px;overflow-y:auto}
.address-dropdown__item{padding:10px 14px;cursor:pointer;font-size:14px;line-height:1.4;border-bottom:1px solid #f0f0f0;transition:background .15s}
.address-dropdown__item:last-child{border-bottom:none}
.address-dropdown__secondary{color:#888;font-size:13px}
.address-dropdown__item--active,.address-dropdown__item:hover{background:var(--color-primary-light)}

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 32px; }
.process-step { text-align: center; padding: 32px 24px; }
.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { color: var(--color-text-muted); font-size: 0.95rem; }

/* --- Benefits / Features List --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.feature-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item__icon svg { width: 24px; height: 24px; color: var(--color-primary); }
.feature-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #2d3a1e 100%);
  color: #fff;
  text-align: center;
  padding: var(--spacing-section) 0;
}
.cta-section h2 { color: #fff; font-size: 2.25rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }

.footer__brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
.footer__brand img { height: 38px; width: auto; margin-bottom: 8px; }

.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--color-primary); }
.footer__social a svg { width: 18px; height: 18px; }

.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
.footer ul a:hover { color: var(--color-primary); }

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--color-primary); }
.footer__contact a { color: rgba(255, 255, 255, 0.7); }
.footer__contact a:hover { color: var(--color-primary); }

.footer__bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }
.footer__legal a:hover { color: var(--color-primary); }

/* --- Service Area Links --- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.area-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--color-secondary);
  transition: all var(--transition);
}
.area-grid a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow);
}
.area-grid a svg { width: 16px; height: 16px; color: var(--color-primary); }

/* --- Blog --- */
.blog-card .card-body { padding: 20px 24px; }
.blog-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: flex;
  gap: 16px;
}

.blog-article { max-width: 800px; margin: 0 auto; }
.blog-article h2 { margin-top: 32px; }
.blog-article h3 { margin-top: 24px; }
.blog-article img { border-radius: var(--radius); margin: 24px 0; }
.blog-article blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.author-bio {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  margin-top: 48px;
}
.author-bio img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.author-bio__name { font-weight: 700; color: var(--color-secondary); }
.author-bio__desc { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

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

/* --- Comparison Table --- */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.comparison-table th,
.comparison-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--color-border); }
.comparison-table thead th { background: var(--color-secondary); color: #fff; font-weight: 700; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--color-primary-light); }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid__item:hover img { transform: scale(1.05); }

/* --- Muted Text --- */
.muted { color: var(--color-text-muted); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --spacing-section: 56px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 72px 0 56px; }
  .hero h1 { font-size: 2.25rem; }
  .hero--inner { padding: 48px 0 36px; }
  .card-grid, .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer .container { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { gap: 20px; }
  .trust-bar__item { font-size: 0.85rem; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .stats-bar__item h3 { font-size: 1.75rem; }
  .process-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
}

/* --- Print Styles --- */
@media print {
  .header, .footer, .trust-bar, .cta-section, .btn, .header__toggle, .nav-overlay { display: none !important; }
  .hero { background: none !important; color: #000 !important; padding: 20px 0; }
  .hero h1, .hero p { color: #000 !important; }
  .section { padding: 20px 0; }
  body { font-size: 12pt; }
}
