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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: #0e1c24;
}

body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.65;
  color: #4a4a4a;
  background-color: #0e1c24;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #ffffff;
  overflow-x: hidden;
}

body.admin-bar .site {
  min-height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
  min-height: calc(100dvh - var(--wp-admin--admin-bar--height, 32px));
}

.site > main,
.site > .site-main {
  flex: 1 0 auto;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid #bfe35c;
  outline-offset: 3px;
}

::selection {
  background-color: #bfe35c;
  color: #0e1c24;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #0e1c24;
}

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

.container-pc {
  width: 100%;
  max-width: 1290px;
  margin-inline: auto;
  padding-inline: 1.15rem;
}
@media (min-width: 576px) {
  .container-pc {
    padding-inline: 1.25rem;
  }
}
@media (min-width: 992px) {
  .container-pc {
    padding-inline: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #172f3b;
  background-color: #bfe35c;
  border-radius: 50px;
  border: none;
  box-shadow: 0 10px 28px rgba(191, 227, 92, 0.28);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.btn:hover, .btn:focus-visible {
  background-color: #cbe87a;
  color: #172f3b;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(191, 227, 92, 0.38);
}
.btn:hover i, .btn:focus-visible i {
  transform: translateX(3px);
}
.btn:active {
  transform: translateY(0);
}
.btn--ghost {
  background-color: transparent;
  color: #bfe35c;
  padding: 0;
  box-shadow: none;
}
.btn--ghost:hover {
  color: #cbe87a;
  background-color: transparent;
  box-shadow: none;
  transform: none;
}

.pie-chart {
  text-align: center;
  flex: 1 1 0;
}
.pie-chart__ring {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 0.35rem;
}
@media (max-width: 767px) {
  .pie-chart__ring {
    width: 90px;
    height: 90px;
  }
}
.pie-chart__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.pie-chart__track {
  fill: none;
  stroke: #adadad;
  stroke-width: 8;
  opacity: 0.9;
}
.pie-chart__progress {
  fill: none;
  stroke: #bfe35c;
  stroke-width: 8;
  stroke-linecap: butt;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.8s ease;
}
.pie-chart__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.pie-chart__title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 5px 0 0;
}

.topbar {
  position: relative;
  z-index: 1001;
  margin: 0;
  padding: 0;
  background-color: #0e1c24;
  color: #c5c5c5;
  font-size: 0.8125rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding-block: 0.55rem;
  text-align: center;
}
@media (min-width: 992px) {
  .topbar__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
}
.topbar__social {
  display: none;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 992px) {
  .topbar__social {
    display: flex;
    justify-self: start;
  }
}
.topbar__social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.topbar__social a:hover, .topbar__social a:focus-visible {
  background: #bfe35c;
  border-color: #bfe35c;
  color: #172f3b;
  outline: none;
}
.topbar__promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #bfe35c;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .topbar__promo {
    justify-self: center;
    width: 100%;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}
.topbar__promo i {
  font-size: 0.85rem;
  flex-shrink: 0;
}
.topbar__list {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 1.75rem;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .topbar__list {
    display: flex;
    justify-self: end;
  }
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease;
}
.topbar__item i {
  color: #bfe35c;
  font-size: 0.85rem;
}
.topbar__item:hover {
  color: #bfe35c;
}

.site-header {
  position: relative;
  z-index: 1000;
  background-color: #172f3b;
  overflow: visible;
}

.hero-wrap > .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.navbar-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 90px;
  gap: 0.75rem;
  padding-block: 0.35rem;
}
.navbar-pc__brand {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.navbar-pc__brand img {
  width: auto;
  height: 36px;
}
@media (min-width: 768px) {
  .navbar-pc__brand img {
    height: 42px;
  }
}
.navbar-pc__nav {
  display: none;
  flex: 1;
  justify-content: center;
}
@media (min-width: 992px) {
  .navbar-pc__nav {
    display: flex;
  }
}
.navbar-pc__menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.navbar-pc__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.125rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #ffffff;
  transition: color 0.3s ease;
}
.navbar-pc__link i {
  font-size: 0.55rem;
  opacity: 0.85;
}
.navbar-pc__link::after {
  content: "";
  position: absolute;
  left: 1.125rem;
  right: 1.125rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: #bfe35c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-pc__link:hover {
  color: #cbe87a;
}
.navbar-pc__link:hover::after {
  transform: scaleX(1);
}
.navbar-pc__link.is-active {
  color: #bfe35c;
}
.navbar-pc__link.is-active::after {
  transform: scaleX(1);
}
.navbar-pc__dropdown {
  position: relative;
}
.navbar-pc__dropdown:hover > .navbar-pc__submenu, .navbar-pc__dropdown:focus-within > .navbar-pc__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.navbar-pc__dropdown--mega {
  position: relative;
}
.navbar-pc__dropdown--mega:hover > .navbar-pc__mega, .navbar-pc__dropdown--mega:focus-within > .navbar-pc__mega, .navbar-pc__dropdown--mega.is-open > .navbar-pc__mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.navbar-pc__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.75rem 0.625rem 0.625rem;
  background: #ffffff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 20;
  border-radius: 10px;
  pointer-events: none;
}
.navbar-pc__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.navbar-pc__submenu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  color: #0e1c24;
  border-radius: 6px;
}
.navbar-pc__submenu a:hover {
  color: #172f3b;
  background-color: #bfe35c;
}
.navbar-pc__mega {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 40;
  display: none;
  width: min(1080px, 100vw - 2rem);
  margin: 0;
  padding: 1.5rem 1.5rem 1.45rem;
  list-style: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(14, 14, 14, 0.18);
  border: 1px solid rgba(14, 28, 36, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
}
.navbar-pc__mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
@media (min-width: 992px) {
  .navbar-pc__mega {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem 1.75rem;
  }
}
.navbar-pc__mega-item {
  margin: 0;
}
.navbar-pc__mega-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.45rem;
  text-decoration: none;
  color: #0e1c24;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar-pc__mega-link img {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #f9f9f9;
}
.navbar-pc__mega-link span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  color: inherit;
}
.navbar-pc__mega-link:hover, .navbar-pc__mega-link:focus-visible {
  background: #f9f9f9;
  color: #172f3b;
  outline: none;
}
.navbar-pc__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.navbar-pc__search {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e1c24;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  border: 1px solid rgba(14, 28, 36, 0.08);
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 992px) {
  .navbar-pc__search {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
  }
}
.navbar-pc__search:hover, .navbar-pc__search:focus-visible {
  background: #bfe35c;
  color: #172f3b;
  border-color: #bfe35c;
  outline: none;
}
.navbar-pc__quote {
  display: none;
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
  border-radius: 10px;
  box-shadow: none;
}
@media (min-width: 768px) {
  .navbar-pc__quote {
    display: inline-flex;
  }
}
@media (min-width: 992px) {
  .navbar-pc__quote {
    padding: 0.75rem 1.35rem;
    font-size: 0.88rem;
  }
}
.navbar-pc__quote:hover, .navbar-pc__quote:focus-visible {
  transform: none;
  box-shadow: none;
}
.navbar-pc__toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0e1c24;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  border: 1px solid rgba(14, 28, 36, 0.08);
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media (min-width: 992px) {
  .navbar-pc__toggle {
    display: none;
  }
}
.navbar-pc__toggle:hover {
  color: #172f3b;
  background: #bfe35c;
  border-color: #bfe35c;
}

