/* ==========================================================================
   Devon Reviews — stylesheet
   Organised to match index.html section order. Search "SECTION:" to jump.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------ */
:root {
  --green: #1F5C3A;
  --green-dark: #123C27;
  --sage: #E8F1E8;
  --offwhite: #F7F5EF;
  --charcoal: #1E1E1E;
  --sand: #C9A86A;
  --white: #FFFFFF;

  --text: var(--charcoal);
  --text-muted: #5B615C;
  --text-on-dark: #F3F6F3;
  --text-on-dark-muted: #B9C7BE;

  --border: rgba(30, 30, 30, 0.09);
  --border-on-dark: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 2px 8px rgba(18, 60, 39, 0.06);
  --shadow-md: 0 12px 32px rgba(18, 60, 39, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 60, 39, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1180px;
  --section-pad: clamp(56px, 9vw, 112px);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Reset --------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

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

section { padding: var(--section-pad) 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.h-lg {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-sub {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-muted);
}

.bg-sage { background: var(--sage); }
.bg-offwhite { background: var(--offwhite); }
.bg-dark { background: var(--green-dark); color: var(--text-on-dark); }
.bg-dark .text-muted-on-dark { color: var(--text-on-dark-muted); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top .15s ease;
}
.skip-link:focus { top: 16px; }

/* ---- Buttons ------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--green-dark); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--green); background: var(--sage); }

.btn-outline-dark { background: transparent; color: #fff; border-color: var(--border-on-dark); }
.btn-outline-dark:hover { background: rgba(255,255,255,0.08); }

.btn-on-dark { background: #fff; color: var(--green-dark); }
.btn-on-dark:hover { background: var(--sage); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* ---- SECTION: header ------------------------------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  color: var(--green-dark);
}
.brand-logo { height: 52px; width: auto; }
/* Footer sits on a dark background where the logo's dark-green wordmark
   would have poor contrast — render it as a plain white silhouette instead
   of shipping a second image asset. */
.brand-logo-reversed { filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.main-nav a:hover { color: var(--green-dark); }
.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .main-nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--offwhite);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 24px; }

/* ---- SECTION: hero --------------------------------------------------------*/
.hero { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
/* Grid tracks default to a content-based minimum, so a replaced element
   (the SVG illustration) can force the track — and the whole page —
   wider than the viewport. min-width: 0 lets it shrink properly. */
.hero .container > * { min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  border: 1px solid rgba(201, 168, 106, 0.4);
  color: var(--green-dark);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--sand); flex-shrink: 0; }

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--green-dark);
}
.hero-sub {
  margin-top: 22px;
  font-size: 19px;
  color: var(--text-muted);
  max-width: 52ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.hero-visual {
  position: relative;
  background: var(--sage);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-visual-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
  opacity: 0.7;
  margin-bottom: 16px;
}
.hero-visual svg { width: 100%; height: auto; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* ---- SECTION: trust strip --------------------------------------------------*/
.trust-strip { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-strip li {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.trust-strip svg { width: 18px; height: 18px; color: var(--sand); flex-shrink: 0; }
@media (max-width: 760px) {
  .trust-strip ul { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Icon badge (shared) ---------------------------------------------------*/
.icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sage);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.on-dark { background: rgba(255,255,255,0.1); color: #fff; }

/* ---- Generic card grid -----------------------------------------------------*/
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--green-dark); }
.card p { color: var(--text-muted); font-size: 15.5px; }

/* ---- SECTION: problem -------------------------------------------------------*/
.problem-intro { max-width: 700px; margin: 0 auto 48px; text-align: center; }

/* ---- SECTION: benefits ------------------------------------------------------*/
.benefits { }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.benefit-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--green-dark); }
.benefit-item p { color: var(--text-muted); }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---- SECTION: reactivation (free offer) -------------------------------------*/
/* This is the primary commercial section on the page, so it gets extra
   vertical room and sits inside its own elevated panel rather than
   floating directly on the sage background. */
.reactivation { padding-top: clamp(72px, 11vw, 136px); padding-bottom: clamp(72px, 11vw, 136px); }
.reactivation-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(32px, 5vw, 64px);
}
.reactivation-ribbon {
  display: inline-block;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand);
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.reactivation-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.reactivation-inner > * { min-width: 0; }
.reactivation-copy p { color: var(--text-muted); font-size: 16.5px; margin-top: 16px; }
.reactivation-copy .lede { font-size: 19px; color: var(--green-dark); font-weight: 600; margin-top: 14px; }
.reactivation-cta { margin-top: 32px; }
.reactivation-cta .btn { margin-bottom: 12px; }
.reactivation-cta small { display: block; color: var(--text-muted); font-size: 13.5px; }

.step-list { display: flex; flex-direction: column; gap: 18px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.step-number {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--green-dark); }
.step-card p { color: var(--text-muted); font-size: 15px; }

@media (max-width: 900px) { .reactivation-inner { grid-template-columns: 1fr; } }

/* ---- SECTION: timeline (reactivation journey) -------------------------------*/
.timeline { position: relative; }
.timeline-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 26px; left: 8%; right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-item { position: relative; z-index: 1; text-align: left; }
.timeline-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.timeline-item .kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
  display: block;
}
.timeline-item h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
.timeline-item p { color: var(--text-muted); font-size: 15px; }

