:root {
  --black: #0a0a0a;
  --ink: #141414;
  --charcoal: #1c1c1c;
  --muted: #3f3f46;
  --muted-soft: #5c6370;
  --line: #e5e7eb;
  --soft: #f4f5f7;
  --white: #ffffff;
  --green: #2ca01c;
  --green-dark: #228016;
  --green-soft: #e8f6e5;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(10, 10, 10, .08);
  --max: 1120px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Instrument Sans", "DM Sans", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .bh-spin, .bh-spin-rev, .bh-spin-slow, .bh-pulse, .bh-breathe, .bh-drift,
  .bh-disk-a, .bh-disk-b, .bh-core img, .bh-energy, .bh-particle, .bh-shimmer,
  .bh-disk, .bh-disk-2, .bh-ring, .bh-halo, .bh-halo-2, .bh-aura, .bh-core,
  .bh-shock, .bh-jet, .bh-stage, .bh-parallax { animation: none !important; }
  .bh-stage { transform: none !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 1.05rem;
  padding-bottom: 76px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--black); color: #fff; padding: .55rem 1rem; border-radius: 6px;
}
.skip:focus { left: .5rem; top: .5rem; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 70px;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; color: #fff; min-width: 0;
}
.brand img {
  height: 34px; width: auto; max-width: 200px;
  object-fit: contain;
}
.brand-fallback {
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .01em; white-space: nowrap;
}
.brand-fallback span { color: var(--green); }
.nav-links {
  display: none; gap: 1.15rem; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none; color: #d1d5db; font-weight: 600; font-size: .92rem;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display: none; }
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18); background: transparent;
  color: #fff; cursor: pointer; font-size: 1.2rem;
}
.nav.open .nav-links {
  display: flex; position: absolute; left: 0; right: 0; top: 70px;
  flex-direction: column; align-items: stretch; gap: 0;
  background: var(--black); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .5rem 1rem 1rem;
}
.nav.open .nav-links a {
  padding: .75rem .4rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav.open .nav-cta { display: block; margin-top: .5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border-radius: 9px; padding: .72rem 1.15rem; font-weight: 700; font-size: .95rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  font-family: inherit; transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid #8fd68a; outline-offset: 2px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { background: var(--soft); }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-lg { padding: .9rem 1.35rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .65; cursor: wait; }

/* Hero */
.hero {
  --bh-x: 72%;
  --bh-y: 50%;
  position: relative;
  color: #fff;
  min-height: clamp(560px, 88vh, 760px);
  padding: 3.2rem 0 3.6rem;
  overflow: hidden;
  isolation: isolate;
  background: #020303;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 25%, rgba(18,36,48,.45), transparent 55%),
    radial-gradient(ellipse 80% 55% at 85% 75%, rgba(14,32,28,.4), transparent 52%),
    radial-gradient(circle at var(--bh-x) var(--bh-y), rgba(6,18,12,.5) 0%, transparent 44%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #04060e 0%, #010205 100%);
  overflow: hidden;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at var(--bh-x) var(--bh-y), rgba(44,160,28,.2) 0%, rgba(44,160,28,.06) 24%, transparent 48%),
    radial-gradient(circle at var(--bh-x) var(--bh-y), rgba(154,224,143,.08) 0%, transparent 55%);
  animation: bh-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
.hero-bg::after { display: none; }
.hero-sky {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  contain: strict;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 90% 80% at 12% 50%, rgba(2,3,8,.88), transparent 58%);
  pointer-events: none;
}
.hero-wrap {
  position: relative; z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.hero-copy {
  position: relative; z-index: 3;
  max-width: 36rem;
  padding: 1.25rem 0;
}
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #9ae08f;
  margin-bottom: .85rem;
}
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
  line-height: 1.08; letter-spacing: -.02em; margin: 0 0 1rem;
  text-shadow: 0 8px 40px rgba(0,0,0,.7);
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero .lede {
  font-size: 1.12rem; color: #d5d9de; max-width: 36rem; margin: 0 0 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.65);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.35rem; }
.hero .btn-primary { background: var(--green); color: #fff; box-shadow: 0 0 28px rgba(44,160,28,.45); }
.hero .btn-primary:hover { background: #35b822; }
.trust-pills { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.trust-pills li {
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: .4rem .85rem; font-size: .88rem; font-weight: 600; color: #e5e7eb;
}

.bh-stage {
  --px: 0px; --py: 0px;
  position: absolute;
  left: var(--bh-x);
  top: var(--bh-y);
  width: min(560px, 92vw);
  aspect-ratio: 1;
  transform: translate(calc(-50% + var(--px)), calc(-50% + var(--py)));
  display: grid; place-items: center;
  z-index: 1;
  pointer-events: none;
  perspective: 1100px;
  contain: layout style;
}
.hero.is-paused .bh-stage *,
.hero.is-paused .bh-stage {
  animation-play-state: paused !important;
}
.bh-stage > * { grid-area: 1 / 1; place-self: center; }

.bh-aura {
  width: 130%; height: 130%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(44,160,28,.5) 0%, rgba(44,160,28,.16) 28%, transparent 58%),
    radial-gradient(circle at 40% 35%, rgba(154,224,143,.2), transparent 42%);
  animation: bh-breathe 3.2s ease-in-out infinite;
}
.bh-halo {
  width: 108%; height: 108%;
  border-radius: 50%;
  border: 1px solid rgba(44,160,28,.4);
  box-shadow:
    0 0 50px rgba(44,160,28,.55),
    0 0 100px rgba(44,160,28,.28),
    0 0 160px rgba(44,160,28,.15),
    inset 0 0 70px rgba(44,160,28,.12);
  animation: bh-pulse 2s ease-in-out infinite;
}
.bh-halo-2 {
  width: 96%; height: 96%;
  border-radius: 50%;
  border: 1px dashed rgba(154,224,143,.35);
  animation: bh-spin-slow 22s linear infinite;
  box-shadow: 0 0 24px rgba(44,160,28,.2);
}
.bh-shock {
  width: 70%; height: 70%;
  border-radius: 50%;
  border: 2px solid rgba(154,224,143,.5);
  box-shadow: 0 0 16px rgba(44,160,28,.35);
  animation: bh-shock 3.2s cubic-bezier(.15,.7,.25,1) infinite;
  opacity: 0;
}
.bh-jet {
  width: 7%; height: 125%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(154,224,143,.12) 18%,
    rgba(44,160,28,.45) 48%,
    rgba(154,224,143,.15) 78%,
    transparent 100%);
  opacity: .5;
  animation: bh-jet 3.6s ease-in-out infinite;
  mix-blend-mode: screen;
  z-index: 2;
  transform: rotate(16deg);
}
.bh-core {
  width: 72%; height: 72%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 4;
  box-shadow:
    0 0 0 3px rgba(44,160,28,.7),
    0 0 40px rgba(44,160,28,.75),
    0 0 90px rgba(44,160,28,.45),
    0 0 140px rgba(10,10,10,.9);
  animation: bh-breathe 3.2s ease-in-out infinite;
}
.bh-core img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  display: block;
  animation: bh-spin 36s linear infinite;
  transform-origin: center center;
}
.bh-core::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(0,0,0,.35) 68%, rgba(0,0,0,.7) 100%),
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.18), transparent 26%);
  pointer-events: none; z-index: 2;
}
.bh-energy {
  width: 84%; height: 84%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  mix-blend-mode: screen;
  opacity: .48;
  animation: bh-spin-rev 22s linear infinite;
  pointer-events: none;
  mask-image: radial-gradient(circle, black 28%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black 28%, transparent 70%);
}
.bh-energy img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.bh-ring {
  border-radius: 50%;
  border: 2px solid transparent;
  z-index: 6;
  pointer-events: none;
  box-sizing: border-box;
}
.bh-ring-a {
  width: 86%; height: 86%;
  border-width: 2.5px;
  border-top-color: rgba(154,224,143,.95);
  border-right-color: rgba(44,160,28,.45);
  border-bottom-color: rgba(44,160,28,.12);
  border-left-color: rgba(154,224,143,.55);
  box-shadow: 0 0 12px rgba(44,160,28,.55);
  animation: bh-spin 10s linear infinite;
}
.bh-ring-b {
  width: 96%; height: 96%;
  border-width: 1.5px;
  border-top-color: rgba(255,255,255,.5);
  border-right-color: rgba(44,160,28,.3);
  border-bottom-color: transparent;
  border-left-color: rgba(154,224,143,.35);
  animation: bh-spin-rev 16s linear infinite;
}
.bh-ring-c {
  width: 66%; height: 66%;
  border-width: 3px;
  border-top-color: #2ca01c;
  border-right-color: rgba(154,224,143,.65);
  border-bottom-color: rgba(44,160,28,.25);
  border-left-color: rgba(200,245,192,.85);
  box-shadow: 0 0 14px rgba(44,160,28,.65);
  animation: bh-spin 7s linear infinite;
  opacity: .95;
}
.bh-disk {
  width: 118%; height: 36%;
  border-radius: 50%;
  z-index: 3;
  background:
    radial-gradient(ellipse at center,
      rgba(154,224,143,.25) 0%,
      rgba(44,160,28,.5) 26%,
      rgba(44,160,28,.18) 48%,
      transparent 70%);
  border: 1px solid rgba(154,224,143,.4);
  box-shadow: 0 0 40px rgba(44,160,28,.4);
  transform: rotateX(68deg) rotateZ(-18deg);
  animation: bh-disk-a 12s linear infinite;
  pointer-events: none;
}
.bh-disk-2 {
  width: 108%; height: 30%;
  opacity: .7;
  transform: rotateX(68deg) rotateZ(12deg);
  animation: bh-disk-b 16s linear infinite;
  z-index: 7;
  mix-blend-mode: screen;
}
.bh-shimmer {
  width: 74%; height: 74%;
  border-radius: 50%;
  z-index: 8;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 50deg,
    rgba(255,255,255,.18) 80deg,
    transparent 120deg,
    transparent 360deg
  );
  animation: bh-spin 6s linear infinite;
  mix-blend-mode: soft-light;
  pointer-events: none;
  mask-image: radial-gradient(circle, transparent 46%, black 56%, black 72%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle, transparent 46%, black 56%, black 72%, transparent 78%);
}
.bh-stars {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.bh-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #c8f5c0;
  box-shadow: 0 0 6px rgba(44,160,28,.8);
  animation: bh-drift 5s linear infinite;
  opacity: 0;
}
.bh-particle:nth-child(1) { top: 8%;  left: 50%; animation-delay: 0s; --dx: 0px; --dy: 110px; }
.bh-particle:nth-child(2) { top: 22%; left: 82%; animation-delay: .7s; width: 2px; height: 2px; --dx: -90px; --dy: 70px; }
.bh-particle:nth-child(3) { top: 55%; left: 92%; animation-delay: 1.4s; --dx: -120px; --dy: 0px; }
.bh-particle:nth-child(4) { top: 86%; left: 62%; animation-delay: 2.1s; width: 2px; height: 2px; --dx: -40px; --dy: -110px; }
.bh-particle:nth-child(5) { top: 78%; left: 18%; animation-delay: 2.8s; --dx: 90px; --dy: -70px; }
.bh-particle:nth-child(6) { top: 30%; left: 10%; animation-delay: 3.5s; width: 2px; height: 2px; --dx: 100px; --dy: 50px; }

