/* ============================================================
   LLS SERVICE — Redesign
   Design system: D-Homes orange + charcoal, warm paper,
   Space Grotesk display / Hanken Grotesk body / Space Mono labels
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Hanken+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* color */
  --ink:        #12100D;
  --ink-soft:   #332E27;
  --muted:      #6B6256;
  --muted-2:    #988E82;
  --paper:      #F6F3EC;
  --paper-2:    #FFFCF6;
  --white:      #FFFFFF;
  --line:       #E4DDD2;
  --line-soft:  #EEE7DC;

  --green-950:  #100F0D;
  --green-900:  #1B1814;
  --green-800:  #28231C;
  --green-700:  #C66B00;
  --green-600:  #D98200;
  --green-500:  #F19516;
  --green-100:  #F2DDC0;
  --green-50:   #FFF3E4;

  --lime:       #F28C00;
  --lime-soft:  #FFD69A;

  /* type */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  /* spacing / shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --maxw: 1240px;
  --pad:  clamp(20px, 5vw, 64px);

  --shadow-sm: 0 1px 2px rgba(30,22,12,.06), 0 2px 8px rgba(30,22,12,.04);
  --shadow:    0 8px 30px rgba(45,31,15,.12), 0 2px 8px rgba(45,31,15,.06);
  --shadow-lg: 0 30px 70px rgba(16,15,13,.22), 0 8px 24px rgba(16,15,13,.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 4px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--lime), var(--green-500), var(--green-700));
  box-shadow: 0 0 18px rgba(242,140,0,.32);
}
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: scroll-progress linear both;
    animation-timeline: scroll(root);
  }
  @keyframes scroll-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- shared atoms ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--lime);
  display: inline-block;
}
.kicker.on-dark { color: var(--lime); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  max-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent { background: var(--lime); color: var(--green-950); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(242,140,0,.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-700); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { border-color: var(--lime); color: var(--lime); }

.eyebrow-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 700;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244,245,240,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(244,245,240,.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-image {
  gap: 0;
  max-width: min(210px, 44vw);
}
.brand-logo-img {
  display: block;
  width: auto;
  height: 52px;
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
}
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--green-700);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-word b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.logo-word span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 9px;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink-soft);
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: var(--green-700); background: var(--green-50); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  max-height: 52px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.header-tel svg { width: 16px; height: 16px; color: var(--green-600); }
.hamburger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.hero-badge .pill {
  background: var(--green-700);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  padding: 5px 11px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 600;
}
.hero h1 .em { color: var(--green-700); }
.hero h1 .mark {
  white-space: nowrap;
  background: linear-gradient(transparent 62%, var(--lime) 62%, var(--lime) 92%, transparent 92%);
  background-size: 100% 100%;
  padding-inline: 2px;
  border-radius: 3px;
}
.hero-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 33ch;
  margin-top: 24px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-meta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px var(--green-100); }

/* hero visual */
.hero-visual { position: relative; }
.hero-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame image-slot { width: 100%; height: clamp(380px, 42vw, 560px); }
.hero-img-frame img {
  width: 100%;
  height: clamp(380px, 42vw, 560px);
  object-fit: cover;
  object-position: center;
}
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-float .ic {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--green-50);
  color: var(--green-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float .big { font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1; letter-spacing: -.02em; white-space: nowrap; }
.hero-float .lbl { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.hero-float.tl { top: 22px; left: -26px; }
.hero-float.br { bottom: 24px; right: -26px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(480px 180px at 12% 0%, rgba(242,140,0,.12), transparent 70%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  padding: clamp(34px, 4vw, 56px) 0;
  overflow: hidden;
}
.trust-inner {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}
.trust-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.trust-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
  white-space: nowrap;
}
.trust-line {
  width: min(180px, 24vw);
  height: 1px;
  background: linear-gradient(90deg, var(--green-700), transparent);
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.trust-logos .lg {
  position: relative;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(15px, 1.35vw, 18px);
  color: var(--ink-soft);
  letter-spacing: -.01em;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.trust-logos .lg::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(242,140,0,.12);
}
.trust-logos .lg span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--green-700);
  font-weight: 700;
}
.trust-logos .lg:hover {
  transform: translateY(-4px);
  border-color: var(--green-100);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { scroll-margin-top: 90px; }
.sec { padding: clamp(64px, 8vw, 120px) 0; }
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 4vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head + .values,
.sec-head + .services {
  margin-top: clamp(34px, 4vw, 56px);
}
.sec-head h2 {
  font-size: clamp(30px, 4vw, 50px);
  margin-top: 18px;
}
.sec-head p { margin-top: 20px; color: var(--muted); font-size: clamp(16px,1.3vw,19px); }
.sec-head.center .kicker { justify-content: center; }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 1040px;
  width: 100%;
  margin-inline: auto;
}
.value-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 36px);
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-100); }
.value-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-700);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.value-card .ic svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 21px; }
.value-card p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.value-card.feature {
  grid-column: span 1;
  background: var(--green-800);
  color: #fff;
  border-color: transparent;
}
.value-card.feature .ic { background: var(--lime); color: var(--green-950); }
.value-card.feature p { color: rgba(255,255,255,.72); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-inline: auto;
}
.svc {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s, background .22s;
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0;
}
.svc > * { position: relative; z-index: 1; }
.svc:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--shadow-lg); }
.svc:hover::after { opacity: 1; }
.svc:hover, .svc:hover .svc-desc, .svc:hover .svc-num { color: #fff; }
.svc:hover .svc-ic { background: rgba(255,255,255,.12); color: var(--lime); }
.svc:hover .svc-arrow { background: var(--lime); color: var(--green-950); border-color: var(--lime); }
.svc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: auto; }
.svc-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-700);
  display: grid; place-items: center;
  transition: background .25s, color .25s;
}
.svc-ic svg { width: 26px; height: 26px; }
.svc-num { font-family: var(--mono); font-size: 13px; color: var(--muted-2); font-weight: 700; transition: color .25s; }
.svc h3 { font-size: 21px; margin-top: 26px; }
.svc-desc { margin-top: 10px; color: var(--muted); font-size: 15px; transition: color .25s; }
.svc-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  margin-top: 22px;
  color: var(--ink);
  transition: background .25s, color .25s, border-color .25s;
}
.svc-arrow svg { width: 16px; height: 16px; }
.service-more { margin-top: 30px; display: flex; justify-content: center; }

