:root {
  --green: #2f8f46;
  --green-dark: #1f6f35;
  --green-soft: #eaf6ed;
  --ink: #162019;
  --muted: #5d6b61;
  --line: #dbe7de;
  --cream: #f7faf5;
  --white: #ffffff;
  --gold: #f5b942;
  --shadow: 0 18px 45px rgba(23, 42, 27, 0.12);
  --radius: 8px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 124px;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(22, 32, 25, 0.08);
}

body.admin-bar .site-top {
  top: 32px;
}

body.admin-bar {
  padding-top: 156px;
}

.topbar {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.topbar__inner,
.nav,
.section__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
}

.topbar a {
  text-decoration: none;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

[id] {
  scroll-margin-top: 136px;
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 170px;
  height: 86px;
  object-fit: contain;
}

.nav__links,
.nav__menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links ul,
.nav__links ol,
.nav__links li,
.nav__menu,
.nav__menu li,
.menu-item {
  list-style: none !important;
  list-style-type: none !important;
}

.nav__links li::marker,
.nav__links .menu-item::marker,
.nav__menu li::marker {
  content: "" !important;
  font-size: 0 !important;
}

.nav__links a::before,
.nav__links a::after {
  content: none !important;
  display: none !important;
}

.nav__links li,
.nav__menu li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links li::marker,
.nav__menu li::marker {
  content: "";
  font-size: 0;
}

.nav__toggle {
  display: none;
}

.nav__toggle-lines,
.nav__toggle-lines::before,
.nav__toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav__toggle-lines {
  position: relative;
}

.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__toggle-lines::before {
  top: -6px;
}

.nav__toggle-lines::after {
  top: 6px;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
}

.nav__links a:hover {
  color: var(--green-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.button--primary {
  background: var(--green);
  color: var(--white);
}

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

.button--secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green);
}

.button--light {
  background: var(--white);
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(12, 26, 16, 0.9) 0%, rgba(12, 26, 16, 0.76) 44%, rgba(12, 26, 16, 0.2) 100%),
    url("../img/pest-safe-hero.png") center 48% / cover no-repeat;
  color: var(--white);
}

.hero__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  gap: 48px;
  align-items: center;
  min-height: 620px;
  padding: 42px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #f3f8f3;
  font-weight: 800;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

h1,
h2,
h3 {
  font-family: Outfit, Inter, Arial, sans-serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  max-width: 760px;
}

