@charset "UTF-8";
:root {
  --green: #075d31;
  --green-dark: #034622;
  --green-light: #0b7440;
  --text: #111820;
  --muted: #5e6468;
  --line: #e7ebe8;
  --soft: #f7f9f7;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(11, 44, 27, 0.08);
  --shadow: 0 14px 42px rgba(11, 44, 27, 0.10);
  --shadow-lg: 0 22px 60px rgba(11, 44, 27, 0.14);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 18px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  background-color: #fcfdfc;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background-color: #fcfdfc;
  background-image: linear-gradient(180deg, rgba(220, 235, 225, 0.42) 0%, rgba(235, 244, 238, 0.18) 120px, rgba(255, 255, 255, 0) 280px), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 70%, rgba(255, 255, 255, 0.24) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, 0.18) 100%), repeating-linear-gradient(45deg, rgba(7, 93, 49, 0.018) 0, rgba(7, 93, 49, 0.018) 1px, transparent 1px, transparent 12px), repeating-linear-gradient(-45deg, rgba(7, 93, 49, 0.018) 0, rgba(7, 93, 49, 0.018) 1px, transparent 1px, transparent 12px);
  background-attachment: fixed;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 93, 49, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/header-bg.png") center center/860px auto no-repeat, radial-gradient(circle at center, rgba(7, 93, 49, 0.025), transparent 70%);
  opacity: 0.24;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

@media (max-width: 820px) {
  .header-decoration {
    background-size: 520px auto;
    opacity: 0.18;
  }
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  display: block;
  width: auto;
  height: 72px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo:hover img {
  transform: translateY(-1px);
  opacity: 0.96;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 52px;
  color: var(--green);
}

.brand-mark svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: grid;
  color: var(--green-dark);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.brand-text strong {
  font-family: Georgia, serif;
  font-size: 18px;
}

.brand-text small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 0.25em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 26px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--green);
  transition: right 0.25s ease;
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

.header-phone i {
  color: var(--green);
  font-size: 16px;
  line-height: 1;
}