.search-popup {
  position: fixed;
  inset: 0;
  z-index: 1210;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
  visibility: hidden;
}
.search-popup.is-open {
  pointer-events: auto;
  visibility: visible;
}
.search-popup.is-open .search-popup__overlay {
  opacity: 1;
}
.search-popup.is-open .search-popup__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.search-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 36, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 1.75rem 1.35rem 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(14, 14, 14, 0.28);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) {
  .search-popup__panel {
    padding: 2.15rem 2rem 1.85rem;
  }
}
.search-popup__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #0e1c24;
  background: #f9f9f9;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.search-popup__close:hover, .search-popup__close:focus-visible {
  background: #bfe35c;
  color: #172f3b;
  outline: none;
}
.search-popup__eyebrow {
  margin: 0 0 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #172f3b;
}
.search-popup__field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-popup__field:focus-within {
  border-color: #bfe35c;
  box-shadow: 0 0 0 3px rgba(191, 227, 92, 0.35);
  background: #ffffff;
}
.search-popup__field > i {
  color: #172f3b;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.search-popup__field input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #0e1c24;
  outline: none;
  padding: 0.55rem 0;
}
.search-popup__field input::placeholder {
  color: rgba(14, 28, 36, 0.4);
}
.search-popup__submit {
  flex-shrink: 0;
  padding: 0.7rem 1.15rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #172f3b;
  background: #bfe35c;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}
.search-popup__submit:hover, .search-popup__submit:focus-visible {
  background: #cbe87a;
  outline: none;
}
.search-popup__suggest {
  margin-top: 1.25rem;
}
.search-popup__suggest-label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  color: #4a4a4a;
}
.search-popup__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.search-popup__chips a {
  padding: 0.45rem 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0e1c24;
  background: #f9f9f9;
  border-radius: 999px;
  border: 1px solid rgba(14, 28, 36, 0.08);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.search-popup__chips a:hover, .search-popup__chips a:focus-visible {
  background: #bfe35c;
  border-color: #bfe35c;
  color: #172f3b;
  outline: none;
}

body.search-open {
  overflow: hidden;
}

.offcanvas-pc {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
}
.offcanvas-pc.is-open {
  pointer-events: auto;
  visibility: visible;
}
.offcanvas-pc.is-open .offcanvas-pc__panel {
  transform: translateX(0);
  visibility: visible;
}
.offcanvas-pc.is-open .offcanvas-pc__overlay {
  opacity: 1;
  visibility: visible;
}
.offcanvas-pc__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 36, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}
.offcanvas-pc__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: min(100%, 360px);
  height: 100%;
  background: #172f3b;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  visibility: hidden;
}
.offcanvas-pc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.offcanvas-pc__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.offcanvas-pc__close:hover {
  color: #bfe35c;
}
.offcanvas-pc__menu {
  display: flex;
  flex-direction: column;
}
.offcanvas-pc__link {
  display: block;
  padding: 0.85rem 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.offcanvas-pc__link:hover, .offcanvas-pc__link.is-active {
  color: #bfe35c;
}

body.menu-open {
  overflow: hidden;
}

.hero-wrap {
  position: relative;
  background-color: #0e1c24;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 3.25rem;
}
@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }
}
@media (min-width: 992px) {
  .hero {
    padding: 10.5rem 0 13rem;
  }
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero:hover .hero__media img {
  transform: scale(1.06);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(90deg, #f9f9f9 31%, rgba(14, 14, 14, 0.7215686275) 0%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .hero__overlay {
    background-image: linear-gradient(180deg, #f9f9f9 0%, #f9f9f9 68%, rgba(14, 14, 14, 0.55) 100%);
  }
}
.hero__watermark {
  display: none;
  position: absolute;
  left: 38%;
  bottom: 3.5rem;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(5.5rem, 14vw, 9.5rem);
  font-weight: 700;
  line-height: 0.85;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(191, 227, 92, 0.45);
  opacity: 0.9;
}
@media (min-width: 992px) {
  .hero__watermark {
    display: block;
  }
}
.hero__inner {
  position: relative;
  z-index: 3;
}
.hero__card {
  margin: 0 auto 1.5rem;
  max-width: min(280px, 78vw);
  animation: heroRise 0.9s ease both;
}
@media (min-width: 768px) {
  .hero__card {
    max-width: 320px;
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 992px) {
  .hero__card {
    max-width: 92%;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.hero__card img {
  width: 100%;
  height: auto;
  display: block;
  border: 8px solid #f9f9f9;
  box-shadow: 0 18px 50px rgba(14, 28, 36, 0.18), 0 0 10px rgba(79, 79, 79, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .hero__card img {
    border-width: 10px;
  }
}
.hero__card:hover img {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(14, 28, 36, 0.22), 0 0 10px rgba(79, 79, 79, 0.08);
}
.hero__content {
  position: relative;
  z-index: 4;
  max-width: 640px;
  animation: heroRise 0.9s 0.12s ease both;
  text-align: left;
}
@media (max-width: 991px) {
  .hero__content {
    margin-inline: 0;
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .hero__content {
    padding-left: 1.75rem;
    margin-left: 0;
    padding-bottom: 1rem;
  }
}
.hero__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.85rem, 7.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0e1c24;
  margin-bottom: 1rem;
  max-width: 15ch;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: clamp(2.15rem, 4.6vw, 3.375rem);
    margin-bottom: 1.35rem;
    max-width: 14ch;
    line-height: 1.08;
  }
}
@media (min-width: 992px) {
  .hero__title {
    color: #ffffff;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  }
}
.hero__text {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.95rem, 3.4vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.65;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  max-width: 34rem;
}
@media (min-width: 768px) {
  .hero__text {
    margin-bottom: 2.15rem;
  }
}
@media (min-width: 992px) {
  .hero__text {
    color: rgba(255, 255, 255, 0.88);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stats-brands {
  position: relative;
  z-index: 10;
  margin-top: -4.7rem;
  margin-bottom: 0;
  background-color: #ffffff;
}
.stats-brands::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background-color: #172f3b;
  z-index: 0;
}
@media (max-width: 991px) {
  .stats-brands::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .stats-brands {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.stats-brands .container-pc {
  position: relative;
  z-index: 1;
}
.stats-brands__row {
  min-height: clamp(11rem, 22vw, 13.5rem);
}
.stats-brands__stats {
  background-color: #172f3b;
  padding: 2.75rem 1.5rem 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .stats-brands__stats {
    background-color: transparent;
    padding: 2.75rem 2rem 2.5rem 0;
  }
}
.stats-brands__pies {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .stats-brands__pies {
    margin-inline: 0;
    max-width: 520px;
    gap: 1.5rem;
  }
}
.stats-brands__trusted {
  background-color: #ffffff;
  padding: 2.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .stats-brands__trusted {
    padding: 2.75rem 0 2.75rem 2.75rem;
  }
}
.stats-brands__label {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0e1c24;
  margin: 0 0 1.25rem;
}
@media (max-width: 991px) {
  .stats-brands__label {
    text-align: center;
  }
}

.partners {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem 1.75rem;
}
@media (max-width: 991px) {
  .partners {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-height: 44px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.partners__item:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.partners__item img {
  max-height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.category {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  padding: 3.5rem 0 3rem;
}
@media (min-width: 992px) {
  .category {
    padding: 4rem 0 3.5rem;
  }
}
.category__head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 2.75rem;
}
.category__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0e1c24;
  margin-bottom: 0.85rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .category__title {
    white-space: normal;
  }
}
.category__text {
  font-size: 1rem;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0;
}
.category__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .category__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .category__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(14, 28, 36, 0.08);
  text-decoration: none;
  color: inherit;
  padding: 7px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover, .product-card:focus-visible {
  box-shadow: 0 10px 28px rgba(14, 28, 36, 0.12);
  transform: translateY(-3px);
}
.product-card:hover .product-card__img, .product-card:focus-visible .product-card__img {
  transform: scale(1.04);
}
.product-card:hover .product-card__cta, .product-card:focus-visible .product-card__cta {
  background-color: #cbe87a;
}
.product-card__media {
  overflow: hidden;
  border-radius: 8px;
  background: #f9f9f9;
}
.product-card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease;
}
.product-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.35rem 0.55rem;
}
.product-card__title {
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #0e1c24;
  margin: 0;
}
.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  color: #172f3b;
  background-color: #bfe35c;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
.product-card__cta i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__cta i, .product-card:focus-visible .product-card__cta i {
  transform: translateX(3px);
}

.about {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 3.5rem 0 3.5rem;
}
@media (min-width: 992px) {
  .about {
    padding: 4rem 0 4.5rem;
  }
}
.about__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bfe35c;
}
.about__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0e1c24;
  margin-bottom: 1.15rem;
  max-width: 16ch;
}
.about__text {
  font-size: clamp(0.98rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  color: #4a4a4a;
  margin-bottom: 1.75rem;
  max-width: 40rem;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .about__features {
    grid-template-columns: 1fr 1fr;
  }
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #172f3b;
  line-height: 1.35;
}
.about__feature i {
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #172f3b;
  background-color: #bfe35c;
  border-radius: 50%;
  font-size: 0.55rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.about__cta {
  margin-top: 0.25rem;
}
.about__media {
  position: relative;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .about__media {
    margin-top: 0;
    padding-left: 1rem;
  }
}
.about__image {
  margin: 0;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 420px;
  max-height: 560px;
  object-position: center;
}
.about__card {
  position: relative;
  z-index: 2;
  margin: -4.5rem 1.25rem 0;
  max-width: 340px;
  padding: 1.75rem 1.6rem 1.6rem;
  background: #172f3b;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(14, 28, 36, 0.28);
}
@media (min-width: 992px) {
  .about__card {
    position: absolute;
    left: 0;
    bottom: 1.75rem;
    margin: 0;
  }
}
.about__card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.about__card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.1rem;
}
.about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #bfe35c;
  transition: color 0.3s ease, gap 0.3s ease;
}
.about__link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.about__link:hover {
  color: #cbe87a;
}
.about__link:hover i {
  transform: translateX(4px);
}

.why {
  background: #ffffff;
  overflow: hidden;
}
.why__layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 992px) {
  .why__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 640px;
  }
}
.why__media {
  position: relative;
  min-height: 280px;
}
@media (min-width: 768px) {
  .why__media {
    min-height: 360px;
  }
}
@media (min-width: 992px) {
  .why__media {
    min-height: 100%;
  }
}
.why__image {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
@media (min-width: 768px) {
  .why__image {
    min-height: 360px;
  }
}
@media (min-width: 992px) {
  .why__image {
    min-height: 640px;
    position: absolute;
    inset: 0;
  }
}
.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.why__card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(100%, 380px);
  background: #0e1c24;
  color: #ffffff;
  padding: 2rem 1.75rem 1.85rem;
}
@media (min-width: 992px) {
  .why__card {
    width: min(100%, 400px);
    padding: 2.35rem 2.15rem 2.1rem;
  }
}
.why__card h3 {
  margin: 0 0 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}
.why__card p {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.why__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #bfe35c;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.why__link:hover {
  color: #ffffff;
  gap: 0.75rem;
}
.why__link i {
  font-size: 0.8rem;
}
.why__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1rem 3.25rem;
}
@media (min-width: 992px) {
  .why__content {
    padding: 4.5rem clamp(2rem, 5vw, 5rem) 4.5rem clamp(2.5rem, 4vw, 4.5rem);
  }
}
@media (min-width: 1200px) {
  .why__content {
    padding-right: max(1.5rem, (100vw - 1290px) / 2);
  }
}
.why__intro {
  position: relative;
  margin-bottom: 0.35rem;
}
.why__watermark {
  display: block;
  margin: 0 0 0.35rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14, 28, 36, 0.14);
  user-select: none;
  pointer-events: none;
}
.why__title {
  position: relative;
  z-index: 1;
  margin: -1.6rem 0 1rem;
  max-width: 20ch;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  color: #0e1c24;
}
.why__text {
  position: relative;
  z-index: 1;
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4a4a4a;
}
.why__list {
  display: flex;
  flex-direction: column;
}

.why-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(14, 28, 36, 0.1);
}
.why-item:first-child {
  border-top: 1px solid rgba(14, 28, 36, 0.1);
}
.why-item__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.45rem;
}
.why-item__icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
}
.why-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.why-item__title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0e1c24;
}
.why-item__text {
  margin: 0;
  padding-left: calc(45px + 1rem);
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4a4a4a;
}

