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

/* ---------------------------------------------------
   TOKENS
--------------------------------------------------- */
:root {
  --c-black: #0B0D0A;
  --c-black-soft: #14170F;
  --c-black-card: #1B1F14;

  --c-lime: #7ED320;
  --c-lime-600: #5CAE15;
  --c-lime-700: #3F7A12;
  --c-lime-light: #A6E85A;

  --c-white: #FFFFFF;
  --c-paper: #F5F7F0;
  --c-paper-2: #ECEFE4;

  --c-text: #14170F;
  --c-text-muted: #565F52;
  --c-text-on-dark: #F5F7F0;
  --c-text-on-dark-muted: #B9C0AC;

  --c-border: #DEE3D3;
  --c-border-dark: #2B301F;

  --font-display: 'Russo One', 'Barlow', sans-serif;
  --font-heading: 'Barlow Condensed', 'Barlow', sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-md: 0 12px 32px -12px rgba(11, 13, 10, 0.35);
  --shadow-lg: 0 24px 64px -20px rgba(11, 13, 10, 0.45);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------
   RESET
--------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-7); }
}

section { position: relative; }

/* ---------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-lime);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--c-lime);
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-text);
  text-transform: uppercase;
}
.section-title--light { color: var(--c-text-on-dark); }
.section-title em {
  font-style: normal;
  color: var(--c-lime-700);
}
.section-title--light em { color: var(--c-lime); }

.section-lede {
  font-size: 17px;
  color: var(--c-text-muted);
  max-width: 60ch;
  line-height: 1.65;
}
.section-lede--light { color: var(--c-text-on-dark-muted); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.section-head.center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------
   BUTTONS
--------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--c-lime);
  color: var(--c-black);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--c-lime-light); box-shadow: var(--shadow-lg); }

.btn--dark {
  background: var(--c-black);
  color: var(--c-white);
}
.btn--dark:hover { background: var(--c-black-soft); }

.btn--outline {
  background: transparent;
  border-color: var(--c-white);
  color: var(--c-white);
}
.btn--outline:hover { background: var(--c-white); color: var(--c-black); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--c-black);
  color: var(--c-black);
}
.btn--outline-dark:hover { background: var(--c-black); color: var(--c-white); }

.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 0 20px; font-size: 13px; }

/* ---------------------------------------------------
   HEADER / NAV
--------------------------------------------------- */
.topbar {
  background: var(--c-black);
  color: var(--c-text-on-dark-muted);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: var(--c-text-on-dark-muted); transition: color 150ms; }
.topbar a:hover { color: var(--c-lime); }
.topbar svg { width: 14px; height: 14px; }
.topbar__links { display: flex; gap: var(--space-5); }
.topbar__social { display: flex; gap: var(--space-3); }
.topbar .topbar__hide-mobile { display: none; }
@media (min-width: 640px) { .topbar .topbar__hide-mobile { display: inline-flex; align-items: center; gap: 6px; } }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-black);
  border-bottom: 1px solid var(--c-border-dark);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--space-5);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand__logo { height: 46px; width: auto; display: block; }
.brand__word {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  color: var(--c-white);
  letter-spacing: 0.01em;
}
.brand__word span { color: var(--c-lime); }
.brand__sub {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--c-lime);
  margin-top: 3px;
}

.nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-text-on-dark-muted);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--c-white); border-color: var(--c-lime); }

.header__actions { display: flex; align-items: center; gap: var(--space-4); }
.header__phone {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-white);
}
@media (min-width: 768px) { .header__phone { display: inline-flex; } }
.header__phone-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-lime);
  color: var(--c-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__phone-icon svg { width: 18px; height: 18px; }
.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-border-dark);
  border-radius: var(--radius-sm);
  color: var(--c-white);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-black-soft);
  border-bottom: 1px solid var(--c-border-dark);
}
.mobile-nav.is-open { display: flex; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.mobile-nav .container { padding-top: var(--space-4); padding-bottom: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--c-text-on-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border-dark);
}
.mobile-nav a[aria-current="page"] { color: var(--c-lime); }
.mobile-nav .header__phone { display: inline-flex; margin-top: var(--space-4); }
.mobile-nav .btn { margin-top: var(--space-3); }

