:root {
  --bg: #f7f8f6;
  --surface: #ffffff;
  --surface-soft: #eef3f0;
  --text: #17211c;
  --muted: #5c6a62;
  --accent: #146c52;
  --accent-dark: #0c503d;
  --accent-soft: #dff0e8;
  --border: #dbe3de;
  --shadow: 0 18px 50px rgba(23, 33, 28, 0.09);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(20, 108, 82, .35);
  outline-offset: 3px;
}
img, svg { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-sm { padding: 58px 0; }
.section-soft { background: var(--surface-soft); }
.eyebrow {
  margin: 0 0 14px;
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}
h1, h2, h3 { margin: 0; letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); max-width: 760px; }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lead { margin-top: 24px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); max-width: 760px; }
.small { font-size: .92rem; color: var(--muted); }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,248,246,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219,227,222,.85);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: -.02em; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--text); color: white; font-size: .8rem; letter-spacing: .04em;
}
.nav-links { display: flex; gap: 24px; align-items: center; font-size: .94rem; font-weight: 650; }
.nav-links a:not(.btn):hover { color: var(--accent); }
.menu-btn { display: none; border: 0; background: transparent; font: inherit; font-weight: 750; padding: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 780; font-size: .94rem; transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: white; background: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: transparent; border-color: var(--border); }
.btn-secondary:hover { background: var(--surface); border-color: #bdc9c1; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero { padding: 90px 0 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 70px; align-items: center; }
.hero-card {
  border: 1px solid var(--border); background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  border-radius: 28px; padding: 34px; box-shadow: var(--shadow);
}
.hero-card .quote { font-size: 1.55rem; line-height: 1.25; letter-spacing: -.025em; font-weight: 760; }
.hero-points { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.hero-points li { display: flex; gap: 11px; color: var(--muted); }
.hero-points li::before { content: "✓"; font-weight: 900; color: var(--accent); }
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 24px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.05rem; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted); font-size: .9rem; }

.section-head { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 44px; }
.section-head p { max-width: 520px; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.card p { margin-top: 12px; color: var(--muted); }
.card-link { display: inline-flex; margin-top: 22px; color: var(--accent); font-weight: 760; }
.number { font-size: .82rem; font-weight: 850; letter-spacing: .08em; color: var(--accent); margin-bottom: 20px; }
.problem-list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.problem-row { display: grid; grid-template-columns: 200px 1fr; gap: 26px; background: var(--surface); padding: 26px 28px; }
.problem-row strong { font-size: .95rem; }
.problem-row span { color: var(--muted); }


.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding-top: 22px; border-top: 2px solid var(--border); }
.step::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 22px; color: var(--accent); font-weight: 850; font-size: .8rem; }
.step p { margin-top: 10px; color: var(--muted); }

.about-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: center; }
.about-copy p { margin-top: 18px; color: var(--muted); }

.faq { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); padding: 22px 0; }
summary { cursor: pointer; font-weight: 760; list-style: none; padding-right: 30px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: -3px; color: var(--accent); font-size: 1.45rem; }
details[open] summary::after { content: "–"; }
details p { margin-top: 13px; max-width: 820px; color: var(--muted); }