/* ============================================================
   INDUSTRIES (split section, dark)
   ============================================================ */
.industries {
  background: var(--green-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.industries::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(242,140,0,.15), transparent 60%),
    radial-gradient(600px 500px at 0% 100%, rgba(217,130,0,.14), transparent 55%);
  pointer-events: none;
}
.ind-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.ind-grid .sec-head { margin-bottom: 0; }
.ind-grid h2 { color: #fff; }
.ind-grid .sec-head p { color: rgba(255,255,255,.66); }
.ind-tags {
  grid-column: 1 / -1;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  scrollbar-width: none;
}
.ind-tags::-webkit-scrollbar { display: none; }
.ind-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: tag-marquee 30s linear infinite;
  animation-play-state: paused;
}
.ind-tags.is-running .ind-track { animation-play-state: running; }
.ind-tags:hover .ind-track { animation-play-state: paused; }
@keyframes tag-marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(calc(-50% - 6px),0,0); }
}
.ind-tag {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 500;
  transition: background .2s, border-color .2s, transform .2s;
}
.ind-tag:hover { background: rgba(242,140,0,.14); border-color: var(--lime); transform: translateY(-2px); }
.ind-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.area-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.area-visual img {
  width: 100%;
  height: clamp(280px, 34vw, 460px);
  object-fit: cover;
}
@supports (animation-timeline: view()) {
  .area-visual img,
  .about-photo img,
  .hero-img-frame img {
    animation: image-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes image-drift {
    from { transform: scale(1.06) translateY(18px); }
    to { transform: scale(1.06) translateY(-18px); }
  }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  background: var(--lime);
  color: var(--green-950);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 18px clamp(16px,3vw,40px);
  border-left: 1px solid rgba(16,15,13,.16);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat .lbl { font-size: 15px; font-weight: 600; margin-top: 12px; }
.stat .sub { font-size: 13px; color: var(--green-800); opacity: .8; margin-top: 4px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 34px 30px 36px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.step h3 { font-size: 22px; }
.step p { margin-top: 12px; color: var(--muted); font-size: 15.5px; }
.step-line {
  position: absolute;
  top: 57px;
  right: -10px;
  color: var(--green-100);
  z-index: 2;
}
.step-line svg { width: 20px; height: 20px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
}
.quote.lead {
  background: var(--green-800);
  color: #fff;
  border-color: transparent;
  grid-row: span 2;
  justify-content: space-between;
}
.quote .mark { font-family: var(--display); font-size: 56px; line-height: .6; color: var(--lime); height: 30px; }
.quote blockquote { font-family: var(--display); font-weight: 500; font-size: clamp(19px,1.6vw,25px); line-height: 1.32; letter-spacing: -.01em; margin: 24px 0 0; flex: 1; }
.quote.lead blockquote { font-size: clamp(22px,2vw,30px); }
.quote-by { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.quote-by image-slot { width: 48px; height: 48px; flex-shrink: 0; }
.review-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper-2);
  box-shadow: 0 8px 22px rgba(5, 25, 16, .12);
  background: var(--paper);
}
.quote.lead .review-avatar {
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.quote-by .nm { font-family: var(--display); font-weight: 600; font-size: 16px; }
.quote-by .rl { font-size: 13.5px; color: var(--muted); }
.quote.lead .quote-by .rl { color: rgba(255,255,255,.6); }
.stars { display: flex; gap: 3px; color: var(--lime); margin-bottom: 4px; }
.stars svg { width: 16px; height: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(32px,4vw,64px);
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  padding: 26px 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px,1.5vw,21px);
  letter-spacing: -.01em;
  color: var(--ink);
}
.faq-ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s, transform .3s;
  color: var(--green-700);
}
.faq-ic svg { width: 16px; height: 16px; }
.faq-item.open .faq-ic { background: var(--green-700); color: #fff; border-color: var(--green-700); transform: rotate(135deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 4px 28px; color: var(--muted); font-size: 16px; max-width: 64ch; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding-bottom: clamp(64px,8vw,110px); }
.cta-box {
  position: relative;
  background: var(--green-800);
  border-radius: var(--r-xl);
  padding: clamp(40px,5vw,72px);
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 10%, rgba(242,140,0,.18), transparent 60%);
  pointer-events: none;
}
.cta-box h2 { color: #fff; font-size: clamp(30px,3.6vw,46px); position: relative; }
.cta-box p { color: rgba(255,255,255,.72); margin-top: 18px; font-size: 18px; position: relative; max-width: 44ch; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; position: relative; }
.cta-actions .btn { width: 100%; justify-content: center; }
.cta-note { font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,.6); text-align: center; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-950); color: rgba(255,255,255,.7); padding: clamp(56px,6vw,84px) 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer .logo-word b, .footer .logo-word span { color: #fff; }
.footer .logo-word span { color: rgba(255,255,255,.5); }
.footer .brand-logo-img,
.mobile-menu .brand-logo-img {
  height: 42px;
  max-height: 42px;
  max-width: 220px;
}
.footer .logo-image,
.mobile-menu .logo-image {
  height: 52px;
  max-height: 52px;
  padding: 5px 10px;
  border-radius: 14px;
  background: var(--paper-2);
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}
.footer-blurb { margin-top: 22px; font-size: 15px; max-width: 34ch; line-height: 1.65; }
.footer h4 { font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 15px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-contact p { font-size: 15px; line-height: 1.7; }
.footer-contact a { color: var(--lime); font-family: var(--mono); font-size: 14px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  font-size: 13.5px;
  flex-wrap: wrap;
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIM
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NATIVE SCROLL-DRIVEN MOTION
   ============================================================ */
@supports (animation-timeline: view()) {
  .sec-head .kicker,
  .sec-head h2,
  .sec-head p,
  .value-card,
  .svc,
  .flow-step,
  .detail,
  .quote,
  .faq-item,
  .stat {
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: view();
    will-change: opacity, translate, scale, filter, clip-path;
  }

  .sec-head .kicker {
    animation-name: native-kicker-in;
    animation-range: entry 0% cover 18%;
  }

  .sec-head h2 {
    animation-name: native-title-in;
    animation-range: entry 2% cover 26%;
  }

  .sec-head p {
    animation-name: native-copy-in;
    animation-range: entry 8% cover 30%;
  }

  .value-card,
  .svc,
  .flow-step,
  .detail,
  .quote,
  .faq-item,
  .stat {
    --native-x: 0px;
    animation-name: native-card-in;
    animation-range: entry 0% cover 34%;
  }

  .value-card:nth-child(odd),
  .svc:nth-child(3n + 1),
  .quote:nth-child(odd),
  .flow-step:nth-child(odd) {
    --native-x: -18px;
  }

  .value-card:nth-child(even),
  .svc:nth-child(3n),
  .quote:nth-child(even),
  .flow-step:nth-child(even) {
    --native-x: 18px;
  }

  .svc:nth-child(3n + 2),
  .detail:nth-child(even),
  .stat:nth-child(even) {
    --native-x: 0px;
    animation-range: entry 6% cover 38%;
  }

  .cta-box {
    animation: native-cta-focus linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
  }

  @keyframes native-kicker-in {
    from { opacity: 0; translate: 0 16px; filter: blur(4px); }
    to { opacity: 1; translate: 0 0; filter: blur(0); }
  }

  @keyframes native-title-in {
    from { opacity: .1; translate: 0 34px; clip-path: inset(0 0 100% 0); }
    65% { opacity: 1; clip-path: inset(0 0 0 0); }
    to { opacity: 1; translate: 0 0; clip-path: inset(0 0 0 0); }
  }

  @keyframes native-copy-in {
    from { opacity: 0; translate: 0 20px; filter: blur(3px); }
    to { opacity: 1; translate: 0 0; filter: blur(0); }
  }

  @keyframes native-card-in {
    from { opacity: .08; translate: var(--native-x) 42px; scale: .96; filter: blur(6px); }
    62% { opacity: 1; filter: blur(0); }
    to { opacity: 1; translate: 0 0; scale: 1; filter: blur(0); }
  }

  @keyframes native-cta-focus {
    from { opacity: .4; translate: 0 42px; scale: .96; }
    to { opacity: 1; translate: 0 0; scale: 1; }
  }
}

@supports (animation-timeline: scroll()) {
  .hero-visual {
    animation: native-hero-drift linear both;
    animation-timeline: scroll(root);
    animation-range: 0 720px;
    will-change: translate, scale, opacity;
  }

  .site-header {
    animation: native-header-depth linear both;
    animation-timeline: scroll(root);
    animation-range: 0 160px;
  }

  @keyframes native-hero-drift {
    from { translate: 0 0; scale: 1; opacity: 1; }
    to { translate: 0 -34px; scale: .985; opacity: .9; }
  }

  @keyframes native-header-depth {
    from { box-shadow: 0 0 0 rgba(5,25,16,0); }
    to { box-shadow: 0 14px 34px rgba(5,25,16,.08); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ind-track,
  .scroll-progress,
  .hero-visual,
  .site-header,
  .sec-head .kicker,
  .sec-head h2,
  .sec-head p,
  .value-card,
  .svc,
  .flow-step,
  .detail,
  .quote,
  .faq-item,
  .stat,
  .cta-box {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .hamburger {
    display: grid; place-items: center;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line);
  }
  .hamburger svg { width: 22px; height: 22px; }
  .header-tel { display: none; }
  .values, .services, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card.feature { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .trust-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-copy {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    display: grid;
    justify-items: center;
  }
  .hero-badge { margin-inline: auto; }
  .hero-lead {
    max-width: 34ch;
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-meta {
    justify-content: center;
    text-align: center;
  }
  .hero-float.tl { left: 12px; }
  .hero-float.br { right: 12px; }
  .ind-grid, .faq-grid, .cta-box { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .quote.lead { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .values, .services, .process-grid { grid-template-columns: 1fr; }
  .value-card.feature { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-float { display: none; }
  .hero { padding-top: 30px; }
  .hero-img-frame { border-radius: 24px; }
  .hero h1 { font-size: clamp(38px, 13vw, 58px); }
  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-meta {
    max-width: 30ch;
    margin-inline: auto;
    line-height: 1.45;
  }
  .footer-top { grid-template-columns: 1fr; }
  .header-cta .btn-primary { display: none; }
  .trust-logos { grid-template-columns: 1fr; }
  .trust-logos .lg { min-height: 76px; }
  .trust-head { justify-content: flex-start; }
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--green-950);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px var(--pad);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu .mm-head { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.mobile-menu .mm-close { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); border: none; color: #fff; display: grid; place-items: center; }
.mobile-menu .mm-close svg { width: 22px; height: 22px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.mobile-menu nav a { font-family: var(--display); font-weight: 600; font-size: 28px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .mm-foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-bottom: 12px; }