.process {
  position: relative;
  background-color: #172f3b;
  padding: 3.75rem 0 3.5rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .process {
    padding: 4.5rem 0 4rem;
  }
}
.process__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}
.process__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bfe35c;
}
.process__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.process__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.process__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
  }
}
@media (min-width: 1200px) {
  .process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.process-step {
  position: relative;
  padding-top: 1.75rem;
}
.process-step__number {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(218, 246, 143, 0.45);
  pointer-events: none;
  z-index: 0;
}
.process-step__body {
  position: relative;
  z-index: 1;
  padding-top: 1.75rem;
}
.process-step__title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 0.7rem;
}
.process-step__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 22rem;
}

.best-products {
  position: relative;
  background-color: #ffffff;
  padding: 3.75rem 0 4rem;
}
@media (min-width: 992px) {
  .best-products {
    padding: 4.5rem 0 4.75rem;
  }
}
.best-products__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.best-products__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0e1c24;
  margin-bottom: 0.75rem;
}
.best-products__text {
  font-size: 1rem;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0;
}
.best-products__tabs {
  flex-wrap: nowrap;
  gap: 0.55rem;
  margin: 0 0 1.75rem;
  padding: 0 0 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  justify-content: flex-start !important;
}
@media (min-width: 768px) {
  .best-products__tabs {
    flex-wrap: wrap;
    justify-content: center !important;
    overflow: visible;
    margin-bottom: 2.25rem;
    padding-bottom: 0;
  }
}
.best-products__tabs .nav-item {
  margin: 0;
  flex-shrink: 0;
}
.best-products__tabs .nav-link {
  margin: 0;
  padding: 0.55rem 1rem;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0e1c24;
  background-color: #ffffff;
  border: 1px solid rgba(14, 28, 36, 0.14);
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .best-products__tabs .nav-link {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}
.best-products__tabs .nav-link:hover {
  color: #0e1c24;
  background-color: #f9f9f9;
  border-color: rgba(14, 28, 36, 0.22);
}
.best-products__tabs .nav-link.active {
  color: #172f3b;
  background-color: #bfe35c;
  border-color: #bfe35c;
  box-shadow: 0 6px 16px rgba(191, 227, 92, 0.35);
}
.best-products__tabs .nav-link.active:hover {
  color: #172f3b;
  background-color: #cbe87a;
  border-color: #cbe87a;
}
.best-products__tabs .nav-link:focus-visible {
  outline: 2px solid #bfe35c;
  outline-offset: 2px;
  box-shadow: none;
}
.best-products__content {
  margin-top: 0.25rem;
}
.best-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 576px) {
  .best-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .best-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.options {
  position: relative;
  background-color: #ffffff;
  padding: 3.75rem 0 4rem;
}
@media (min-width: 992px) {
  .options {
    padding: 4.5rem 0 4.75rem;
  }
}
.options__head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2rem;
}
.options__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0e1c24;
  margin-bottom: 0.75rem;
}
.options__text {
  font-size: 1rem;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0;
}
.options__tabs {
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0 0 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  justify-content: flex-start !important;
}
@media (min-width: 768px) {
  .options__tabs {
    flex-wrap: wrap;
    justify-content: center !important;
    overflow: visible;
    margin-bottom: 2rem;
    padding-bottom: 0;
  }
}
.options__tabs .nav-item {
  margin: 0;
  flex-shrink: 0;
}
.options__tabs .nav-link {
  margin: 0;
  padding: 0.55rem 0.95rem;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0e1c24;
  background-color: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .options__tabs .nav-link {
    padding: 0.6rem 1.1rem;
    font-size: 0.86rem;
  }
}
.options__tabs .nav-link:hover {
  color: #0e1c24;
  background-color: #ffffff;
  border-color: rgba(14, 28, 36, 0.2);
}
.options__tabs .nav-link.active {
  color: #172f3b;
  background-color: #bfe35c;
  border-color: #bfe35c;
  box-shadow: 0 6px 16px rgba(191, 227, 92, 0.3);
}
.options__tabs .nav-link.active:hover {
  color: #172f3b;
  background-color: #cbe87a;
  border-color: #cbe87a;
}
.options__desc {
  max-height: 420px;
  overflow-y: auto;
  padding: 1.5rem 1.35rem;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.08);
  border-radius: 12px;
  scrollbar-width: thin;
  scrollbar-color: #bfe35c rgba(14, 28, 36, 0.08);
}
.options__desc::-webkit-scrollbar {
  width: 8px;
}
.options__desc::-webkit-scrollbar-thumb {
  background: #bfe35c;
  border-radius: 8px;
}
.options__desc h3 {
  margin: 0 0 0.75rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1c24;
}
.options__desc h3:not(:first-child) {
  margin-top: 1.5rem;
}
.options__desc h4 {
  margin: 1.15rem 0 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #172f3b;
}
.options__desc p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a4a4a;
}
.options__desc ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.options__desc ul li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4a4a;
}
.options__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 576px) {
  .options__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .options__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.option-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(14, 28, 36, 0.08);
  padding: 7px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14, 28, 36, 0.12);
}
.option-card:hover .option-card__media img {
  transform: scale(1.04);
}
.option-card__media {
  overflow: hidden;
  border-radius: 8px;
  background: #f9f9f9;
  aspect-ratio: 16/10;
}
.option-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.option-card__title {
  margin: 0.85rem 0.35rem 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #0e1c24;
}
.option-card__text {
  margin: 0 0.35rem 0.55rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4a4a4a;
}

