:root {
  --green-950: #073622;
  --green-900: #064d29;
  --green-800: #005f31;
  --green-700: #087a42;
  --green-100: #e8f3ec;
  --green-050: #f3f8f4;
  --ink: #17342b;
  --muted: #60716b;
  --line: #d8e4dc;
  --paper: #fbfdfb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 54, 34, 0.1);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #a8e2bd;
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  z-index: 20;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  color: var(--green-950);
  background: var(--white);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #a8e2bd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green-950);
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
}

.lede {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 9px 20px rgba(0, 95, 49, 0.18);
}

.button--primary:hover {
  background: var(--green-700);
}

.button--secondary {
  color: var(--green-900);
  background: transparent;
  border-color: var(--line);
}

.button--secondary:hover {
  background: var(--green-050);
  border-color: #b9d2c1;
}

.button--light {
  color: var(--green-950);
  background: #c7ebd2;
}

.button--light:hover {
  background: var(--white);
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(251, 253, 251, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--green-950);
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 108px;
  height: 74px;
  border-radius: 12px;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green-800);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand-text small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.095em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-800);
}

.header-phone {
  color: var(--green-900) !important;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--green-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, black 0%, transparent 82%);
  opacity: 0.8;
}

.hero::after {
  position: absolute;
  top: -24%;
  right: -8%;
  width: 62vw;
  height: 62vw;
  max-width: 800px;
  max-height: 800px;
  border: 1px solid rgba(168, 226, 189, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(168, 226, 189, 0.035), 0 0 0 144px rgba(168, 226, 189, 0.025);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 4rem;
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
}

.hero h1 {
  color: var(--white);
}

.hero .lede {
  color: #c9ded2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 500px;
  margin-top: 3.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(201, 222, 210, 0.23);
}

.hero-detail {
  color: #c9ded2;
  font-size: 0.83rem;
}

.hero-detail strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 0.9rem;
}

.survey-graphic {
  position: relative;
  min-height: 370px;
  border: 1px solid rgba(201, 222, 210, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 24px 70px rgba(0, 0, 0, 0.12);
}

.survey-graphic::before,
.survey-graphic::after {
  position: absolute;
  background: rgba(168, 226, 189, 0.2);
  content: "";
}

.survey-graphic::before {
  top: 14%;
  bottom: 14%;
  left: 50%;
  width: 1px;
}

.survey-graphic::after {
  top: 50%;
  right: 14%;
  left: 14%;
  height: 1px;
}

.survey-graphic svg {
  position: absolute;
  inset: 12% 13%;
  width: 74%;
  height: 76%;
  color: #a8e2bd;
}

.graphic-label {
  position: absolute;
  right: 1.15rem;
  bottom: 1.1rem;
  color: #a8e2bd;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: 6.5rem 0;
}

.section--tint {
  background: var(--green-050);
}

.section--dark {
  color: var(--white);
  background: var(--green-950);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-heading > div {
  max-width: 700px;
}

.section-heading p {
  max-width: 540px;
  margin-bottom: 0;
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p {
  color: #bdd4c6;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.card p:last-child {
  margin-bottom: 0;
}

.service-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  border-color: #b7d3c0;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1.35rem;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 12px;
}

.service-icon svg {
  width: 21px;
  height: 21px;
}

.service-card p {
  font-size: 0.93rem;
}

.service-card .service-number {
  color: #97aca2;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.split--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.outline-panel {
  position: relative;
  min-height: 360px;
  padding: 2rem;
  overflow: hidden;
  background: var(--green-100);
  border: 1px solid #c9e1d1;
  border-radius: var(--radius-lg);
}

.outline-panel::before {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(0, 95, 49, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(0, 95, 49, 0.04), 0 0 0 48px rgba(0, 95, 49, 0.035);
  content: "";
}

.outline-panel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 58%;
  background: linear-gradient(135deg, transparent 49.5%, rgba(0, 95, 49, 0.25) 50%, transparent 50.5%), linear-gradient(38deg, transparent 49.4%, rgba(0, 95, 49, 0.22) 50%, transparent 50.6%);
  background-size: 88px 88px, 120px 120px;
  content: "";
}

.outline-panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.outline-panel .panel-code {
  color: var(--green-800);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.outline-panel h3 {
  max-width: 280px;
  margin-top: auto;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.bullet-list {
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted);
}

.bullet-list li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green-700);
  border-radius: 50%;
  content: "";
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.7rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--green-800);
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  background: var(--green-800);
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.05), 0 0 0 60px rgba(255, 255, 255, 0.035);
  content: "";
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 610px;
  color: var(--white);
}

