:root {
  --bg: #fff7f7;
  --bg-strong: #ffffff;
  --panel: #ffffff;
  --panel-soft: #fff1f1;
  --text: #17171b;
  --muted: #5f6068;
  --line: rgba(156, 22, 36, 0.14);
  --accent: #c7182b;
  --accent-dark: #8f1020;
  --accent-soft: #ffe5e8;
  --accent-ghost: rgba(199, 24, 43, 0.08);
  --shadow: 0 18px 48px rgba(84, 16, 22, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --wrap: min(1140px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 24, 43, 0.15), transparent 28%),
    linear-gradient(180deg, #fffdfd 0%, var(--bg) 100%);
  color: var(--text);
  font: 16px/1.6 Segoe UI, Tahoma, sans-serif;
}

body.admin-shell {
  background: linear-gradient(180deg, #25070b 0%, #120408 100%);
  color: #fff1f1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, #7d101c 0%, #b91527 38%, #cf2435 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 38px rgba(84, 16, 22, 0.2);
}

.site-header__inner,
.site-footer__meta,
.hero__actions,
.header-actions,
.admin-panel__header,
.admin-topbar__inner {
  display: flex;
  align-items: center;
}

.site-header__inner,
.admin-topbar__inner {
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 102px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: clamp(170px, 19vw, 240px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(90, 10, 19, 0.22));
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 247, 247, 0.14);
  color: #fffdfd;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle[aria-expanded="true"] {
  background: rgba(255, 249, 249, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
}

.mobile-nav-toggle:hover {
  transform: translateY(-1px);
}

.brand__text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand--admin .brand__text {
  color: rgba(255, 241, 241, 0.82);
}

.main-nav,
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.main-nav {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.header-actions {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.header-actions .main-nav {
  flex-wrap: nowrap;
}

.main-nav__link,
.text-link,
.admin-nav__link {
  color: var(--muted);
  transition: color 0.18s ease, opacity 0.18s ease;
}

.main-nav__link {
  padding: 14px 18px;
  border-radius: 16px;
  color: rgba(255, 249, 249, 0.96);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(76, 10, 18, 0.2);
  border: 1px solid transparent;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--accent-dark);
  background: #fff7f7;
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 12px 24px rgba(84, 16, 22, 0.18);
}

.main-nav__link:hover {
  transform: translateY(-1px);
}

.admin-nav__link {
  color: rgba(255, 241, 241, 0.78);
}

.text-link:hover {
  color: var(--accent-dark);
}

.admin-nav__link:hover {
  color: #ffffff;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 4, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.admin-topbar__inner {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.hero,
.page-hero {
  padding: 46px 0 18px;
}

.hero + .section,
.page-hero + .section {
  padding-top: 36px;
}

.hero__grid,
.content-grid,
.admin-login,
.site-footer__grid,
.admin-split {
  display: grid;
  gap: 28px;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  align-items: start;
}

.hero__stack {
  display: grid;
  gap: 18px;
}

.hero-surface {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(199, 24, 43, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(199, 24, 43, 0.05), transparent 24%),
    linear-gradient(135deg, #fffefe 0%, #fff8f8 68%, #fff2f3 100%);
  box-shadow: 0 22px 48px rgba(84, 16, 22, 0.09);
  overflow: hidden;
}

.hero-surface::after {
  content: '';
  position: absolute;
  right: -54px;
  top: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 24, 43, 0.08) 0%, rgba(199, 24, 43, 0) 72%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-surface--home,
.hero-surface--page {
  gap: 18px;
}

.hero__grid--page {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.hero__copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.hero__headline,
.hero__intro {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0 16px;
}

.hero__headline .eyebrow {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding-left: 10px;
  padding-bottom: 12px;
  z-index: 1;
}

.hero__headline .eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 21, 39, 0.82) 0%, rgba(185, 21, 39, 0) 100%);
}

.hero__intro {
  max-width: none;
}

.hero__headline > *,
.hero__intro > * {
  margin-bottom: 0;
}

.hero__copy > * {
  margin-bottom: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  max-width: 14ch;
}

.hero__headline h1,
.hero__copy h1 {
  max-width: none;
}

.hero__headline h1 {
  margin: 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
}

.lead--hero {
  max-width: none;
}


.card,
.contact-card,
.admin-panel,
.card--login,
.flash {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
}

.card,
.contact-card,
.card--login {
  padding: 24px;
}

.admin-panel {
  padding: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--primary:hover {
  background: var(--accent-dark);
}

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

.button--secondary:hover {
  border-color: rgba(199, 24, 43, 0.28);
  background: rgba(199, 24, 43, 0.06);
  color: var(--accent-dark);
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-form__input {
  min-width: 0;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 249, 249, 0.12);
  color: #fffdfd;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.search-form__input::placeholder {
  color: rgba(255, 240, 240, 0.76);
}

.search-form__input:focus {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 250, 250, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.search-form__submit {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 247, 0.16);
  color: #fffdfd;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.search-form__submit:hover {
  background: rgba(255, 249, 249, 0.24);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
}

.search-form--header {
  position: relative;
  width: min(280px, 100%);
}

.search-form--header .search-form__input {
  width: 100%;
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.header-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(199, 24, 43, 0.16);
  border-radius: 20px;
  background: rgba(255, 252, 252, 0.98);
  box-shadow: 0 24px 56px rgba(62, 11, 18, 0.2);
  backdrop-filter: blur(18px);
  z-index: 30;
}

.header-search-results[hidden] {
  display: none !important;
}

.header-search-result {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(199, 24, 43, 0.08);
  color: var(--text);
}

.header-search-result:hover {
  background: #fff5f6;
  border-color: rgba(199, 24, 43, 0.18);
}

.header-search-result strong {
  color: var(--accent-dark);
  font-size: 0.98rem;
}

.header-search-result span,
.header-search-empty {
  color: #4d5058;
  font-size: 0.92rem;
  line-height: 1.5;
}

.header-search-empty {
  padding: 10px 12px;
}

.search-form__button {
  min-width: 126px;
}

.search-panel__meta {
  display: grid;
  gap: 14px;
}

.search-panel__count {
  margin: 0;
  color: #3a3c44;
  font-weight: 600;
}

.search-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(199, 24, 43, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--accent-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.search-chip:hover {
  background: rgba(199, 24, 43, 0.05);
}

.search-results {
  display: grid;
  gap: 18px;
}

.search-result {
  display: grid;
  gap: 12px;
}

.search-result h2,
.search-empty h2 {
  margin: 0;
}

.search-result p,
.search-empty p {
  margin: 0;
}

.search-empty {
  display: grid;
  gap: 12px;
}

.section--muted {
  background: linear-gradient(180deg, rgba(199, 24, 43, 0.04) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.section--accent {
  background: linear-gradient(180deg, rgba(199, 24, 43, 0.08) 0%, rgba(255, 229, 232, 0.72) 100%);
}

.section--trust {
  padding-top: 12px;
  padding-bottom: 28px;
}

.trust-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(126px, 162px) minmax(0, 1fr);
  gap: 4px;
  align-items: center;
  padding: 18px 0 20px;
}

.trust-band__head {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  padding: 0 16px;
}

.trust-band::before,
.trust-band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 24, 43, 0.22) 0%, rgba(199, 24, 43, 0.06) 42%, rgba(199, 24, 43, 0) 100%);
}

.trust-band::before {
  top: 0;
}

.trust-band::after {
  bottom: 0;
}

.trust-band__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 0;
}

.trust-band__logo img {
  width: min(100%, 116px);
  max-width: 110px;
  max-height: 110px;
  object-fit: contain;
}

.trust-band__head .eyebrow {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding-left: 10px;
  padding-bottom: 12px;
}

.trust-band__head .eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 21, 39, 0.82) 0%, rgba(185, 21, 39, 0) 100%);
}