.quote {
  position: relative;
  background-color: #172f3b;
  padding: 3.75rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .quote {
    padding: 4.5rem 0 5rem;
  }
}
.quote__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #172f3b;
  background-color: #bfe35c;
  border-radius: 50px;
}
.quote__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}
.quote__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.75rem;
  max-width: 34rem;
}
.quote__features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.quote__help {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}
.quote__help-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #bfe35c;
  color: #172f3b;
  font-size: 1rem;
}
.quote__help-label {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.quote__help-phone {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.quote__help-phone:hover {
  color: #bfe35c;
}

.quote-feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.quote-feature__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(191, 227, 92, 0.15);
  color: #bfe35c;
  font-size: 0.95rem;
}
.quote-feature__title {
  margin: 0 0 0.2rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.quote-feature__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.quote-form {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(14, 14, 14, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 1.15rem 1.5rem;
}
@media (min-width: 768px) {
  .quote-form {
    padding: 2.15rem 2rem 2.15rem;
  }
}
.quote-form__head {
  margin-bottom: 1.35rem;
}
.quote-form__title {
  margin: 0 0 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #0e1c24;
}
.quote-form__note {
  margin: 0;
  font-size: 0.88rem;
  color: #4a4a4a;
}
.quote-form__label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0e1c24;
}
.quote-form__input {
  min-height: 46px;
  padding: 0.65rem 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  color: #0e1c24;
  background-color: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.12);
  border-radius: 8px;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.quote-form__input::placeholder {
  color: rgba(14, 28, 36, 0.4);
}
.quote-form__input:focus {
  background-color: #ffffff;
  border-color: #bfe35c;
  box-shadow: 0 0 0 3px rgba(191, 227, 92, 0.35);
  outline: none;
}
.quote-form select.quote-form__input {
  cursor: pointer;
}
.quote-form__textarea {
  min-height: 96px;
  resize: vertical;
}
.quote-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
}

.faq {
  position: relative;
  background-color: #172f3b;
  padding: 3.75rem 0 4rem;
}
@media (min-width: 992px) {
  .faq {
    padding: 4.5rem 0 4.75rem;
  }
}
.faq__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.faq__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bfe35c;
}
.faq__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.faq__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.faq__cols {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 992px) {
  .faq__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
  }
}
.faq__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: transparent;
  border: 0;
}
.faq-item.accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item__btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .faq-item__btn {
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
  }
}
.faq-item__btn:not(.collapsed) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.faq-item__btn:not(.collapsed) .faq-item__num {
  color: #172f3b;
  background: #bfe35c;
}
.faq-item__btn:not(.collapsed)::after {
  filter: invert(1);
}
.faq-item__btn:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-item__btn:focus-visible {
  outline: 2px solid #bfe35c;
  outline-offset: 2px;
}
.faq-item__btn::after {
  margin-left: auto;
  flex-shrink: 0;
  filter: invert(1);
  opacity: 0.8;
}
.faq-item__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #bfe35c;
  background: rgba(191, 227, 92, 0.12);
}
.faq-item__body {
  padding: 0 1rem 1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}
@media (min-width: 768px) {
  .faq-item__body {
    padding: 0 1.1rem 1.05rem 3.75rem;
    font-size: 0.92rem;
  }
}
.faq-item .accordion-collapse {
  border: 0;
}

.reviews {
  position: relative;
  background-color: #ffffff;
  padding: 3.75rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .reviews {
    padding: 4.5rem 0 4.75rem;
  }
}
.reviews__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.25rem;
}
.reviews__intro {
  max-width: 34rem;
}
.reviews__eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #172f3b;
}
.reviews__title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #0e1c24;
}
.reviews__nav {
  display: flex;
  gap: 0.55rem;
}
.reviews__nav-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(14, 28, 36, 0.18);
  background: #ffffff;
  color: #0e1c24;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.reviews__nav-btn:hover, .reviews__nav-btn:focus-visible {
  background: #bfe35c;
  border-color: #bfe35c;
  color: #172f3b;
  outline: none;
}
.reviews__nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.reviews__pagination {
  position: static;
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.reviews__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(14, 28, 36, 0.25);
  opacity: 1;
  border-radius: 50%;
}
.reviews__pagination .swiper-pagination-bullet-active {
  background: #bfe35c;
  width: 22px;
  border-radius: 6px;
}

.reviews-swiper {
  overflow: hidden;
  padding-bottom: 0.25rem;
}

.review-card {
  height: auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.35rem;
  background: #f9f9f9;
  border-left: 3px solid #bfe35c;
  border-radius: 0 12px 12px 0;
}
.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.75rem;
  margin-bottom: 1rem;
}
.review-card__tag {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #172f3b;
}
.review-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: #bfe35c;
  font-size: 0.78rem;
  line-height: 1;
}
.review-card__score {
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0e1c24;
  line-height: 1;
}
.review-card__quote {
  margin: 0 0 1.5rem;
  flex-grow: 1;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #0e1c24;
}
.review-card__foot {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(14, 28, 36, 0.1);
}
.review-card__avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0e1c24;
  color: #bfe35c;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.review-card__name {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  color: #0e1c24;
  line-height: 1.25;
}
.review-card__role {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #4a4a4a;
}

.blog {
  position: relative;
  background-color: #172f3b;
}

section.blog {
  padding: 3rem 0 3.5rem;
}
@media (min-width: 992px) {
  section.blog {
    padding: 4.5rem 0 5rem;
  }
}
.blog__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 992px) {
  .blog__head {
    margin-bottom: 2.35rem;
  }
}
.blog__intro {
  max-width: 36rem;
}
.blog__eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bfe35c;
}
.blog__title {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}
.blog__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) {
  .blog__text {
    font-size: 1rem;
  }
}
.blog__all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #bfe35c;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.blog__all i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.blog__all:hover {
  color: #ffffff;
  gap: 0.7rem;
}
.blog__all:hover i {
  transform: translateX(3px);
}
.blog__layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 992px) {
  .blog__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}
.blog__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (min-width: 992px) {
  .blog__list {
    height: 100%;
  }
}

.blog-feature {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(14, 28, 36, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 992px) {
  .blog-feature {
    height: 100%;
  }
}
.blog-feature:hover, .blog-feature:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 28, 36, 0.1);
  outline: none;
}
.blog-feature:hover .blog-feature__media img, .blog-feature:focus-visible .blog-feature__media img {
  transform: scale(1.04);
}
.blog-feature:hover .blog-feature__link i, .blog-feature:focus-visible .blog-feature__link i {
  transform: translateX(4px);
}
.blog-feature__media {
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #f9f9f9;
}
.blog-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-feature__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.15rem 1.15rem 1.25rem;
}
@media (min-width: 768px) {
  .blog-feature__body {
    padding: 1.35rem 1.4rem 1.5rem;
  }
}
.blog-feature__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #172f3b;
}
.blog-feature__meta time {
  color: #4a4a4a;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.blog-feature__title {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #0e1c24;
}
.blog-feature__excerpt {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4a4a4a;
}
.blog-feature__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #172f3b;
}
.blog-feature__link i {
  font-size: 0.72rem;
  transition: transform 0.3s ease;
}