.cta-band p {
  max-width: 600px;
  color: #d5eadc;
}

.page-hero {
  padding: 5.7rem 0 5.2rem;
  background: var(--green-050);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 1rem;
}

.page-hero .lede {
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--green-800);
  font-weight: 750;
  text-decoration: none;
}

.breadcrumb span {
  color: #9badA5;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.contact-details {
  display: grid;
  gap: 1.4rem;
  margin: 2rem 0 0;
}

.contact-detail {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-detail-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 9px;
}

.contact-detail-icon svg {
  width: 17px;
  height: 17px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--green-950);
  font-size: 0.88rem;
}

.contact-detail a,
.contact-detail span {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-card {
  padding: clamp(1.35rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.form-intro {
  margin-bottom: 1.9rem;
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem 1rem;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 800;
}

.required {
  color: var(--green-700);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.88rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cbdad1;
  border-radius: 9px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #87958f;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(0, 95, 49, 0.12);
  outline: none;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #bb433b;
}

.field-error {
  min-height: 1.15rem;
  color: #a12e29;
  font-size: 0.76rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.81rem;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.12rem;
  accent-color: var(--green-800);
}

.consent a {
  color: var(--green-800);
  font-weight: 750;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status {
  display: none;
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 9px;
  font-size: 0.86rem;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  color: #0b5d31;
  background: #e7f6eb;
  border: 1px solid #b8dfc2;
}

.form-status--error {
  color: #8b2622;
  background: #fff0ee;
  border: 1px solid #e7bbb5;
}

.button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.7;
}

.site-footer {
  padding: 3.5rem 0 1.5rem;
  color: #bed2c6;
  background: var(--green-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 3rem;
  padding-bottom: 3.2rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-logo {
  width: 138px;
  height: 95px;
}

.site-footer .brand-text small {
  color: #9fc5ac;
}

.footer-intro {
  max-width: 340px;
  margin: 1.3rem 0 0;
  color: #bed2c6;
  font-size: 0.9rem;
}

.footer-heading {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #bed2c6;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  color: #bed2c6;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(190, 210, 198, 0.18);
  color: #8fac9b;
  font-size: 0.76rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-page {
  background: var(--green-050);
}

.admin-page .site-header {
  background: var(--white);
}

.admin-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  align-items: end;
  gap: 1rem;
}

.admin-control {
  display: grid;
  gap: 0.4rem;
}

.admin-control label {
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-control input {
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cbdad1;
  border-radius: 9px;
}

.admin-control input:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(0, 95, 49, 0.12);
  outline: none;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-controls .form-status {
  grid-column: 1 / -1;
  margin-top: 0;
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.admin-kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.admin-kpi strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--green-800);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.admin-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  color: var(--green-900);
  background: var(--green-050);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td strong {
  color: var(--green-950);
}

.admin-table td small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.77rem;
}

.status-pill {
  display: inline-flex;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.1;
}

.status-pill--clean {
  color: #0b5d31;
  background: #e7f6eb;
}

.status-pill--spam,
.status-pill--error {
  color: #8b2622;
  background: #fff0ee;
}

.admin-table details {
  margin-top: 0.45rem;
  color: var(--green-800);
  font-size: 0.78rem;
}

.admin-table details summary {
  cursor: pointer;
  font-weight: 750;
}

.admin-table details p {
  max-width: 280px;
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  white-space: pre-wrap;
}

.admin-empty {
  margin-top: 1.25rem;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.not-found {
  display: grid;
  min-height: 60vh;
  place-items: center;
  padding: 5rem 0;
  text-align: center;
}

.not-found h1 {
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 6rem);
}

@media (max-width: 900px) {
  .hero-inner,
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 3rem;
  }

  .survey-graphic {
    min-height: 300px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 0.72rem 0.8rem;
  }

  .site-nav .header-phone {
    margin-top: 0.35rem;
    border-top: 1px solid var(--line);
  }

  .hero-inner {
    min-height: 0;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hero::after {
    top: 46%;
    right: -38%;
    width: 110vw;
    height: 110vw;
  }

  .section,
  .page-hero {
    padding: 4.5rem 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 2rem;
  }

  .section-heading .text-link {
    margin-top: 1rem;
  }

  .grid-3,
  .grid-4,
  .stat-row,
  .contact-details,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > :first-child {
    grid-column: auto;
  }

  .footer-bottom,
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .admin-controls,
  .admin-kpis {
    grid-template-columns: 1fr;
  }

  .admin-actions .button {
    flex: 1 1 180px;
  }

  .field--full {
    grid-column: auto;
  }

  .form-footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
