:root {
  --ink: #18201d;
  --graphite: #343a37;
  --muted: #66706b;
  --line: #dce5e0;
  --paper: #f4f7f5;
  --paper-strong: #edf3ef;
  --white: #ffffff;
  --green: #00a95c;
  --green-deep: #007d47;
  --green-dark: #005f37;
  --mint: #e8f7ef;
  --success: #087b4c;
  --warning: #8a5200;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(35, 55, 45, .10);
  --shadow-soft: 0 12px 34px rgba(35, 55, 45, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--green-deep); }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.draft-banner {
  padding: 8px 20px;
  color: #fff;
  background: var(--warning);
  text-align: center;
  font-size: .8rem;
  font-weight: 760;
  letter-spacing: .02em;
}

.site-header, footer {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header { min-height: 86px; gap: 34px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.brand img { width: 178px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); }
.site-nav > a, .header-link { color: var(--graphite); text-decoration: none; font-size: .88rem; font-weight: 650; }
.site-nav > a:hover, .header-link:hover { color: var(--green-deep); }
.header-cta { min-height: 42px !important; padding: 9px 17px !important; font-size: .86rem; }

main { overflow: hidden; }
.hero {
  width: min(1240px, calc(100% - 48px));
  margin: 12px auto 32px;
  min-height: 610px;
  padding: clamp(38px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(30px, 4vw, 66px);
  align-items: center;
  border: 1px solid #e2eae5;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 12%, rgba(0, 169, 92, .08), transparent 26%),
    linear-gradient(135deg, #fbfdfc 0%, #f2f7f4 100%);
  box-shadow: var(--shadow-soft);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green-deep);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow > span { width: 24px; height: 2px; display: inline-block; border-radius: 99px; background: var(--green); }
h1, h2, legend { letter-spacing: -.042em; line-height: 1.06; }
h1 { max-width: 650px; margin: 0; font-size: clamp(3rem, 5vw, 5.3rem); font-weight: 760; }
h2 { margin: 0; font-size: clamp(2.15rem, 3.3vw, 3.65rem); font-weight: 740; }
.hero-lead { max-width: 610px; margin: 25px 0 31px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 12px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 760;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid rgba(0, 169, 92, .28); outline-offset: 3px; }
.button-primary { color: #fff; background: var(--green); box-shadow: 0 11px 26px rgba(0, 169, 92, .22); }
.button-primary:hover { background: var(--green-deep); }
.button-secondary { color: var(--graphite); background: var(--white); border-color: #cfdad4; }
.button-secondary:hover { border-color: var(--green); }
.trust-list { margin: 31px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; list-style: none; color: var(--muted); font-size: .82rem; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }

.hero-visual { position: relative; min-height: 440px; }
.hero-visual > img { width: 100%; height: 440px; object-fit: cover; object-position: 63% center; border-radius: 28px; }
.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 340px;
  padding: 17px 19px;
  display: grid;
  grid-template-columns: 13px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(207, 221, 213, .9);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(0, 169, 92, .13); }
.hero-card strong, .hero-card small { display: block; }
.hero-card strong { font-size: .88rem; }
.hero-card small { margin-top: 3px; color: var(--muted); font-size: .72rem; }

.signal-bar {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 116px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.signal-bar article { padding: 5px 28px; display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; }
.signal-bar article + article { border-left: 1px solid var(--line); }
.signal-bar > article > span { color: var(--green); font-size: .72rem; font-weight: 850; letter-spacing: .08em; }
.signal-bar strong, .signal-bar small { display: block; }
.signal-bar strong { font-size: .9rem; }
.signal-bar small { margin-top: 3px; color: var(--muted); font-size: .76rem; }

.services { width: min(1120px, calc(100% - 48px)); margin: 0 auto 120px; }
.section-heading { margin-bottom: 42px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-grid article {
  position: relative;
  min-height: 260px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(38, 57, 48, .045);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-grid article:hover { transform: translateY(-4px); border-color: #a9d8bf; box-shadow: var(--shadow-soft); }
.service-number { position: absolute; top: 24px; right: 25px; color: #aab5af; font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.service-icon { width: 49px; height: 49px; margin-bottom: auto; display: grid; place-items: center; color: var(--green-deep); border-radius: 15px; background: var(--mint); font-size: .8rem; font-weight: 900; letter-spacing: .04em; }
.service-grid strong { font-size: 1.06rem; }
.service-grid p { margin: 8px 0 0; color: var(--muted); font-size: .87rem; }

.expertise {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 120px;
  padding: clamp(26px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  border-radius: 30px;
  background: var(--paper);
}
.expertise-image { position: relative; margin: 0; }
.expertise-image > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-soft); }
.expertise-image figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(220, 229, 224, .95);
  border-radius: 15px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow-soft);
}
.expertise-image figcaption span, .expertise-image figcaption strong { display: block; }
.expertise-image figcaption span { color: var(--green-deep); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.expertise-image figcaption strong { margin-top: 4px; font-size: .88rem; }
.expertise-copy > p:not(.eyebrow) { margin: 23px 0 0; color: var(--muted); }
.check-list { margin: 30px 0 0; padding: 0; display: grid; gap: 20px; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-items: center; color: var(--green-deep); border-radius: 50%; background: var(--mint); font-size: .72rem; font-weight: 900; }
.check-list strong, .check-list span { display: block; }
.check-list strong { font-size: .92rem; }
.check-list span { margin-top: 3px; color: var(--muted); font-size: .82rem; }

.process { width: min(1120px, calc(100% - 48px)); margin: 0 auto 120px; }
.process-heading { max-width: 700px; margin-bottom: 42px; }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; counter-reset: none; }
.process-grid li { min-height: 190px; padding: 28px; border-top: 3px solid var(--green); border-radius: 0 0 18px 18px; background: var(--paper); }
.process-grid li > span { display: block; margin-bottom: 38px; color: var(--green-deep); font-size: .73rem; font-weight: 850; letter-spacing: .1em; }
.process-grid strong { font-size: 1.02rem; }
.process-grid p { margin: 7px 0 0; color: var(--muted); font-size: .85rem; }

.qualification {
  padding: 110px max(24px, calc((100% - 1120px) / 2));
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(42px, 7vw, 84px);
  align-items: start;
  background: var(--paper);
}
.qualification-intro { position: sticky; top: 38px; }
.qualification-intro > p:not(.eyebrow) { color: var(--muted); }
.privacy-note { margin-top: 30px; padding: 19px; display: grid; grid-template-columns: 34px 1fr; gap: 13px; border: 1px solid #cce7d8; border-radius: 16px; background: var(--mint); }
.privacy-icon { width: 30px; height: 30px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--green); font-weight: 900; }
.privacy-note p { margin: 5px 0 0; color: var(--muted); font-size: .82rem; }
.form-card { min-height: 600px; padding: clamp(25px, 5vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); scroll-margin-top: 24px; }
.progress-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .76rem; font-weight: 700; }
.progress-track { height: 5px; margin: 10px 0 35px; overflow: hidden; border-radius: 99px; background: #e5ece8; }
.progress-track span { display: block; height: 100%; border-radius: inherit; background: var(--green); transition: width .25s ease; }
fieldset { margin: 0; padding: 0; border: 0; }
legend { margin-bottom: 8px; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 750; }
.step-copy { margin: 0 0 26px; color: var(--muted); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-grid .full { grid-column: 1 / -1; }
label, .choice-group > span { display: flex; flex-direction: column; gap: 7px; color: #39443f; font-size: .84rem; font-weight: 710; }
input, select, textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--ink); border: 1px solid #cbd7d1; border-radius: 11px; background: #fff; }
input:hover, select:hover, textarea:hover { border-color: #9db9aa; }
textarea { resize: vertical; }
input[type="checkbox"], input[type="radio"] { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--green); }
.choice-group { margin: 22px 0; display: flex; flex-wrap: wrap; gap: 12px 22px; }
.choice-group > span { width: 100%; }
.choice { flex-direction: row; align-items: flex-start; font-weight: 560; }
.standalone { margin-top: 18px; }
.form-actions { margin-top: 30px; justify-content: flex-end; }
.form-error { padding: 12px 15px; color: #8e1b2e; border-radius: 10px; background: #fff0f2; font-size: .85rem; }
.review-summary { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.review-summary div { padding: 14px; border-radius: 12px; background: var(--paper); }
.review-summary dt { color: var(--muted); font-size: .7rem; font-weight: 760; text-transform: uppercase; letter-spacing: .05em; }
.review-summary dd { margin: 4px 0 0; font-size: .88rem; }
.consent-box { padding: 20px; display: grid; gap: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdfc; }
.honeypot { position: absolute !important; left: -9999px !important; }
.success-panel { display: grid; place-items: center; align-content: center; text-align: center; }
.success-icon { width: 56px; height: 56px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--success); font-size: 1.6rem; font-weight: 900; }
.success-panel h2 { margin-top: 20px; }
.success-panel p { max-width: 500px; color: var(--muted); }

footer { min-height: 150px; gap: 30px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-brand img { width: 145px; height: auto; }
footer div span { color: var(--muted); font-size: .8rem; }
footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
footer a { color: var(--muted); text-decoration: none; font-size: .82rem; }

.legal-page { background: var(--paper); }
.legal { width: min(820px, calc(100% - 40px)); margin: 35px auto 90px; padding: clamp(26px, 6vw, 64px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.legal h1 { color: var(--ink); font-size: clamp(2.3rem, 5vw, 4rem); }
.legal h2 { margin-top: 38px; font-size: 1.45rem; }
.legal p, .legal li { color: #46524c; }
.legal-status { padding: 12px 15px; color: var(--green-dark) !important; border-radius: 10px; background: var(--mint); font-weight: 750; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 390px; }
  .hero-visual > img { height: 390px; }
  .section-heading, .expertise, .qualification { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; }
  .expertise-image { max-width: 720px; }
  .qualification-intro { position: static; max-width: 720px; }
}

@media (max-width: 760px) {
  .site-header, footer, .hero, .services, .expertise, .process, .signal-bar { width: min(100% - 28px, 1240px); }
  .site-nav > a { display: none; }
  .brand img { width: 150px; }
  .hero { padding: 38px 22px 22px; border-radius: 25px; }
  h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .hero-visual, .hero-visual > img { min-height: 320px; height: 320px; }
  .hero-visual > img { object-position: 68% center; border-radius: 20px; }
  .hero-card { left: 14px; right: 14px; bottom: 14px; }
  .signal-bar { grid-template-columns: 1fr; padding: 10px 0; }
  .signal-bar article { padding: 17px 8px; }
  .signal-bar article + article { border-top: 1px solid var(--line); border-left: 0; }
  .service-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .expertise { padding: 20px; }
}

@media (max-width: 560px) {
  .site-header { min-height: 72px; }
  .brand img { width: 132px; }
  .header-cta { min-height: 40px !important; padding-inline: 13px !important; font-size: .78rem; }
  .hero { margin-top: 4px; }
  .hero-actions .button { width: 100%; }
  .service-grid, .process-grid, .field-grid, .review-summary { grid-template-columns: 1fr; }
  .service-grid article { min-height: 225px; }
  .expertise-image figcaption { left: 10px; right: 10px; bottom: 10px; }
  .qualification { padding-block: 75px; }
  .form-card { min-height: 0; padding: 24px 18px; }
  .form-actions .button { flex: 1; }
  footer { padding-block: 34px; align-items: flex-start; flex-direction: column; }
  footer nav { justify-content: flex-start; }
}

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