.blog-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  flex: none;
  min-height: auto;
  text-decoration: none;
  color: inherit;
  padding: 0.6rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(14, 28, 36, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 576px) {
  .blog-item {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 0.85rem;
  }
}
@media (min-width: 992px) {
  .blog-item {
    flex: 1 1 auto;
    align-items: stretch;
    min-height: 0;
  }
}
.blog-item:hover, .blog-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 28, 36, 0.09);
  outline: none;
}
.blog-item:hover .blog-item__media img, .blog-item:focus-visible .blog-item__media img {
  transform: scale(1.05);
}
.blog-item:hover .blog-item__link i, .blog-item:focus-visible .blog-item__link i {
  transform: translateX(3px);
}
.blog-item__media {
  width: 88px;
  height: 88px;
  overflow: hidden;
  border-radius: 8px;
  background: #f9f9f9;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .blog-item__media {
    width: 110px;
    height: 110px;
  }
}
@media (min-width: 992px) {
  .blog-item__media {
    width: auto;
    height: auto;
    min-height: 100%;
    align-self: stretch;
  }
}
.blog-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.blog-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.15rem 0.25rem 0.15rem 0;
}
.blog-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  margin-bottom: 0.35rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #172f3b;
}
.blog-item__meta time {
  color: #4a4a4a;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.blog-item__title {
  margin: 0 0 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0e1c24;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 576px) {
  .blog-item__title {
    font-size: 0.92rem;
  }
}
.blog-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #172f3b;
}
.blog-item__link i {
  font-size: 0.68rem;
  transition: transform 0.3s ease;
}

.cta {
  position: relative;
  background-color: #ffffff;
  padding: 2.5rem 0 3rem;
}
@media (min-width: 992px) {
  .cta {
    padding: 4.25rem 0 4.5rem;
  }
}
.cta__panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.25rem;
  background-color: #bfe35c;
  border-radius: 14px;
}
@media (min-width: 768px) {
  .cta__panel {
    gap: 2rem;
    padding: 2.5rem 2.35rem;
    border-radius: 16px;
  }
}
@media (min-width: 992px) {
  .cta__panel {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    padding: 2.75rem 3rem;
  }
}
.cta__eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #172f3b;
}
.cta__title {
  margin: 0 0 0.85rem;
  max-width: none;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.5rem, 6vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0e1c24;
}
@media (min-width: 992px) {
  .cta__title {
    max-width: 18ch;
    line-height: 1.12;
  }
}
.cta__text {
  margin: 0 0 1.15rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #172f3b;
}
.cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cta__points li {
  position: relative;
  padding-left: 1.1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e1c24;
}
.cta__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #0e1c24;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .cta__actions {
    align-items: flex-end;
  }
}
.cta__btn {
  width: 100%;
  justify-content: center;
  background-color: #0e1c24;
  color: #ffffff;
  box-shadow: none;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .cta__btn {
    width: auto;
    min-width: 260px;
  }
}
.cta__btn:hover, .cta__btn:focus-visible {
  background-color: #172f3b;
  color: #ffffff;
  box-shadow: none;
}
.cta__phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(14, 28, 36, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: #0e1c24;
  transition: background-color 0.3s ease;
}
@media (min-width: 992px) {
  .cta__phone {
    width: 100%;
    max-width: 280px;
  }
}
.cta__phone i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #0e1c24;
  color: #bfe35c;
  font-size: 0.9rem;
}
.cta__phone span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}
.cta__phone span strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #172f3b;
  opacity: 0.85;
}
.cta__phone:hover {
  background: rgba(14, 28, 36, 0.12);
}

.site-footer {
  position: relative;
  background-color: #0e1c24;
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 0;
  flex-shrink: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .site-footer {
    padding-top: 4.25rem;
  }
}
.site-footer__top {
  display: grid;
  gap: 2.25rem 1.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.85fr));
    gap: 2rem;
  }
}
.site-footer__logo {
  display: inline-block;
  margin-bottom: 1.1rem;
}
.site-footer__logo img {
  display: block;
  height: auto;
  max-width: 200px;
}
.site-footer__about {
  margin: 0 0 1.35rem;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.site-footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.site-footer__social a:hover, .site-footer__social a:focus-visible {
  background-color: #bfe35c;
  border-color: #bfe35c;
  color: #172f3b;
  outline: none;
}
.site-footer__heading {
  margin: 0 0 1.1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer__links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__links a:hover, .site-footer__links a:focus-visible {
  color: #bfe35c;
  outline: none;
}
.site-footer__contact {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.site-footer__contact i {
  margin-top: 0.2rem;
  flex-shrink: 0;
  color: #bfe35c;
  font-size: 0.9rem;
  width: 1rem;
  text-align: center;
}
.site-footer__contact a {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__contact a:hover, .site-footer__contact a:focus-visible {
  color: #bfe35c;
  outline: none;
}
.site-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #172f3b;
  background: #bfe35c;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, gap 0.3s ease;
}
.site-footer__cta i {
  font-size: 0.72rem;
  transition: transform 0.3s ease;
}
.site-footer__cta:hover, .site-footer__cta:focus-visible {
  background: #cbe87a;
  gap: 0.7rem;
  outline: none;
}
.site-footer__cta:hover i, .site-footer__cta:focus-visible i {
  transform: translateX(3px);
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  padding: 1.25rem 0;
  margin: 0;
}
.site-footer__copy {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}
.site-footer__legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__legal a:hover, .site-footer__legal a:focus-visible {
  color: #bfe35c;
  outline: none;
}

.page-inner .topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.page-inner .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 1px 0 rgba(14, 14, 14, 0.25);
}
.page-inner .navbar-pc {
  border-block: none;
}
.page-inner .navbar-pc__brand img {
  height: 42px;
}
.page-inner .navbar-pc__search {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.page-inner .navbar-pc__search:hover, .page-inner .navbar-pc__search:focus-visible {
  background: #bfe35c;
  color: #172f3b;
  border-color: #bfe35c;
}
.page-inner .navbar-pc__toggle {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.page-inner .navbar-pc__toggle:hover {
  color: #172f3b;
  background: #bfe35c;
  border-color: #bfe35c;
}

.archive-banner {
  position: relative;
  background-color: #0e1c24;
  overflow: hidden;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 992px) {
  .archive-banner {
    padding: 3.25rem 0 3.75rem;
  }
}
.archive-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(191, 227, 92, 0.08), transparent 55%), radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 255, 255, 0.04), transparent 50%);
  pointer-events: none;
}
.archive-banner__inner {
  position: relative;
  z-index: 1;
}
.archive-banner__copy {
  color: #ffffff;
  padding-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .archive-banner__copy {
    padding-right: 1rem;
    padding-bottom: 0;
  }
}
.archive-banner__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.archive-banner__crumb a {
  color: #bfe35c;
  text-decoration: none;
}
.archive-banner__crumb a:hover {
  color: #ffffff;
}
.archive-banner__crumb span[aria-hidden=true] {
  opacity: 0.5;
}
.archive-banner__title {
  margin: 0 0 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  max-width: 14ch;
}
.archive-banner__text {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.archive-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.archive-banner__btn {
  border-radius: 10px;
  padding: 0.9rem 1.35rem;
  box-shadow: none;
}
.archive-banner__btn:hover, .archive-banner__btn:focus-visible {
  transform: none;
  box-shadow: none;
}
.archive-banner__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.archive-banner__btn--outline:hover, .archive-banner__btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #bfe35c;
  border-color: #bfe35c;
}
.archive-banner__form {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.35rem 1.2rem 1.45rem;
  box-shadow: 0 18px 48px rgba(14, 14, 14, 0.28);
}
@media (min-width: 768px) {
  .archive-banner__form {
    padding: 1.65rem 1.5rem 1.7rem;
  }
}
.archive-banner__form-title {
  margin: 0 0 0.35rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1c24;
}
.archive-banner__form-note {
  margin: 0 0 1.15rem;
  font-size: 0.85rem;
  color: #4a4a4a;
}

.archive-products {
  background: #ffffff;
  padding: 3rem 0 3.25rem;
}
@media (min-width: 992px) {
  .archive-products {
    padding: 4rem 0 4.25rem;
  }
}
.archive-products__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}
.archive-products__title {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 700;
  color: #0e1c24;
  letter-spacing: -0.03em;
}
.archive-products__text {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.65;
}
.archive-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 576px) {
  .archive-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .archive-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.archive-info {
  background: #f9f9f9;
  padding: 3rem 0 3.25rem;
}
@media (min-width: 992px) {
  .archive-info {
    padding: 4rem 0 4.5rem;
  }
}
.archive-info__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.75rem;
}
.archive-info__title {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0e1c24;
}
.archive-info__text {
  margin: 0;
  color: #4a4a4a;
}