/* ---------------------------------------------------
   HERO
--------------------------------------------------- */
.hero {
  background: var(--c-black);
  color: var(--c-white);
  overflow: hidden;
  position: relative;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(126, 211, 32, 0.14), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(126, 211, 32, 0.10), transparent 40%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  gap: var(--space-8);
  padding: var(--space-8) 0 var(--space-9);
  position: relative;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; padding: var(--space-9) 0 var(--space-9); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: var(--space-4) 0 var(--space-5);
}
.hero__title span { color: var(--c-lime); }

.hero__text {
  font-size: 18px;
  color: var(--c-text-on-dark-muted);
  max-width: 54ch;
  margin-bottom: var(--space-6);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-7); }

.pest-strip { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.pest-chip { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pest-chip__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(245, 247, 240, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--c-white);
}
.pest-chip__icon svg { width: 26px; height: 26px; }
.pest-chip__icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--c-lime);
  transform: rotate(45deg);
}
.pest-chip__icon::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 46px; height: 2px;
  background: var(--c-lime);
  transform: translate(-50%, -50%) rotate(45deg);
}
.pest-chip span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-on-dark-muted);
}

.hero__visual { position: relative; }
.hero__panel {
  background: var(--c-black-card);
  border: 1px solid var(--c-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}
.hero__panel-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--space-2);
}
.hero__panel-sub { color: var(--c-text-on-dark-muted); font-size: 14px; margin-bottom: var(--space-5); }
.hero__badge {
  position: absolute;
  top: -18px; right: 24px;
  background: var(--c-lime);
  color: var(--c-black);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__badge svg { width: 16px; height: 16px; }

/* ---------------------------------------------------
   FORM
--------------------------------------------------- */
.field { margin-bottom: var(--space-4); }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--c-text-on-dark-muted);
}
.field-light label { color: var(--c-text-muted); }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1.5px solid var(--c-border-dark);
  background: rgba(245, 247, 240, 0.04);
  color: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  transition: border-color 150ms, background-color 150ms;
}
.field-light input, .field-light textarea, .field-light select {
  background: var(--c-white);
  border-color: var(--c-border);
  color: var(--c-text);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-lime);
}
.field textarea { resize: vertical; min-height: 110px; }
.field__error {
  display: none;
  color: #FF8A80;
  font-size: 13px;
  margin-top: 6px;
}
.field.has-error input, .field.has-error textarea { border-color: #FF6B6B; }
.field.has-error .field__error { display: block; }
.field__hint { font-size: 13px; color: var(--c-text-on-dark-muted); margin-top: 6px; }

.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  margin-top: var(--space-4);
}
.form-status.is-visible { display: flex; }
.form-status.success { background: rgba(126, 211, 32, 0.14); color: var(--c-lime); border: 1px solid rgba(126, 211, 32, 0.35); }
.form-status.error { background: rgba(220, 38, 38, 0.14); color: #FF8A8A; border: 1px solid rgba(220, 38, 38, 0.35); }
.form-status.error a { color: #FF8A8A; text-decoration: underline; }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------------------------------------------------
   STATS
--------------------------------------------------- */
.stats {
  background: var(--c-paper);
  padding: var(--space-8) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--c-lime-700);
  line-height: 1;
}
.stats__label {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.stats__note {
  text-align: center;
  margin-top: var(--space-6);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-text);
}
.stats__logos {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-7);
  opacity: 0.55;
}
.stats__logos span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* ---------------------------------------------------
   GENERIC SECTIONS
--------------------------------------------------- */
.section { padding: var(--space-9) 0; }
.section--dark { background: var(--c-black); color: var(--c-white); }
.section--paper { background: var(--c-paper); }
.section--tight { padding: var(--space-8) 0; }

.split {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-9); } }
.split--reverse .split__media { order: -1; }
@media (min-width: 1024px) { .split--reverse .split__media { order: 2; } }

