/* ============================================================
   Qualified Arborist — Design System
   qualifiedarborist.ca
   ============================================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --green-900: #0d2818;
  --green-800: #1a3a2a;
  --green-700: #2d5a3d;
  --green-600: #3d7a52;
  --green-500: #4e9a67;
  --green-400: #6bb380;
  --green-300: #a3d4b1;
  --green-100: #e8f5ec;

  --earth-700: #5a3e0a;
  --earth-600: #8b6914;
  --earth-500: #b8921e;
  --earth-400: #d4a82a;
  --earth-300: #e8c964;

  --cream: #f5f1eb;
  --cream-dark: #ebe5d9;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-600: #666666;
  --gray-400: #999999;
  --gray-200: #e0e0e0;
  --gray-100: #f4f4f4;

  --danger: #c0392b;
  --danger-light: #fef2f0;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 80px;
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

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

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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-family: var(--font);
  font-size: 1rem;
}

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

/* --- Utility Classes --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(13, 40, 24, 0.97);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-400);
  transition: width 0.3s var(--ease);
}

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

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-500);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav__cta:hover {
  background: var(--green-400);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 40, 24, 0.92) 0%,
    rgba(26, 58, 42, 0.85) 40%,
    rgba(45, 90, 61, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 154, 103, 0.2);
  border: 1px solid rgba(78, 154, 103, 0.4);
  color: var(--green-300);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: var(--green-400);
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--green-400);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(78, 154, 103, 0.3);
}

.btn--primary:hover {
  background: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 154, 103, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--dark {
  background: var(--green-800);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--green-700);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background: var(--green-900);
  color: var(--white);
}

.section--gray {
  background: var(--gray-100);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section--dark .section__label {
  color: var(--green-400);
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section--dark .section__title {
  color: var(--white);
}

.section__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease);
}

.service-card__link:hover {
  gap: 10px;
}

/* ============================================================
   TRUST / WHY CHOOSE US
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 24px;
}

.trust-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(78, 154, 103, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-item__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--green-400);
  fill: none;
  stroke-width: 1.5;
}

.trust-item__number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-item__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.area-tag {
  background: var(--green-100);
  color: var(--green-800);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s var(--ease);
}

.area-tag:hover {
  background: var(--green-300);
}

/* ============================================================
   CONTACT / QUOTE FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-top: 12px;
}

.contact-info__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.contact-info__desc {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 1.5;
}

.contact-info__text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info__text span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-info__text a {
  color: var(--green-600);
  transition: color 0.2s;
}

.contact-info__text a:hover {
  color: var(--green-500);
}

/* Form */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form__group {
  margin-bottom: 16px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(78, 154, 103, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-400);
}

.form__textarea {
  min-height: 100px;
  resize: vertical;
}

.form__submit {
  margin-top: 8px;
}

.form__status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form__status--success {
  display: block;
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-300);
}

.form__status--error {
  display: block;
  background: var(--danger-light);
  color: var(--danger);
  border: 1px solid rgba(192, 57, 43, 0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer__about {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__heading {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer__list a:hover {
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ============================================================
   ESTIMATOR PAGE
   ============================================================ */
.estimator-hero {
  background: var(--green-900);
  padding: 120px 0 60px;
  text-align: center;
}

.estimator-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.estimator-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.estimator-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding: 48px 0 80px;
  align-items: start;
}

/* Calculator Panel */
.calc-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.calc-panel__section {
  margin-bottom: 36px;
}

.calc-panel__section:last-child {
  margin-bottom: 0;
}

.calc-panel__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  margin-bottom: 20px;
}

/* Diameter display */
.diameter-display {
  text-align: center;
  margin-bottom: 24px;
}

.diameter-display__number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-800);
  line-height: 1;
}

.diameter-display__unit {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-left: 4px;
}

.diameter-display__label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Stump visual */
.stump-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  margin-bottom: 24px;
}

.stump-visual__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--earth-400), var(--earth-700));
  border: 3px solid var(--earth-600);
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
}

.stump-visual__circle::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Slider */
.slider-container {
  position: relative;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-300), var(--green-600));
  outline: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-600);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: grab;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.slider::-webkit-slider-thumb:hover {
  border-color: var(--green-500);
  box-shadow: 0 2px 12px rgba(78, 154, 103, 0.3);
}

.slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-600);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: grab;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* Backfill option */
.option-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.option-check:hover {
  border-color: var(--green-300);
}

.option-check.checked {
  border-color: var(--green-500);
  background: var(--green-100);
}

.option-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--green-600);
  cursor: pointer;
}

.option-check__text {
  flex: 1;
}

.option-check__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.option-check__desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 2px;
}

/* Price display */
.price-display {
  background: var(--green-900);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.price-display__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-400);
  margin-bottom: 8px;
}

.price-display__range {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.price-display__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* Lead capture sidebar */
.lead-panel {
  position: sticky;
  top: 100px;
}

.lead-panel__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.lead-panel__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.lead-panel__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.5;
}

.lead-panel__success {
  text-align: center;
  padding: 40px 20px;
}

.lead-panel__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lead-panel__success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-600);
  fill: none;
  stroke-width: 2;
}

.lead-panel__success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lead-panel__success p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Disclaimer */
.disclaimer {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--earth-400);
}

.disclaimer__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--earth-600);
  margin-bottom: 8px;
}

.disclaimer__text {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .estimator-layout {
    grid-template-columns: 1fr;
  }

  .lead-panel {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 40, 24, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    backdrop-filter: blur(10px);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    width: 100%;
    justify-content: center;
  }

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

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .calc-panel {
    padding: 24px;
  }

  .lead-panel__card {
    padding: 24px;
  }

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