@keyframes bh-spin { to { transform: rotate(360deg); } }
@keyframes bh-spin-rev { to { transform: rotate(-360deg); } }
@keyframes bh-spin-slow { to { transform: rotate(360deg); } }
@keyframes bh-disk-a {
  from { transform: rotateX(68deg) rotateZ(-18deg); }
  to   { transform: rotateX(68deg) rotateZ(342deg); }
}
@keyframes bh-disk-b {
  from { transform: rotateX(68deg) rotateZ(12deg); }
  to   { transform: rotateX(68deg) rotateZ(-348deg); }
}
@keyframes bh-pulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes bh-breathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.06); filter: brightness(1.18); }
}
@keyframes bh-drift {
  0%   { opacity: 0; transform: translate(0,0) scale(1.2); }
  12%  { opacity: 1; }
  80%  { opacity: .9; }
  100% { opacity: 0; transform: translate(var(--dx, 40px), var(--dy, 40px)) scale(.05); }
}
@keyframes bh-shock {
  0%   { opacity: .75; transform: scale(.55); }
  70%  { opacity: .2; }
  100% { opacity: 0; transform: scale(1.55); }
}
@keyframes bh-jet {
  0%, 100% { opacity: .28; }
  50% { opacity: .62; }
}

section { padding: 3.6rem 0; }
section h2 {
  font-family: var(--display); font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  letter-spacing: -.02em; color: var(--black); margin: 0 0 .5rem; line-height: 1.15;
}
.section-lead { color: var(--muted); max-width: 40rem; margin: 0 0 1.85rem; }
.section-label {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: .55rem;
}

