:root {
  --bg: #fffdf9;
  --surface: #ffffff;
  --text: #182117;
  --muted: #5f6f5c;
  --brand: #2f8f46;
  --brand-dark: #236837;
  --line: #e4ece2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", Arial, sans-serif;
  background: radial-gradient(circle at 10% 0%, #f2fff3 0, var(--bg) 35%);
  color: var(--text);
  min-height: 100vh;
}

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in oklab, var(--surface) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: var(--brand);
  border-radius: 12px;
  background: #ebf8ec;
}

.brand__mark svg {
  width: 30px;
  height: 30px;
}

.brand__text {
  display: grid;
}

.brand__text strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand__text em {
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 0.25rem;
}

.desktop-nav {
  display: none;
}

.desktop-nav a,
.services-menu__trigger {
  font-weight: 600;
  color: #243120;
  transition: color 0.2s ease;
}

.desktop-nav a.nav-active {
  color: var(--brand);
}

.desktop-nav a:hover,
.services-menu__trigger:hover {
  color: var(--brand);
}

.services-menu {
  position: relative;
}

.services-menu__trigger {
  border: none;
  background: transparent;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  padding: 0;
}

.services-menu__list {
  list-style: none;
  margin: 0;
  padding: 0.65rem;
  position: absolute;
  top: calc(100% + 0.8rem);
  left: -0.8rem;
  min-width: 250px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(31, 66, 40, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.services-menu__list li a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 9px;
}

.services-menu__list li a.is-service-active {
  color: var(--brand);
  background: #eef9ef;
}

.services-menu__list li a:hover {
  background: #f2faf2;
}

.services-menu:hover .services-menu__list,
.services-menu:focus-within .services-menu__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-phone {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #cfe3d1;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  color: #143019;
  font-weight: 600;
}

.header-phone i {
  color: var(--brand);
  font-size: 1.1rem;
}

.menu-toggle,
.menu-close {
  border: none;
  background: #edf6ee;
  color: #16311b;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-toggle {
  margin-left: auto;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: linear-gradient(150deg, #fbfffb 0%, #f5fff5 100%);
  padding: 1.2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.35s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav {
  display: grid;
  gap: 1.1rem;
}

.mobile-nav > a,
.mobile-nav__services p {
  margin: 0;
  font-size: clamp(1.3rem, 5vw, 2.15rem);
  font-weight: 600;
}

.mobile-nav__services ul {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.mobile-nav__services li a {
  font-size: 1.06rem;
  color: #30452f;
}

.mobile-menu__phone {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: #eaf8eb;
  border: 1px solid #cde6ce;
  width: fit-content;
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.mobile-menu__phone i {
  font-size: 1.2rem;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.page {
  padding: clamp(1.4rem, 3vw, 2.4rem) 0 3rem;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(27, 64, 38, 0.08);
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.hero-card h1 {
  margin: 0.35rem 0 0.8rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.06;
}

.hero-card p {
  margin: 0;
  color: #405240;
  max-width: 70ch;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 1.05rem;
  font-weight: 700;
  font: inherit;
  border: none;
  cursor: pointer;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #3aa756);
}

.btn--ghost {
  color: #194026;
  border: 1px solid #c8e0cc;
  background: #f5fbf5;
}

.info-grid,
.contact-grid {
  margin-top: 1.05rem;
  display: grid;
  gap: 0.9rem;
}

.info-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 1rem 1rem 1.1rem;
}

.info-card__icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 52px;
  height: 52px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #eef9ef, #e3f5e6);
  color: var(--brand);
}

.info-card__icon i {
  font-size: 1.45rem;
}

.info-card h2 {
  margin: 0;
  font-size: 1.12rem;
  padding-right: 4rem;
}

.info-card p {
  margin: 0.5rem 0 0;
  color: #435743;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 700;
}

.company-grid .info-card h2 {
  padding-right: 0;
}

.about-hero {
  display: grid;
  gap: 1rem;
}

.about-hero__content {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fff8 100%);
  padding: clamp(1.2rem, 4vw, 2.3rem);
  box-shadow: 0 16px 48px rgba(26, 64, 38, 0.1);
}

.about-hero__content h1 {
  margin: 0.45rem 0 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.95rem, 5vw, 3.2rem);
  line-height: 1.04;
}

.about-hero__content > p {
  margin: 0;
  color: #3f4f3f;
  max-width: 60ch;
}

.about-hero__media {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "wide top"
    "wide bottom";
  min-height: 340px;
}

.media-tile {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid #d6e7d8;
  box-shadow: 0 14px 34px rgba(21, 53, 31, 0.14);
}

.media-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(21, 48, 30, 0.1), rgba(11, 26, 16, 0.5));
}

.media-tile span {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4fff5;
  padding: 0.42rem 0.56rem;
  border-radius: 10px;
  background: rgba(4, 17, 9, 0.55);
}

.media-tile--wide {
  grid-area: wide;
  background-image: url("./images/15.png");
  background-size: cover;
  background-position: center;
}

.media-tile--top {
  grid-area: top;
  background-image: url("./images/11.png");
  background-size: cover;
  background-position: center;
}

.media-tile--bottom {
  grid-area: bottom;
  background-image: url("./images/2.jpg");
  background-size: cover;
  background-position: center;
}

.about-stats {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.stat-pill {
  border: 1px solid #d8e8da;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.95rem 1.15rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.stat-pill strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  color: #1c4526;
}

.stat-pill p {
  margin: 0;
  color: #4b5d4d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
}

.about-zigzag {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.service-showcase {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.service-showcase__card {
  border: 1px solid #d7e8d9;
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(27, 63, 39, 0.09);
}

.service-showcase__media {
  min-height: 170px;
  background-size: cover;
  background-position: center;
}

.service-showcase__media--rodent {
  background-image: url("./images/11.png");
}

.service-showcase__media--ozone {
  background-image: url("./images/ozon.jpg");
}

.service-showcase__media--disinfect {
  background-image: url("./images/disinfection.jpg");
}

.service-showcase__body {
  padding: 0.9rem 1rem 1.1rem;
}

.service-showcase__body h3 {
  margin: 0;
  font-size: 1.6rem;
  font-family: "DM Serif Display", Georgia, serif;
}

.service-showcase__body p {
  margin: 0.45rem 0 0;
  color: #425442;
}

.zig-item {
  border: 1px solid #d9e9dc;
  border-radius: 22px;
  background: #ffffff;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.zig-item__num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #ecfff0;
  font-weight: 700;
  background: linear-gradient(145deg, #308e45, #245f33);
}

.zig-item h2,
.about-cta h2,
.lab-card h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.22rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.zig-item p,
.lab-card p {
  margin: 0.45rem 0 0;
  color: #425442;
}

.about-lab {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.lab-card {
  border-radius: 24px;
  border: 1px solid #d6e8d8;
  background: #ffffff;
  padding: clamp(1rem, 3vw, 1.65rem);
  box-shadow: 0 12px 30px rgba(30, 71, 42, 0.08);
}

.lab-card--main {
  background: linear-gradient(135deg, #ffffff 0%, #effcf1 100%);
}

.lab-card--glow {
  background: linear-gradient(145deg, #f4fff5 0%, #dbf5de 100%);
}

.lab-card--dark {
  background: linear-gradient(145deg, #1b3e26 0%, #225632 100%);
  color: #ecffef;
}

.lab-card--dark p {
  color: #d8f3dc;
}

.lab-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.about-cta {
  margin-top: 1rem;
}

.service-page .page {
  display: grid;
  gap: 1rem;
}

.service-hero {
  display: grid;
  gap: 1rem;
}

.service-hero__content {
  border: 1px solid #d6e7d8;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(89, 188, 113, 0.2), transparent 42%),
    linear-gradient(155deg, #ffffff 0%, #f1fff4 100%);
  padding: clamp(1.25rem, 3.6vw, 2.35rem);
  box-shadow: 0 16px 40px rgba(22, 58, 33, 0.12);
}

.service-hero__content h1 {
  margin: 0.3rem 0 0.8rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.02;
}

.service-hero__content > p {
  margin: 0;
  color: #3f523f;
  max-width: 58ch;
}

.service-hero__chips {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.service-hero__chips li {
  border: 1px solid #cfe3d2;
  border-radius: 999px;
  background: #f8fff8;
  padding: 0.34rem 0.72rem;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #29452e;
  font-weight: 700;
}

.service-hero__media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #d5e6d7;
  box-shadow: 0 18px 40px rgba(18, 49, 28, 0.2);
  position: relative;
}

.service-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(8, 20, 11, 0.45));
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.service-hero__media figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  color: #f2fff3;
}

.service-hero__media figcaption strong {
  font-size: 1rem;
}

.service-hero__media figcaption span {
  font-size: 0.84rem;
  color: #d9f6df;
}

.service-proof {
  display: grid;
  gap: 0.8rem;
}

.service-proof article {
  border: 1px solid #d5e7d8;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
}

.service-proof strong {
  font-family: "DM Serif Display", Georgia, serif;
  color: #1f4a2a;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.service-proof p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #476148;
}

.service-benefits {
  display: grid;
  gap: 0.9rem;
}

.service-benefit {
  border: 1px solid #d5e8d8;
  border-radius: 22px;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(23, 57, 34, 0.07);
  position: relative;
}

.service-benefit__tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border-radius: 999px;
  border: 1px solid #cde3d1;
  background: #f3fff4;
  padding: 0.22rem 0.55rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #35583c;
  font-weight: 700;
}

.service-benefit i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #edf9ef, #ddf2e0);
  color: var(--brand);
  font-size: 1.4rem;
}

.service-benefit h2 {
  margin: 0.7rem 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.45rem;
}

.service-benefit p {
  margin: 0.45rem 0 0;
  color: #435643;
}

.service-steps {
  border: 1px solid #d6e7d8;
  border-radius: 26px;
  background: #ffffff;
  padding: clamp(1rem, 2.6vw, 1.45rem);
}

.service-steps h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
}

.service-steps__lead {
  margin: 0.4rem 0 0;
  color: #476048;
}

.service-steps__grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

.step-card {
  border: 1px solid #d8e8db;
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fff8 100%);
  padding: 1rem;
}

.step-card span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #edfff0;
  background: linear-gradient(145deg, #2f9147, #255f34);
  font-weight: 700;
}

.step-card h3 {
  margin: 0.62rem 0 0;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0.4rem 0 0;
  color: #445744;
}

.service-guide {
  display: grid;
  gap: 0.9rem;
}

.service-guide__card {
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.service-guide__card--light {
  border: 1px solid #d6e8d9;
  background: #ffffff;
}

.service-guide__card--accent {
  border: 1px solid #cbdfcf;
  background: linear-gradient(160deg, #eefcf0 0%, #e1f6e6 100%);
}

.service-guide__card h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.service-guide__card p {
  margin: 0.6rem 0 0;
  color: #425442;
}

.service-guide__card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
  color: #2f4031;
}

.service-guide__note {
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #bcd5c1;
  color: #1f4a2a;
  font-weight: 500;
}

.rr-page {
  gap: 1.15rem;
}

.rr-hero {
  display: grid;
  gap: 0.9rem;
}

.rr-hero__content {
  border: 1px solid #d5e5d8;
  border-radius: 28px;
  padding: clamp(1.2rem, 3.4vw, 2.3rem);
  background:
    radial-gradient(circle at 0 0, rgba(86, 179, 109, 0.24), transparent 38%),
    linear-gradient(150deg, #ffffff 0%, #effaf1 100%);
  box-shadow: 0 18px 44px rgba(20, 52, 31, 0.12);
}

.rr-hero__content h1 {
  margin: 0.3rem 0 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.02;
}

.rr-hero__content p {
  margin: 0;
  color: #3f533f;
  max-width: 60ch;
}

.rr-hero__badges {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rr-hero__badges span {
  border: 1px solid #cadfcc;
  border-radius: 999px;
  padding: 0.33rem 0.7rem;
  background: #f8fff9;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f4e35;
  font-weight: 700;
}

.rr-hero__media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #cfdfd2;
  box-shadow: 0 18px 42px rgba(18, 48, 27, 0.18);
}

.rr-hero__media img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.rr-bento {
  display: grid;
  gap: 0.9rem;
}

.rr-card {
  border-radius: 24px;
  padding: clamp(1rem, 2.6vw, 1.4rem);
}

.rr-card h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.rr-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.rr-card--dark {
  border: 1px solid #254932;
  background: linear-gradient(145deg, #173624 0%, #214d32 100%);
  color: #ecffef;
}

.rr-card--dark ul {
  color: #dff7e3;
}

.rr-card--light {
  border: 1px solid #d3e5d6;
  background: #ffffff;
  color: #223724;
}

.rr-card--metric {
  border: 1px solid #cfe2d3;
  background: linear-gradient(145deg, #f3fff5 0%, #dff5e3 100%);
  display: grid;
  align-content: center;
}

.rr-card--metric strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #1f4a2a;
  line-height: 1;
}

.rr-card--metric p {
  margin: 0.45rem 0 0;
  color: #345039;
  max-width: 30ch;
}

.rr-flow {
  border: 1px solid #d3e5d7;
  border-radius: 26px;
  background: #ffffff;
  padding: clamp(1rem, 2.8vw, 1.45rem);
}

.rr-flow h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.rr-flow__line {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.75rem;
}

.rr-flow__line article {
  border: 1px solid #d7e8da;
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fff8 100%);
  padding: 0.9rem;
}

.rr-flow__line span {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  color: #effff2;
  background: linear-gradient(145deg, #318f47, #255f35);
  font-weight: 700;
}

.rr-flow__line h3 {
  margin: 0.6rem 0 0;
}

.rr-flow__line p {
  margin: 0.38rem 0 0;
  color: #445645;
}

.rr-duo-images {
  display: grid;
  gap: 0.9rem;
}

.rr-duo-images__item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #d3e5d7;
  box-shadow: 0 14px 34px rgba(19, 49, 28, 0.14);
}

.rr-duo-images__item img {
  width: 100%;
  display: block;
  height: clamp(180px, 26vw, 250px);
  object-fit: cover;
}

.rr-deep {
  display: grid;
  gap: 0.9rem;
}

.rr-deep__main {
  border: 1px solid #d4e6d7;
  border-radius: 24px;
  background: #ffffff;
  padding: clamp(1rem, 2.7vw, 1.5rem);
}

.rr-deep__main h2 {
  margin: 0.3rem 0 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.rr-deep__main p {
  margin: 0.62rem 0 0;
  color: #3f533f;
  line-height: 1.7;
}

.rr-harm {
  border: 1px solid #cfe2d3;
  border-radius: 24px;
  background: linear-gradient(155deg, #f4fff6 0%, #e8f8eb 100%);
  padding: clamp(1rem, 2.6vw, 1.35rem);
}

.rr-harm h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.7rem;
}

.rr-harm__group {
  margin-top: 0.8rem;
}

.rr-harm__group h4 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.03rem;
}

.rr-harm__group h4 i {
  color: var(--brand);
  font-size: 1.2rem;
}

.rr-harm__group ul {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
  color: #2f4331;
}

.rr-harm__icon {
  margin: 0.9rem 0 0;
  border-radius: 16px;
  border: 1px solid #c8decf;
  background: #f8fff9;
  padding: 0.55rem;
}

.rr-harm__icon img {
  width: 100%;
  max-width: 170px;
  display: block;
  margin: 0 auto;
}

.rr-reviews {
  border: 1px solid #d3e5d7;
  border-radius: 26px;
  background: #ffffff;
  padding: clamp(1rem, 2.8vw, 1.45rem);
}

.rr-reviews__head h2 {
  margin: 0.25rem 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.6rem, 3.1vw, 2.4rem);
}

.rr-reviews__grid {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.8rem;
}

.rr-review {
  border: 1px solid #d8e8da;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fff8 100%);
  padding: 1rem;
}

.rr-review p {
  margin: 0;
  color: #3f543f;
  line-height: 1.65;
}

.rr-review__person {
  margin-top: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rr-review__person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d6ead9;
}

.rr-review__person strong {
  display: block;
  line-height: 1.1;
}

.rr-review__person span {
  font-size: 0.85rem;
  color: #577059;
}

.extra-section {
  border: 1px solid #d4e6d7;
  border-radius: 24px;
  background: #ffffff;
  padding: clamp(1rem, 2.7vw, 1.5rem);
}

.extra-section h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.extra-section > p {
  margin: 0.55rem 0 0;
  color: #445845;
  line-height: 1.7;
}

.faq-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid #d7e8da;
  border-radius: 16px;
  background: #f8fff9;
  padding: 0.8rem 0.9rem;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.03rem;
}

.faq-item p {
  margin: 0.42rem 0 0;
  color: #3f533f;
  line-height: 1.65;
}

.seo-columns {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.65rem;
}

.seo-columns p {
  margin: 0;
  color: #3f533f;
  line-height: 1.72;
}

.site-legal-footer {
  margin-top: 2rem;
  background: #0d1310;
  color: #d5e8d8;
  border-top: 1px solid #1d3f29;
  position: relative;
}

.site-legal-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2f8f46, #77d08e, #2f8f46);
}

.site-legal-footer__inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 1.1rem 0 1rem;
}

.site-footer-main {
  display: grid;
  gap: 0.95rem;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.site-footer-brand__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #7cda95;
  background: #132319;
  border: 1px solid #264a31;
}

.site-footer-brand__icon svg {
  width: 28px;
  height: 28px;
}

.site-footer-brand__text strong {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
  color: #f0fff3;
}

.site-footer-brand__text span {
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ac8a4;
}

.site-footer-meta p {
  margin: 0.18rem 0 0;
  color: #9ebea6;
  font-size: 0.9rem;
}

.site-footer-phone {
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #6de08b;
  font-weight: 700;
}

.site-footer-columns {
  display: grid;
  gap: 0.9rem;
}

.site-footer-col h4 {
  margin: 0;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ec3a7;
}

.site-footer-col ul {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.site-footer-col a,
.site-footer-col button {
  color: #d8efdd;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.site-footer-col a:hover,
.site-footer-col button:hover {
  color: #76d792;
}

.site-footer-disclaimer {
  border: 1px solid #1f3f29;
  border-radius: 14px;
  background: #101a14;
  padding: 0.78rem 0.86rem;
}

.site-footer-disclaimer p {
  margin: 0;
  color: #9fc0a8;
  font-size: 0.8rem;
  line-height: 1.6;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-footer-bottom p {
  margin: 0;
  color: #7eaa8a;
  font-size: 0.8rem;
}

.cookie-settings-trigger {
  border: 1px solid #285137;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.8rem;
  color: #cde8d4;
  background: #13221a;
}

.cookie-settings-trigger {
  font: inherit;
  cursor: pointer;
}

.cookie-settings-trigger:hover {
  background: #193024;
}

.cookie-consent {
  position: fixed;
  inset: auto 0 1rem;
  z-index: 120;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__panel {
  width: min(840px, 94vw);
  border: 1px solid #cfe2d3;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(92, 184, 115, 0.16), transparent 38%),
    #ffffff;
  box-shadow: 0 24px 54px rgba(18, 47, 28, 0.25);
  padding: 1rem;
}

.cookie-consent__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.cookie-consent__head h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
}

.cookie-consent__head p {
  margin: 0.35rem 0 0;
  color: #425643;
}

.cookie-consent__actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-consent__toggle {
  border: 1px solid #cde1d1;
  background: #f6fff7;
  color: #2e4932;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font: inherit;
  cursor: pointer;
}

.cookie-consent__prefs {
  margin-top: 0.7rem;
  border: 1px dashed #c5dbca;
  border-radius: 14px;
  padding: 0.75rem;
  display: none;
}

.cookie-consent__prefs.is-open {
  display: grid;
  gap: 0.6rem;
}

.cookie-option {
  border: 1px solid #d4e6d8;
  border-radius: 12px;
  background: #fbfffb;
  padding: 0.55rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.cookie-option strong {
  display: block;
  font-size: 0.95rem;
}

.cookie-option span {
  color: #506652;
  font-size: 0.82rem;
}

.legal-page .page {
  display: grid;
  gap: 1rem;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  font-family: "DM Serif Display", Georgia, serif;
}

.legal-page .legal-content p,
.legal-page .legal-content li {
  line-height: 1.8;
  color: #3d513f;
}

.legal-page .legal-content ul {
  padding-left: 1.2rem;
}

.home-zero {
  margin: 0;
  padding: 0;
}

.home-hero {
  position: relative;
  min-height: calc(88vh - 88px);
  background-image: url("./images/16.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 26, 15, 0.72) 0%, rgba(12, 34, 20, 0.48) 48%, rgba(10, 24, 14, 0.3) 100%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  color: #f1fff4;
  padding: clamp(3.2rem, 8vw, 6.2rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.home-hero__inner .eyebrow {
  color: #9de2af;
}

.home-hero__inner h1 {
  margin: 0.45rem 0 0.85rem;
  max-width: 18ch;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.8rem, 8.2vw, 5.8rem);
  line-height: 0.98;
}

.home-hero__inner p {
  margin: 0;
  max-width: 52ch;
  color: #d9efdf;
}

.home-hero__inner .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(210, 238, 218, 0.6);
  color: #effff2;
}

.zero-stats {
  margin-top: -6.4rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1.4rem;
}

.zero-stats__grid {
  display: grid;
  gap: 0.8rem;
}

.zero-stat-card {
  border: 1px solid #cce0d1;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f2fff5 100%);
  padding: 0.95rem 0.95rem 1.05rem;
  box-shadow: 0 16px 32px rgba(18, 53, 29, 0.14);
}

.zero-stat-card__value {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1f4c2b;
  line-height: 1;
}

.zero-stat-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1.02rem;
}

.zero-stat-card p {
  margin: 0.4rem 0 0;
  color: #456047;
}

.home-about-brief {
  padding: 4.2rem 0 2rem;
}

.home-about-brief__inner {
  border: 1px solid #d2e5d6;
  border-radius: 24px;
  background: #ffffff;
  padding: clamp(1rem, 3vw, 1.8rem);
  box-shadow: 0 14px 30px rgba(20, 55, 31, 0.09);
  display: grid;
  gap: 0.85rem;
}

.home-about-brief__inner h2 {
  margin: 0.35rem 0 0.7rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  max-width: 24ch;
}

.home-about-brief__inner p {
  margin: 0;
  color: #3f523f;
  max-width: 68ch;
}

.home-about-brief__inner .btn {
  margin-top: 0.9rem;
}

.home-about-brief__icon {
  margin: 0;
  border: 1px solid #d2e5d6;
  border-radius: 16px;
  background: #f6fff8;
  padding: 0.6rem;
  justify-self: start;
}

.home-about-brief__icon img {
  width: 100%;
  max-width: 150px;
  display: block;
}

.home-collage {
  padding: 0.8rem 0 2rem;
}

.home-collage__card {
  display: grid;
  gap: 0.9rem;
  border-radius: 24px;
  border: 1px solid #d1e4d5;
  background: #ffffff;
  padding: clamp(0.8rem, 2.5vw, 1.2rem);
  box-shadow: 0 14px 34px rgba(18, 52, 30, 0.12);
}

.home-collage__media {
  margin: 0;
  border-radius: 18px;
  min-height: clamp(230px, 36vw, 420px);
  background-image: url("./images/21.png");
  background-size: cover;
  background-position: center;
  border: 1px solid #d6e8da;
}

.home-collage__content {
  padding: 0.2rem 0.2rem 0.4rem;
}

.home-collage__content h2 {
  margin: 0.35rem 0 0.72rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 3rem);
  line-height: 1.04;
  color: #1d3221;
}

.home-collage__content p {
  margin: 0;
  color: #456047;
}

.home-collage__chips {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-collage__chips span {
  border: 1px solid #cde2d2;
  border-radius: 999px;
  background: #f4fff6;
  color: #2b4931;
  padding: 0.32rem 0.7rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.home-matrix {
  padding: 0.9rem 0 2.1rem;
}

.home-matrix__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.home-matrix__lead {
  border: 1px solid #cfe3d4;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(94, 188, 118, 0.2), transparent 45%),
    #ffffff;
  padding: clamp(1rem, 3vw, 1.6rem);
  box-shadow: 0 14px 34px rgba(18, 52, 30, 0.1);
}

.home-matrix__lead h2 {
  margin: 0.35rem 0 0.72rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1.04;
  max-width: 22ch;
}

.home-matrix__lead p {
  margin: 0;
  color: #445844;
  max-width: 62ch;
}

.home-matrix__lead .btn {
  margin-top: 0.9rem;
}

.home-matrix__item {
  border: 1px solid #d5e7d8;
  border-radius: 18px;
  background: #ffffff;
  padding: 0.95rem;
  box-shadow: 0 12px 30px rgba(16, 47, 27, 0.08);
}

.home-matrix__item i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: #ebf8ee;
  color: #2f8f46;
  font-size: 1.35rem;
}

.home-matrix__item h3 {
  margin: 0.65rem 0 0;
  font-size: 1.06rem;
}

.home-matrix__item p {
  margin: 0.35rem 0 0;
  color: #485f49;
}

.home-services-grid {
  padding: 0.8rem 0 2.2rem;
}

.home-services-grid__head h2 {
  margin: 0.3rem 0 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

.home-services-grid__wrap {
  display: grid;
  gap: 0.85rem;
}

.home-service-card {
  border: 1px solid #d4e6d8;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 49, 28, 0.08);
}

.home-service-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
}

.home-service-card__body {
  padding: 0.85rem;
}

.home-service-card__body h3 {
  margin: 0;
  font-size: 1.06rem;
}

.home-service-card__body p {
  margin: 0.38rem 0 0;
  color: #4a624b;
}

.home-service-card__body .btn {
  margin-top: 0.6rem;
}

.home-benefits-text {
  padding: 0.85rem 0 1.1rem;
}

.home-benefits-text__inner {
  padding: 0;
}

.home-benefits-text__inner h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  max-width: 24ch;
}

.home-benefits-text__columns {
  display: grid;
  gap: 0.65rem;
}

.home-benefits-text__columns p {
  margin: 0;
  color: #445844;
  line-height: 1.72;
}

.home-benefits-text__points {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-benefits-text__points span {
  border: 1px solid #cde2d2;
  border-radius: 999px;
  background: #f4fff6;
  padding: 0.32rem 0.72rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d4c33;
  font-weight: 700;
}

.home-faq {
  padding: 0.9rem 0 2.3rem;
}

.home-faq__head h2 {
  margin: 0.3rem 0 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

.home-faq__list {
  display: grid;
  gap: 0.65rem;
}

.home-faq__item {
  border: 1px solid #d5e7d8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 50, 28, 0.07);
  overflow: hidden;
}

.home-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.86rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-weight: 700;
  color: #203823;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: #eef9f0;
  color: #2f8f46;
  transition: transform 0.22s ease;
}

.home-faq__item[open] summary i {
  transform: rotate(45deg);
}

.home-faq__item p {
  margin: 0;
  padding: 0 0.95rem 0.9rem;
  color: #455a47;
  line-height: 1.68;
}

.home-reviews {
  padding: 0.7rem 0 2.4rem;
}

.home-reviews__head h2 {
  margin: 0.3rem 0 0.8rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.home-reviews__grid {
  display: grid;
  gap: 0.8rem;
}

.home-review {
  position: relative;
  border-radius: 22px;
  padding: 1rem 1rem 0.95rem;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(17, 46, 27, 0.09);
}

.home-review::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 72%);
}

.home-review p {
  margin: 0;
  line-height: 1.72;
}

.home-review__person {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.3rem 0.55rem 0.3rem 0.3rem;
  backdrop-filter: blur(3px);
}

.home-review__person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.home-review__person strong {
  display: block;
  line-height: 1.1;
  font-size: 0.95rem;
}

.home-review__person span {
  font-size: 0.78rem;
}

.home-review--mint {
  border: 1px solid #cfe3d3;
  background: linear-gradient(155deg, #f5fff7 0%, #e8f9eb 100%);
  color: #26432c;
}

.home-review--mint .home-review__person {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #cde0d1;
}

.home-review--dark {
  border: 1px solid #254533;
  background: linear-gradient(150deg, #1a3323 0%, #244936 100%);
  color: #eaffee;
}

.home-review--dark .home-review__person {
  background: rgba(12, 28, 19, 0.42);
  border: 1px solid #426d54;
}

.home-review--dark .home-review__person span {
  color: #c0dec7;
}

.home-review--line {
  border: 1px solid #cfe2d3;
  background: #ffffff;
  color: #2a3f2d;
}

.home-review--line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2f8f46, #7ed598);
}

.home-review--line p,
.home-review--line .home-review__person {
  margin-left: 0.5rem;
}

.home-review--line .home-review__person {
  border: 1px solid #d5e7d9;
}

.home-review--soft {
  border: 1px solid #d8e8db;
  background: linear-gradient(165deg, #ffffff 0%, #f3f8ff 100%);
  color: #293d31;
}

.home-review--soft .home-review__person {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d7e5ef;
}

.home-final-cta {
  padding: 0.9rem 0 2.5rem;
}

.home-final-cta__inner {
  border: 1px solid #cfe3d3;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(86, 184, 110, 0.2), transparent 44%),
    linear-gradient(155deg, #ffffff 0%, #eefaf0 100%);
  box-shadow: 0 14px 34px rgba(18, 50, 28, 0.11);
  padding: clamp(1rem, 3vw, 1.8rem);
  display: grid;
  gap: 0.9rem;
}

.home-final-cta__inner h2 {
  margin: 0.35rem 0 0.72rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 1.03;
  max-width: 22ch;
}

.home-final-cta__inner p {
  margin: 0;
  color: #445844;
  max-width: 68ch;
}

.home-final-cta__points {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-final-cta__points span {
  border: 1px solid #cae0cf;
  border-radius: 999px;
  background: #f4fff6;
  padding: 0.32rem 0.7rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2b4b32;
  font-weight: 700;
}

.home-final-cta .hero-actions {
  margin-top: 1rem;
}

.home-final-cta__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #cae0cf;
  background: #ffffff;
}

.home-final-cta__media img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 31, 20, 0.48);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  width: min(540px, 94vw);
  border-radius: 20px;
  border: 1px solid #d7e8d9;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(19, 48, 28, 0.25);
  padding: 1rem 1rem 1.1rem;
  position: relative;
  transform: translateY(26px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: #eef7ef;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-card h3 {
  margin: 0.4rem 0 0.8rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.modal-form {
  display: grid;
  gap: 0.75rem;
}

.modal-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: #1f2f20;
}

.modal-form input,
.modal-form textarea {
  border: 1px solid #d3e5d5;
  border-radius: 12px;
  padding: 0.7rem 0.82rem;
  font: inherit;
  color: #182117;
  background: #fbfffb;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: #7bc38d;
  box-shadow: 0 0 0 3px rgba(66, 163, 91, 0.16);
}

.modal-form .btn {
  justify-self: start;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(24px);
  z-index: 90;
  border-radius: 999px;
  background: #133620;
  color: #effff3;
  border: 1px solid #2d7e45;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 940px) {
  .header__inner {
    min-height: 94px;
  }

  .desktop-nav {
    margin-left: 2.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
  }

  .header-phone {
    display: inline-flex;
  }

  .menu-toggle {
    margin-left: 0;
    display: none;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

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

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

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

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

  .rr-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .rr-bento {
    grid-template-columns: 1.1fr 1.1fr 0.8fr;
  }

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

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

  .rr-deep {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

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

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

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

  .site-footer-main {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

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

  .home-collage__card {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

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

  .home-matrix__lead {
    grid-column: 1 / -1;
  }

  .home-services-grid__wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .home-review:nth-child(2),
  .home-review:nth-child(5) {
    transform: translateY(10px);
  }

  .home-final-cta__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .home-about-brief__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .home-about-brief__icon {
    justify-self: end;
  }

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

  .about-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .about-hero__media {
    min-height: auto;
  }

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

  .about-zigzag .zig-item:nth-child(2) {
    transform: translateX(4%);
  }

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

  .about-lab {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas:
      "main glow"
      "main dark";
  }

  .lab-card--main {
    grid-area: main;
  }

  .lab-card--glow {
    grid-area: glow;
  }

  .lab-card--dark {
    grid-area: dark;
  }
}