.menu-toggle, .mobile-nav {
  display: none;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

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

.btn i {
  flex: 0 0 auto;
  font-size: 17px;
  line-height: 1;
}

.btn-small i {
  font-size: 15px;
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 8px 22px rgba(7, 93, 49, 0.18);
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 28px rgba(7, 93, 49, 0.24);
}

.btn-outline {
  color: var(--green);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--green);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fbfcfb;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  top: -25px;
  right: 0;
  bottom: -25px;
  left: 0;
  will-change: transform;
  transform: translate3d(0, -35px, 0);
  transform-origin: center center;
  background: linear-gradient(90deg, rgba(242, 247, 249, 0.98) 0%, rgba(242, 247, 249, 0.94) 18%, rgba(244, 248, 249, 0.82) 31%, rgba(248, 250, 249, 0.52) 43%, rgba(255, 255, 255, 0.14) 56%, rgba(255, 255, 255, 0) 68%), linear-gradient(0deg, rgba(248, 250, 249, 0.68) 0%, rgba(248, 250, 249, 0.26) 18%, rgba(248, 250, 249, 0) 39%), linear-gradient(270deg, rgba(8, 20, 15, 0.12) 0%, rgba(8, 20, 15, 0.03) 20%, rgba(8, 20, 15, 0) 36%), image-set(url("../images/hero-bg.webp") type("image/webp"), url("../images/hero-bg.jpg") type("image/jpeg"));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  image-rendering: auto;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 19% 38%, rgba(215, 229, 235, 0.2) 0%, rgba(225, 236, 239, 0.1) 35%, rgba(255, 255, 255, 0) 62%), radial-gradient(ellipse at 52% 44%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-visual-inner {
  min-height: 560px;
  position: relative;
}

.hero-content {
  min-height: 560px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(700px, 58%);
  padding: 62px 0 88px;
}

.hero-location {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 34px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.hero-location > i {
  width: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 29px;
  line-height: 1;
  transition: color 0.22s ease, transform 0.22s ease;
}

.hero-location-text {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-location-prefix {
  color: #64706a;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.hero-location strong {
  color: var(--green-dark);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-location:hover {
  transform: translateX(4px);
}

.hero-location:hover > i {
  color: var(--green-light);
  transform: translateY(-1px) scale(1.06);
}

.hero-location:hover strong {
  color: var(--green-light);
}

@media (max-width: 820px) {
  .hero-location {
    margin: 0 0 26px;
    gap: 10px;
  }
  .hero-location > i {
    width: 27px;
    flex-basis: 27px;
    font-size: 28px;
  }
  .hero-location-text {
    white-space: normal;
  }
  .hero-location-prefix {
    display: none;
  }
  .hero-location strong {
    font-size: 19px;
    line-height: 1.2;
  }
}
@media (max-width: 390px) {
  .hero-location {
    margin-bottom: 23px;
  }
  .hero-location > i {
    width: 24px;
    flex-basis: 24px;
    font-size: 22px;
  }
  .hero-location strong {
    font-size: 18px;
  }
}
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.18);
}

.hero-title-main, .hero-title-accent {
  display: block;
}

.hero-title-main {
  color: var(--text);
  white-space: nowrap;
}

.hero-title-accent {
  max-width: 680px;
  margin-top: 0.08em;
  color: var(--green);
}

.hero-description {
  max-width: 600px;
  margin: 0;
  color: #3f4a50;
  font-size: 15px;
  line-height: 1.6;
}

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

.hero-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 0;
  color: #343a3d;
  font-size: 12px;
  font-weight: 650;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 15px;
  line-height: 1;
}

.hero-trust span:not(:last-child)::after {
  content: "•";
  margin: 0 26px 0 19px;
  color: var(--green);
}

.benefits-wrap {
  position: relative;
  z-index: 20;
  margin-top: -34px;
}

.benefits-card {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  background: linear-gradient(135deg, rgba(247, 251, 248, 0.98), rgba(239, 247, 242, 0.96));
  border: 1px solid rgba(7, 93, 49, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(11, 44, 27, 0.1);
}

.benefit {
  min-width: 0;
  min-height: 150px;
  padding: 18px 14px 16px;
  display: grid;
  grid-template-rows: 50px 38px 1fr;
  justify-items: center;
  align-items: start;
  row-gap: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 93, 49, 0.07);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.benefit:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(11, 44, 27, 0.08);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: #eef8f1;
  border: 1px solid rgba(7, 93, 49, 0.08);
  border-radius: 50%;
  overflow: hidden;
}

.benefit-icon i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 30px;
  transform: translateY(1px);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.benefit-icon--flag {
  padding: 0;
  background: transparent;
  border-color: transparent;
}

.benefit-icon--flag svg {
  width: 100%;
  height: 100%;
  transform: none;
}

.benefit h3 {
  min-width: 0;
  margin: 0;
  align-self: center;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.section {
  padding: 40px 0;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading span, .eyebrow {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-heading h2, .about-content h2 {
  margin: 7px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.products-section, .products {
  position: relative;
  padding-top: 76px;
  padding-bottom: 86px;
}

.products-section .section-heading, .products .section-heading {
  margin-bottom: 34px;
}

.products-section .section-heading span, .products .section-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.products-section .section-heading h2, .products .section-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

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

.product-card {
  min-width: 0;
  min-height: 388px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 196px 1fr;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 93, 49, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 44, 27, 0.06), 0 1px 2px rgba(11, 44, 27, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(7, 93, 49, 0.2);
  box-shadow: 0 20px 44px rgba(11, 44, 27, 0.13), 0 4px 10px rgba(11, 44, 27, 0.05);
}

.product-image {
  height: 196px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 35, 20, 0) 55%, rgba(5, 35, 20, 0.18) 100%);
  pointer-events: none;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(7, 93, 49, 0);
  pointer-events: none;
  transition: background-color 0.28s ease;
}

.product-card:hover .product-image::after {
  background: rgba(7, 93, 49, 0.06);
}

.product-image {
  transition: background-size 0.45s ease;
}

.product-card:hover .product-image {
  background-size: 106%;
}

.product-body {
  min-height: 192px;
  padding: 21px 20px 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
}

.product-body h3 {
  margin: 0 0 9px;
  color: var(--text);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.product-body p {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-body > span {
  width: fit-content;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.product-body > span i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(7, 93, 49, 0.07);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.product-card:hover .product-body > span i {
  color: #ffffff;
  background: var(--green);
  transform: translateX(3px);
}

.image-window {
  background-image: url("../images/product-window.webp");
}

.image-door {
  background-image: url("../images/product-door.webp");
}

.image-shaft {
  background-image: url("../images/product-shaft.webp");
}

.image-special {
  background-image: url("../images/product-special.webp");
}

.about {
  padding-top: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.about-person {
  min-width: 0;
}

.about-person-heading {
  margin: 0 0 18px;
}

.about-person-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 2.9vw, 36px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.about-photo {
  min-height: 430px;
  position: relative;
  border-radius: 10px;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 45, 24, 0.22)), url("../images/gf-photo.png") center -70px/cover no-repeat;
}

.contact-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: auto;
  padding: 20px;
  display: grid;
  gap: 9px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(11, 107, 55, 0.88), rgba(7, 85, 44, 0.88));
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.025em;
}

.contact-card-line {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: 12px;
  line-height: 1.45;
}

.contact-card-line i {
  width: 16px;
  flex: 0 0 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1;
}

.contact-card-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-card-action {
  margin-top: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--green-dark);
  background: #eef7f1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.contact-card-action:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.contact-card-action i {
  font-size: 14px;
  transition: transform 0.22s ease;
}

.contact-card-action:hover i {
  transform: translateX(3px);
}

.about-content {
  padding: 18px 0;
}

.about-intro {
  max-width: 690px;
  margin: 16px 0 30px;
  color: var(--muted);
  font-size: 15px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 30px;
}

.check-grid > div {
  display: flex;
  gap: 10px;
}

.check-grid b {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
}

.check-grid b i {
  font-size: 11px;
  line-height: 1;
}

.check-grid span {
  display: grid;
}

.check-grid strong {
  font-size: 16px;
}

.check-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.cta-strip {
  color: var(--white);
  background: radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.08), transparent 30%), linear-gradient(90deg, var(--green-dark), var(--green));
}

