@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --green: #0a6b36;
  --green-dark: #07552b;
  --cream-light: #f5efe4;
  --footer-bg: #0f2618;
  --brand-border: #e2d6c2;
  --brand-muted: #5e6c63;
  --brand-text: #203126;
  --white: #ffffff;
  --radius-sm: 0.625rem;
  --radius-md: calc(0.625rem + 4px);
  --radius-lg: 1.125rem;
  --radius-xl: 1.375rem;
  --radius-pill: 999px;
  --shadow-card: 0 16px 40px rgba(0,0,0,.08);
  --shadow-hover: 0 20px 50px rgba(0,0,0,.12);
  --transition: 0.2s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--brand-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-light); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  padding: 4rem 5%;
}
.section--cream { background: var(--cream-light); }
.section--white { background: var(--white); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  min-height: 48px;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 0;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn--primary-lg {
  background: var(--green);
  color: var(--white);
  padding: 0.875rem 2rem;
  min-height: 54px;
}
.btn--primary-lg:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--green-dark);
}
.btn--white:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
}
.btn--full { width: 100%; }

/* =============================================
   BADGE / PILL LABELS
   ============================================= */
.badge {
  display: inline-block;
  background: rgba(10,107,54,0.1);
  color: var(--green-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card--cream {
  background: var(--cream-light);
}
.card--pad { padding: 1.5rem; }
.card--pad-lg { padding: 1.75rem; }

/* =============================================
   CHECK LIST
   ============================================= */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--brand-text);
}
.check-list li .icon-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green);
  margin-top: 2px;
}

/* =============================================
   FORMS
   ============================================= */
.form-field {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  color: var(--brand-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-field::placeholder { color: var(--brand-muted); opacity: 0.75; }
.form-field:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10,107,54,0.15);
}
textarea.form-field {
  min-height: 100px;
  resize: vertical;
}
.form-stack { display: flex; flex-direction: column; gap: 1rem; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.is-scrolled {
  border-bottom-color: var(--brand-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo { height: 44px; width: auto; }
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav__links a {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--green); }
.nav__links a.active { color: var(--green); }
.nav__cta { display: none; }
.nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--green-dark);
  padding: 0.5rem;
}
.nav__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--brand-border);
  padding: 1rem 5%;
  flex-direction: column;
  gap: 1rem;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  display: block;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--white) 50%, var(--white) 100%);
  padding: 4rem 5%;
}
.hero__inner { max-width: 1180px; margin: 0 auto; }
.hero__content { max-width: 860px; }
.hero__badge { margin-bottom: 1rem; }
.hero__h1 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--brand-muted);
  max-width: 760px;
  margin-bottom: 2rem;
}
.hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 700px;
  margin-bottom: 2rem;
}
.hero__trust-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero__trust-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.hero__trust-pill svg { flex-shrink: 0; color: var(--green); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.hero__social-proof { color: var(--brand-muted); font-weight: 600; font-size: 0.95rem; margin-top: 0.75rem; }

/* =============================================
   LOGO STRIP
   ============================================= */
.logo-strip {
  background: var(--cream-light);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 2rem 5%;
}
.logo-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.logo-strip__card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-strip__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.logo-strip__img-wrap {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-strip__img { max-height: 80px; max-width: 100%; object-fit: contain; }
.logo-strip__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brand-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--brand-muted);
  max-width: 760px;
  margin: 0 auto;
}
.section-header--left { text-align: left; }
.section-header--left p { margin: 0; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.service-card .service-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  transition: color var(--transition);
}
.service-card .service-link:hover { color: var(--green-dark); text-decoration: underline; }

/* =============================================
   WHY US ITEMS
   ============================================= */