.trust-band__head h2 {
  max-width: none;
  text-wrap: balance;
  margin: 0 0 10px;
}

.trust-band__body {
  display: grid;
  gap: 0;
  margin: 0 16px;
}

.trust-band__body p {
  max-width: 74ch;
  color: #3d3f47;
}

.trust-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
  color: #3d3f47;
}

.trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-heading {
  margin-bottom: 26px;
  padding: 0 16px;
}

.section-heading .eyebrow,
.pests .eyebrow {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding-left: 10px;
  padding-bottom: 12px;
}

.section-heading .eyebrow::after,
.pests .eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 21, 39, 0.92) 0%, rgba(185, 21, 39, 0) 100%);
}

.section-heading h2,
.pests h2 {
  position: relative;
  display: inline-block;
  max-width: none;
  margin: 0;
}

.pests > div {
  display: grid;
  gap: 8px;
  padding: 0 16px;
  margin-bottom: 20px;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card__eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.service-card__header .card__eyebrow {
  margin-bottom: 0;
}

.service-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff5f6 0%, #ffe6e9 100%);
  border: 1px solid rgba(199, 24, 43, 0.14);
}

.service-card__icon {
  width: 28px;
  height: 28px;
}

.homepage-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(199, 24, 43, 0.14);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffefe 0%, #fff1f2 100%);
  box-shadow: 0 18px 38px rgba(84, 16, 22, 0.08);
}