.product-detail {
  background: #ffffff;
  padding: 1.75rem 0 3rem;
}
@media (min-width: 992px) {
  .product-detail {
    padding: 2.25rem 0 4rem;
  }
}
.product-detail__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.35rem;
  font-size: 0.82rem;
  color: rgba(14, 28, 36, 0.55);
}
.product-detail__crumb a {
  color: #172f3b;
  text-decoration: none;
}
.product-detail__crumb a:hover {
  color: #0e1c24;
}
.product-detail__crumb span[aria-hidden=true] {
  opacity: 0.45;
}

.product-gallery {
  position: sticky;
  top: 1.25rem;
}
.product-gallery__main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.08);
  aspect-ratio: 1/1;
}
@media (min-width: 992px) {
  .product-gallery__main {
    aspect-ratio: 4/4.15;
  }
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.product-gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
  cursor: pointer;
  aspect-ratio: 1;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery__thumb:hover {
  border-color: rgba(14, 28, 36, 0.25);
}
.product-gallery__thumb.is-active {
  border-color: #bfe35c;
}
.product-gallery__thumb:focus-visible {
  outline: 2px solid #bfe35c;
  outline-offset: 2px;
}

.product-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(14, 28, 36, 0.12);
  border-radius: 10px;
  background: #ffffff;
}
.product-buy__info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  min-width: 0;
  flex: 1 1 auto;
}
.product-buy__name {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0e1c24;
  line-height: 1.2;
  white-space: nowrap;
}
.product-buy__meta {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}
.product-buy__price {
  color: #172f3b;
}
.product-buy__stock {
  color: #6a8f1f;
}
.product-buy__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.product-buy__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0e1c24;
}
.product-buy__qty-input {
  width: 3.75rem;
  min-height: 38px;
  padding: 0.3rem 0.35rem;
  text-align: center;
  font-size: 0.9rem;
  color: #0e1c24;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.14);
  border-radius: 8px;
  box-shadow: none;
}
.product-buy__qty-input:focus {
  border-color: #bfe35c;
  box-shadow: 0 0 0 3px rgba(191, 227, 92, 0.35);
  outline: none;
}
.product-buy__cart, .product-buy__now {
  min-height: 38px;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: none;
  white-space: nowrap;
}
.product-buy__cart:hover, .product-buy__cart:focus-visible, .product-buy__now:hover, .product-buy__now:focus-visible {
  transform: none;
  box-shadow: none;
}
.product-buy__cart {
  background: #bfe35c;
  color: #172f3b;
  border: 1px solid #bfe35c;
}
.product-buy__cart:hover, .product-buy__cart:focus-visible {
  background: #cbe87a;
  border-color: #cbe87a;
  color: #172f3b;
}
.product-buy__now {
  background: #0e1c24;
  color: #ffffff;
  border: 1px solid #0e1c24;
}
.product-buy__now:hover, .product-buy__now:focus-visible {
  background: #172f3b;
  border-color: #172f3b;
  color: #ffffff;
}

.product-perks {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
}
.product-perks__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.2rem 0;
}
.product-perks__item strong {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0e1c24;
  line-height: 1.2;
  white-space: nowrap;
}
.product-perks__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0e1c24;
  color: #bfe35c;
  font-size: 0.82rem;
}

@media (min-width: 992px) {
  .product-summary {
    padding-left: 0.5rem;
  }
}
.product-summary__title {
  margin: 0 0 0.7rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0e1c24;
}
.product-summary__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin: 0 0 1.1rem;
}
.product-summary__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  color: #e6b422;
  font-size: 0.95rem;
}
.product-summary__score {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0e1c24;
}
.product-summary__count {
  font-size: 0.9rem;
  color: rgba(14, 28, 36, 0.55);
}
.product-summary__count a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-summary__count a:hover {
  color: #0e1c24;
}
.product-summary__desc {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
}
.product-summary__form {
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.1rem 1.35rem;
  box-shadow: none;
}
@media (min-width: 768px) {
  .product-summary__form {
    padding: 1.45rem 1.35rem 1.5rem;
  }
}
.product-summary__form-title {
  margin: 0 0 0.25rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1c24;
}
.product-summary__form-note {
  margin: 0 0 1.1rem;
  font-size: 0.85rem;
  color: rgba(14, 28, 36, 0.55);
}

.product-tabs {
  background: #ffffff;
  padding: 2.5rem 0 3.25rem;
  border-top: 1px solid rgba(14, 28, 36, 0.08);
}
@media (min-width: 992px) {
  .product-tabs {
    padding: 3rem 0 4rem;
  }
}
.product-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto 1.75rem;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #172f3b;
}
.product-tabs__nav .nav-item {
  flex: 1 1 0;
  margin: 0;
  min-width: 0;
}
.product-tabs__nav .nav-link {
  width: 100%;
  margin: 0;
  padding: 0.85rem 0.65rem;
  border: 0;
  border-radius: 0;
  background: #172f3b;
  color: rgba(255, 255, 255, 0.88);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.product-tabs__nav .nav-link::after {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}
.product-tabs__nav .nav-link:hover {
  color: #ffffff;
  background: #1e3a48;
}
.product-tabs__nav .nav-link.active {
  color: #ffffff;
  background: #0e1c24;
  box-shadow: none;
}
.product-tabs__nav .nav-link.active:hover {
  color: #ffffff;
  background: #0e1c24;
}
.product-tabs__nav .nav-item:last-child .nav-link::after {
  display: none;
}
.product-tabs__desc {
  max-height: 380px;
}
.product-tabs__specs {
  overflow: hidden;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
  background: #ffffff;
}
.product-tabs__specs table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
.product-tabs__specs th,
.product-tabs__specs td {
  padding: 0.9rem 1.1rem;
  font-size: 0.94rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(14, 28, 36, 0.08);
  vertical-align: top;
}
.product-tabs__specs tr:last-child th,
.product-tabs__specs tr:last-child td {
  border-bottom: 0;
}
.product-tabs__specs th {
  width: 36%;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #0e1c24;
  background: rgba(14, 28, 36, 0.03);
}
.product-tabs__specs td {
  color: #4a4a4a;
}
@media (min-width: 768px) {
  .product-tabs__specs th {
    width: 28%;
  }
  .product-tabs__specs th,
  .product-tabs__specs td {
    padding: 1rem 1.35rem;
  }
}
.product-tabs__reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: #bfe35c rgba(14, 28, 36, 0.08);
}
.product-tabs__reviews-list::-webkit-scrollbar {
  width: 8px;
}
.product-tabs__reviews-list::-webkit-scrollbar-thumb {
  background: #bfe35c;
  border-radius: 8px;
}
.product-tabs__review-form {
  background: #ffffff;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.15rem 1.35rem;
  box-shadow: none;
}
@media (min-width: 768px) {
  .product-tabs__review-form {
    padding: 1.4rem 1.35rem 1.5rem;
    position: sticky;
    top: 1.25rem;
  }
}
.product-tabs__review-form-title {
  margin: 0 0 0.3rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0e1c24;
}
.product-tabs__review-form-note {
  margin: 0 0 1.1rem;
  font-size: 0.85rem;
  color: rgba(14, 28, 36, 0.55);
}
.product-tabs__star-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.product-tabs__star-pick label {
  margin: 0;
  cursor: pointer;
}
.product-tabs__star-pick label input {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.product-tabs__star-pick label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(14, 28, 36, 0.14);
  background: #f9f9f9;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0e1c24;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.product-tabs__star-pick label:hover span {
  border-color: rgba(14, 28, 36, 0.3);
}
.product-tabs__star-pick label input:checked + span {
  background: #bfe35c;
  border-color: #bfe35c;
  color: #172f3b;
}
.product-tabs__star-pick label input:focus-visible + span {
  outline: 2px solid #bfe35c;
  outline-offset: 2px;
}

.pd-review {
  padding: 1.05rem 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
}
.pd-review__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.65rem;
}
.pd-review__name {
  margin: 0 0 0.15rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0e1c24;
}
.pd-review__role {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(14, 28, 36, 0.55);
}
.pd-review__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0e1c24;
}
.pd-review__stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #e6b422;
  font-size: 0.82rem;
}
.pd-review__text {
  margin: 0 0 0.55rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #4a4a4a;
}
.pd-review__date {
  font-size: 0.78rem;
  color: rgba(14, 28, 36, 0.45);
}

