:root {
  color-scheme: light;
  --sdb-green: #008a76;
  --sdb-green-dark: #006b5d;
  --sdb-green-soft: #e6f4f1;
  --sdb-mint: #f4fbf9;
  --sdb-gold: #c99a2e;
  --ink: #1d252d;
  --muted: #61706d;
  --line: #dce5e2;
  --page: #f7faf9;
  --field: #ffffff;
  --danger: #9a3412;
  --success: #067647;
  --shadow: 0 18px 48px rgba(16, 44, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.top-strip {
  min-height: 38px;
  display: flex;
  justify-content: flex-start;
  gap: 26px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: #49605c;
  font-size: 0.88rem;
}

.main-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid #eef3f1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sdb-green);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.12rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  direction: ltr;
  text-align: right;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #344b47;
  font-weight: 700;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--sdb-green-soft);
  color: var(--sdb-green-dark);
}

.service-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 154, 46, 0.16), transparent 26%),
    linear-gradient(135deg, #f9fcfb 0%, #eff8f5 45%, #e6f4f1 100%);
  border-bottom: 1px solid var(--line);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: 100%;
  padding: clamp(38px, 6vw, 76px) max(16px, calc((100vw - 1180px) / 2));
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sdb-green-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.lede {
  max-width: 48rem;
  margin-bottom: 28px;
  color: #425955;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sdb-green);
  color: #fff;
  padding: 0 28px;
  border-radius: 3px;
  font-weight: 850;
}

.primary-link:hover,
.primary-link:focus-visible,
button:hover,
button:focus-visible {
  background: var(--sdb-green-dark);
}

.sla {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(0, 138, 118, 0.26);
  background: rgba(255, 255, 255, 0.72);
  color: var(--sdb-green-dark);
  padding: 0 18px;
  font-weight: 750;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card div {
  min-height: 126px;
  padding: 22px;
  border-inline-start: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card div:nth-child(2n) {
  border-inline-start: 0;
}

.service-card div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-card span,
.service-card strong {
  display: block;
}

.service-card span {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card strong {
  color: var(--sdb-green-dark);
  font-size: 1.08rem;
}

.content-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 70px;
  align-items: start;
}

.guidance {
  position: sticky;
  top: 136px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.guidance h2,
.form-heading h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  line-height: 1.3;
}

.guidance ul {
  margin: 0;
  padding: 0 20px 0 0;
  color: #445c57;
  line-height: 1.9;
}

.notice {
  margin-top: 24px;
  padding: 18px;
  background: var(--sdb-mint);
  border: 1px solid #c7e6df;
}

.notice strong,
.notice span {
  display: block;
}

.notice strong {
  margin-bottom: 8px;
  color: var(--sdb-green-dark);
}

.notice span {
  color: var(--muted);
  line-height: 1.6;
}

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(17, 48, 43, 0.07);
}

.form-heading {
  padding: 30px 34px 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin-bottom: 8px;
  color: var(--sdb-green-dark);
  font-weight: 850;
}

.form-heading h2 {
  margin-bottom: 0;
}

.smart-routing {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: center;
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--sdb-mint);
  border: 1px solid #c7e6df;
}

.smart-routing span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: var(--sdb-green);
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.smart-routing strong {
  color: var(--sdb-green-dark);
  font-size: 0.94rem;
}

form {
  padding: 30px 34px 34px;
}

.grid {
  display: grid;
  gap: 18px;
}

.two {
  grid-template-columns: 1fr 1fr;
}

label,
fieldset {
  display: block;
  margin: 0 0 18px;
}

label > span,
legend {
  display: block;
  margin-bottom: 8px;
  color: #273b37;
  font-size: 0.94rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfdad7;
  border-radius: 2px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 170px;
  line-height: 1.7;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sdb-green);
  box-shadow: 0 0 0 4px rgba(0, 138, 118, 0.12);
  background: #fff;
}

fieldset {
  border: 1px solid var(--line);
  padding: 16px 18px 8px;
}

.choice,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.choice input,
.consent input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
  accent-color: var(--sdb-green);
}

.choice span,
.consent span {
  margin: 0;
  color: var(--ink);
  font-weight: 550;
  line-height: 1.65;
}

.captcha {
  display: grid;
  grid-template-columns: 1fr minmax(140px, 0.42fr);
  gap: 10px 14px;
  align-items: end;
}

.captcha > span:first-child {
  grid-column: 1 / -1;
}

.captcha-question {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid #c7e6df;
  background: var(--sdb-mint);
  padding: 0 14px;
  color: var(--sdb-green-dark);
  font-weight: 900;
}

.message {
  min-height: 24px;
  margin: 8px 0 18px;
  font-weight: 800;
  line-height: 1.6;
}

.message.error {
  color: var(--danger);
}

.message.success {
  color: var(--success);
}

button {
  min-height: 52px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 3px;
  background: var(--sdb-green);
  color: #fff;
  padding: 0 22px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

button:hover {
  transform: translateY(-1px);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

button svg {
  width: 22px;
  height: 22px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (max-width: 960px) {
  .main-nav,
  .top-strip {
    width: min(100% - 24px, 1180px);
  }

  .main-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .service-hero,
  .content-shell {
    grid-template-columns: 1fr;
  }

  .guidance {
    position: static;
  }

  .service-card {
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .top-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }

  .service-hero {
    padding: 34px 16px;
  }

  .content-shell {
    width: min(100% - 20px, 1180px);
    margin-top: 22px;
  }

  .service-card,
  .two,
  .captcha {
    grid-template-columns: 1fr;
  }

  .service-card div,
  .service-card div:nth-child(2n),
  .service-card div:nth-last-child(-n + 2) {
    border-inline-start: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card div:last-child {
    border-bottom: 0;
  }

  .form-heading,
  form,
  .guidance {
    padding: 20px;
  }

  .smart-routing {
    grid-template-columns: 1fr;
  }
}