/* Method / conversion surface */
#start {
  background: var(--soft);
  scroll-margin-top: 84px;
}
.method-grid {
  display: grid; gap: 1.5rem; align-items: start;
}
.method-visual {
  display: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: #050505 url("images/papers-void.jpg") center / cover no-repeat;
  min-height: 420px;
}
.steps {
  list-style: none; margin: 0 0 1.5rem; padding: 0;
  display: grid; gap: .85rem;
}
.steps li {
  display: grid; grid-template-columns: 2rem 1fr; gap: .75rem; align-items: start;
}
.step-n {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--black); color: #9ae08f;
  font-weight: 700; font-size: .9rem;
  display: grid; place-items: center;
  margin-top: .1rem;
}
.steps strong { display: block; color: var(--black); margin-bottom: .15rem; }
.steps span { color: var(--muted); font-size: .98rem; }

/* Forms */
.intake {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem; box-shadow: var(--shadow);
}
.intake.dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.intake.dark label { color: #e5e7eb; }
.intake.dark .form-note, .intake.dark .form-err { color: #a8aeb6; }
.hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.field { display: grid; gap: .3rem; margin-bottom: .85rem; }
.field label, .field .lbl {
  font-weight: 700; font-size: .88rem; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%; min-height: 44px; border-radius: 8px;
  border: 1px solid var(--line); padding: .6rem .75rem;
  font: inherit; color: var(--ink); background: #fff;
}
.intake.dark input, .intake.dark select, .intake.dark textarea {
  background: #111; color: #fff; border-color: rgba(255,255,255,.16);
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--green); outline-offset: 1px;
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea {
  border-color: #b91c1c;
}
.form-err { color: #b91c1c; font-size: .88rem; margin: 0 0 .7rem; display: none; }
.form-err.show { display: block; }
.form-note { margin: .75rem 0 0; font-size: .88rem; color: var(--muted); }
.form-note a { color: inherit; }
.form-success {
  display: none;
  background: var(--green-soft); border: 1px solid #b7e4b0;
  border-radius: var(--radius); padding: 1.15rem 1.2rem;
}
.form-success.show { display: block; }
.form-success h3 { margin: 0 0 .35rem; font-size: 1.1rem; color: var(--black); }
.form-success p { margin: 0; color: var(--muted); }
.intake.is-sent { display: none; }

/* Services */
.svc-grid { display: grid; gap: 1.15rem; }
.svc-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.25rem 1.4rem; background: #fff;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 28px rgba(0,0,0,.04);
}
.svc-card.featured {
  border-color: var(--green);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, #f3faf1 100%);
}
.svc-card h3 {
  font-family: var(--display); margin: 0 0 .45rem; font-size: 1.25rem; color: var(--black);
}
.svc-card p { margin: 0 0 .85rem; color: var(--muted); }
.svc-card ul { margin: 0; padding-left: 1.1rem; flex: 1; }
.svc-card li { margin: .3rem 0; color: var(--muted); font-size: .95rem; }
.svc-price {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-weight: 700; color: var(--green-dark); font-size: .95rem;
}
.svc-actions { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; }
.svc-more { font-weight: 600; font-size: .9rem; }

/* Fit / proof */
#fit { background: var(--white); }
.fit-grid { display: grid; gap: 1rem; }
.fit-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.25rem; background: var(--soft);
}
.fit-card h3 { margin: 0 0 .7rem; font-size: 1.08rem; color: var(--black); }
.fit-card.no { background: #fff; }
.fit-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.fit-card li { margin: .35rem 0; }
.get-back {
  margin-top: 1.25rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.25rem;
}
.get-back h3 { margin: 0 0 .55rem; font-size: 1.08rem; }
.get-back ul { margin: 0; padding-left: 1.1rem; color: var(--muted); columns: 1; }
.get-back li { margin: .3rem 0; }

/* About */
#about { background: var(--soft); }
.about-grid { display: grid; gap: 1.5rem; align-items: start; }
.about-copy p { color: var(--muted); margin: 0 0 1rem; max-width: 40rem; }
.about-copy p:last-child { margin-bottom: 0; }
.about-panel {
  background: var(--black); color: #fff; border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  position: relative; overflow: hidden;
}
.about-panel::before {
  content: ""; position: absolute; right: -30%; top: -20%; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(44,160,28,.22), transparent 65%);
  pointer-events: none;
}
.about-mark {
  width: 88px; height: 88px; border-radius: 50%; overflow: hidden; margin-bottom: 1rem;
  box-shadow: 0 0 0 3px rgba(44,160,28,.4), 0 0 28px rgba(44,160,28,.35);
  position: relative; z-index: 1;
}
.about-mark img { width: 100%; height: 100%; object-fit: cover; }
.about-panel > * { position: relative; z-index: 1; }
.about-panel h3 {
  font-family: var(--display); margin: 0 0 .35rem; font-size: 1.35rem;
}
.about-panel .role { color: #9ae08f; font-weight: 600; margin: 0 0 1rem; font-size: .95rem; }
.about-panel p { color: #c9cdd3; margin: 0 0 .85rem; font-size: .98rem; }
.about-panel p:last-child { margin-bottom: 0; }
.check-list { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.check-list li {
  position: relative; padding: .4rem 0 .4rem 1.6rem; color: #d1d5db; font-size: .95rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .7rem;
  width: .7rem; height: .7rem; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(44,160,28,.2);
}

/* Pricing */
.price-grid { display: grid; gap: 1rem; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.5rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--green); border-width: 2px; }
.price-card .badge {
  align-self: flex-start; background: var(--green); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: 999px; margin-bottom: .7rem;
}
.price-card h3 { margin: 0 0 .25rem; font-size: 1.15rem; color: var(--black); }
.price-card .range {
  font-family: var(--display); font-size: 2rem; color: var(--green-dark);
  margin: 0 0 .7rem; letter-spacing: -.02em;
}
.price-card .range small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card p { margin: 0 0 1rem; color: var(--muted); font-size: .98rem; flex: 1; }
.price-extras { list-style: none; margin: 0 0 1rem; padding: 0; color: var(--muted); font-size: .92rem; }
.price-extras li { padding: .15rem 0; }
.disclaimer {
  margin-top: 1.25rem; font-size: .9rem; color: var(--muted);
  background: var(--soft); border-left: 4px solid var(--green);
  padding: .85rem 1rem; border-radius: 0 8px 8px 0;
}

/* FAQ */
#faq { background: var(--soft); }
.faq-list { display: grid; gap: .65rem; max-width: 46rem; }
details.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 0; overflow: hidden;
}
details.faq summary {
  cursor: pointer; font-weight: 700; color: var(--black);
  padding: 1rem 1.15rem; list-style: none; display: flex;
  justify-content: space-between; gap: 1rem; align-items: center;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; font-size: 1.25rem; color: var(--green-dark); font-weight: 500;
}
details.faq[open] summary::after { content: "−"; }
details.faq .ans {
  padding: 0 1.15rem 1.1rem; color: var(--muted); margin: 0; border-top: 1px solid var(--line);
  padding-top: .9rem;
}

/* Contact */
.contact-grid { display: grid; gap: 1.25rem; }
.contact-card {
  background: var(--black); color: #fff; border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.contact-card h2 { color: #fff; }
.contact-card .section-lead { color: #a8aeb6; }
.contact-card .email-display {
  font-family: var(--display); font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: #9ae08f; text-decoration: none; display: inline-block; margin: .2rem 0 1rem;
  word-break: break-word;
}
.contact-card .email-display:hover { color: #fff; }
.contact-meta { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.contact-meta li { color: #c9cdd3; margin: .45rem 0; font-size: .98rem; }
.contact-meta strong { color: #fff; }

/* Inner pages */
.page-hero {
  background: #0a0a0a;
  color: #fff;
  padding: 2.8rem 0 2.4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -10%; top: -40%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,160,28,.28), transparent 68%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--display); color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -.02em; margin: 0 0 .7rem; line-height: 1.12;
  position: relative;
}
.page-hero .lede { color: #c9cdd3; max-width: 40rem; margin: 0; position: relative; }
.prose { max-width: 42rem; }
.prose h2 {
  font-size: 1.45rem; margin: 2rem 0 .6rem;
}
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.15rem; }
.prose a { font-weight: 600; }
.crumb { font-size: .88rem; color: #9ae08f; margin-bottom: .7rem; position: relative; }
.crumb a { color: #9ae08f; text-decoration: none; }
.crumb a:hover { color: #fff; }

/* Footer */
footer {
  background: var(--charcoal); color: #a8aeb6; padding: 2.1rem 0 2.4rem;
}
.foot-inner {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between; align-items: flex-start;
}
.foot-brand strong {
  display: block; color: #fff; font-family: var(--display);
  font-size: 1.1rem; margin-bottom: .25rem;
}
.foot-links { display: flex; flex-wrap: wrap; gap: .9rem; }
.foot-links a { color: #d1d5db; text-decoration: none; font-weight: 600; }
.foot-links a:hover { color: #fff; }
.foot-copy { width: 100%; font-size: .85rem; margin: .4rem 0 0; color: #8b9199; }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr; gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0,0,0,.06);
}

.reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 899px) {
  .hero { --bh-x: 88%; --bh-y: 12%; min-height: 0; padding: 2rem 0 2.4rem; }
  .bh-stage { width: min(220px, 48vw); opacity: .45; }
  .hero-copy { margin-top: 0; padding-top: .4rem; max-width: 100%; }
  .hero-veil {
    background: linear-gradient(180deg, rgba(2,3,8,.2), rgba(2,3,8,.72) 40%, rgba(2,3,8,.55));
  }
}
@media (min-width: 700px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: repeat(2, 1fr); }
  .get-back ul { columns: 2; }
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }
  .menu-btn { display: none; }
  .nav-links { display: flex; position: static; flex-direction: row; background: none; border: 0; padding: 0; }
  .nav-links a { padding: 0; border: 0; }
  .nav-cta { display: inline-flex; }
  .hero { --bh-x: 74%; --bh-y: 48%; min-height: clamp(620px, 90vh, 820px); padding: 4.4rem 0 4.8rem; }
  .bh-stage { width: min(620px, 52vw); }
  .hero-copy { max-width: 36rem; }
  .method-grid { grid-template-columns: 1.15fr .85fr; gap: 2rem; }
  .method-visual { display: block; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1.2fr .9fr; gap: 2rem; }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
}