.hero p {
  max-width: 650px;
  font-size: 1.16rem;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-row div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.quote-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.quote-card p {
  color: var(--muted);
  font-size: 0.97rem;
  margin: 0 0 18px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 750;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfded3;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.form-success {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.section {
  padding: 84px 0;
}

.section--soft {
  background: var(--cream);
}

.proof-section {
  padding: 34px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 42, 27, 0.08);
}

.proof-card__copy {
  padding: 28px;
}

.proof-card__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.proof-card__copy p {
  color: var(--muted);
}

.proof-card img {
  width: 100%;
  height: clamp(300px, 31vw, 390px);
  object-fit: cover;
  object-position: center 58%;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section__head h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.section__head p {
  max-width: 520px;
  color: var(--muted);
  margin: 0;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 210px;
  overflow: hidden;
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.media-card {
  padding: 0;
}

.media-card__image {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: clamp(150px, 14vw, 220px);
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.media-card__body {
  position: relative;
  padding: 22px;
}

.media-card .icon {
  position: absolute;
  margin: -44px 0 0 0;
  border: 4px solid var(--white);
  background: var(--green);
  color: var(--white);
}

.media-card h3 {
  margin-top: 12px;
}

.service-tile {
  border-color: rgba(47, 143, 70, 0.2);
  background: var(--white);
}

.service-tile .media-card__image {
  background: var(--green-soft);
}

.media-card__image[src*="service-cockroach"],
.seo-page-media img[src*="service-cockroach"] {
  object-position: center 52%;
}

.media-card__image[src*="service-rodent"],
.seo-page-media img[src*="service-rodent"] {
  object-position: center 56%;
}

.media-card__image[src*="service-spider"],
.seo-page-media img[src*="service-spider"] {
  object-position: center 50%;
}

.media-card__image[src*="service-ant"],
.seo-page-media img[src*="service-ant"] {
  object-position: center 54%;
}

.media-card__image[src*="restaurant"] {
  object-position: center 52%;
}

.media-card__image[src*="childcare"] {
  object-position: center 45%;
}

.media-card__image[src*="property"] {
  object-position: center 50%;
}

.media-card__image[src*="warehouse"] {
  object-position: center 50%;
}

.service-tile .media-card__body {
  padding: 22px 22px 24px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.split--commercial {
  align-items: stretch;
}

.commercial-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.commercial-points div {
  padding: 18px;
  border: 1px solid rgba(47, 143, 70, 0.18);
  border-radius: var(--radius);
  background: var(--cream);
}

.commercial-points strong,
.commercial-points span {
  display: block;
}

.commercial-points strong {
  color: var(--green-dark);
  margin-bottom: 5px;
}

.commercial-points span {
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.feature-list li {
  padding-left: 30px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--green-soft);
}

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(47, 143, 70, 0.14), rgba(255, 255, 255, 0)),
    var(--green-soft);
}

.image-panel img {
  width: 100%;
  height: clamp(280px, 28vw, 390px);
  object-fit: cover;
  object-position: center;
}

.process-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(47, 143, 70, 0.16), rgba(255, 255, 255, 0.88)),
    var(--white);
  box-shadow: var(--shadow);
}

.process-panel--commercial {
  background:
    linear-gradient(145deg, rgba(31, 111, 53, 0.92), rgba(22, 32, 25, 0.92)),
    var(--green-dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-panel--commercial .process-step {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.process-panel--commercial .icon {
  background: var(--white);
  color: var(--green-dark);
}

.process-panel--commercial span {
  color: rgba(255, 255, 255, 0.76);
}

.commercial-snapshot {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(240px, 0.75fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.commercial-snapshot img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
}

.commercial-snapshot > div {
  padding: 24px;
}

.commercial-snapshot .panel-label {
  color: var(--green-dark);
}

.commercial-snapshot h3 {
  margin: 8px 0 10px;
  font-size: 1.45rem;
}

.commercial-snapshot p {
  color: var(--muted);
}

.commercial-snapshot a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

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

.commercial-process-grid .process-step {
  min-height: 100%;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 42, 27, 0.08);
}

.commercial-process-grid .process-step span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

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

.panel-label {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.process-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(47, 143, 70, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.process-step strong {
  display: block;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.areas a,
.pill {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  text-decoration: none;
  font-weight: 750;
  color: var(--green-dark);
}

.reviews {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.review-summary,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.rating {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green-dark);
  margin: 8px 0;
}

.review-grid {
  display: grid;
  gap: 14px;
}

.reviews-widget {
  min-width: 0;
}

.reviews-widget .ti-widget {
  max-width: 100%;
}

.review-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.content-page {
  max-width: 860px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.content-page h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.content-page__body {
  margin-top: 22px;
  color: var(--muted);
}

.seo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 34px;
  align-items: stretch;
}

.seo-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 18px 0;
}

.seo-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.seo-summary {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.seo-summary strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green-dark);
}

.seo-summary dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.seo-summary div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.seo-summary dt {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
}

.seo-summary dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.seo-page-media {
  margin: 30px auto 0;
  width: min(960px, calc(100% - 32px));
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.seo-page-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.seo-page-map {
  margin: 30px auto 0;
  width: min(960px, calc(100% - 32px));
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.seo-page-map iframe {
  display: block;
  width: 100%;
  height: clamp(260px, 32vw, 380px);
  border: 0;
}

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

.seo-content h2 {
  font-size: 1.35rem;
}

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

.price-card {
  background: #fff;
  border: 1px solid rgba(13, 49, 39, 0.12);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(13, 49, 39, 0.08);
}

.price-card--highlight {
  background: #103d31;
  color: #fff;
}

.price-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.price-card p {
  color: inherit;
  opacity: 0.86;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(13, 49, 39, 0.12);
  padding-top: 10px;
}

.price-card--highlight .price-list li {
  border-color: rgba(255, 255, 255, 0.22);
}

.price-list strong {
  font-size: 1.3rem;
  color: #2e994d;
  white-space: nowrap;
}

.price-card--highlight .price-list strong {
  color: #9ef0b5;
}

.rich-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.rich-copy {
  display: grid;
  gap: 16px;
}

.content-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(13, 49, 39, 0.06);
}

.content-panel h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.content-panel p {
  margin: 0;
  color: var(--muted);
}

.checklist-panel {
  position: sticky;
  top: 150px;
  background: #103d31;
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.checklist-panel h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.checklist-panel .feature-list {
  margin-bottom: 22px;
}

.checklist-panel .feature-list li {
  color: rgba(255, 255, 255, 0.9);
}

.checklist-panel .button {
  width: 100%;
}

.seo-links {
  margin-top: 22px;
}

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

.faq-card h3 {
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 18px 0;
}

.contact-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 660px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-method {
  display: block;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(47, 143, 70, 0.2);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.contact-method span,
.contact-method strong {
  display: block;
}

.contact-method span {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 5px;
}

.contact-method strong {
  color: var(--green-dark);
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

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

.cta-band {
  background: var(--green-dark);
  color: var(--white);
  padding: 56px 0;
}

.cta-band .section__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.site-footer {
  background: #101a13;
  color: #dbe7de;
  padding: 52px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer a {
  color: #dbe7de;
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 16px !important;
  padding: 9px 12px;
  border: 1px solid rgba(219, 231, 222, 0.28);
  border-radius: var(--radius);
}

.social-link:hover {
  border-color: rgba(219, 231, 222, 0.54);
  background: rgba(255, 255, 255, 0.06);
}

.social-link__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1050px) {
  .nav {
    gap: 16px;
  }

  .brand img {
    width: 145px;
  }

  .nav__links {
    gap: 12px;
    font-size: 0.84rem;
  }

  .nav__links .button {
    min-height: 40px;
    padding: 9px 12px;
  }
}

.mobile-sticky {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-top: 124px;
  }

  body.admin-bar {
    padding-top: 170px;
  }

  body.admin-bar .site-top {
    top: 46px;
  }

  [id] {
    scroll-margin-top: 112px;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__inner span {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .nav {
    min-height: 86px;
    align-items: center;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
  }

  .brand img {
    width: 138px;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--green);
    border-radius: var(--radius);
    background: var(--green);
    color: var(--white);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 40;
    width: 100%;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 0;
    box-shadow: 0 18px 30px rgba(22, 32, 25, 0.14);
    font-size: 1rem;
    list-style: none;
  }

  .nav__links.is-open {
    display: grid;
    gap: 4px;
  }

  .nav__links ul,
  .nav__links li,
  .nav__menu,
  .nav__menu li {
    list-style: none;
    margin: 0;
    padding-left: 0;
  }

  .nav__links a {
    display: block;
    padding: 12px 10px;
    border-radius: var(--radius);
  }

  .nav__links a:hover {
    background: var(--green-soft);
  }

  .nav__links .button {
    margin-top: 6px;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--white);
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 54px 0 34px;
    gap: 30px;
  }

  .hero p {
    font-size: 1rem;
  }

  .commercial-points {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .contact-actions,
  .contact-support,
  .seo-hero__grid,
  .seo-content,
  .commercial-process-grid,
  .cards--compact,
  .pricing-grid,
  .rich-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .checklist-panel {
    position: static;
  }

  .trust-row,
  .cards,
  .split,
  .proof-card,
  .reviews,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section__head {
    display: block;
  }

  .section__head p {
    margin-top: 12px;
  }

  .cta-band .section__inner {
    display: grid;
  }

  .image-panel img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .proof-card img,
  .seo-page-media img {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: none;
  }

  .media-card__image {
    height: 200px;
  }

  .seo-page-map iframe {
    height: 300px;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--line);
  }

  .mobile-sticky .button {
    min-height: 44px;
    padding: 10px;
  }
}