.related-products {
  background: #ffffff;
  padding: 3rem 0 3.5rem;
}
@media (min-width: 992px) {
  .related-products {
    padding: 3.75rem 0 4.25rem;
  }
}
.related-products__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}
.related-products__eyebrow {
  display: inline-block;
  margin: 0 0 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #172f3b;
}
.related-products__title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0e1c24;
}
.related-products__nav {
  display: flex;
  gap: 0.55rem;
}
.related-products__nav-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(14, 28, 36, 0.18);
  background: #ffffff;
  color: #0e1c24;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.related-products__nav-btn:hover, .related-products__nav-btn:focus-visible {
  background: #bfe35c;
  border-color: #bfe35c;
  color: #172f3b;
  outline: none;
}
.related-products__nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.related-products__pagination {
  margin-top: 1.35rem;
  position: static;
}
.related-products__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(14, 28, 36, 0.25);
  opacity: 1;
}
.related-products__pagination .swiper-pagination-bullet-active {
  background: #bfe35c;
}
.related-products .related-swiper {
  overflow: hidden;
  padding-bottom: 0.25rem;
}
.related-products .product-card {
  height: 100%;
}

.page-hero {
  position: relative;
  background-color: #0e1c24;
  padding: 2.35rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(191, 227, 92, 0.08), transparent 55%), radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 255, 255, 0.04), transparent 50%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.page-hero__crumb a {
  color: #bfe35c;
  text-decoration: none;
}
.page-hero__crumb a:hover {
  color: #ffffff;
}
.page-hero__crumb span[aria-hidden=true] {
  opacity: 0.5;
}
.page-hero__title {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}
.page-hero__text {
  margin: 0;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.blog-archive {
  background: #ffffff;
  padding: 2.75rem 0 3.25rem;
}
@media (min-width: 992px) {
  .blog-archive {
    padding: 3.5rem 0 4rem;
  }
}
.blog-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
@media (min-width: 576px) {
  .blog-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .blog-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover, .blog-card:focus-visible {
  border-color: rgba(14, 28, 36, 0.18);
  box-shadow: 0 14px 32px rgba(14, 28, 36, 0.1);
  transform: translateY(-2px);
  outline: none;
}
.blog-card:hover .blog-card__img, .blog-card:focus-visible .blog-card__img {
  transform: scale(1.04);
}
.blog-card:hover .blog-card__cta i, .blog-card:focus-visible .blog-card__cta i {
  transform: translateX(3px);
}
.blog-card__media {
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #f9f9f9;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.15rem 1.25rem;
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  color: rgba(14, 28, 36, 0.55);
}
.blog-card__meta span:first-child {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #172f3b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card__title {
  margin: 0 0 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0e1c24;
}
.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4a4a4a;
  flex: 1;
}
.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #172f3b;
}
.blog-card__cta i {
  font-size: 0.72rem;
  transition: transform 0.3s ease;
}

.blog-single {
  background: #ffffff;
  padding: 2rem 0 3.25rem;
}
@media (min-width: 992px) {
  .blog-single {
    padding: 2.5rem 0 4rem;
  }
}
.blog-single__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  color: rgba(14, 28, 36, 0.55);
}
.blog-single__crumb a {
  color: #172f3b;
  text-decoration: none;
}
.blog-single__crumb a:hover {
  color: #0e1c24;
}
.blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: rgba(14, 28, 36, 0.55);
}
.blog-single__meta .blog-single__cat {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(191, 227, 92, 0.35);
  color: #172f3b;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-single__title {
  margin: 0 0 1.15rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #0e1c24;
  max-width: 22ch;
}
.blog-single__hero {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.75rem;
  background: #f9f9f9;
  aspect-ratio: 16/9;
}
.blog-single__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-single__content h2,
.blog-single__content h3 {
  margin: 1.75rem 0 0.75rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: #0e1c24;
  line-height: 1.25;
}
.blog-single__content h2 {
  font-size: 1.35rem;
}
.blog-single__content h3 {
  font-size: 1.12rem;
}
.blog-single__content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a4a;
}
.blog-single__content ul,
.blog-single__content ol {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
}
.blog-single__content ul li,
.blog-single__content ol li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4a4a4a;
}
.blog-single__content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid #bfe35c;
  background: #f9f9f9;
  border-radius: 0 10px 10px 0;
}
.blog-single__content blockquote p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0e1c24;
  line-height: 1.55;
}
.blog-single__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(14, 28, 36, 0.1);
}
.blog-single__share span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e1c24;
}
.blog-single__share a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(14, 28, 36, 0.14);
  color: #0e1c24;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.blog-single__share a:hover, .blog-single__share a:focus-visible {
  background: #bfe35c;
  border-color: #bfe35c;
  color: #172f3b;
  outline: none;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .blog-sidebar {
    position: sticky;
    top: 1.25rem;
  }
}
.blog-sidebar__block {
  padding: 1.2rem 1.15rem 1.3rem;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
}
.blog-sidebar__title {
  margin: 0 0 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e1c24;
}
.blog-sidebar__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.blog-sidebar__cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  text-decoration: none;
  color: #0e1c24;
  font-size: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(14, 28, 36, 0.08);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.blog-sidebar__cats a span {
  color: rgba(14, 28, 36, 0.45);
  font-size: 0.82rem;
}
.blog-sidebar__cats a:hover {
  border-color: #bfe35c;
  background: rgba(191, 227, 92, 0.15);
}
.blog-sidebar__posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.blog-sidebar__post {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.blog-sidebar__post img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.blog-sidebar__post time {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  color: rgba(14, 28, 36, 0.5);
}
.blog-sidebar__post strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0e1c24;
}
.blog-sidebar__post:hover strong {
  color: #172f3b;
}
.blog-sidebar__cta {
  display: block;
  text-align: center;
  padding: 1.25rem 1.1rem;
  border-radius: 12px;
  background: #0e1c24;
  color: #ffffff;
  text-decoration: none;
}
.blog-sidebar__cta strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
}
.blog-sidebar__cta span {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}
.blog-sidebar__cta em {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-style: normal;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #bfe35c;
}
.blog-sidebar__cta:hover em {
  gap: 0.55rem;
}

.blog-related {
  background: #f9f9f9;
  padding: 2.75rem 0 3.25rem;
  border-top: 1px solid rgba(14, 28, 36, 0.08);
}
.blog-related__title {
  margin: 0 0 1.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #0e1c24;
  text-align: center;
}
.blog-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .blog-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-page .quote {
  padding-top: 2.75rem;
}
@media (min-width: 992px) {
  .contact-page .quote {
    padding-top: 3.25rem;
  }
}

.quote-page .quote {
  padding-top: 2.75rem;
}
@media (min-width: 992px) {
  .quote-page .quote {
    padding-top: 3.25rem;
  }
}
.quote-page .quote__crosslink {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.quote-page .quote__crosslink a {
  color: #bfe35c;
  font-weight: 600;
  text-decoration: none;
}
.quote-page .quote__crosslink a:hover {
  color: #ffffff;
}

.contact-info {
  background: #ffffff;
  padding: 2rem 0 0;
}
.contact-info--pad {
  padding: 2rem 0 2.5rem;
}
.contact-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-info__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
  background: #f9f9f9;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-info__item:hover, .contact-info__item:focus-visible {
  border-color: rgba(191, 227, 92, 0.8);
  box-shadow: 0 10px 28px rgba(14, 28, 36, 0.08);
  outline: none;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #0e1c24;
  color: #bfe35c;
  font-size: 1rem;
}
.contact-info__label {
  margin: 0 0 0.2rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(14, 28, 36, 0.5);
}
.contact-info__value {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0e1c24;
}

.contact-main {
  background: #ffffff;
  padding: 0 0 3.5rem;
}
@media (min-width: 992px) {
  .contact-main {
    padding-bottom: 4.25rem;
  }
}