.why-grid { display: grid; gap: 1.25rem; }
.why-item {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.why-item svg { flex-shrink: 0; color: var(--green); }
.why-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.375;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-grid { display: grid; gap: 1.25rem; }
.step-card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.step-card p { color: var(--brand-muted); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid { display: grid; gap: 1.25rem; }
.testimonial-card {
  background: var(--cream-light);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}
.testimonial-card:hover { border-color: var(--green); box-shadow: var(--shadow-hover); }
.testimonial-icon { color: rgba(10,107,54,0.25); margin-bottom: 1rem; }
.testimonial-quote {
  color: var(--brand-text);
  line-height: 1.625;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }
.testimonial-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
}
.testimonial-title {
  display: block;
  color: var(--brand-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* =============================================
   AREAS GRID
   ============================================= */
.areas-grid { display: grid; gap: 1rem; }
.area-card {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.area-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.area-card__header svg { color: var(--green); flex-shrink: 0; }
.area-card__header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
}
.area-card p { color: var(--brand-muted); font-size: 0.9rem; }

/* =============================================
   CONTACT FORM BOX
   ============================================= */
.contact-box {
  background: var(--cream-light);
  border: 1px solid var(--brand-border);
  border-radius: calc(var(--radius-xl) + 4px);
  padding: 1.5rem 2rem;
  height: 100%;
}
.contact-box h2, .contact-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.contact-box > p {
  color: var(--brand-muted);
  margin-bottom: 1.5rem;
}
.contact-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--brand-text);
}
.contact-info li svg { color: var(--green); flex-shrink: 0; }
.contact-info a:hover { color: var(--green); }

/* =============================================
   FOOTER CTA
   ============================================= */
.footer-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 3rem 5%;
}
.footer-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer-cta h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 0.5rem;
}
.footer-cta p {
  color: rgba(255,255,255,0.9);
  max-width: 620px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 2.5rem 5%;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer__logo { height: 60px; width: auto; }
.footer__copy { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 0.5rem; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

/* =============================================
   FLOATING CALL BUTTON
   ============================================= */
.call-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(10,107,54,0.35);
  z-index: 100;
  transition: background-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.call-float:hover { background: var(--green-dark); transform: translateY(-2px); }
.call-float span { display: none; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--white) 60%);
  padding: 3.5rem 5%;
  border-bottom: 1px solid var(--brand-border);
}
.page-hero__inner { max-width: 1180px; margin: 0 auto; }
.page-hero__breadcrumb {
  font-size: 0.85rem;
  color: var(--brand-muted);
  margin-bottom: 1rem;
}
.page-hero__breadcrumb a { color: var(--green); font-weight: 600; }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 18ch;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--brand-muted);
  max-width: 640px;
  margin-bottom: 1.5rem;
}

/* =============================================
   CONTENT SECTIONS (inner pages)
   ============================================= */
.content-grid {
  display: grid;
  gap: 2rem;
}
.content-feature {
  background: var(--white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.content-feature h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.content-feature p {
  color: var(--brand-muted);
  margin-bottom: 1rem;
}
.content-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

/* =============================================
   COMPLIANCE MATRIX
   ============================================= */
.compliance-matrix {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.compliance-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--brand-border);
  background: var(--white);
}
.compliance-row:last-child { border-bottom: none; }
.compliance-row:nth-child(even) { background: var(--cream-light); }
.compliance-row__label {
  font-weight: 600;
  color: var(--brand-text);
}
.compliance-row__label small {
  display: block;
  font-weight: 400;
  color: var(--brand-muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.compliance-badge--yes { background: rgba(10,107,54,0.1); color: var(--green-dark); }
.compliance-badge--review { background: rgba(245,158,11,0.1); color: #92400e; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--brand-border);
}
.faq-item:first-child { border-top: 1px solid var(--brand-border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--brand-muted);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { max-height: 600px; }

/* =============================================
   INTERNAL LINK BANNER
   ============================================= */
.link-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 5%;
  background: var(--cream-light);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.link-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.link-banner__label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-muted);
  margin-right: 0.5rem;
}
.link-banner a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  padding: 0.5rem 1rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-pill);
  background: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.link-banner a:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 640px) {
  .logo-strip__inner { grid-template-columns: repeat(4, 1fr); }
  .logo-strip__card { min-height: 190px; }
  .logo-strip__img-wrap { height: 95px; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .section { padding: 5.5rem 5%; }
  .hero { padding: 5rem 5%; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-cta__inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .call-float span { display: inline; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .hero__h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
}

/* =============================================
   AREAS + CONTACT LAYOUT
   ============================================= */
.areas-contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .areas-contact-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-green { color: var(--green); }
.text-green-dark { color: var(--green-dark); }
.text-muted { color: var(--brand-muted); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