.cta-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  margin: 0;
  font-size: 24px;
}

.cta-inner p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
}

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

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.56);
}

.service-area {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
}

.service-map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.78) brightness(1.05) contrast(0.92);
}

.service-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1)), radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 38%, rgba(0, 0, 0, 0.12) 100%), linear-gradient(90deg, rgba(20, 55, 35, 0.18), rgba(255, 255, 255, 0) 45%, rgba(20, 55, 35, 0.18));
}

.service-area-inner {
  min-height: 260px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-box {
  width: 310px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.service-box h3 {
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.service-box h3 i {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 17px;
  line-height: 1;
}

.service-box p, .service-box li {
  color: var(--text);
  font-size: 12px;
}

.service-box ul {
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.service-box li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-box li i {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 12px;
  line-height: 1;
}

.service-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  margin: 0 auto;
  padding: 8px 11px;
  gap: 7px;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.service-box a i {
  font-size: 12px;
  line-height: 1;
}

.radius-badge {
  width: 136px;
  height: 136px;
  display: grid;
  place-content: center;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
  border: 2px dashed var(--green);
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  box-shadow: var(--shadow);
}

.radius-badge strong {
  display: block;
  margin: 2px 0;
  font-size: 22px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(145deg, #034622, #075d31);
}

.site-footer::before, .site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 800px;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.site-footer::before {
  left: 0;
  background-size: 400px auto;
  background-position: left center;
  background-image: url("../images/footer-left.png");
  opacity: 0.23;
}

.site-footer::after {
  right: 0;
  background-size: 400px auto;
  background-image: url("../images/footer-right.png");
  background-position: right center;
  opacity: 0.23;
}

.footer-main {
  position: relative;
  z-index: 2;
}

@media (min-width: 1600px) {
  .site-footer::before, .site-footer::after {
    width: 620px;
  }
}
@media (max-width: 1200px) {
  .site-footer::before, .site-footer::after {
    width: 360px;
    opacity: 0.18;
  }
}
@media (max-width: 768px) {
  .site-footer::before, .site-footer::after {
    width: 180px;
    opacity: 0.08;
  }
}
.footer-top {
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) minmax(130px, 0.72fr) minmax(150px, 0.8fr) minmax(140px, 0.72fr) minmax(190px, 0.9fr);
  gap: 38px;
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: auto;
  height: 94px;
  display: block;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer h4 {
  margin: 0 0 17px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.footer-column > a {
  width: fit-content;
  margin: 0 0 11px;
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column > a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-neher {
  width: 100%;
  max-width: 205px;
  min-height: 200px;
  padding: 16px 15px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.footer-neher:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-neher-title {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.footer-neher-logo {
  width: 92px;
  height: auto;
  margin-bottom: 10px;
}

.footer-neher-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  line-height: 1.45;
}

.footer-info {
  padding: 26px 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(390px, 1.3fr) minmax(190px, 0.65fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-info-column {
  min-width: 0;
}

.footer-info-column h4 {
  margin-bottom: 13px;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.footer-contact h4 {
  grid-column: 1/-1;
}

.footer-contact a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.45;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-contact a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact i {
  width: 16px;
  flex: 0 0 16px;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.footer-contact span {
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.footer-hours-grid > div {
  display: grid;
  gap: 3px;
}

.footer-hours-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  line-height: 1.35;
}

.footer-hours-grid strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-follow {
  justify-self: end;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.footer-socials a:hover {
  color: var(--green-dark);
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.footer-socials i {
  font-size: 16px;
  line-height: 1;
}

.footer-bottom {
  min-height: 48px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  transition: color 0.22s ease;
}

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

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(130px, 0.75fr));
  }
  .footer-neher {
    max-width: none;
    justify-self: stretch;
  }
  .footer-info {
    grid-template-columns: 1fr 1fr;
  }
  .footer-follow {
    justify-self: start;
  }
}
@media (max-width: 820px) {
  .footer-top {
    padding: 44px 0 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand p {
    max-width: 440px;
  }
  .footer-neher {
    min-height: 190px;
  }
  .footer-info {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-hours-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
}
@media (max-width: 560px) {
  .footer-top {
    padding: 40px 0 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-logo img {
    height: 76px;
  }
  .footer-brand p {
    max-width: none;
  }
  .footer-neher {
    min-height: auto;
    max-width: none;
  }
  .footer-info {
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-hours-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .footer-follow {
    justify-self: start;
  }
  .footer-bottom {
    align-items: center;
    text-align: center;
  }
  .footer-bottom nav {
    justify-content: center;
  }
}
.back-to-top {
  width: 44px;
  height: 44px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: none;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  display: grid;
  place-items: center;
}

.back-to-top i {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .logo img {
    height: 60px;
  }
  .desktop-nav {
    gap: 17px;
  }
  .header-phone {
    display: none;
  }
  .hero-copy {
    width: 64%;
  }
  .hero h1 {
    font-size: clamp(40px, 5vw, 58px);
  }
  .benefits-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .benefit {
    min-height: 138px;
    grid-template-rows: 46px 36px 1fr;
  }
  .benefit-icon {
    width: 46px;
    height: 46px;
  }
  .benefit-icon i {
    width: 28px;
    height: 28px;
    font-size: 26px;
    line-height: 28px;
    transform: translateY(1px);
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-card {
    min-height: 380px;
  }
  .product-image {
    height: 210px;
  }
  .product-card {
    grid-template-rows: 210px 1fr;
  }
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-inner, .cta-buttons {
    flex-wrap: wrap;
  }
  .cta-inner {
    padding: 22px 0;
  }
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }
  .container {
    width: min(100% - 28px, 680px);
  }
  .header-inner {
    min-height: var(--header-height);
  }
  .desktop-nav, .header-actions {
    display: none;
  }
  .logo img {
    height: 52px;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 5px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--green-dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-nav {
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 8px 20px 18px;
    background: var(--white);
    border-top: 1px solid var(--line);
  }
  .mobile-nav.open {
    display: grid;
  }
  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 650;
  }
  .hero {
    overflow: visible;
    background: #fff;
  }
  .hero-visual {
    position: relative;
    inset: auto;
    min-height: 280px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.26) 72%, rgba(255, 255, 255, 0.88) 92%, #fff 100%), url("../images/hero-bg.jpg") 68% center/cover no-repeat;
  }
  .hero-parallax {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none !important;
    will-change: auto;
    background-position: 68% center;
  }
  .hero-visual-inner {
    min-height: 280px;
  }
  .hero-content {
    min-height: auto;
    display: block;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 12px 0 48px;
  }
  .hero h1 {
    width: 100%;
    margin: 0 0 22px;
    font-size: clamp(31px, 7.6vw, 38px);
    line-height: 1.06;
    letter-spacing: -0.038em;
  }
  .hero-title-main, .hero-title-accent {
    display: block;
    max-width: none;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }
  .hero-title-main {
    color: var(--text);
  }
  .hero-title-accent {
    margin-top: 4px;
    color: var(--green);
  }
  .hero-description {
    max-width: none;
    margin: 0;
    font-size: 15px;
    line-height: 1.58;
  }
  .hero-buttons {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    min-height: 50px;
  }
  .hero-trust {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 11px;
    line-height: 1.4;
  }
  .hero-trust span:not(:last-child)::after {
    display: none;
  }
  .benefits-wrap {
    margin-top: 0;
  }
  .benefits-card {
    padding: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-radius: 14px;
  }
  .benefit {
    min-height: 102px;
    padding: 13px 9px 11px;
    grid-template-rows: 38px auto;
    row-gap: 7px;
  }
  .benefit-icon {
    width: 38px;
    height: 38px;
  }
  .benefit-icon i {
    width: 24px;
    height: 24px;
    font-size: 23px;
    line-height: 24px;
    transform: translateY(1px);
  }
  .benefit-icon svg, .benefit-icon--flag svg {
    width: 100%;
    height: 100%;
  }
  .benefit h3 {
    font-size: 12px;
  }
  .benefit p {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-person-heading {
    margin-bottom: 14px;
  }
  .about-photo {
    min-height: 430px;
  }
  .contact-card {
    left: 14px;
    bottom: 14px;
    padding: 18px;
  }
  .contact-card strong {
    font-size: 23px;
  }
  .cta-buttons {
    width: 100%;
  }
  .cta-buttons .btn {
    flex: 1 1 220px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-neher {
    width: 100%;
    margin-top: 30px;
    padding: 22px 18px;
  }
  .footer-neher-logo {
    width: 140px;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 32px);
  }
  .brand-mark {
    width: 43px;
  }
  .brand-text strong {
    font-size: 15px;
  }
  .brand-text small {
    font-size: 7px;
  }
  .hero-visual, .hero-visual-inner {
    min-height: 250px;
  }
  .hero-visual {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.28) 68%, rgba(255, 255, 255, 0.86) 90%, #ffffff 100%), url("../images/hero-bg.jpg") 68% center/cover no-repeat;
  }
  .hero-copy {
    padding: 14px 0 46px;
  }
  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(32px, 9.1vw, 39px);
    line-height: 1.05;
    letter-spacing: -0.038em;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    column-gap: 20px;
    row-gap: 11px;
  }
  .hero-trust span:last-child {
    grid-column: 1/-1;
  }
  .product-grid, .check-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-image {
    height: 220px;
  }
  .product-body p {
    min-height: auto;
  }
  .section {
    padding: 38px 0;
  }
  .about {
    padding-top: 0;
  }
  .about-grid {
    gap: 24px;
  }
  .about-person-heading h2 {
    font-size: 28px;
  }
  .about-photo {
    min-height: 380px;
  }
  .contact-card {
    padding: 16px;
  }
  .contact-card strong {
    font-size: 22px;
  }
  .contact-card-action {
    padding: 11px 13px;
  }
  .cta-inner {
    align-items: stretch;
  }
  .cta-buttons {
    display: grid;
  }
  .service-area {
    min-height: 360px;
  }
  .service-map, .service-map iframe {
    min-height: 360px;
  }
  .service-map iframe {
    filter: saturate(0.9) contrast(0.96) brightness(0.98);
  }
  .service-map-overlay {
    background: linear-gradient(180deg, rgba(5, 45, 25, 0.08) 0%, rgba(5, 45, 25, 0) 42%, rgba(5, 45, 25, 0.1) 100%);
  }
  .service-area-inner {
    min-height: 360px;
    padding: 18px 0;
    position: relative;
    display: block;
  }
  .service-box {
    width: calc(100% - 80px);
    padding: 16px 17px;
    position: absolute;
    left: 0;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(11, 44, 27, 0.18);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
  }
  .service-box h3 {
    margin: 0 0 13px;
    font-size: 18px;
    line-height: 1.25;
  }
  .service-box h3 i {
    font-size: 21px;
  }
  .service-box p, .service-box ul {
    display: none;
  }
  .service-box > a {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .radius-badge {
    width: 112px;
    height: 112px;
    position: absolute;
    top: 20px;
    right: 0;
    display: grid;
    place-content: center;
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.64);
    border: 2px dashed var(--green);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 12px 30px rgba(11, 44, 27, 0.16);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(6px);
  }
  .radius-badge {
    font-size: 0;
  }
  .radius-badge strong {
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
}
@media (max-width: 480px) {
  .hero-visual, .hero-visual-inner {
    min-height: 250px;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.08;
  }
  .hero-title-main {
    white-space: nowrap;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    column-gap: 20px;
    row-gap: 10px;
  }
  .hero-trust span:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 390px) {
  .container {
    width: calc(100% - 24px);
  }
  .logo img {
    height: 46px;
  }
  .hero-visual, .hero-visual-inner {
    min-height: 230px;
  }
  .hero h1 {
    font-size: 31px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-location {
    align-items: flex-start;
    border-radius: 10px;
    line-height: 1.4;
  }
  .hero-trust {
    grid-template-columns: 1fr;
  }
  .hero-trust span:last-child {
    grid-column: auto;
  }
  .benefits-card {
    gap: 6px;
  }
  .benefit {
    min-height: 94px;
    padding: 12px 8px 10px;
  }
  .benefit-icon {
    width: 34px;
    height: 34px;
  }
  .benefit-icon i {
    width: 22px;
    height: 22px;
    font-size: 21px;
    line-height: 22px;
    transform: translateY(1px);
  }
  .benefit h3 {
    font-size: 11px;
  }
  .service-area, .service-map, .service-map iframe, .service-area-inner {
    min-height: 330px;
  }
  .service-box {
    width: calc(100% - 102px);
    left: 0;
    bottom: 16px;
    padding: 14px 15px;
  }
  .service-box h3 {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: min(1320px, 100% - 64px);
  }
  .hero-visual, .hero-visual-inner, .hero-content {
    min-height: 600px;
  }
  .hero-copy {
    width: min(760px, 59%);
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-description {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .hero-title-main {
    white-space: normal;
  }
  .hero h1 {
    font-size: 29px;
  }
}
.lni {
  display: inline-block;
  vertical-align: middle;
  speak: never;
}

.hero-buttons .lni, .cta-buttons .lni {
  position: relative;
  top: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.neher-badge {
  position: absolute;
  right: 0;
  bottom: 66px;
  z-index: 5;
  width: 132px;
  min-height: 154px;
  padding: 12px 13px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #111820;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 32, 0.05);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset, 0 12px 30px rgba(11, 44, 27, 0.15);
  text-align: center;
  overflow: hidden;
}

.neher-logo {
  width: 98px;
  height: auto;
  max-height: 92px;
  margin: 0 auto 13px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.neher-quality {
  width: 100%;
  margin: 0;
  color: #111820;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: center;
  text-transform: uppercase;
}

.neher-badge .stars {
  width: 100%;
  margin: 9px 0 0;
  color: #ffad00;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .neher-badge {
    top: auto;
    right: auto;
    bottom: 22px;
    left: 16px;
    width: 120px;
    min-height: 142px;
    padding: 11px 12px 13px;
    border-radius: 8px;
  }
  .neher-logo {
    width: 90px;
    max-height: 86px;
    margin-bottom: 11px;
  }
  .neher-quality {
    font-size: 10px;
    line-height: 1.23;
  }
  .neher-badge .stars {
    margin-top: 8px;
    font-size: 14.5px;
    letter-spacing: 0.85px;
  }
}
@media (max-width: 560px) {
  .neher-badge {
    top: auto;
    right: auto;
    bottom: 14px;
    left: 14px;
    width: 112px;
    min-height: 132px;
    padding: 10px 11px 12px;
  }
  .neher-logo {
    width: 84px;
    max-height: 80px;
    margin-bottom: 10px;
  }
  .neher-quality {
    font-size: 9.5px;
    line-height: 1.2;
  }
  .neher-badge .stars {
    margin-top: 7px;
    font-size: 12.5px;
    letter-spacing: 0.7px;
  }
}
@media (max-width: 390px) {
  .neher-badge {
    bottom: 12px;
    right: 12px;
    width: 106px;
    min-height: 126px;
    padding: 9px 10px 11px;
  }
  .neher-logo {
    width: 80px;
    max-height: 76px;
    margin-bottom: 9px;
  }
  .neher-quality {
    font-size: 9px;
  }
  .neher-badge .stars {
    margin-top: 7px;
    font-size: 12px;
    letter-spacing: 0.65px;
  }
}
@media (max-width: 620px) {
  .products-section, .products {
    padding-top: 56px;
    padding-bottom: 62px;
  }
  .products-section .section-heading, .products .section-heading {
    margin-bottom: 26px;
  }
  .products-section .section-heading h2, .products .section-heading h2 {
    font-size: 30px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-card {
    min-height: auto;
    grid-template-rows: 210px auto;
    border-radius: 11px;
  }
  .product-image {
    height: 210px;
  }
  .product-body {
    min-height: auto;
    padding: 18px 18px 19px;
  }
  .product-body h3 {
    font-size: 17px;
  }
  .product-body p {
    font-size: 12.5px;
  }
  .product-body > span {
    margin-top: 17px;
  }
}
.site-header .container,
#main-content .container,
.site-footer .container {
  padding-left: 0;
  padding-right: 0;
}
.site-header .container::before, .site-header .container::after,
#main-content .container::before,
#main-content .container::after,
.site-footer .container::before,
.site-footer .container::after {
  display: none;
  content: none;
}
.site-header a:hover,
.site-header a:focus,
#main-content a:hover,
#main-content a:focus,
.site-footer a:hover,
.site-footer a:focus {
  text-decoration: none;
}
.site-header a:focus-visible,
.site-header button:focus-visible,
#main-content a:focus-visible,
#main-content button:focus-visible,
.site-footer a:focus-visible,
.site-footer button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.desktop-nav a:hover, .desktop-nav a:focus,
.mobile-nav a:hover,
.mobile-nav a:focus,
.header-phone:hover,
.header-phone:focus {
  color: var(--green);
}

.site-header .btn,
#main-content .btn,
.site-footer .btn {
  white-space: normal;
}
.site-header .btn:hover, .site-header .btn:focus, .site-header .btn:active,
#main-content .btn:hover,
#main-content .btn:focus,
#main-content .btn:active,
.site-footer .btn:hover,
.site-footer .btn:focus,
.site-footer .btn:active {
  text-decoration: none;
}
.site-header .btn:active, .site-header .btn.active,
#main-content .btn:active,
#main-content .btn.active,
.site-footer .btn:active,
.site-footer .btn.active {
  background-image: none;
}
.site-header .btn-primary:hover, .site-header .btn-primary:focus, .site-header .btn-primary:active, .site-header .btn-primary.active, .site-header .btn-primary:active:hover, .site-header .btn-primary:active:focus,
#main-content .btn-primary:hover,
#main-content .btn-primary:focus,
#main-content .btn-primary:active,
#main-content .btn-primary.active,
#main-content .btn-primary:active:hover,
#main-content .btn-primary:active:focus,
.site-footer .btn-primary:hover,
.site-footer .btn-primary:focus,
.site-footer .btn-primary:active,
.site-footer .btn-primary.active,
.site-footer .btn-primary:active:hover,
.site-footer .btn-primary:active:focus {
  color: var(--white);
  background: var(--green-dark);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(7, 93, 49, 0.24);
}
.site-header .btn-outline:hover, .site-header .btn-outline:focus, .site-header .btn-outline:active,
#main-content .btn-outline:hover,
#main-content .btn-outline:focus,
#main-content .btn-outline:active,
.site-footer .btn-outline:hover,
.site-footer .btn-outline:focus,
.site-footer .btn-outline:active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: none;
}
.site-header .btn-white:hover, .site-header .btn-white:focus, .site-header .btn-white:active,
#main-content .btn-white:hover,
#main-content .btn-white:focus,
#main-content .btn-white:active,
.site-footer .btn-white:hover,
.site-footer .btn-white:focus,
.site-footer .btn-white:active {
  color: var(--green-dark);
  background: var(--white);
  border-color: transparent;
  box-shadow: none;
}
.site-header .btn-ghost:hover, .site-header .btn-ghost:focus, .site-header .btn-ghost:active,
#main-content .btn-ghost:hover,
#main-content .btn-ghost:focus,
#main-content .btn-ghost:active,
.site-footer .btn-ghost:hover,
.site-footer .btn-ghost:focus,
.site-footer .btn-ghost:active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

/*# sourceMappingURL=styles.css.map */