.homepage-cta__copy {
  display: grid;
  gap: 8px;
}

.homepage-cta__copy h2,
.homepage-cta__copy p {
  margin: 0;
}

.homepage-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.card--compact {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f6 100%);
}

.documentation-listing {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.documentation-sds {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.documentation-sds__head {
  margin-bottom: 0;
}

.documentation-sds__head p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

.documentation-sds__head a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.documentation-sds__head a:hover,
.documentation-sds__head a:focus-visible {
  text-decoration: none;
}

.documentation-sds__head a:visited {
  color: #6f3f7d;
}

.documentation-sds__panel {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(38, 39, 45, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 245, 246, 0.96) 100%);
  box-shadow: 0 18px 40px rgba(36, 24, 26, 0.06);
}

.documentation-sds-search {
  position: relative;
  display: grid;
  gap: 12px;
}

.documentation-sds-search__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.documentation-sds-search__field {
  position: relative;
}

.documentation-sds-search__field::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(48, 79, 118, 0.42);
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.documentation-sds-search__field::before {
  content: '';
  position: absolute;
  right: 13px;
  top: calc(50% + 8px);
  width: 8px;
  height: 2px;
  background: rgba(48, 79, 118, 0.42);
  transform: rotate(45deg);
  pointer-events: none;
}

.documentation-sds-search__input {
  width: 100%;
  min-height: 60px;
  padding: 0 56px 0 18px;
  border: 1px solid rgba(38, 39, 45, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.documentation-sds-search__input:focus {
  outline: none;
  border-color: rgba(185, 21, 39, 0.44);
  box-shadow: 0 0 0 4px rgba(185, 21, 39, 0.1);
}

.documentation-sds-search__hint,
.documentation-sds-search__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.documentation-sds-search__results {
  display: grid;
  gap: 10px;
}

.documentation-sds-search__result,
.documentation-sds-search__empty {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(38, 39, 45, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.documentation-sds-search__result {
  display: grid;
  gap: 4px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.documentation-sds-search__result:hover,
.documentation-sds-search__result:focus-visible,
.documentation-sds-search__result.is-active {
  border-color: rgba(185, 21, 39, 0.28);
  box-shadow: 0 14px 30px rgba(185, 21, 39, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.documentation-sds-search__result strong,
.documentation-sds-search__result small {
  display: block;
}

.documentation-sds-search__result strong {
  font-size: 1rem;
}

.documentation-sds-search__result small {
  color: var(--muted);
  font-size: 0.88rem;
}

.documentation-sds-search__empty {
  color: var(--muted);
}

.documentation-sds-search__empty--static {
  background: rgba(255, 255, 255, 0.8);
}

.documentation-listing--flush {
  margin-top: 0;
}

.documentation-listing__head {
  margin-bottom: 0;
}

.documentation-table-wrap {
  overflow-x: auto;
}

.documentation-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.documentation-table__col--icon {
  width: 52px;
}

.documentation-table__col--content {
  width: 220px;
}

.documentation-table__col--description {
  width: auto;
}

.documentation-table__col--meta {
  width: 220px;
}

.documentation-table__row {
  border-bottom: 1px solid rgba(38, 39, 45, 0.12);
}

.documentation-table td {
  padding: 16px 0;
  vertical-align: top;
}

.documentation-table__icon {
  width: 52px;
  padding-right: 14px;
}

.documentation-symbol {
  display: block;
  width: 34px;
  height: 34px;
}

.documentation-symbol--pdf {
  color: var(--accent);
}

.documentation-symbol--link {
  color: #304f76;
}

.documentation-table__content h3,
.documentation-table__description,
.documentation-table__meta {
  margin: 0;
}

.documentation-table__content {
  width: 100%;
}

.documentation-table__content h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.documentation-table__title-link {
  color: var(--text);
  text-decoration: none;
}

.documentation-table__title-link:hover,
.documentation-table__title-link:focus-visible {
  color: var(--accent);
}

.documentation-table__description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.documentation-table__description-cell {
  padding-left: 0;
}

.documentation-table__meta-cell {
  padding-left: 48px;
  text-align: right;
  white-space: nowrap;
}

.documentation-table__meta {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .homepage-cta {
    grid-template-columns: 1fr;
  }

  .homepage-cta__actions {
    justify-content: start;
  }

  .documentation-sds__panel {
    padding: 18px;
  }

  .documentation-sds-search__input {
    min-height: 56px;
  }
}

.form-errors {
  margin: 0 0 18px;
  padding: 12px 16px;
  list-style: none;
  border-radius: 14px;
  background: rgba(199, 24, 43, 0.08);
  border: 1px solid rgba(199, 24, 43, 0.16);
  color: #8f1625;
}

.form-errors li + li {
  margin-top: 6px;
}

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

.stats--admin {
  margin-bottom: 28px;
}

.stat {
  padding: 24px;
  border-top: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
}

.pill-list,
.footer-list,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill-list li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(199, 24, 43, 0.18);
}

.content-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: start;
}

.content-main,
.content-side {
  display: grid;
  gap: 18px;
}

.content-main--full {
  gap: 24px;
}

.content-main--page {
  width: 95%;
  margin: 0 auto;
}

.breadcrumbs {
  display: block;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.breadcrumbs__item:not(:last-child)::after {
  content: '/';
  color: rgba(95, 96, 104, 0.58);
}

.breadcrumbs__item a {
  color: var(--accent-dark);
}

.breadcrumbs__item span {
  font-weight: 700;
  color: #363840;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card h2,
.contact-card p {
  margin: 0;
}

.contact-details {
  display: grid;
  gap: 6px;
}

.contact-details strong {
  color: var(--accent-dark);
}

.contact-card--map {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
  gap: 20px;
}

.contact-card__intro {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-card__intro .button {
  justify-self: start;
}

.contact-card__map-frame {
  min-height: 360px;
  border: 1px solid rgba(199, 24, 43, 0.12);
  border-radius: 22px;
  overflow: hidden;
  background: #fff3f4;
}

.contact-card__map-embed {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.content-html {
  display: grid;
  gap: 18px;
  color: #26272d;
  line-height: 1.75;
}

.content-html > * {
  margin-bottom: 0;
}

.content-html > p:first-child {
  font-size: 1.14rem;
  line-height: 1.8;
  color: #34363d;
}

.content-html p {
  max-width: none;
}

.content-html h2,
.content-html h3 {
  margin-top: 18px;
  color: #18191f;
}

.content-html h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.content-html h3 {
  font-size: clamp(1.16rem, 1.6vw, 1.4rem);
}

.content-html ul {
  width: 100%;
  max-width: none;
  margin: 6px 0 0;
  padding: 18px 22px 18px 42px;
  border: 1px solid rgba(199, 24, 43, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffefe 0%, #fff5f6 100%);
}

.content-html li + li {
  margin-top: 8px;
}

.content-html a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-color: rgba(143, 16, 32, 0.24);
  text-underline-offset: 3px;
}

.content-html .people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.content-html .people-grid--leaders {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-html .person-card {
  display: grid;
  gap: 16px;
}

.content-html .person-card--classic {
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  padding: 20px 18px;
  border: 1px solid rgba(199, 24, 43, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffefe 0%, #fff8f8 100%);
}

.related-links {
  display: grid;
  gap: 18px;
}

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

.related-link-card {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(199, 24, 43, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffefe 0%, #fff5f6 100%);
  box-shadow: 0 16px 32px rgba(84, 16, 22, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.related-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 24, 43, 0.22);
  box-shadow: 0 20px 38px rgba(84, 16, 22, 0.1);
}

.related-link-card strong {
  color: var(--accent-dark);
  font-size: 1.02rem;
}

.related-link-card span {
  color: #4e5058;
  line-height: 1.55;
}

.faq-block {
  display: grid;
  gap: 18px;
}

.faq-block__list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(199, 24, 43, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffefe 0%, #fff7f8 100%);
  box-shadow: 0 14px 28px rgba(84, 16, 22, 0.05);
}

.faq-item summary {
  position: relative;
  padding: 18px 56px 18px 22px;
  cursor: pointer;
  list-style: none;
  color: #2f3138;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item__answer {
  padding: 0 22px 20px;
  color: #4e5058;
}

.faq-item__answer p {
  margin: 0;
}

.content-html .person-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff3f4 0%, #ffe7ea 100%);
  border: 1px solid rgba(199, 24, 43, 0.12);
  overflow: hidden;
}

.content-html .person-card__media img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.content-html .person-card__body {
  display: grid;
  gap: 8px;
}

.content-html .person-card__body h3 {
  margin: 0;
}

.content-html .person-card__body p {
  margin: 0;
}

.content-html .person-card__role {
  color: var(--muted);
  font-weight: 600;
}

.card--sidebar {
  background: linear-gradient(180deg, #fffefe 0%, #fff3f4 100%);
}

.site-footer {
  padding: 56px 0 28px;
  background: #2c0a0f;
  color: #fff1f1;
}

.site-footer__grid {
  grid-template-columns: 1.2fr 0.85fr 1fr;
}

.site-footer__title {
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-list--contact {
  gap: 8px;
}

.footer-list a {
  color: rgba(255, 241, 241, 0.88);
}

.footer-list a:hover {
  color: #ffffff;
}

.site-footer__meta {
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 241, 241, 0.72);
}

.site-footer__meta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer__meta-links a,
.site-footer__meta-button {
  color: rgba(255, 241, 241, 0.82);
}

.site-footer__meta-links a:hover,
.site-footer__meta-button:hover {
  color: #ffffff;
}

.site-footer__meta-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
}

.cookie-banner__panel {
  width: min(980px, 100%);
  margin-left: auto;
  padding: 22px 24px;
  border: 1px solid rgba(199, 24, 43, 0.14);
  border-radius: 26px;
  background: rgba(255, 254, 254, 0.98);
  color: var(--text);
  box-shadow: 0 26px 58px rgba(43, 8, 14, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-banner__copy,
.cookie-banner__details {
  display: grid;
  gap: 10px;
}

.cookie-banner__copy p,
.cookie-banner__copy h2,
.cookie-banner__details p {
  margin: 0;
}

.cookie-banner__copy .eyebrow {
  position: relative;
  display: block;
  width: calc(100% - 40px);
  margin-bottom: 2px;
  padding-bottom: 12px;
}

.cookie-banner__copy .eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 21, 39, 0.82) 0%, rgba(185, 21, 39, 0) 100%);
}

.cookie-banner__copy h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.cookie-banner__copy a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__details {
  margin-top: 18px;
}

.cookie-banner__option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(199, 24, 43, 0.1);
  border-radius: 18px;
  background: #fff8f8;
  color: var(--text);
}

.cookie-banner__option input {
  margin: 3px 0 0;
}

.cookie-banner__option span {
  display: grid;
  gap: 4px;
}

.cookie-banner__option small {
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.admin-main {
  min-height: calc(100vh - 84px);
  padding: 32px 16px 48px;
}

.admin-wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.admin-login {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: center;
}

.admin-panel__header {
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-split {
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
}

.notice {
  color: #ffd5dc;
}

.flash-stack {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.flash {
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 14px 18px;
  color: var(--text);
  box-shadow: 0 18px 38px rgba(21, 23, 28, 0.12);
  transition: opacity 220ms ease, transform 220ms ease;
}

.flash.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
}

.flash--success {
  border-color: rgba(43, 128, 70, 0.24);
  background: #f0fff4;
}

.flash--error {
  border-color: rgba(185, 21, 39, 0.22);
  background: #fff4f5;
}

.flash-stack--public {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 70;
  width: min(420px, calc(100vw - 32px));
  margin: 0;
  transform: translateX(-50%);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  color: #3a1c20;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-required-note {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-row--first {
  margin-top: 12px;
}

.form-required-mark {
  color: var(--accent);
  font-weight: 800;
}

.form-required-mark--inline {
  margin-left: 6px;
  align-self: start;
  line-height: 1.5;
}

.contact-card--form {
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(199, 24, 43, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffefe 0%, #fff6f7 100%);
}

.contact-card--success {
  gap: 18px;
  border: 1px solid rgba(43, 128, 70, 0.2);
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfffc 0%, #effbf2 100%);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-form-panel {
  padding: 22px;
  border: 1px solid rgba(199, 24, 43, 0.1);
  border-radius: 20px;
  background: #ffffff;
}

.contact-form {
  display: grid;
}

.contact-form__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__turnstile {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow-x: auto;
}

.contact-form__honeypot,
.contact-form__honeypot-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-row--contact {
  align-items: start;
}

.checkbox-row--contact label {
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-errors {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 14px 16px 14px 34px;
  border: 1px solid rgba(185, 21, 39, 0.14);
  border-radius: 16px;
  background: #fff5f6;
  color: #7c1420;
}

.form-error {
  min-height: 1.2em;
  color: #8f1020;
  font-size: 0.88rem;
}

.form-row input.button--primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.form-row input.button--primary:hover {
  background: var(--accent-dark);
}

.form-row textarea,
.textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 720px) {
  .flash-stack--public {
    top: 80px;
    width: min(420px, calc(100vw - 24px));
  }
}

.form-row--submit {
  margin-bottom: 0;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.checkbox-row input {
  width: auto;
  min-height: 0;
}

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

.admin-form-grid--checks {
  grid-template-columns: repeat(2, max-content);
}

.admin-fieldset {
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.admin-fieldset__header {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.admin-subsection {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.admin-help {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-meta-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-actions-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

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

.admin-table th {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-table td {
  color: var(--text);
}

.admin-panel p,
.admin-panel h1,
.admin-panel h2,
.admin-panel h3,
.card--login p,
.card--login h1,
.card--login h2,
.card--login h3,
.stat span,
.stat strong {
  color: inherit;
}

.admin-panel .text-link,
.card--login .text-link,
.admin-table .text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.admin-panel .text-link:hover,
.card--login .text-link:hover,
.admin-table .text-link:hover {
  color: var(--accent);
}

.wysiwyg {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.wysiwyg__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: var(--panel-soft);
  border-bottom: 1px solid var(--line);
}

.wysiwyg__toolbar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(199, 24, 43, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font: inherit;
}

.wysiwyg__editor {
  min-height: 280px;
  padding: 18px;
  outline: none;
}

.wysiwyg__source {
  width: 100%;
  min-height: 280px;
  padding: 18px;
  border: 0;
  background: #fff;
  color: var(--text);
  font: 400 0.95rem/1.6 Consolas, Monaco, 'Courier New', monospace;
  resize: vertical;
  outline: none;
}

.wysiwyg--source-mode .wysiwyg__toolbar [data-command] {
  opacity: 0.45;
  pointer-events: none;
}

.wysiwyg__editor h2 {
  font-size: 1.6rem;
}

.wysiwyg__editor ul {
  padding-left: 22px;
}

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

ul.error,
.form-row .error {
  color: var(--accent-dark);
}

@media (max-width: 900px) {
  .hero__grid,
  .content-grid,
  .cards--three,
  .stats,
  .site-footer__grid,
  .admin-login,
  .admin-split,
  .admin-form-grid,
  .admin-form-grid--checks {
    grid-template-columns: 1fr;
  }

  .site-header__inner,
  .site-footer__meta,
  .admin-panel__header,
  .admin-topbar__inner {
    flex-direction: column;
    align-items: start;
  }

  .site-header__inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand__logo {
    width: clamp(124px, 28vw, 168px);
  }

  .hero,
  .page-hero {
    padding: 34px 0 18px;
  }

  .hero + .section,
  .page-hero + .section {
    padding-top: 28px;
  }

  .main-nav,
  .admin-nav {
    justify-content: start;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .main-nav {
    width: 100%;
    gap: 10px;
  }

  .header-actions {
    display: none;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    justify-items: stretch;
    padding: 4px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .header-actions.is-open {
    display: grid;
  }

  .header-actions[data-mobile-nav-panel] {
    max-height: calc(100vh - 110px);
    overflow: auto;
  }

  .header-actions .main-nav {
    flex-wrap: wrap;
  }

  .search-form--page {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form--header {
    width: 100%;
  }

  .contact-card--form,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 18px;
  }

  .checkbox-row--contact {
    align-items: flex-start;
  }

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

  .main-nav__link {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
  }

  .hero__grid,
  .hero__grid--page {
    grid-template-columns: 1fr;
  }

  .hero-surface,
  .hero-surface--home,
  .hero-surface--page {
    padding: 24px;
  }

  .trust-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 0 20px;
  }

  .trust-band__logo {
    min-height: 0;
    justify-content: flex-start;
  }

  .trust-band__content h2 {
    max-width: none;
  }

  .section-heading h2,
  .pests h2 {
    max-width: none;
  }

  .section-heading .eyebrow::after,
  .pests .eyebrow::after {
    width: calc(100% + 64px);
  }

  .content-html .people-grid,
  .content-html .people-grid--leaders,
  .related-links__grid {
    grid-template-columns: 1fr;
  }

  .hero__intro {
    max-width: none;
  }

  .content-main--page {
    width: 100%;
  }


  .site-footer__meta-links {
    justify-content: start;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__panel {
    width: 100%;
    padding: 20px;
  }

  .cookie-banner__copy .eyebrow {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .site-header__inner {
    min-height: 76px;
    gap: 8px;
    padding: 8px 0;
  }

  .brand__logo {
    width: clamp(112px, 34vw, 144px);
  }

  .mobile-nav-toggle {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .header-actions {
    padding-bottom: 8px;
  }

  .contact-card--form {
    gap: 18px;
    padding: 18px;
  }

  .contact-form-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .main-nav__link {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .search-panel {
    padding: 20px;
  }

  .hero,
  .page-hero {
    padding: 26px 0 14px;
  }

  .hero + .section,
  .page-hero + .section {
    padding-top: 22px;
  }

  .hero-surface,
  .hero-surface--home,
  .hero-surface--page {
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
  }

  .hero__headline .eyebrow,
  .trust-band__head .eyebrow,
  .section-heading .eyebrow,
  .pests .eyebrow {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero__headline h1,
  .trust-band__head h2,
  .trust-band__body {
    margin-left: 0;
    margin-right: 0;
  }

  .trust-band__head,
  .section-heading,
  .pests > div {
    padding: 0;
  }

  .hero__headline,
  .hero__intro {
    padding: 0;
  }

  .hero__headline .eyebrow {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .lead,
  .lead--hero {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .pests h2 {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .service-card__header {
    gap: 10px;
  }

  .service-card__icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .service-card__icon {
    width: 24px;
    height: 24px;
  }

  .stat,
  .card,
  .contact-card,
  .card--login {
    padding: 20px;
  }

  .trust-band {
    gap: 14px;
  }

  .trust-band__logo img {
    max-height: 74px;
  }

  .trust-band__content h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    text-wrap: pretty;
  }

  .content-main--page {
    width: 100%;
  }

  .content-html {
    gap: 16px;
  }

  .content-html ul {
    padding: 16px 18px 16px 34px;
    border-radius: 18px;
  }

  .content-html .person-card--classic {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .content-html .person-card__media {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .content-html .person-card__media img {
    width: 28px;
    height: 28px;
  }

  .site-footer {
    padding: 46px 0 24px;
  }

  .site-footer__meta {
    gap: 12px;
  }

  .cookie-banner__panel {
    padding: 18px;
    border-radius: 22px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions .button {
    width: 100%;
  }

  .cookie-banner__option {
    grid-template-columns: 18px minmax(0, 1fr);
    padding: 12px 14px;
  }
}