@media (max-width: 820px) {
  .timeline-track { grid-template-columns: 1fr; gap: 32px; }
  .timeline-track::before { display: none; }
}

/* ---- SECTION: ongoing automation --------------------------------------------*/
.automation { }
.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.automation-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.automation-card .kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--sand);
  margin-bottom: 14px;
}
.automation-card h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.automation-card p { color: var(--text-on-dark-muted); font-size: 14.5px; }
@media (max-width: 900px) { .automation-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .automation-grid { grid-template-columns: 1fr; } }

/* ---- SECTION: features -------------------------------------------------------*/
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features-grid { grid-template-columns: 1fr; } }

/* ---- SECTION: results / case studies ------------------------------------------*/
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .results-grid { grid-template-columns: 1fr; } }

.case-card {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--offwhite);
}
.case-card .case-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--sage);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.case-card dl { margin: 18px 0 0; }
.case-card .case-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 18px;
}
.case-card dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.case-card dd {
  margin: 2px 0 0;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 15px;
}
.case-card h3 { color: var(--green-dark); font-size: 18px; font-weight: 700; }
.case-card .case-loc { color: var(--text-muted); font-size: 14px; margin-top: 2px; }

/* ---- SECTION: industries --------------------------------------------------*/
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--green-dark);
  transition: box-shadow .15s ease, transform .15s ease;
}
.industry-chip:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.industry-chip svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- SECTION: pricing -------------------------------------------------------*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price-card.featured {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}
.price-card.featured .price-plan-desc,
.price-card.featured .price-feature-list li { color: var(--text-on-dark-muted); }
.price-card.featured h3 { color: #fff; }
.price-badge {
  position: absolute;
  top: -14px; left: 30px;
  background: var(--sand);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 { font-size: 20px; font-weight: 700; color: var(--green-dark); }
.price-plan-desc { margin-top: 6px; color: var(--text-muted); font-size: 14.5px; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 24px;
}
.price-amount .amount { font-size: 40px; font-weight: 800; }
.price-amount .period { font-size: 15px; opacity: 0.7; }
.price-feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-feature-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.price-feature-list svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.price-card.featured .price-feature-list svg { color: var(--sand); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; order: -1; }
}

/* ---- SECTION: about ----------------------------------------------------------*/
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about-inner > * { min-width: 0; }
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-copy p { color: var(--text-muted); font-size: 16.5px; margin-top: 16px; }
.about-copy .about-signoff {
  margin-top: 24px;
  font-weight: 700;
  color: var(--green-dark);
}
@media (max-width: 820px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-photo { max-width: 340px; margin: 0 auto; }
}

/* ---- SECTION: FAQ --------------------------------------------------------------*/
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--green-dark);
}
.faq-question .plus {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--green);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-question .plus::before { width: 14px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 14px; transition: transform .2s ease; }
.faq-item.is-open .plus::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-answer-inner { overflow: hidden; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { padding: 0 4px 22px; color: var(--text-muted); font-size: 15.5px; max-width: 68ch; }

/* ---- SECTION: final CTA ---------------------------------------------------------*/
.final-cta { text-align: center; }
.final-cta h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta .section-sub { color: var(--text-on-dark-muted); max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta .hero-ctas { justify-content: center; }
.final-cta small { display: block; margin-top: 18px; color: var(--text-on-dark-muted); font-size: 13.5px; }

/* ---- SECTION: footer --------------------------------------------------------------*/
.site-footer { background: var(--charcoal); color: var(--text-on-dark); padding: 56px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 40ch; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.8); font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ---- Lead modal -------------------------------------------------------------------*/
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 60, 39, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--offwhite);
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.modal-close svg { width: 16px; height: 16px; }
.modal h3 { font-size: 22px; font-weight: 800; color: var(--green-dark); padding-right: 30px; }
.modal .modal-sub { margin-top: 8px; color: var(--text-muted); font-size: 15px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 700; color: var(--green-dark); }
.form-field label .opt { font-weight: 500; color: var(--text-muted); }
.form-field input, .form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--offwhite);
}
.form-field input:focus, .form-field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  background: #fff;
}
.form-field .field-error {
  font-size: 12.5px;
  color: #B3261E;
  min-height: 15px;
}
.modal form .btn { margin-top: 26px; }
.form-privacy-note { margin-top: 14px; font-size: 13px; color: var(--text-muted); text-align: center; }

.modal-success { text-align: center; padding: 12px 0; }
.modal-success .icon-badge { margin: 0 auto 18px; }
.modal-success h3 { padding-right: 0; }
.modal-success p { margin-top: 10px; color: var(--text-muted); }

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---- Scroll reveal ------------------------------------------------------------------*/
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