.contact-panel {
  padding: 1.5rem 1.25rem 1.6rem;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 14px;
  background: #f9f9f9;
}
@media (min-width: 768px) {
  .contact-panel {
    padding: 1.75rem 1.6rem 1.85rem;
  }
}
.contact-panel__title {
  margin: 0 0 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0e1c24;
}
.contact-panel__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a4a4a;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
@media (min-width: 992px) {
  .contact-aside {
    position: sticky;
    top: 1.25rem;
  }
}
.contact-aside__block {
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
  background: #ffffff;
}
.contact-aside__title {
  margin: 0 0 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e1c24;
}
.contact-aside__hours {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-aside__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(14, 28, 36, 0.08);
  font-size: 0.9rem;
  color: #4a4a4a;
}
.contact-aside__hours li:last-child {
  border-bottom: 0;
}
.contact-aside__hours li strong {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #0e1c24;
}
.contact-aside__map {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(14, 28, 36, 0.1);
  background: #f9f9f9;
  aspect-ratio: 16/11;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  color: rgba(14, 28, 36, 0.55);
}
.contact-aside__map i {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #172f3b;
}
.contact-aside__map p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}
.contact-aside__cta {
  display: block;
  padding: 1.25rem 1.15rem;
  border-radius: 12px;
  background: #0e1c24;
  color: #ffffff;
  text-decoration: none;
}
.contact-aside__cta strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
}
.contact-aside__cta span {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}
.contact-aside__cta em {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-style: normal;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #bfe35c;
}
.contact-aside__cta:hover em {
  gap: 0.55rem;
}

.about-page {
  background: #ffffff;
}

.about-story {
  padding: 2.75rem 0 3rem;
}
@media (min-width: 992px) {
  .about-story {
    padding: 3.5rem 0 3.75rem;
  }
}
.about-story__eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #172f3b;
}
.about-story__title {
  margin: 0 0 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #0e1c24;
}
.about-story__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a4a;
}
.about-story__media {
  overflow: hidden;
  border-radius: 14px;
  background: #f9f9f9;
  aspect-ratio: 4/3;
}
.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-values {
  background: #f9f9f9;
  padding: 2.75rem 0 3rem;
  border-block: 1px solid rgba(14, 28, 36, 0.08);
}
@media (min-width: 992px) {
  .about-values {
    padding: 3.5rem 0 3.75rem;
  }
}
.about-values__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}
.about-values__title {
  margin: 0 0 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 700;
  color: #0e1c24;
}
.about-values__text {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.65;
}
.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .about-values__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
.about-values__item {
  padding: 1.25rem 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
}
.about-values__item i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: #0e1c24;
  color: #bfe35c;
  font-size: 1rem;
}
.about-values__item h3 {
  margin: 0 0 0.45rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e1c24;
}
.about-values__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4a4a4a;
}

.about-stats {
  background: #0e1c24;
  padding: 2.25rem 0;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .about-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.about-stats__item {
  text-align: center;
  color: #ffffff;
}
.about-stats__item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #bfe35c;
  line-height: 1.1;
}
.about-stats__item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-mission {
  padding: 2.75rem 0 3.25rem;
}
@media (min-width: 992px) {
  .about-mission {
    padding: 3.5rem 0 4rem;
  }
}
.about-mission__card {
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(14, 28, 36, 0.1);
  background: #f9f9f9;
}
.about-mission__card h2 {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0e1c24;
}
.about-mission__card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a4a4a;
}

.legal {
  background: #ffffff;
  padding: 2rem 0 3.5rem;
}
@media (min-width: 992px) {
  .legal {
    padding: 2.5rem 0 4rem;
  }
}
.legal__nav {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
}
@media (min-width: 992px) {
  .legal__nav {
    flex-direction: column;
    margin: 0;
    position: sticky;
    top: 1.25rem;
  }
}
.legal__nav a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0e1c24;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.legal__nav a:hover {
  background: rgba(191, 227, 92, 0.25);
}
.legal__nav a.is-active {
  background: #0e1c24;
  color: #ffffff;
}
.legal__doc h2 {
  margin: 1.75rem 0 0.75rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e1c24;
}
.legal__doc h2:first-child {
  margin-top: 0;
}
.legal__doc h3 {
  margin: 1.25rem 0 0.55rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #172f3b;
}
.legal__doc p,
.legal__doc li {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4a4a4a;
}
.legal__doc p {
  margin: 0 0 1rem;
}
.legal__doc ul {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
}
.legal__doc ul li {
  margin-bottom: 0.4rem;
}
.legal__doc .legal__updated {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: rgba(14, 28, 36, 0.5);
}

.utility-main {
  background: #ffffff;
}

.page-hero--compact .page-hero__title {
  max-width: 22ch;
}

.utility-404__code {
  margin: 0 0 0.35rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #bfe35c;
}

.utility-panel {
  padding: 0 0 3.5rem;
}
@media (min-width: 992px) {
  .utility-panel {
    padding-bottom: 4.5rem;
  }
}
.utility-panel__inner {
  max-width: 52rem;
  margin: -1.25rem auto 0;
  padding: 1.75rem 1.35rem 1.85rem;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.08);
  border-radius: 16px;
}
@media (min-width: 768px) {
  .utility-panel__inner {
    padding: 2rem 2.25rem 2.15rem;
  }
}
.utility-panel__heading {
  margin: 0 0 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e1c24;
}
.utility-panel__search {
  margin-bottom: 1.75rem;
}
.utility-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
}

.btn--outline {
  background: transparent;
  color: #0e1c24;
  border: 1.5px solid rgba(14, 28, 36, 0.2);
  box-shadow: none;
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: #0e1c24;
  color: #ffffff;
  border-color: #0e1c24;
  box-shadow: none;
}

.utility-search {
  width: 100%;
}
.utility-search__field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(14, 28, 36, 0.12);
  border-radius: 50px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.utility-search__field:focus-within {
  border-color: rgba(14, 28, 36, 0.35);
  box-shadow: 0 0 0 3px rgba(191, 227, 92, 0.35);
}
.utility-search__field > i {
  color: rgba(14, 28, 36, 0.45);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.utility-search__field input[type=search] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
  color: #0e1c24;
  outline: none;
}
.utility-search__field input[type=search]::placeholder {
  color: rgba(14, 28, 36, 0.4);
}
.utility-search__submit {
  flex-shrink: 0;
  padding: 0.85rem 1.35rem;
  box-shadow: none;
}
@media (min-width: 768px) {
  .utility-search__submit {
    padding: 0.95rem 1.6rem;
  }
}

.utility-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (min-width: 768px) {
  .utility-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .utility-links {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.utility-links--center {
  max-width: 44rem;
  margin: 0 auto;
}
.utility-links__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(14, 28, 36, 0.1);
  border-radius: 12px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e1c24;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
.utility-links__item:hover, .utility-links__item:focus-visible {
  border-color: rgba(14, 28, 36, 0.25);
  background: rgba(191, 227, 92, 0.2);
  transform: translateY(-1px);
}
.utility-links__icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: #0e1c24;
  color: #bfe35c;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.search-page {
  padding: 2rem 0 3.25rem;
}
@media (min-width: 992px) {
  .search-page {
    padding: 2.5rem 0 4rem;
  }
}
.search-page__form {
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.search-result {
  margin: 0;
}
.search-result__link {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  background: #f9f9f9;
  border: 1px solid rgba(14, 28, 36, 0.08);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .search-result__link {
    grid-template-columns: 112px 1fr;
    gap: 1.25rem;
    padding: 1rem 1.15rem;
  }
}
.search-result__link:hover, .search-result__link:focus-visible {
  border-color: rgba(14, 28, 36, 0.18);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(14, 28, 36, 0.06);
}
.search-result__link:hover .search-result__cta i, .search-result__link:focus-visible .search-result__cta i {
  transform: translateX(3px);
}
.search-result__media {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  background: rgba(14, 28, 36, 0.06);
}
.search-result__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-result__type {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(191, 227, 92, 0.45);
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #172f3b;
}
.search-result__title {
  margin: 0 0 0.35rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: #0e1c24;
}
.search-result__excerpt {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a4a4a;
}
@media (max-width: 575px) {
  .search-result__excerpt {
    display: none;
  }
}
.search-result__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #172f3b;
}
.search-result__cta i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.utility-empty {
  text-align: center;
  max-width: 36rem;
  margin: 0.5rem auto 0;
  padding: 2rem 1rem 1rem;
}
.utility-empty__icon {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: #0e1c24;
  color: #bfe35c;
  font-size: 1.35rem;
}
.utility-empty__title {
  margin: 0 0 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0e1c24;
}
.utility-empty__text {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #4a4a4a;
}

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