.final-cta { background: var(--text); color: white; border-radius: 28px; padding: 58px; }
.final-cta p { color: #cbd6cf; max-width: 680px; margin-top: 18px; }
.final-cta .btn-primary { background: #69c3a5; color: #102019; }

.page-hero { padding: 84px 0 62px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.prose { max-width: 790px; }
.prose h2 { margin-top: 50px; font-size: 2rem; }
.prose p, .prose ul { margin-top: 18px; color: var(--muted); }
.prose li + li { margin-top: 9px; }
.service-detail { display: grid; grid-template-columns: 160px 1fr; gap: 38px; padding: 42px 0; border-top: 1px solid var(--border); }
.service-detail:first-child { border-top: 0; }
.service-detail .label { color: var(--accent); font-weight: 820; font-size: .86rem; text-transform: uppercase; letter-spacing: .08em; }
.service-detail p { margin-top: 14px; color: var(--muted); max-width: 720px; }

.form { display: grid; gap: 18px; max-width: 720px; }
.field { display: grid; gap: 7px; }
label { font-weight: 700; font-size: .92rem; }
input, textarea {
  width: 100%; border: 1px solid var(--border); background: var(--surface); color: var(--text);
  border-radius: 12px; padding: 14px 15px; font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 24px; color: var(--muted); font-size: .9rem; }

.site-footer { padding: 55px 0 35px; border-top: 1px solid var(--border); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 50px; }
.footer-brand p { margin-top: 14px; max-width: 440px; color: var(--muted); }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links strong { margin-bottom: 4px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .88rem; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 20px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .menu-btn { display: block; }
  .hero-grid, .about-panel,   .hero { padding-top: 62px; }
  .hero-card { max-width: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .grid-3 { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .hero { padding: 50px 0; }
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .grid-2 { grid-template-columns: 1fr; }
  .trust-grid, .process, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: 0; }
  .problem-row { grid-template-columns: 1fr; gap: 8px; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
  .final-cta { padding: 38px 26px; border-radius: 22px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Personal portrait treatment */
.hero-visual {
  position: relative;
  min-height: 525px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}
.hero-photo-bg {
  position: absolute;
  inset: 38px 4px 0 42px;
  z-index: -2;
  border-radius: 34px;
  background:
    radial-gradient(circle at 68% 24%, rgba(105,195,165,.42), transparent 28%),
    linear-gradient(150deg, #e9f3ee 0%, #d9e9e1 55%, #c8ddd2 100%);
  border: 1px solid rgba(20,108,82,.12);
}
.hero-photo-bg::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -24px;
  top: -22px;
  border-radius: 999px;
  background: rgba(20,108,82,.07);
  z-index: -1;
}
.hero-photo {
  width: min(100%, 455px);
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 28px rgba(23,33,28,.16));
  position: relative;
  z-index: 1;
}
.hero-note {
  position: absolute;
  left: 0;
  bottom: 26px;
  z-index: 2;
  max-width: 310px;
  padding: 17px 19px;
  border: 1px solid rgba(219,227,222,.96);
  border-radius: 16px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 14px 36px rgba(23,33,28,.12);
  backdrop-filter: blur(12px);
}
.hero-note-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: .72rem;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-note strong {
  display: block;
  font-size: .96rem;
  line-height: 1.35;
}
.portrait-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 70% 18%, rgba(105,195,165,.30), transparent 29%),
    linear-gradient(145deg, #eff5f1, #dceae3);
}
.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(20,108,82,.16);
  border-radius: 999px;
}
.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 24px rgba(23,33,28,.14));
}

@media (max-width: 900px) {
  .hero-visual { min-height: 500px; max-width: 560px; margin: 10px auto 0; width: 100%; }
  .hero-photo-bg { inset: 30px 20px 0; }
  .hero-photo { max-height: 520px; }
  .hero-note { left: 18px; bottom: 24px; }
}

@media (max-width: 620px) {
  .hero-visual { min-height: 430px; margin-top: 4px; }
  .hero-photo-bg { inset: 34px 4px 0; border-radius: 26px; }
  .hero-photo { max-height: 440px; }
  .hero-note { left: 10px; right: 10px; bottom: 14px; max-width: 300px; padding: 14px 16px; }
}

.turnstile-slot { min-height: 1px; }
.form-security { margin-top: -4px; }
button:disabled { opacity: .62; cursor: wait; transform: none !important; }

/* GEO / AIO emphasis */
.ai-card {
  border-color: rgba(20,108,82,.34);
  background: linear-gradient(145deg, #ffffff 0%, #eef7f3 100%);
  box-shadow: 0 16px 42px rgba(20,108,82,.08);
}
.ai-focus {
  background:
    radial-gradient(circle at 88% 12%, rgba(105,195,165,.16), transparent 24%),
    var(--bg);
}
.ai-callout {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(20,108,82,.24);
  border-radius: var(--radius);
  background: var(--accent-soft);
}
.ai-callout h3 { max-width: 690px; font-size: clamp(1.35rem, 2.2vw, 2rem); }
.geo-hero {
  background:
    radial-gradient(circle at 85% 12%, rgba(105,195,165,.22), transparent 26%),
    linear-gradient(180deg, #f7f8f6 0%, #f0f5f2 100%);
}
.service-featured {
  margin: 8px -20px;
  padding: 42px 20px;
  border: 1px solid rgba(20,108,82,.26);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #eef7f3);
}
@media (max-width: 620px) {
  .ai-callout { align-items: flex-start; flex-direction: column; }
  .service-featured { margin-left: 0; margin-right: 0; padding-left: 18px; padding-right: 18px; }
}


/* Production accessibility and consent */
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 1000; transform: translateY(-160%); background: var(--text); color: #fff; padding: 10px 14px; border-radius: 10px; font-weight: 750; }
.skip-link:focus { transform: translateY(0); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.consent-banner { position: fixed; z-index: 80; left: 18px; right: 18px; bottom: 18px; width: min(920px, calc(100% - 36px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.98); box-shadow: 0 18px 55px rgba(23,33,28,.18); }
.consent-copy { display: grid; gap: 3px; }
.consent-copy span { color: var(--muted); font-size: .9rem; }
.consent-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.consent-actions > a { color: var(--accent); font-size: .9rem; font-weight: 750; padding: 8px; }
.consent-actions .btn { min-height: 42px; padding: 0 14px; }
.privacy-prose h2:first-child { margin-top: 0; }
.privacy-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) { .consent-banner { align-items: stretch; flex-direction: column; } .consent-actions { justify-content: flex-start; } }