.split__media { position: relative; }
.split__art {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--c-black) 0%, var(--c-black-soft) 60%, var(--c-lime-700) 150%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.split__art svg { width: 55%; height: 55%; opacity: 0.92; }
.split__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split__art--photo { background: var(--c-black); }
.split__art--logo { display: flex; align-items: center; justify-content: center; padding: var(--space-7); }
.split__art--logo img { width: 100%; height: auto; object-fit: contain; max-height: 80%; }
.split__badge {
  position: absolute;
  left: -20px; bottom: -20px;
  background: var(--c-lime);
  color: var(--c-black);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}
@media (min-width: 640px) { .split__badge { left: -32px; bottom: -32px; } }
.split__badge-num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}
.split__badge-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.check-list { display: flex; flex-direction: column; gap: var(--space-3); margin: var(--space-5) 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--c-text); }
.check-list--light li { color: var(--c-text-on-dark); }
.check-list__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-lime);
  color: var(--c-black);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-list__icon svg { width: 14px; height: 14px; }

/* ---------------------------------------------------
   SERVICE CARDS
--------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--c-black);
  color: var(--c-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__media {
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-4);
}
.service-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--c-text);
}
.service-card__text { color: var(--c-text-muted); font-size: 14.5px; margin-bottom: var(--space-4); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--c-lime-700);
}
.service-card__link svg { width: 15px; height: 15px; transition: transform 200ms; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

.service-card--dark {
  background: var(--c-black-card);
  border-color: var(--c-border-dark);
}
.service-card--dark .service-card__icon { background: var(--c-lime); color: var(--c-black); }
.service-card--dark .service-card__title { color: var(--c-white); }
.service-card--dark .service-card__text { color: var(--c-text-on-dark-muted); }
.service-card--dark .service-card__link { color: var(--c-lime); }

/* ---------------------------------------------------
   TESTIMONIALS
--------------------------------------------------- */
.testimonial {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testimonial__stars { display: flex; gap: 4px; color: var(--c-lime-700); }
.testimonial__stars svg { width: 18px; height: 18px; }
.testimonial__quote { font-size: 15.5px; color: var(--c-text); line-height: 1.65; flex-grow: 1; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial__name { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; color: var(--c-text); }
.testimonial__loc { font-size: 13px; color: var(--c-text-muted); }

/* ---------------------------------------------------
   FAQ
--------------------------------------------------- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-white);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
}
.faq-item__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-paper-2);
  color: var(--c-text);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms var(--ease), background-color 220ms;
}
.faq-item__icon svg { width: 16px; height: 16px; }
.faq-item[data-open="true"] .faq-item__icon { background: var(--c-lime); color: var(--c-black); transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease);
}
.faq-item__a-inner { padding: 0 var(--space-5) var(--space-5); color: var(--c-text-muted); font-size: 15px; line-height: 1.65; }

/* ---------------------------------------------------
   CTA BANNER
--------------------------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--c-lime) 0%, var(--c-lime-600) 100%);
  color: var(--c-black);
  padding: var(--space-8) 0;
}
.cta-banner__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 38px);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 20ch;
}
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.cta-banner__sub { font-family: var(--font-body); font-weight: 600; font-size: 15px; margin-top: 6px; opacity: 0.85; }

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
.footer { background: var(--c-black); color: var(--c-text-on-dark-muted); padding-top: var(--space-8); }
.footer__top {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--c-border-dark);
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer__about { max-width: 320px; }
.footer__about p { margin-top: var(--space-4); font-size: 14.5px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: var(--space-5); }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--c-border-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms, border-color 150ms, color 150ms;
}
.footer__social a:hover { background: var(--c-lime); border-color: var(--c-lime); color: var(--c-black); }
.footer__social svg { width: 17px; height: 17px; }

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--space-5);
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14.5px; transition: color 150ms; }
.footer__links a:hover { color: var(--c-lime); }

.footer__contact { display: flex; flex-direction: column; gap: var(--space-4); }
.footer__contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--c-lime); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  padding: var(--space-5) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer__bottom a:hover { color: var(--c-lime); }
.footer__legal { display: flex; gap: var(--space-5); }

/* ---------------------------------------------------
   PAGE HEADER (interior pages)
--------------------------------------------------- */
.page-hero {
  background: var(--c-black);
  color: var(--c-white);
  padding: var(--space-8) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 10%, rgba(126, 211, 32, 0.16), transparent 42%);
  pointer-events: none;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  text-transform: uppercase;
  margin-top: var(--space-4);
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text-on-dark-muted);
  margin-top: var(--space-5);
  position: relative;
}
.breadcrumb a:hover { color: var(--c-lime); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------------------------------------------------
   PROCESS STEPS
--------------------------------------------------- */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--space-6); counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-left: 0; }
.step__num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--c-lime-700);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step__title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.step__text { font-size: 14.5px; color: var(--c-text-muted); }

/* ---------------------------------------------------
   TEAM / VALUES CARDS
--------------------------------------------------- */
.value-card { display: flex; gap: var(--space-4); align-items: flex-start; }
.value-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--c-lime);
  color: var(--c-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-card__icon svg { width: 26px; height: 26px; }
.value-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; text-transform: uppercase; margin-bottom: 6px; }
.value-card__text { font-size: 14.5px; color: var(--c-text-muted); }

/* ---------------------------------------------------
   CONTACT PAGE
--------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-7); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-card {
  background: var(--c-black-card);
  border: 1px solid var(--c-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-info-item { display: flex; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--c-border-dark); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-lime);
  color: var(--c-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 22px; height: 22px; }
.contact-info-item__label { font-family: var(--font-heading); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-text-on-dark-muted); margin-bottom: 4px; }
.contact-info-item__value { font-size: 16px; color: var(--c-white); }
.contact-info-item__value a:hover { color: var(--c-lime); }

.map-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 16/8;
}
.map-block iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------------------------------------------
   BLOG
--------------------------------------------------- */
.blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--c-black) 0%, var(--c-black-soft) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__media svg { width: 40%; height: 40%; color: var(--c-lime); opacity: 0.85; }
.blog-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex-grow: 1; }
.blog-card__meta { display: flex; gap: var(--space-3); font-family: var(--font-heading); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-lime-700); }
.blog-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: var(--c-text); text-transform: uppercase; line-height: 1.25; }
.blog-card__text { font-size: 14.5px; color: var(--c-text-muted); flex-grow: 1; }
.blog-card__link { font-family: var(--font-heading); font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--c-lime-700); display: inline-flex; align-items: center; gap: 6px; }
.blog-card__link svg { width: 15px; height: 15px; }

/* ---------------------------------------------------
   SERVICE AREA
--------------------------------------------------- */
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-black-card);
  border: 1px solid var(--c-border-dark);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--c-white);
}
.area-pill svg { width: 15px; height: 15px; color: var(--c-lime); }
.area-pills { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---------------------------------------------------
   SCROLL REVEAL
--------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------
   ARTICLE / BLOG POST
--------------------------------------------------- */
.article-hero { padding-bottom: var(--space-8); }
.article-topic {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-black);
  background: var(--c-lime);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-lede {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--c-text-on-dark-muted);
  margin-top: var(--space-4);
}

.prose h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--c-text);
  margin: var(--space-8) 0 var(--space-4);
  line-height: 1.25;
}
.prose > p:first-child,
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--c-text-muted);
  margin: 0 0 var(--space-4);
}
.prose p strong { color: var(--c-text); }

.check-list { list-style: none; margin: var(--space-5) 0; padding: 0; display: grid; gap: var(--space-3); }
.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-lime);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B0D0A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.mini-steps { display: grid; gap: var(--space-5); margin: var(--space-5) 0 var(--space-6); }
.mini-step { display: flex; gap: var(--space-4); align-items: flex-start; }
.mini-step__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-lime);
  font-family: var(--font-display);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.mini-step__title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--c-text); margin-bottom: 4px; }
.mini-step__text { font-size: 16px; line-height: 1.7; color: var(--c-text-muted); }

.article-pullout {
  background: var(--c-paper);
  border-left: 4px solid var(--c-lime);
  border-radius: var(--radius-sm);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) 0;
}
.article-pullout p { margin: 0; color: var(--c-text); font-size: 17px; }
.article-pullout p + p { margin-top: var(--space-3); }

/* ---------------------------------------------------
   MISC
--------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.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;
}
:focus-visible { outline: 3px solid var(--c-lime); outline-offset: 2px; }
