/*
Website System Name: DONORDOC-01 V1
Author: FRONTLENS LLC
License: For personal/business use only. Redistribution, resale, or sublicensing is strictly Copyright (c) 2026 FRONTLENS LLC. All rights reserved.
*/
@import url("./utils/bootstrap.css");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

body.loading {
  overflow: hidden;
}

/* Preloader overlay */
#preloader {
  position: fixed;
  inset: 0;
  background: #d7f0db; /* secondary color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000; /* above header */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-img-container {
  margin-top: 50px;
}

.preloader-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(55, 178, 77, 0.2); /* faint ring using primary */
  border-top-color: #37b24d; /* primary color */
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}
section,
header,
footer {
  scroll-margin-top: 50px;
}

.stroke-primary {
  stroke: #37b24d;
}

.logo-img {
  width: 220px;
  height: auto;
}

.flex-center {
  display: flex;
  align-items: center;
}

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.btn {
  display: inline-flex;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 9px;
  transition: all 1s;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.btn.btn-default {
  background: linear-gradient(to right, #37B24D, #1EA99D);
  border: none;
  color: #fff;
}
.btn.btn-default:hover, .btn.btn-default:active {
  background: linear-gradient(to right, #2E9A43, #178F86);
  color: #fff;
}
.btn.btn-default::before, .btn.btn-default::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  transition: all 0.5s;
}
.btn.btn-outline {
  background-color: #fff;
  color: #555;
  border: 3px solid transparent;
}
.btn.btn-outline:hover, .btn.btn-outline:active {
  background-color: #ebf7ed;
  border-color: #b3b3b3;
  color: #b3b3b3;
}
.btn.colored-border {
  border-color: #b3b3b3 !important;
}
.btn.no-effect:hover svg.icon-tabler-arrow-right, .btn.no-effect:active svg.icon-tabler-arrow-right, .btn.no-effect:hover svg.btn-mobile-cta-arrow, .btn.no-effect:active svg.btn-mobile-cta-arrow, .btn.no-effect:hover svg.btn-icon-arrow, .btn.no-effect:active svg.btn-icon-arrow {
  transform: none !important;
}
.btn svg {
  height: 20px;
  width: 20px;
  color: inherit;
  flex-shrink: 0;
}
.btn svg.icon-tabler-arrow-right,
.btn svg.btn-mobile-cta-arrow,
.btn svg.btn-icon-arrow, .btn.btn-nav-cta > svg, .btn.btn-arrow svg {
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.btn:hover svg.icon-tabler-arrow-right, .btn:active svg.icon-tabler-arrow-right, .btn:hover svg.btn-mobile-cta-arrow, .btn:active svg.btn-mobile-cta-arrow, .btn:hover svg.btn-icon-arrow, .btn:active svg.btn-icon-arrow, .btn.btn-nav-cta:hover > svg, .btn.btn-nav-cta:active > svg, .btn.btn-arrow:hover svg, .btn.btn-arrow:active svg {
  transform: rotate(90deg);
}
.btn:active, .btn:focus, .btn:focus-visible, .btn:active {
  outline: 0;
  box-shadow: none;
}

#header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
  background-color: #d7f0db;
  position: absolute;
  width: 100%;
  top: 0;
}
#header.sticky {
  position: fixed;
  top: calc(0px - var(--header-top-overlap, 2px));
  z-index: 1020;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
#header.sticky::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--header-top-overlap, 2px));
  left: 0;
  right: 0;
  height: var(--header-top-overlap, 2px);
  background-color: #fff;
  pointer-events: none;
}
#header.mobile-nav-open {
  z-index: 10060;
}
#header.mobile-nav-open nav.navbar-light .navbar-toggler {
  z-index: 10061;
}
#header nav.navbar-light .navbar-toggler {
  z-index: 2200;
  background: linear-gradient(to right, #37b24d, #1ea99d);
  border: none;
  box-shadow: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
#header nav.navbar-light .navbar-toggler .navbar-toggler-bars {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
  background: none;
  background-image: none;
}
#header nav.navbar-light .navbar-toggler .navbar-toggler-bars span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.2s ease;
}
#header nav.navbar-light .navbar-toggler .navbar-toggler-bars span:nth-child(1) {
  top: 0;
}
#header nav.navbar-light .navbar-toggler .navbar-toggler-bars span:nth-child(2) {
  top: 6px;
}
#header nav.navbar-light .navbar-toggler .navbar-toggler-bars span:nth-child(3) {
  top: 12px;
}
#header nav.navbar-light .navbar-toggler.opened .navbar-toggler-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
#header nav.navbar-light .navbar-toggler.opened .navbar-toggler-bars span:nth-child(2) {
  opacity: 0;
}
#header nav.navbar-light .navbar-toggler.opened .navbar-toggler-bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}
#header nav.navbar-light .navbar-toggler:hover, #header nav.navbar-light .navbar-toggler:focus, #header nav.navbar-light .navbar-toggler:focus-visible {
  background: linear-gradient(to right, #2e9a43, #178f86);
  color: #fff;
  box-shadow: none;
}
#header nav .navbar-btn {
  font-weight: 400;
}
#header nav .navbar-inner {
  padding: 15px !important;
  align-items: center;
}
#header nav #navbarSupportedContent .navbar-nav-main,
#header nav #navbarSupportedContent .navbar-nav-actions {
  gap: 24px;
  align-items: center;
}
#header nav #navbarSupportedContent .navbar-nav-main > .nav-item > .nav-link {
  padding: 0;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
#header nav #navbarSupportedContent .navbar-nav-main > .nav-item > .nav-link.active {
  color: #37b24d;
}
#header nav #navbarSupportedContent .nav-item-advisor {
  border-left: 1px solid #dee2e6;
  padding-left: 16px;
  margin-left: 4px;
}
#header nav #navbarSupportedContent .nav-link-advisor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
#header nav #navbarSupportedContent .nav-link-advisor svg {
  stroke: #37b24d;
  flex-shrink: 0;
}
#header nav #navbarSupportedContent .navbar-nav-main:hover > .nav-item > .nav-link {
  opacity: 0.35;
  color: #333;
}
#header nav #navbarSupportedContent .navbar-nav-main > .nav-item > .nav-link:hover {
  opacity: 1;
  color: #37b24d;
}
#header nav #navbarSupportedContent .btn-nav-cta {
  padding: 10px 20px;
  font-size: 16px;
  white-space: nowrap;
}
#header nav .offcanvas {
  backdrop-filter: blur(5px);
  background-color: #fff;
  transition: transform 1s ease-in-out;
  z-index: 2100;
}
#header nav .offcanvas.offcanvas-end {
  width: 100%;
}
#header nav .offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 0.75rem;
}
#header nav .offcanvas .offcanvas-header .logo-link {
  display: flex;
  align-items: center;
}
#header nav .offcanvas .offcanvas-header .logo-link img {
  width: 200px;
  max-width: 45vw;
  height: auto;
}
#header nav .offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0.5rem 1.5rem 2rem;
}
#header nav .offcanvas .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
#header nav .offcanvas .mobile-nav-list > li + li {
  border-top: 1px solid #e9ecef;
}
#header nav .offcanvas .mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
#header nav .offcanvas .mobile-nav-link.active, #header nav .offcanvas .mobile-nav-link:hover {
  color: #37b24d;
}
#header nav .offcanvas .mobile-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  flex-shrink: 0;
}
#header nav .offcanvas .mobile-nav-icon svg {
  stroke: #37b24d;
}
#header nav .offcanvas .mobile-nav-text {
  flex: 1;
}
#header nav .offcanvas .mobile-nav-chevron {
  display: flex;
  align-items: center;
}
#header nav .offcanvas .mobile-nav-chevron svg {
  stroke: #adb5bd;
}
#header nav .offcanvas .mobile-nav-divider {
  height: 1px;
  background: #e9ecef;
  margin: 12px 0 16px;
}
#header nav .offcanvas .mobile-nav-advisor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0 16px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
#header nav .offcanvas .mobile-nav-advisor svg {
  stroke: #37b24d;
}
#header nav .offcanvas .mobile-nav-advisor:hover {
  color: #37b24d;
}
#header nav .offcanvas .btn-mobile-cta {
  width: 100%;
  margin-top: 12px;
  padding: 14px 20px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#header nav .offcanvas .btn-mobile-cta .btn-mobile-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
#header nav .offcanvas .btn-mobile-cta .btn-mobile-cta-arrow {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  #header nav .navbar-inner {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    padding: 8px 5px;
  }
  #header nav #navbarSupportedContent {
    flex-grow: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
  }
  #header nav #navbarSupportedContent .navbar-nav-main {
    flex: 1;
    justify-content: center;
    gap: 30px;
  }
  #header nav #navbarSupportedContent .navbar-nav-actions {
    gap: 20px;
  }
}

.offcanvas.show,
.offcanvas.is-closing {
  visibility: visible !important;
}

main .section-health {
  padding: 80px 0 100px;
  background: #fff;
  transition: none;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  main .section-health {
    padding-bottom: 150px;
  }
}
main .section-health .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
main .section-health .hero-content {
  position: relative;
  z-index: 2;
}
main .section-health .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  background: #ebf7ed;
  border-radius: 999px;
  color: #545454;
  font-size: 14px;
  font-weight: 400;
}
main .section-health .hero-badge svg {
  flex-shrink: 0;
  stroke: #37b24d;
}
main .section-health .hero-heading {
  margin: 0 0 20px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}
main .section-health .hero-heading-accent {
  display: block;
  color: #37b24d;
}
main .section-health .hero-description {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 520px;
  text-align: left;
}
main .section-health .hero-benefits {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main .section-health .hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
main .section-health .hero-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: #37b24d;
  line-height: 1;
}
main .section-health .hero-benefit-icon svg {
  display: block;
}
main .section-health .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
main .section-health .hero-btn-advisor {
  border: 2px solid #37b24d !important;
  color: #333 !important;
  background: #fff !important;
  font-weight: 600;
}
main .section-health .hero-btn-advisor svg {
  stroke: #37b24d;
}
main .section-health .hero-btn-advisor:hover, main .section-health .hero-btn-advisor:active {
  background: #ebf7ed !important;
  border-color: #37b24d !important;
  color: #333 !important;
}
main .section-health .hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  color: #868e96;
}
main .section-health .hero-trust svg {
  flex-shrink: 0;
  stroke: #868e96;
}
main .section-health .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
main .section-health .hero-dots {
  position: absolute;
  top: 0;
  right: 20%;
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2' fill='%23ced4da'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: repeat;
  opacity: 0.6;
  z-index: 50;
  pointer-events: none;
}
main .section-health .hero-image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 58% 72% 48% 82%/82% 78% 54% 46%;
  border: 1px solid rgba(233, 233, 233, 0.499);
  background-color: #ebf7ed;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
main .section-health .hero-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .section-health .hero-float-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
main .section-health .hero-float-card-icon {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  font-size: 56px;
  color: #37b24d;
  line-height: 1;
}
main .section-health .hero-float-card-icon svg {
  display: block;
}
main .section-health .hero-float-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}
main .section-health .hero-float-card-text span {
  display: block;
}
main .section-health .hero-float-card-text .hero-float-card-lead {
  font-weight: 500;
}
main .section-health .hero-float-card-text .hero-float-card-accent {
  color: #37b24d;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  main .section-health {
    padding: 96px 0 48px;
  }
  main .section-health .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  main .section-health .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 0;
    pointer-events: none;
    z-index: 0;
    justify-content: flex-end;
    align-items: flex-end;
  }
  main .section-health .hero-dots,
  main .section-health .hero-float-card {
    display: none;
  }
  main .section-health .hero-image-wrap {
    position: absolute;
    right: -20%;
    top: 15%;
    max-width: none;
    width: 75%;
    aspect-ratio: auto;
    height: 50%;
    border-radius: 0;
    box-shadow: none;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.75) 0%, transparent 90%), linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 90%, transparent 100%);
    -webkit-mask-composite: source-in, xor;
            mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.75) 0%, transparent 90%), linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 90%, transparent 100%);
    -webkit-mask-composite: source-in;
  }
  main .section-health .hero-image {
    -o-object-position: center top;
       object-position: center top;
  }
  main .section-health .hero-heading {
    font-size: 36px;
  }
  main .section-health .hero-description {
    font-size: 16px;
    max-width: none;
    text-align: left;
  }
  main .section-health .hero-benefits li {
    font-size: 14px;
  }
  main .section-health .hero-cta-group {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
  }
  main .section-health .hero-cta-group .btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
    font-size: 14px;
    padding: 14px 12px;
    white-space: nowrap;
  }
}
@media (max-width: 575.98px) {
  main .section-health .hero-heading {
    font-size: 30px;
  }
  main .section-health .hero-badge {
    font-size: 13px;
    padding: 6px 12px;
  }
}
main .section-trust-proof {
  padding: 48px 0 64px;
  background: #f8f9fa;
}
@media (min-width: 1024px) {
  main .section-trust-proof {
    padding-top: 0;
  }
}
main .section-trust-proof .trust-stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 36px 20px;
  margin-bottom: 28px;
}
@media (min-width: 1024px) {
  main .section-trust-proof .trust-stats-card {
    position: relative;
    z-index: 10;
    margin-top: -86px;
  }
}
main .section-trust-proof .trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
main .section-trust-proof .trust-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: #e9ecef;
}
main .section-trust-proof .trust-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #37b24d;
  line-height: 1;
}
main .section-trust-proof .trust-stat-icon svg {
  display: block;
}
main .section-trust-proof .trust-stat-value {
  margin: 14px 0 6px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
}
main .section-trust-proof .trust-stat-label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #555;
}
main .section-trust-proof .trust-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
main .section-trust-proof .trust-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 24px;
  position: relative;
}
main .section-trust-proof .trust-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: #e9ecef;
}
main .section-trust-proof .trust-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: #37b24d;
  line-height: 1;
}
main .section-trust-proof .trust-benefit-icon svg {
  display: block;
}
main .section-trust-proof .trust-benefit-text {
  min-width: 0;
}
main .section-trust-proof .trust-benefit-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}
main .section-trust-proof .trust-benefit-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}
@media (max-width: 1023.98px) {
  main .section-trust-proof {
    padding: 32px 0 48px;
  }
  main .section-trust-proof .trust-stats-card {
    padding: 24px 12px;
    margin-bottom: 16px;
  }
  main .section-trust-proof .trust-stat {
    padding: 0 6px;
  }
  main .section-trust-proof .trust-stat:not(:last-child)::after {
    top: 5%;
    height: 90%;
  }
  main .section-trust-proof .trust-stat-icon svg {
    width: 26px;
    height: 26px;
  }
  main .section-trust-proof .trust-stat-value {
    margin-top: 10px;
    font-size: 18px;
  }
  main .section-trust-proof .trust-stat-label {
    font-size: 11px;
    line-height: 1.3;
  }
  main .section-trust-proof .trust-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  main .section-trust-proof .trust-benefit {
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
  main .section-trust-proof .trust-benefit::after {
    display: none;
  }
  main .section-trust-proof .trust-benefit-title {
    font-size: 15px;
  }
  main .section-trust-proof .trust-benefit-desc {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  main .section-trust-proof .trust-stat-value {
    font-size: 15px;
  }
  main .section-trust-proof .trust-stat-label {
    font-size: 10px;
  }
}
main .section-about {
  padding: 64px 0 80px;
  background: #fff;
}
main .section-about .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: center;
}
main .section-about .about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .section-about .about-label-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main .section-about .about-visual {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
main .section-about .about-label {
  margin: 0;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  main .section-about .about-label {
    font-size: 12px;
  }
}
main .section-about .about-label {
  font-weight: 500;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #37b24d;
  text-decoration: none;
}
main .section-about .about-label-line {
  display: block;
  width: 72px;
  height: 4px;
  background: #dee2e6;
  border-radius: 2px;
}
main .section-about h1 {
  margin: 0;
  font-size: 42px;
}
@media (max-width: 1023.98px) {
  main .section-about h1 {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  main .section-about h1 {
    font-size: 24px;
  }
}
main .section-about h1 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}
main .section-about .about-description {
  margin: 0;
  font-size: 18px;
}
@media (max-width: 1023.98px) {
  main .section-about .about-description {
    font-size: 16px;
  }
}
main .section-about .about-description {
  font-weight: 400;
  line-height: 1.65;
  color: #555;
  max-width: 520px;
}
main .section-about .about-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 1024px) {
  main .section-about .about-content {
    gap: 32px;
  }
  main .section-about .about-visual {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
    align-self: center;
    margin-inline: auto;
  }
  main .section-about .about-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 5/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1200px) {
  main .section-about .about-visual {
    height: 80%;
  }
}
@media (max-width: 1023.98px) {
  main .section-about {
    padding: 48px 0 56px;
  }
  main .section-about .about-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  main .section-about .about-content {
    display: contents;
  }
  main .section-about .about-label-group {
    order: 1;
    align-self: flex-start;
    align-items: flex-start;
  }
  main .section-about h1 {
    order: 2;
  }
  main .section-about .about-visual {
    order: 3;
    aspect-ratio: 16/10;
  }
  main .section-about .about-description {
    order: 4;
    max-width: none;
  }
}
@media (max-width: 575.98px) {
  main .section-about .about-visual {
    aspect-ratio: 4/3;
  }
}
main .section-about .icon-wrapping {
  background-color: #d7f0db;
  padding: 60px 15px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 40% 15%;
  transform: rotate(-15deg);
  margin-top: 10px;
}
main .section-about .icon-wrapping .icons-about {
  transform: rotate(15deg);
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
main .section-about .icon-wrapping .icons-about svg {
  color: #37b24d;
  font-size: 30px;
  height: 30px;
  width: 30px;
}
main .section-about .icon-wrapping .icons-about figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3px;
}
main .section-about .icon-wrapping .icons-about figcaption .phase--1 {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
}
main .section-about .icon-wrapping .icons-about figcaption .phase--2 {
  font-size: 13px;
  color: #37b24d;
  font-weight: bold;
  display: inline-block;
}
main .services-section {
  padding: 80px 0;
  background: #f8f9fa;
}
main .services-section .services-header {
  text-align: center;
  margin: 0 auto 40px;
}
main .services-section .services-label {
  margin: 0 0 16px;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  main .services-section .services-label {
    font-size: 12px;
  }
}
main .services-section .services-label {
  font-weight: 600;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #37b24d;
}
main .services-section h1 {
  max-width: 580px;
  margin: 0 auto 20px;
  font-size: 42px;
}
@media (max-width: 1023.98px) {
  main .services-section h1 {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  main .services-section h1 {
    font-size: 24px;
  }
}
main .services-section h1 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  text-align: center;
}
main .services-section .services-heading-accent {
  color: #37b24d;
}
main .services-section .services-break-mobile {
  display: none;
}
main .services-section .services-description {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 12px;
  font-size: 18px;
}
@media (max-width: 1023.98px) {
  main .services-section .services-description {
    font-size: 16px;
  }
}
main .services-section .services-description {
  line-height: 1.6;
  color: #666;
  text-align: center;
}
main .services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
main .services-section .service-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
main .services-section .service-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ebf7ed;
}
main .services-section .service-card__icon svg,
main .services-section .service-card__icon .service-card__icon-svg {
  width: 44px;
  height: 44px;
  color: #37b24d;
  display: block;
}
main .services-section .service-card__icon--lg svg,
main .services-section .service-card__icon--lg .service-card__icon-svg {
  width: 50px;
  height: 50px;
}
main .services-section .service-card__body {
  flex: 1;
  min-width: 0;
}
main .services-section .service-card__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a;
}
main .services-section .service-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}
main .services-section .service-card__desc-short {
  display: none;
}
main .services-section .services-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
main .services-section .services-cta-btn {
  border: 2px solid #37b24d !important;
  color: #37b24d !important;
  background: transparent !important;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
}
main .services-section .services-cta-btn svg {
  stroke: #37b24d;
  transition: transform 0.3s ease;
}
main .services-section .services-cta-btn:hover, main .services-section .services-cta-btn:active, main .services-section .services-cta-btn:focus-visible {
  background: #ebf7ed !important;
  border-color: #37b24d !important;
  color: #2b8a3e !important;
}
main .services-section .services-cta-btn:hover svg.icon-tabler-arrow-right, main .services-section .services-cta-btn:active svg.icon-tabler-arrow-right, main .services-section .services-cta-btn:focus-visible svg.icon-tabler-arrow-right {
  transform: translateX(8px);
}
@media (max-width: 1023.98px) {
  main .services-section {
    padding: 64px 0;
  }
  main .services-section .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  main .services-section .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 14px;
    gap: 10px;
  }
  main .services-section .service-card.is-reveal-pending {
    opacity: 0;
    transform: translateY(20px);
  }
  main .services-section .service-card.is-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
    transition-delay: var(--reveal-delay, 0ms);
  }
  main .services-section .service-card__icon {
    width: 64px;
    height: 64px;
  }
  main .services-section .service-card__icon svg,
  main .services-section .service-card__icon .service-card__icon-svg {
    width: 40px;
    height: 40px;
  }
  main .services-section .service-card__icon--lg svg,
  main .services-section .service-card__icon--lg .service-card__icon-svg {
    width: 46px;
    height: 46px;
  }
  main .services-section .service-card__title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  main .services-section .service-card__desc {
    font-size: 14px;
    line-height: 1.45;
  }
  main .services-section .service-card__desc-full {
    display: none;
  }
  main .services-section .service-card__desc-short {
    display: inline;
  }
  main .services-section .services-break-mobile {
    display: block;
  }
  main .services-section h1 {
    max-width: none;
  }
  main .services-section .services-description {
    max-width: none;
  }
  main .services-section .services-cta {
    margin-top: 32px;
  }
  main .services-section .services-cta-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  main .services-section .service-card.is-reveal-pending {
    opacity: 1;
    transform: none;
  }
  main .services-section .service-card.is-revealed {
    transition: none;
  }
}
main .section-how-it-works {
  padding: 80px 0;
  background: #fff;
}
main .section-how-it-works .hiw-header {
  text-align: center;
  margin: 0 auto 48px;
}
main .section-how-it-works .hiw-label {
  margin: 0 0 16px;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  main .section-how-it-works .hiw-label {
    font-size: 12px;
  }
}
main .section-how-it-works .hiw-label {
  font-weight: 600;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #37b24d;
}
main .section-how-it-works .hiw-heading {
  margin: 0 auto 20px;
  font-size: 42px;
}
@media (max-width: 1023.98px) {
  main .section-how-it-works .hiw-heading {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  main .section-how-it-works .hiw-heading {
    font-size: 24px;
  }
}
main .section-how-it-works .hiw-heading {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}
main .section-how-it-works .hiw-heading-desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
main .section-how-it-works .hiw-heading-mobile {
  display: none;
}
main .section-how-it-works .hiw-heading-part-accent {
  color: #37b24d;
}
main .section-how-it-works .hiw-heading-divider {
  display: inline-block;
  width: 1px;
  height: 36px;
  background: #dee2e6;
  flex-shrink: 0;
}
main .section-how-it-works .hiw-description {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 12px;
  font-size: 18px;
}
@media (max-width: 1023.98px) {
  main .section-how-it-works .hiw-description {
    font-size: 16px;
  }
}
main .section-how-it-works .hiw-description {
  line-height: 1.6;
  color: #666;
}
main .section-how-it-works .hiw-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  position: relative;
  margin-bottom: 40px;
}
main .section-how-it-works .hiw-flow-rail {
  grid-column: 2;
  grid-row: 2/5;
  justify-self: center;
  width: 0;
  border-left: 2px dashed #ced4da;
  z-index: 0;
  pointer-events: none;
}
main .section-how-it-works .hiw-track {
  display: contents;
}
main .section-how-it-works .hiw-track-your .hiw-part-header {
  grid-column: 1;
  grid-row: 1;
}
main .section-how-it-works .hiw-track-your .hiw-step:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}
main .section-how-it-works .hiw-track-your .hiw-step-arrow {
  grid-column: 1;
  grid-row: 3;
}
main .section-how-it-works .hiw-track-your .hiw-step:nth-child(4) {
  grid-column: 1;
  grid-row: 4;
  align-self: center;
}
main .section-how-it-works .hiw-track-our .hiw-part-header {
  grid-column: 3;
  grid-row: 1;
}
main .section-how-it-works .hiw-track-our .hiw-step:nth-child(2) {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
}
main .section-how-it-works .hiw-track-our .hiw-step-arrow {
  grid-column: 3;
  grid-row: 3;
}
main .section-how-it-works .hiw-track-our .hiw-step:nth-child(4) {
  grid-column: 3;
  grid-row: 4;
  align-self: center;
}
main .section-how-it-works .hiw-bridge-row-1 {
  grid-column: 2;
  grid-row: 2;
}
main .section-how-it-works .hiw-bridge-row-2 {
  grid-column: 2;
  grid-row: 4;
}
main .section-how-it-works .hiw-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
main .section-how-it-works .hiw-bridge-line {
  flex: 1;
  height: 1px;
  background: #ced4da;
}
main .section-how-it-works .hiw-bridge-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: #37b24d;
  border-radius: 50%;
}
main .section-how-it-works .hiw-part-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
main .section-how-it-works .hiw-part-header-line {
  flex: 1;
  height: 1px;
  min-width: 0;
  background: #37b24d;
}
main .section-how-it-works .hiw-part-header-line:first-child {
  mask-image: linear-gradient(to right, transparent, #000 45%);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 45%);
}
main .section-how-it-works .hiw-part-header-line:last-child {
  mask-image: linear-gradient(to right, #000 55%, transparent);
  -webkit-mask-image: linear-gradient(to right, #000 55%, transparent);
}
main .section-how-it-works .hiw-part-header-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #37b24d;
  white-space: nowrap;
}
main .section-how-it-works .hiw-part-header-label svg {
  display: block;
  flex-shrink: 0;
  width: 23px;
  height: 23px;
}
main .section-how-it-works .hiw-step {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
  min-width: 0;
}
main .section-how-it-works .hiw-step-marker {
  display: none;
}
main .section-how-it-works .hiw-step-arrow {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  color: #37b24d;
}
main .section-how-it-works .hiw-step-arrow svg {
  display: block;
  width: 20px;
  height: 20px;
}
main .section-how-it-works .hiw-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
main .section-how-it-works .hiw-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ebf7ed;
}
main .section-how-it-works .hiw-card-icon svg {
  width: 36px;
  height: 36px;
  color: #37b24d;
  display: block;
}
main .section-how-it-works .hiw-card-content {
  flex: 1;
  min-width: 0;
}
main .section-how-it-works .hiw-card-number {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #37b24d;
}
main .section-how-it-works .hiw-card-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}
main .section-how-it-works .hiw-card-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}
main .section-how-it-works .hiw-summary {
  display: flex;
  align-items: stretch;
  padding: 28px 0;
  background: #ebf7ed;
  border-radius: 12px;
}
main .section-how-it-works .hiw-summary-item {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 4px 28px;
  text-align: left;
}
main .section-how-it-works .hiw-summary-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: #dee2e6;
}
main .section-how-it-works .hiw-summary-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #37b24d;
  line-height: 1;
}
main .section-how-it-works .hiw-summary-icon svg {
  display: block;
  width: 31px;
  height: 31px;
}
main .section-how-it-works .hiw-summary-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #1a1a1a;
}
main .section-how-it-works .hiw-summary-lines-mobile {
  display: none;
}
@media (max-width: 1023.98px) {
  main .section-how-it-works {
    padding: 64px 0;
  }
  main .section-how-it-works .hiw-header {
    margin-bottom: 36px;
  }
  main .section-how-it-works .hiw-heading-desktop {
    display: none;
  }
  main .section-how-it-works .hiw-heading-mobile {
    display: block;
  }
  main .section-how-it-works .hiw-description {
    max-width: none;
  }
  main .section-how-it-works .hiw-flow {
    display: block;
    position: relative;
    margin-bottom: 32px;
  }
  main .section-how-it-works .hiw-track {
    display: block;
  }
  main .section-how-it-works .hiw-track-our {
    margin-top: 28px;
  }
  main .section-how-it-works .hiw-bridge {
    display: none;
  }
  main .section-how-it-works .hiw-flow-rail {
    display: none;
  }
  main .section-how-it-works .hiw-part-header {
    margin-bottom: 16px;
  }
  main .section-how-it-works .hiw-part-header-label {
    font-size: 13px;
    gap: 6px;
  }
  main .section-how-it-works .hiw-part-header-label svg {
    width: 16px;
    height: 16px;
  }
  main .section-how-it-works .hiw-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    position: relative;
    margin-bottom: 0;
  }
  main .section-how-it-works .hiw-track .hiw-step:nth-child(2)::before {
    content: "";
    position: absolute;
    left: 20px;
    top: calc(50% + 20px);
    bottom: 0;
    width: 1px;
    background: #c3e6cb;
    transform: translateX(-50%);
    z-index: 0;
  }
  main .section-how-it-works .hiw-track .hiw-step:nth-child(4)::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: calc(50% - 20px);
    width: 1px;
    background: #c3e6cb;
    transform: translateX(-50%);
    z-index: 0;
  }
  main .section-how-it-works .hiw-step-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #ebf7ed;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    font-weight: 700;
    color: #37b24d;
    position: relative;
    z-index: 1;
  }
  main .section-how-it-works .hiw-step-arrow {
    display: block;
    position: relative;
    height: 16px;
    margin: 0;
    padding: 0;
  }
  main .section-how-it-works .hiw-step-arrow svg {
    display: none;
  }
  main .section-how-it-works .hiw-step-arrow::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #c3e6cb;
    transform: translateX(-50%);
  }
  main .section-how-it-works .hiw-card {
    padding: 14px;
    gap: 10px;
  }
  main .section-how-it-works .hiw-card-number {
    display: none;
  }
  main .section-how-it-works .hiw-card-icon {
    width: 44px;
    height: 44px;
  }
  main .section-how-it-works .hiw-card-icon svg {
    width: 24px;
    height: 24px;
  }
  main .section-how-it-works .hiw-card-title {
    font-size: 14px;
    margin-bottom: 2px;
  }
  main .section-how-it-works .hiw-card-desc {
    font-size: 12px;
    line-height: 1.4;
  }
  main .section-how-it-works .hiw-summary {
    flex-direction: row;
    align-items: stretch;
    padding: 16px 8px;
  }
  main .section-how-it-works .hiw-summary-lines-desktop {
    display: none;
  }
  main .section-how-it-works .hiw-summary-lines-mobile {
    display: block;
  }
  main .section-how-it-works .hiw-summary-item {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 4px 6px;
    text-align: center;
  }
  main .section-how-it-works .hiw-summary-item:not(:first-child) {
    padding-top: 4px;
  }
  main .section-how-it-works .hiw-summary-item:not(:first-child)::before {
    top: 10%;
    bottom: 10%;
    left: 0;
    right: auto;
    width: 1px;
    height: auto;
  }
  main .section-how-it-works .hiw-summary-item:first-child {
    padding-top: 4px;
  }
  main .section-how-it-works .hiw-summary-item:last-child {
    padding-bottom: 4px;
  }
  main .section-how-it-works .hiw-summary-icon svg {
    width: 22px;
    height: 22px;
  }
  main .section-how-it-works .hiw-summary-text {
    font-size: 11px;
    line-height: 1.35;
  }
}
main .section-consultation {
  padding: 80px 0;
  background: #fff;
}
main .section-consultation .consultation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: start;
}
main .section-consultation .consultation-heading {
  margin: 0 0 20px;
  font-size: 42px;
}
@media (max-width: 1023.98px) {
  main .section-consultation .consultation-heading {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  main .section-consultation .consultation-heading {
    font-size: 24px;
  }
}
main .section-consultation .consultation-heading {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}
main .section-consultation .consultation-heading-accent {
  color: #37b24d;
}
main .section-consultation .consultation-br-mobile {
  display: none;
}
main .section-consultation .consultation-heading-line {
  display: none;
}
main .section-consultation .consultation-description {
  margin: 0 0 32px;
  font-size: 18px;
}
@media (max-width: 1023.98px) {
  main .section-consultation .consultation-description {
    font-size: 16px;
  }
}
main .section-consultation .consultation-description {
  line-height: 1.65;
  color: #666;
  max-width: 520px;
}
main .section-consultation .consultation-benefits {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .section-consultation .consultation-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
main .section-consultation .consultation-benefit-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ebf7ed;
  color: #37b24d;
}
main .section-consultation .consultation-benefit-icon svg {
  color: #37b24d;
}
main .section-consultation .consultation-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
main .section-consultation .consultation-benefit-text strong {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
main .section-consultation .consultation-benefit-text span {
  font-size: 15px;
  line-height: 1.55;
  color: #868e96;
}
main .section-consultation .consultation-visual {
  margin: 0;
}
main .section-consultation .consultation-visual--desktop {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-top: 8px;
}
main .section-consultation .consultation-visual--mobile {
  display: none;
}
main .section-consultation .consultation-visual-cluster {
  position: absolute;
  inset: -24px -20px 0 -28px;
  pointer-events: none;
  z-index: 0;
}
main .section-consultation .consultation-visual-wave {
  position: absolute;
  top: 24px;
  left: -18px;
  right: -12px;
  bottom: 0;
  background: #ebf7ed;
  border-radius: 58% 72% 48% 82%/82% 78% 54% 46%;
  clip-path: inset(0 0 10% 0);
  opacity: 0.95;
}
main .section-consultation .consultation-visual-dots {
  position: absolute;
  top: -4px;
  right: -6px;
  z-index: 2;
  width: 72px;
  height: 108px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2.5' fill='%2337b24d'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: repeat;
  -webkit-mask-image: linear-gradient(to bottom right, #000 0%, #000 45%, transparent 88%);
  mask-image: linear-gradient(to bottom right, #000 0%, #000 45%, transparent 88%);
}
main .section-consultation .consultation-visual-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 58% 72% 48% 82%/82% 78% 54% 46%;
  clip-path: inset(0 0 10% 0);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
main .section-consultation .consultation-visual-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main .section-consultation .consultation-form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
main .section-consultation .consultation-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 32px 36px 28px;
  border: 1px solid #f1f3f5;
}
main .section-consultation .consultation-form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
main .section-consultation .consultation-form-header-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ebf7ed;
  color: #37b24d;
}
main .section-consultation .consultation-form-header-icon svg {
  color: #37b24d;
}
main .section-consultation .consultation-form-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}
main .section-consultation .consultation-form-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #868e96;
}
main .section-consultation .consultation-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .section-consultation .consultation-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
main .section-consultation .consultation-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
main .section-consultation .consultation-field__control {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
main .section-consultation .consultation-field__control:hover, main .section-consultation .consultation-field__control:focus-within {
  border-color: #37b24d;
  box-shadow: 0 0 0 3px rgba(55, 178, 77, 0.08);
}
main .section-consultation .consultation-field__control--textarea {
  align-items: flex-start;
}
main .section-consultation .consultation-field__control--textarea .consultation-field__icon {
  top: 14px;
  transform: none;
}
main .section-consultation .consultation-field__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: #37b24d;
  pointer-events: none;
  z-index: 2;
}
main .section-consultation .consultation-field__icon svg {
  width: 18px;
  height: 18px;
  color: #37b24d;
}
main .section-consultation .consultation-field__chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: #adb5bd;
  pointer-events: none;
  z-index: 2;
}
main .section-consultation .consultation-field__chevron svg {
  width: 16px;
  height: 16px;
}
main .section-consultation .consultation-input,
main .section-consultation .consultation-select .selected,
main .section-consultation .consultation-field__control .fl-picker-input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 14px 36px 14px 44px;
  font-size: 15px;
  line-height: 1.4;
  color: #37b24d;
  outline: none;
  box-shadow: none;
  font-family: inherit;
}
main .section-consultation .consultation-input::-moz-placeholder, main .section-consultation .consultation-select .selected::-moz-placeholder, main .section-consultation .consultation-field__control .fl-picker-input::-moz-placeholder {
  color: #adb5bd;
}
main .section-consultation .consultation-input::placeholder,
main .section-consultation .consultation-select .selected::placeholder,
main .section-consultation .consultation-field__control .fl-picker-input::placeholder {
  color: #adb5bd;
}
main .section-consultation .consultation-input:-moz-placeholder, main .section-consultation .consultation-select .selected:-moz-placeholder, main .section-consultation .consultation-field__control .fl-picker-input:-moz-placeholder {
  color: #868e96;
}
main .section-consultation .consultation-input:placeholder-shown,
main .section-consultation .consultation-select .selected:placeholder-shown,
main .section-consultation .consultation-field__control .fl-picker-input:placeholder-shown {
  color: #868e96;
}
main .section-consultation .consultation-select .selected.is-placeholder {
  color: #868e96;
}
main .section-consultation .consultation-select .selected:not(.is-placeholder) {
  color: #37b24d;
}
main .section-consultation .consultation-input--textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: 14px;
}
main .section-consultation .consultation-field__control .fl-picker {
  flex: 1;
  min-width: 0;
}
main .section-consultation .consultation-field__control .fl-picker-input {
  cursor: pointer;
  caret-color: transparent;
}
main .section-consultation .consultation-field__control .fl-picker-input:hover, main .section-consultation .consultation-field__control .fl-picker-input:focus, main .section-consultation .consultation-field__control .fl-picker-input:focus-visible {
  border: none;
  box-shadow: none;
  outline: none;
}
main .section-consultation .consultation-field__control .fl-picker.fl-picker--focused .fl-picker-input {
  border: none;
  box-shadow: none;
}
main .section-consultation .consultation-select {
  position: relative;
  flex: 1;
  min-width: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .section-consultation .consultation-select .selected {
  cursor: pointer;
  border-radius: 10px;
}
main .section-consultation .consultation-select .options {
  position: absolute;
  top: calc(100% + 6px);
  left: -45px;
  right: -36px;
  margin: 0;
  padding: 6px 0;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 20;
  display: block;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.28s ease, max-height 0.35s ease, visibility 0.28s ease;
}
main .section-consultation .consultation-select .options.show-drop {
  opacity: 1;
  visibility: visible;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
main .section-consultation .consultation-select .option {
  padding: 11px 16px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
main .section-consultation .consultation-select .option:hover {
  background: #ebf7ed;
  color: #37b24d;
}
main .section-consultation .consultation-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
main .section-consultation .consultation-submit svg {
  flex-shrink: 0;
  color: inherit;
}
main .section-consultation .consultation-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #868e96;
}
main .section-consultation .consultation-secure svg {
  flex-shrink: 0;
  color: #37b24d;
}
main .section-consultation .consultation-secure--below {
  display: none;
}
main .section-consultation .consultation-secure-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ebf7ed;
  color: #37b24d;
}
main .section-consultation .consultation-secure-icon svg {
  width: 14px;
  height: 14px;
  color: #37b24d;
}
@media (max-width: 991.98px) {
  main .section-consultation {
    padding: 48px 0 56px;
  }
  main .section-consultation .consultation-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  main .section-consultation .consultation-heading {
    margin-bottom: 12px;
  }
  main .section-consultation .consultation-br-mobile {
    display: inline;
  }
  main .section-consultation .consultation-heading-line {
    display: block;
    width: 48px;
    height: 4px;
    background: #37b24d;
    border-radius: 2px;
    margin-bottom: 16px;
  }
  main .section-consultation .consultation-description {
    margin-bottom: 20px;
    max-width: none;
  }
  main .section-consultation .consultation-benefits {
    display: none;
  }
  main .section-consultation .consultation-visual--desktop {
    display: none;
  }
  main .section-consultation .consultation-visual--mobile {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  main .section-consultation .consultation-visual--mobile .consultation-visual-img {
    aspect-ratio: 24/10;
    -o-object-position: top;
       object-position: top;
  }
  main .section-consultation .consultation-form {
    padding: 24px 20px 20px;
    border-radius: 12px;
    overflow: visible;
  }
  main .section-consultation .consultation-field__control {
    overflow: visible;
  }
  main .section-consultation .consultation-select:has(.options.show-drop) {
    z-index: 30;
  }
  main .section-consultation .consultation-field__control .fl-picker {
    overflow: visible;
  }
  main .section-consultation .consultation-field__control .fl-picker-popover {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }
  main .section-consultation .consultation-field__control .fl-calendar {
    width: 100%;
    min-width: 0;
  }
  main .section-consultation .consultation-field__control .fl-timelist {
    width: 100%;
    min-width: 0;
    max-height: min(240px, 40dvh);
  }
  main .section-consultation .consultation-form-header-icon {
    width: 40px;
    height: 40px;
  }
  main .section-consultation .consultation-form-title {
    font-size: 18px;
  }
  main .section-consultation .consultation-form-subtitle {
    font-size: 14px;
  }
  main .section-consultation .consultation-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  main .section-consultation .consultation-field label {
    font-size: 13px;
  }
  main .section-consultation .consultation-input,
  main .section-consultation .consultation-select .selected,
  main .section-consultation .consultation-field__control .fl-picker-input {
    font-size: 14px;
    padding: 13px 34px 13px 42px;
  }
  main .section-consultation .consultation-submit {
    font-size: 15px;
    padding: 15px 20px;
  }
  main .section-consultation .consultation-secure--inline {
    display: none;
  }
  main .section-consultation .consultation-secure--below {
    display: flex;
    margin-top: 20px;
  }
  main .section-consultation .consultation-select .options {
    left: 0;
    right: 0;
    width: 100%;
  }
  main .section-consultation .consultation-select .options.show-drop {
    max-height: min(240px, 40dvh);
  }
}
main .section-pricing {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}
main .section-pricing .pricing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
main .section-pricing .pricing-bg-cluster {
  position: absolute;
  pointer-events: none;
}
main .section-pricing .pricing-bg-cluster--left {
  bottom: 16%;
  left: -35px;
}
main .section-pricing .pricing-bg-cluster--right {
  top: 42%;
  right: 0px;
}
main .section-pricing .pricing-bg-wave {
  display: block;
  width: 380px;
  height: 320px;
  background: #ebf7ed;
  border-radius: 58% 72% 48% 82%/82% 78% 54% 46%;
}
main .section-pricing .pricing-bg-cluster--left .pricing-bg-wave {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 100%);
}
main .section-pricing .pricing-bg-cluster--right .pricing-bg-wave {
  transform: rotate(180deg);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 58%, #000 100%);
  mask-image: linear-gradient(to top, transparent 0%, #000 58%, #000 100%);
}
main .section-pricing .pricing-bg-dots {
  position: absolute;
  z-index: 2;
  width: 60px;
  height: 102px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2' fill='%23ced4da'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: repeat;
}
main .section-pricing .pricing-bg-cluster--left .pricing-bg-dots {
  top: -18px;
  right: 140px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
}
main .section-pricing .pricing-bg-cluster--right .pricing-bg-dots {
  top: -22px;
  left: 50%;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 50%, #000 100%);
  mask-image: linear-gradient(to top, transparent 0%, #000 50%, #000 100%);
}
main .section-pricing .container {
  position: relative;
  z-index: 1;
}
main .section-pricing .pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
main .section-pricing .pricing-label {
  margin: 0 0 16px;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  main .section-pricing .pricing-label {
    font-size: 12px;
  }
}
main .section-pricing .pricing-label {
  font-weight: 500;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #37b24d;
}
main .section-pricing .pricing-heading {
  margin: 0 0 20px;
  font-size: 42px;
}
@media (max-width: 1023.98px) {
  main .section-pricing .pricing-heading {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  main .section-pricing .pricing-heading {
    font-size: 24px;
  }
}
main .section-pricing .pricing-heading {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}
main .section-pricing .pricing-heading-mobile {
  display: none;
}
main .section-pricing .pricing-description-mobile {
  display: none;
}
main .section-pricing .pricing-heading-accent {
  color: #37b24d;
}
main .section-pricing .pricing-description {
  margin: 0;
  font-size: 18px;
}
@media (max-width: 1023.98px) {
  main .section-pricing .pricing-description {
    font-size: 16px;
  }
}
main .section-pricing .pricing-description {
  line-height: 1.6;
  color: #666;
}
main .section-pricing .pricing-carousel {
  margin-bottom: 40px;
  padding-top: 14px;
}
main .section-pricing .pricing-swiper {
  overflow: visible;
}
main .section-pricing .pricing-swiper .swiper-wrapper {
  align-items: stretch;
}
main .section-pricing .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
main .section-pricing .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
  height: 100%;
  margin: 0 auto;
  padding: 32px 28px 28px;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}
main .section-pricing .pricing-card--featured {
  border-color: #37b24d;
}
main .section-pricing .pricing-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6px 16px;
  background: linear-gradient(to top, #37b24d, #1ea99d);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
main .section-pricing .pricing-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #ebf7ed;
  color: #37b24d;
}
main .section-pricing .pricing-card__icon svg {
  display: block;
  width: 38px;
  height: 38px;
}
main .section-pricing .pricing-card__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
}
main .section-pricing .pricing-card__desc {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
}
main .section-pricing .pricing-card__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  width: 100%;
  text-align: left;
  flex: 1;
}
main .section-pricing .pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: #333;
}
main .section-pricing .pricing-card__features li:last-child {
  margin-bottom: 0;
}
main .section-pricing .pricing-card__features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #37b24d;
}
main .section-pricing .pricing-card__price {
  width: 100%;
  margin: 0;
  padding: 0;
  margin-top: auto;
}
main .section-pricing .pricing-card__price-inner {
  padding: 24px 20px;
  background: #ebf7ed;
  border-radius: 12px;
}
main .section-pricing .pricing-card__price-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #37b24d;
}
main .section-pricing .pricing-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
main .section-pricing .pricing-card__price-amount {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #37b24d;
}
main .section-pricing .pricing-card__price-period {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}
main .section-pricing .pricing-card__btn {
  width: 100%;
  font-size: 16px;
  padding: 14px 24px;
}
main .section-pricing .pricing-card__btn svg {
  transition: transform 0.3s ease;
}
main .section-pricing .pricing-card__btn:hover svg, main .section-pricing .pricing-card__btn:active svg, main .section-pricing .pricing-card__btn:focus-visible svg {
  transform: translateX(8px);
}
main .section-pricing .pricing-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
main .section-pricing .pricing-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid #37b24d;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
main .section-pricing .pricing-nav button svg {
  color: #37b24d;
}
main .section-pricing .pricing-nav button:hover {
  background: #37b24d;
}
main .section-pricing .pricing-nav button:hover svg {
  color: #fff;
}
main .section-pricing .pricing-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
}
main .section-pricing .pricing-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0;
  background: #dee2e6;
  border: none;
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
main .section-pricing .pricing-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #37b24d;
  transform: scale(1.25);
}
main .section-pricing .pricing-advisor-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: #f2f7f3;
  border-radius: 16px;
}
main .section-pricing .pricing-advisor-cta__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d7f0db;
  color: #37b24d;
}
main .section-pricing .pricing-advisor-cta__icon svg {
  display: block;
  width: 38px;
  height: 38px;
}
main .section-pricing .pricing-advisor-cta__text {
  flex: 1;
  min-width: 0;
}
main .section-pricing .pricing-advisor-cta__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}
main .section-pricing .pricing-advisor-cta__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #666;
}
main .section-pricing .pricing-advisor-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #fff;
  border: 2px solid #37b24d;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 600;
  color: #37b24d;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
main .section-pricing .pricing-advisor-cta__btn:hover {
  background: #ebf7ed;
  color: #2e9a43;
}
@media (max-width: 991.98px) {
  main .section-pricing {
    padding: 60px 0;
  }
  main .section-pricing .pricing-bg {
    display: none;
  }
  main .section-pricing .pricing-heading-desktop,
  main .section-pricing .pricing-description-desktop {
    display: none;
  }
  main .section-pricing .pricing-heading-mobile,
  main .section-pricing .pricing-description-mobile {
    display: block;
  }
  main .section-pricing .pricing-description-mobile {
    line-height: 1.5;
  }
  main .section-pricing .pricing-header {
    margin-bottom: 32px;
  }
  main .section-pricing .pricing-label {
    margin-bottom: 12px;
  }
  main .section-pricing .pricing-heading {
    margin-bottom: 14px;
  }
  main .section-pricing .pricing-description {
    line-height: 1.55;
  }
  main .section-pricing .pricing-nav {
    display: flex;
  }
  main .section-pricing .pricing-carousel {
    margin-bottom: 28px;
    padding-top: 12px;
  }
  main .section-pricing .pricing-card {
    width: 80%;
    max-width: 320px;
    padding: 24px 20px 20px;
  }
  main .section-pricing .pricing-card__badge {
    padding: 5px 12px;
    font-size: 10px;
  }
  main .section-pricing .pricing-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }
  main .section-pricing .pricing-card__icon svg {
    width: 28px;
    height: 28px;
  }
  main .section-pricing .pricing-card__title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  main .section-pricing .pricing-card__desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
  main .section-pricing .pricing-card__features {
    margin-bottom: 18px;
  }
  main .section-pricing .pricing-card__features li {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
  }
  main .section-pricing .pricing-card__features li svg {
    width: 16px;
    height: 16px;
  }
  main .section-pricing .pricing-card__price-inner {
    padding: 18px 16px;
    border-radius: 10px;
  }
  main .section-pricing .pricing-card__price-label {
    font-size: 10px;
    margin-bottom: 4px;
  }
  main .section-pricing .pricing-card__price-row {
    margin-bottom: 14px;
  }
  main .section-pricing .pricing-card__price-amount {
    font-size: 32px;
  }
  main .section-pricing .pricing-card__price-period {
    font-size: 14px;
  }
  main .section-pricing .pricing-card__btn {
    font-size: 14px;
    padding: 12px 20px;
  }
  main .section-pricing .pricing-nav {
    gap: 16px;
    margin-top: 22px;
  }
  main .section-pricing .pricing-nav button {
    width: 40px;
    height: 40px;
  }
  main .section-pricing .pricing-advisor-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 18px;
    border-radius: 12px;
    gap: 16px;
  }
  main .section-pricing .pricing-advisor-cta__icon {
    width: 60px;
    height: 60px;
  }
  main .section-pricing .pricing-advisor-cta__icon svg {
    width: 28px;
    height: 28px;
  }
  main .section-pricing .pricing-advisor-cta__title {
    font-size: 16px;
  }
  main .section-pricing .pricing-advisor-cta__desc {
    font-size: 14px;
  }
  main .section-pricing .pricing-advisor-cta__btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
  }
}
@media (max-width: 575.98px) {
  main .section-pricing .pricing-card {
    width: 80%;
    max-width: 80%;
    padding: 22px 18px 18px;
  }
  main .section-pricing .pricing-card__price-amount {
    font-size: 30px;
  }
}
main .section-testimonials {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}
main .section-testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
main .section-testimonials .testimonials-bg-cluster {
  position: absolute;
  pointer-events: none;
}
main .section-testimonials .testimonials-bg-cluster--left {
  top: 48px;
  left: 24px;
}
main .section-testimonials .testimonials-bg-cluster--right {
  top: 48px;
  right: 24px;
}
main .section-testimonials .testimonials-bg-dots {
  display: block;
  width: 56px;
  height: 72px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2' fill='%23ced4da'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: repeat;
  opacity: 0.85;
}
main .section-testimonials .testimonials-bg-blob {
  position: absolute;
  display: block;
  background: #ebf7ed;
  border-radius: 98% 72% 98% 22%/82% 78% 84% 46%;
  opacity: 0.65;
  z-index: -1;
}
main .section-testimonials .testimonials-bg-blob--left {
  width: 280px;
  height: 340px;
  top: -18%;
  left: -160px;
}
main .section-testimonials .testimonials-bg-blob--right {
  width: 220px;
  height: 360px;
  top: 38%;
  right: -8%;
  transform: rotate(180deg);
}
main .section-testimonials .testimonials-bg-wave {
  display: none;
}
main .section-testimonials .testimonials-bg-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
main .section-testimonials .testimonials-bg-wave__back {
  fill: rgba(223, 233, 216, 0.6235294118);
  opacity: 0.45;
}
main .section-testimonials .testimonials-bg-wave__front {
  fill: #dfe9d8;
  opacity: 0.55;
}
main .section-testimonials .container {
  position: relative;
  z-index: 1;
}
main .section-testimonials .testimonials-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
main .section-testimonials .testimonials-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #ebf7ed;
  color: #37b24d;
}
main .section-testimonials .testimonials-badge svg {
  display: block;
  width: 22px;
  height: 22px;
}
main .section-testimonials .testimonials-heading {
  margin: 0 0 18px;
  font-size: 42px;
}
@media (max-width: 1023.98px) {
  main .section-testimonials .testimonials-heading {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  main .section-testimonials .testimonials-heading {
    font-size: 24px;
  }
}
main .section-testimonials .testimonials-heading {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}
main .section-testimonials .testimonials-heading-mobile {
  display: none;
}
main .section-testimonials .testimonials-heading-dark {
  color: #1a1a1a;
}
main .section-testimonials .testimonials-heading-accent {
  color: #37b24d;
}
main .section-testimonials .testimonials-description {
  margin: 0;
  font-size: 18px;
}
@media (max-width: 1023.98px) {
  main .section-testimonials .testimonials-description {
    font-size: 16px;
  }
}
main .section-testimonials .testimonials-description {
  line-height: 1.6;
  color: #666;
}
main .section-testimonials .testimonials-carousel {
  position: relative;
}
main .section-testimonials .testimonial-swiper {
  overflow: visible;
}
main .section-testimonials .testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}
main .section-testimonials .swiper-slide {
  height: auto;
  display: flex;
}
main .section-testimonials .testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 28px 24px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
main .section-testimonials .testimonial-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  color: #37b24d;
}
main .section-testimonials .testimonial-card__stars svg {
  display: block;
  width: 18px;
  height: 18px;
}
main .section-testimonials .testimonial-card__quote-icon {
  position: relative;
  align-self: flex-start;
  color: #d7f0db;
  opacity: 0.95;
  pointer-events: none;
}
main .section-testimonials .testimonial-card__quote-icon svg {
  display: block;
  width: 72px;
  height: 72px;
}
main .section-testimonials .testimonial-card__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  font-style: normal;
}
main .section-testimonials .testimonial-card__divider {
  margin-top: auto;
  margin-bottom: 20px;
  height: 1px;
  background: #e9ecef;
}
main .section-testimonials .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
main .section-testimonials .testimonial-card__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .section-testimonials .testimonial-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
main .section-testimonials .testimonial-card__name {
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}
main .section-testimonials .testimonial-card__role {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #868e96;
}
main .section-testimonials .testimonial-card__status {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  color: #37b24d;
}
main .section-testimonials .testimonials-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
main .section-testimonials .testimonials-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid #37b24d;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
main .section-testimonials .testimonials-nav button svg {
  color: #37b24d;
}
main .section-testimonials .testimonials-nav button:hover {
  background: #37b24d;
}
main .section-testimonials .testimonials-nav button:hover svg {
  color: #fff;
}
main .section-testimonials .testimonials-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
}
main .section-testimonials .testimonials-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0;
  background: #dee2e6;
  border: none;
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
main .section-testimonials .testimonials-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #37b24d;
  transform: scale(1.25);
}
@media (max-width: 991.98px) {
  main .section-testimonials {
    padding: 60px 0;
  }
  main .section-testimonials .testimonials-bg-cluster--left {
    top: auto;
    left: 16px;
    bottom: 72px;
  }
  main .section-testimonials .testimonials-bg-cluster--right {
    display: none;
  }
  main .section-testimonials .testimonials-bg-blob {
    display: none;
  }
  main .section-testimonials .testimonials-bg-wave {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 110px;
    pointer-events: none;
  }
  main .section-testimonials .testimonials-heading-desktop {
    display: none;
  }
  main .section-testimonials .testimonials-heading-mobile {
    display: block;
  }
  main .section-testimonials .testimonials-header {
    margin-bottom: 32px;
  }
  main .section-testimonials .testimonials-badge {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    background: #ebf7ed;
    color: #37b24d;
    box-shadow: none;
  }
  main .section-testimonials .testimonials-badge svg {
    width: 18px;
    height: 18px;
  }
  main .section-testimonials .testimonials-heading {
    margin-bottom: 14px;
  }
  main .section-testimonials .testimonials-description {
    line-height: 1.55;
  }
  main .section-testimonials .testimonials-nav {
    display: flex;
    margin-bottom: 5rem;
  }
  main .section-testimonials .testimonial-card {
    max-width: 360px;
    margin: 0 auto;
    padding: 24px 20px 20px;
  }
  main .section-testimonials .testimonial-card__stars {
    justify-content: flex-end;
    margin-bottom: 16px;
  }
  main .section-testimonials .testimonial-card__stars svg {
    width: 16px;
    height: 16px;
  }
  main .section-testimonials .testimonial-card__quote-icon svg {
    width: 56px;
    height: 56px;
  }
  main .section-testimonials .testimonial-card__text {
    margin-bottom: 20px;
  }
  main .section-testimonials .testimonial-card__name {
    font-size: 15px;
  }
  main .section-testimonials .testimonial-card__role {
    font-size: 13px;
  }
  main .section-testimonials .testimonial-card__status {
    font-size: 12px;
  }
  main .section-testimonials .testimonial-card__avatar {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 576.98px) {
  main .section-testimonials {
    padding: 48px 0;
  }
  main .section-testimonials .testimonial-card {
    max-width: 100%;
  }
}
main .section-faq {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}
main .section-faq .faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
main .section-faq .faq-bg-blob {
  position: absolute;
  display: block;
  background: #ebf7ed;
  border-radius: 98% 72% 98% 22%/82% 78% 84% 46%;
  opacity: 0.7;
}
main .section-faq .faq-bg-blob--left {
  width: 320px;
  height: 380px;
  top: -20%;
  left: -260px;
}
main .section-faq .faq-bg-blob--right {
  width: 240px;
  height: 300px;
  top: 42%;
  right: -80px;
  transform: rotate(165deg);
  opacity: 0.55;
}
main .section-faq .faq-bg-dots {
  position: absolute;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2' fill='%23ced4da'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: repeat;
  opacity: 0.85;
}
main .section-faq .faq-bg-dots--top {
  top: 32px;
  right: 28px;
  width: 48px;
  height: 48px;
}
main .section-faq .faq-bg-rings {
  position: absolute;
  top: 8%;
  right: -120px;
  width: 420px;
  height: 420px;
  color: #dee2e6;
  opacity: 0.55;
}
main .section-faq .faq-bg-rings svg {
  display: block;
  width: 100%;
  height: 100%;
}
main .section-faq .container {
  position: relative;
  z-index: 1;
}
main .section-faq .faq-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: 720px;
  margin: 0 auto 40px;
}
main .section-faq .faq-header-icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
main .section-faq .faq-header-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(210, 231, 213, 0.5137254902);
  color: #37b24d;
  box-shadow: 0 2px 8px rgba(55, 178, 77, 0.12);
}
main .section-faq .faq-header-icon svg {
  display: block;
  width: 60%;
  height: 60%;
}
main .section-faq .faq-label-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
main .section-faq .faq-label {
  margin: 0;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  main .section-faq .faq-label {
    font-size: 12px;
  }
}
main .section-faq .faq-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #37b24d;
}
main .section-faq .faq-label-line {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: #37b24d;
}
main .section-faq .faq-heading {
  margin: 0 0 16px;
  font-size: 42px;
}
@media (max-width: 1023.98px) {
  main .section-faq .faq-heading {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  main .section-faq .faq-heading {
    font-size: 24px;
  }
}
main .section-faq .faq-heading {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #1a1a1a;
}
main .section-faq .faq-heading-mobile {
  display: none;
}
main .section-faq .faq-heading-accent {
  color: #37b24d;
}
main .section-faq .faq-description {
  margin: 0;
  font-size: 18px;
}
@media (max-width: 1023.98px) {
  main .section-faq .faq-description {
    font-size: 16px;
  }
}
main .section-faq .faq-description {
  line-height: 1.6;
  color: #666;
}
main .section-faq .faq-description-mobile {
  display: none;
}
main .section-faq .faq-list {
  max-width: 860px;
  margin: 0 auto 32px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
main .section-faq .faq-item {
  --faq-item-pad-x: 24px;
  --faq-item-pad-bottom: 20px;
  --faq-item-gap: 16px;
  --faq-item-number-w: 28px;
  --faq-item-toggle-w: 24px;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 200ms ease;
}
main .section-faq .faq-item:last-child {
  border-bottom: none;
}
main .section-faq .faq-item-heading {
  margin: 0;
}
main .section-faq .faq-item-trigger {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--faq-item-gap);
  width: 100%;
  padding: 20px var(--faq-item-pad-x);
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
main .section-faq .faq-item-number {
  font-size: 15px;
  font-weight: 600;
  color: #37b24d;
  min-width: var(--faq-item-number-w);
}
main .section-faq .faq-item-divider {
  display: block;
  width: 1px;
  height: 28px;
  background: #dee2e6;
}
main .section-faq .faq-item-question {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
}
main .section-faq .faq-item-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--faq-item-toggle-w);
  height: 24px;
  flex-shrink: 0;
}
main .section-faq .faq-item-toggle-icon {
  position: absolute;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #37b24d;
  transition: opacity 250ms ease, transform 250ms ease;
}
main .section-faq .faq-item-toggle-icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}
main .section-faq .faq-item-toggle-icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}
main .section-faq .faq-item.is-open .faq-item-toggle-icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}
main .section-faq .faq-item.is-open .faq-item-toggle-icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}
main .section-faq .faq-item-panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 300ms ease-out, opacity 300ms ease-out;
}
main .section-faq .faq-item.is-open .faq-item-panel {
  opacity: 1;
}
main .section-faq .faq-item-panel-inner {
  padding: var(--faq-item-pad-bottom) var(--faq-item-pad-x);
  padding-left: calc(var(--faq-item-pad-x) + var(--faq-item-number-w) + var(--faq-item-gap) + 1px + var(--faq-item-gap));
  padding-right: calc(var(--faq-item-pad-x) + var(--faq-item-toggle-w) + var(--faq-item-gap));
  background: #ebf7ed;
}
main .section-faq .faq-item-panel-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  width: 100%;
}
main .section-faq .faq-item-panel-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
main .section-faq .faq-item-panel-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d7f0db;
  color: #37b24d;
}
main .section-faq .faq-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 28px;
  background: #ebf7ed;
  border-radius: 16px;
  overflow: hidden;
}
main .section-faq .faq-cta-dots {
  position: absolute;
  top: 60%;
  left: -10px;
  width: 36px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2' fill='%23ced4da'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: repeat;
  opacity: 0.7;
  pointer-events: none;
}
main .section-faq .faq-cta-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-left: 8px;
  border-radius: 50%;
  background: #d7f0db;
  color: #37b24d;
}
main .section-faq .faq-cta-icon svg {
  display: block;
  width: 60%;
  height: 60%;
}
main .section-faq .faq-cta-text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
main .section-faq .faq-cta-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #1a1a1a;
}
main .section-faq .faq-cta-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}
main .section-faq .faq-cta-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
}
main .section-faq .faq-cta-btn svg {
  transition: transform 0.3s ease;
}
main .section-faq .faq-cta-btn:hover svg, main .section-faq .faq-cta-btn:active svg, main .section-faq .faq-cta-btn:focus-visible svg {
  transform: translateX(8px);
}
@media (hover: hover) and (min-width: 992px) {
  main .section-faq .faq-item:not(.is-open):hover {
    background: rgba(235, 247, 237, 0.45);
  }
}
@media (min-width: 992px) {
  main .section-faq .faq-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    max-width: 680px;
  }
  main .section-faq .faq-header-icon-wrap {
    margin: 0 auto 4px;
  }
  main .section-faq .faq-header-blob {
    display: none;
  }
  main .section-faq .faq-label-group {
    align-items: center;
  }
  main .section-faq .faq-bg-blob--left {
    width: 420px;
    height: 480px;
    top: -12%;
    left: -180px;
  }
  main .section-faq .faq-bg-blob--right {
    width: 300px;
    height: 360px;
    right: -100px;
  }
  main .section-faq .faq-bg-dots--top {
    top: 48px;
    right: 48px;
    width: 56px;
    height: 56px;
  }
  main .section-faq .faq-bg-rings {
    top: 4%;
    right: -80px;
    width: 520px;
    height: 520px;
  }
  main .section-faq .faq-item {
    --faq-item-pad-x: 28px;
    --faq-item-pad-bottom: 22px;
  }
  main .section-faq .faq-item-trigger {
    padding: 22px var(--faq-item-pad-x);
  }
  main .section-faq .faq-item-question {
    font-size: 17px;
  }
  main .section-faq .faq-cta {
    padding: 28px 32px;
  }
}
@media (max-width: 991.98px) {
  main .section-faq {
    padding: 56px 0;
  }
  main .section-faq .faq-heading-desktop {
    display: none;
  }
  main .section-faq .faq-heading-mobile {
    display: block;
  }
  main .section-faq .faq-description-desktop {
    display: none;
  }
  main .section-faq .faq-description-mobile {
    display: block;
  }
  main .section-faq .faq-bg-blob--right {
    display: none;
  }
  main .section-faq .faq-bg-rings {
    top: 12%;
    right: -180px;
    width: 340px;
    height: 340px;
    opacity: 0.45;
  }
  main .section-faq .faq-header {
    margin-bottom: 28px;
  }
  main .section-faq .faq-heading {
    margin-bottom: 12px;
  }
  main .section-faq .faq-description {
    line-height: 1.55;
  }
  main .section-faq .faq-list {
    margin-bottom: 24px;
    border-radius: 14px;
  }
  main .section-faq .faq-item {
    --faq-item-pad-x: 16px;
    --faq-item-pad-bottom: 16px;
    --faq-item-gap: 12px;
    --faq-item-number-w: 24px;
  }
  main .section-faq .faq-item-trigger {
    gap: var(--faq-item-gap);
    padding: 16px var(--faq-item-pad-x);
  }
  main .section-faq .faq-item-number {
    font-size: 14px;
  }
  main .section-faq .faq-item-divider {
    height: 24px;
  }
  main .section-faq .faq-item-question {
    font-size: 15px;
  }
  main .section-faq .faq-item-panel-icon {
    width: 32px;
    height: 32px;
  }
  main .section-faq .faq-item-panel-icon svg {
    width: 16px;
    height: 16px;
  }
  main .section-faq .faq-cta {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 18px 16px;
  }
  main .section-faq .faq-cta-icon {
    width: 52px;
    height: 52px;
    margin: 0;
    flex-shrink: 0;
  }
  main .section-faq .faq-cta-text {
    flex: 1;
    min-width: 0;
  }
  main .section-faq .faq-cta-title {
    font-size: 15px;
  }
  main .section-faq .faq-cta-btn {
    width: auto;
    flex-shrink: 0;
    font-size: 13px;
    padding: 12px 14px;
    white-space: nowrap;
  }
}
@media (max-width: 576.98px) {
  main .section-faq {
    padding: 48px 0;
  }
  main .section-faq .faq-header-icon-wrap {
    width: 72px;
    height: 72px;
  }
  main .section-faq .faq-item {
    --faq-item-pad-x: 14px;
    --faq-item-pad-bottom: 14px;
    --faq-item-gap: 10px;
  }
  main .section-faq .faq-item-trigger {
    gap: var(--faq-item-gap);
    padding: 14px var(--faq-item-pad-x);
  }
  main .section-faq .faq-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  main .section-faq .faq-cta-icon {
    margin: 0 auto;
  }
  main .section-faq .faq-cta-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

.section-final-cta {
  padding: 80px 0 64px;
  background: #fff;
}
.section-final-cta .final-cta-card {
  background: #f6f8f5;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 48px 56px;
  overflow: hidden;
}
.section-final-cta .final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto;
  grid-template-areas: "copy side" "features side";
  -moz-column-gap: 56px;
       column-gap: 56px;
  row-gap: 36px;
  align-items: start;
}
.section-final-cta .final-cta-copy {
  grid-area: copy;
}
.section-final-cta .final-cta-side {
  grid-area: side;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
  justify-self: center;
}
.section-final-cta .final-cta-features {
  grid-area: features;
  align-self: end;
}
.section-final-cta .final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.section-final-cta .final-cta-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ebf7ed;
  color: #37b24d;
  flex-shrink: 0;
}
.section-final-cta .final-cta-badge-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}
.section-final-cta .final-cta-badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #37b24d;
}
.section-final-cta .final-cta-heading {
  margin: 0 0 16px;
  font-size: 42px;
}
@media (max-width: 1023.98px) {
  .section-final-cta .final-cta-heading {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  .section-final-cta .final-cta-heading {
    font-size: 24px;
  }
}
.section-final-cta .final-cta-heading {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}
.section-final-cta .final-cta-heading-mobile {
  display: none;
}
.section-final-cta .final-cta-heading-accent {
  color: #37b24d;
}
.section-final-cta .final-cta-description {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
}
@media (max-width: 1023.98px) {
  .section-final-cta .final-cta-description {
    font-size: 16px;
  }
}
.section-final-cta .final-cta-description {
  line-height: 1.65;
  color: #666;
}
.section-final-cta .final-cta-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-final-cta .final-cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
}
.section-final-cta .final-cta-feature:first-child {
  padding-left: 0;
}
.section-final-cta .final-cta-feature:not(:first-child) {
  border-left: 1px solid #dee2e6;
}
.section-final-cta .final-cta-feature-label {
  font-size: 14px;
  line-height: 1.35;
  color: #555;
  white-space: nowrap;
}
.section-final-cta .final-cta-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ebf7ed;
  color: #37b24d;
  flex-shrink: 0;
}
.section-final-cta .final-cta-feature-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.section-final-cta .final-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.section-final-cta .final-cta-visual {
  position: relative;
  margin: 0;
  width: 400px;
  max-width: 100%;
  overflow: visible;
}
.section-final-cta .half-circle {
  width: 400px;
  height: 200px;
  max-width: 100%;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.section-final-cta .half-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  position: absolute;
  top: 0;
  left: 0;
}
.section-final-cta .final-cta-visual-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 430px;
  height: 215px;
  max-width: calc(100% + 30px);
  z-index: 0;
  border-radius: 215px 215px 0 0;
  background: linear-gradient(to right, #d7f0db 0%, #d7f0db 40%, rgba(215, 240, 219, 0.35) 65%, transparent 85%);
  pointer-events: none;
}
.section-final-cta .final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 80%;
  max-width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.section-final-cta .final-cta-btn:hover .final-cta-btn-arrow, .section-final-cta .final-cta-btn:active .final-cta-btn-arrow, .section-final-cta .final-cta-btn:focus-visible .final-cta-btn-arrow {
  transform: translateX(8px);
}
.section-final-cta .final-cta-btn-inner {
  display: inline-flex;
  align-items: center;
  text-wrap: nowrap;
  gap: 10px;
}
.section-final-cta .final-cta-btn-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.section-final-cta .final-cta-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #888;
  text-align: center;
}
.section-final-cta .final-cta-secure svg {
  display: block;
  width: 14px;
  height: 14px;
  color: #37b24d;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .section-final-cta {
    padding: 48px 0 40px;
  }
  .section-final-cta .final-cta-card {
    padding: 28px 24px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  .section-final-cta .final-cta-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 150px);
    grid-template-rows: auto auto auto;
    grid-template-areas: "copy visual" "features features" "action action";
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 24px;
  }
  .section-final-cta .final-cta-side {
    display: contents;
  }
  .section-final-cta .final-cta-copy {
    align-self: start;
  }
  .section-final-cta .final-cta-visual {
    grid-area: visual;
    width: 150px;
    max-width: none;
    margin: -28px -24px 0 0;
    justify-self: end;
    align-self: start;
  }
  .section-final-cta .final-cta-action {
    grid-area: action;
    max-width: none;
    justify-self: stretch;
    gap: 12px;
  }
  .section-final-cta .half-circle {
    width: 150px;
    height: 196px;
    border-radius: 110px 16px 0 30px;
  }
  .section-final-cta .half-circle img {
    height: 100%;
  }
  .section-final-cta .final-cta-visual-accent {
    display: none;
  }
  .section-final-cta .final-cta-heading {
    margin-bottom: 10px;
    line-height: 1.15;
  }
  .section-final-cta .final-cta-heading-desktop {
    display: none;
  }
  .section-final-cta .final-cta-heading-mobile {
    display: inline;
  }
  .section-final-cta .final-cta-description {
    line-height: 1.55;
    max-width: none;
  }
  .section-final-cta .final-cta-badge {
    margin-bottom: 12px;
  }
  .section-final-cta .final-cta-badge-icon {
    width: 26px;
    height: 26px;
  }
  .section-final-cta .final-cta-features {
    align-self: stretch;
    justify-content: space-between;
    gap: 0;
    padding-top: 8px;
  }
  .section-final-cta .final-cta-feature {
    flex: 1 1 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 6px;
    text-align: left;
  }
  .section-final-cta .final-cta-feature:not(:first-child) {
    border-left: 1px solid #dee2e6;
  }
  .section-final-cta .final-cta-feature-label {
    font-size: 10px;
    white-space: normal;
    max-width: none;
    line-height: 1.3;
  }
  .section-final-cta .final-cta-feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .section-final-cta .final-cta-feature-icon svg {
    width: 15px;
    height: 15px;
  }
  .section-final-cta .final-cta-btn {
    font-size: 15px;
    padding: 15px 18px;
  }
  .section-final-cta .final-cta-secure {
    font-size: 11px;
  }
}

#footer {
  transition: none;
  background: #fff;
  padding: 0 0 64px;
}
#footer .site-footer-card {
  background: #fcfcfc;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
}
#footer .site-footer-main {
  padding: 64px 40px 48px;
}
#footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2.6fr);
  gap: 48px 32px;
  align-items: start;
}
#footer .footer-brand-logo {
  display: inline-block;
  margin-bottom: 18px;
}
#footer .footer-brand-logo img {
  display: block;
  width: 180px;
  height: auto;
}
#footer .footer-brand-desc {
  margin: 0 0 24px;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}
#footer .footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #e9ecef;
  color: #37b24d;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
#footer .footer-social a:hover {
  background: #ebf7ed;
  border-color: #37b24d;
  transform: translateY(-1px);
}
#footer .footer-social a svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
#footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
#footer .footer-nav-heading {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}
#footer .footer-nav-trigger {
  display: none;
}
#footer .footer-nav-panel {
  overflow: visible;
  height: auto;
  opacity: 1;
}
#footer .footer-nav-list,
#footer .footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .footer-nav-list a,
#footer .footer-contact-list a,
#footer .footer-contact-list span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
#footer .footer-nav-list li + li,
#footer .footer-contact-list li + li {
  margin-top: 12px;
}
#footer .footer-nav-list a:hover,
#footer .footer-contact-list a:hover {
  color: #37b24d;
}
#footer .footer-contact-list svg {
  display: block;
  width: 18px;
  height: 18px;
  color: #37b24d;
  flex-shrink: 0;
  margin-top: 1px;
}
#footer .site-footer-bar {
  border-top: 1px solid #e9ecef;
  padding: 20px 40px;
  background: #fcfcfc;
}
#footer .site-footer-bar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
#footer .site-footer-bar-secure,
#footer .site-footer-bar-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #888;
}
#footer .site-footer-bar-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
#footer .site-footer-bar-secure svg {
  display: block;
  width: 14px;
  height: 14px;
  color: #37b24d;
  flex-shrink: 0;
}
#footer .site-footer-bar-copy {
  text-align: center;
  color: #666;
}
#footer .site-footer-bar-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 13px;
}
#footer .site-footer-bar-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
#footer .site-footer-bar-links a:hover {
  color: #37b24d;
}
#footer .site-footer-bar-links span {
  color: #ccc;
}
@media (max-width: 991.98px) {
  #footer {
    padding-bottom: 40px;
  }
  #footer .site-footer-card {
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  #footer .site-footer-main {
    padding: 0;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    background: #fcfcfc;
    overflow: hidden;
  }
  #footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #footer .footer-brand {
    padding: 40px 24px 32px;
    text-align: center;
  }
  #footer .footer-brand-logo img {
    width: 160px;
    margin: 0 auto;
  }
  #footer .footer-brand-desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .footer-social {
    justify-content: center;
  }
  #footer .footer-nav {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #e9ecef;
  }
  #footer .footer-nav-group {
    padding: 0 24px;
    border-bottom: 1px solid #e9ecef;
  }
  #footer .footer-nav-heading {
    display: none;
  }
  #footer .footer-nav-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
  }
  #footer .footer-nav-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #37b24d;
    flex-shrink: 0;
  }
  #footer .footer-nav-trigger-icon svg {
    display: block;
    width: 20px;
    height: 20px;
  }
  #footer .footer-nav-trigger-label {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
  }
  #footer .footer-nav-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  #footer .footer-nav-toggle-plus,
  #footer .footer-nav-toggle-minus {
    position: absolute;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: #37b24d;
    transition: opacity 250ms ease, transform 250ms ease;
  }
  #footer .footer-nav-toggle-plus {
    opacity: 1;
  }
  #footer .footer-nav-toggle-minus {
    opacity: 0;
    transform: rotate(-90deg);
  }
  #footer .footer-nav-group.is-open .footer-nav-toggle-plus {
    opacity: 0;
    transform: rotate(90deg);
  }
  #footer .footer-nav-group.is-open .footer-nav-toggle-minus {
    opacity: 1;
    transform: rotate(0deg);
  }
  #footer .footer-nav-panel {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 350ms ease-out, opacity 350ms ease-out;
  }
  #footer .footer-nav-panel[hidden] {
    display: block;
  }
  #footer .footer-nav-panel .footer-nav-list,
  #footer .footer-nav-panel .footer-contact-list {
    padding: 0 0 16px;
  }
  #footer .footer-nav-group.is-open .footer-nav-panel {
    opacity: 1;
  }
  #footer .footer-nav-list a,
  #footer .footer-contact-list a,
  #footer .footer-contact-list span {
    font-size: 14px;
  }
  #footer .site-footer-bar {
    margin-top: 12px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #f6f8f5;
    padding: 24px 20px;
  }
  #footer .site-footer-bar-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }
  #footer .site-footer-bar-secure {
    justify-content: center;
  }
  #footer .site-footer-bar-links {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  #footer .footer-nav-panel[hidden] {
    display: block !important;
  }
}

#up-arrow {
  position: fixed;
  bottom: 90px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #37b24d;
  border: 1px solid #37b24d;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
  z-index: 1000;
}
#up-arrow:hover, #up-arrow:active, #up-arrow:focus, #up-arrow:focus-visible {
  background-color: #fff;
  border-color: #32a045;
  color: #32a045;
  box-shadow: 0 0 6px #37b24d;
  transition: 0.3s all;
}
#up-arrow svg {
  width: 24px;
  height: 24px;
}
#up-arrow.show {
  opacity: 1;
  visibility: visible !important;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.fade-in {
  opacity: 0;
  display: block;
  animation: fadeInAnim 0.5s ease-in forwards;
}

@keyframes fadeInAnim {
  to {
    opacity: 1;
  }
}
@media (max-width: 1399.98px) {
  main .section-health {
    padding-top: 150px !important;
  }
}
@media (max-width: 1199.98px) {
  #header nav .navbar-brand {
    width: auto;
  }
  #header nav .navbar-brand img {
    width: 200px;
    max-width: 100%;
  }
  #navbarSupportedContent .navbar-nav-main {
    gap: 15px;
  }
  #navbarSupportedContent .navbar-nav-main > .nav-item > .nav-link {
    font-size: 16px;
  }
  .btn {
    font-size: 16px;
    padding: 10px 25px;
  }
}
@media (max-width: 1023.98px) {
  #header nav .navbar-inner {
    padding: 0 !important;
  }
  #header .container {
    border-bottom: 1px solid #e9ecef;
  }
  #header nav .offcanvas .offcanvas-header .logo-link img {
    width: 190px;
  }
  #header nav .offcanvas .offcanvas-body {
    padding-top: 0.25rem;
  }
}
@media (max-width: 991.98px) {
  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  main .section-about,
  main .section-how-it-works,
  main .section-trust-proof,
  main .section-pricing,
  main .section-testimonials {
    padding: 25px 0;
  }
  main .section-final-cta {
    padding: 40px 0;
  }
  main .section-final-cta .final-cta-card {
    padding: 24px 20px;
  }
}
@media (max-width: 799.98px) {
  main .section-health {
    padding: 100px 0 50px 0 !important;
  }
  #footer .site-footer-bar-inner {
    gap: 20px;
  }
  #up-arrow {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 50px;
    border-radius: 50%;
    height: 50px;
  }
}
@media (max-width: 767.98px) {
  #header nav .navbar-brand {
    width: auto;
  }
  #header nav .navbar-brand img {
    width: 190px;
  }
  main .section-health {
    padding: 50px 0 50px 0;
  }
}
@media (max-width: 576.98px) {
  #header nav .navbar-brand {
    width: auto;
  }
  #header nav .navbar-brand img {
    width: 185px;
  }
  #header nav.navbar-light .navbar-toggler {
    width: 40px;
    height: 40px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 18px;
  }
}
@media (max-width: 450.98px) {
  #header nav .offcanvas .offcanvas-header {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 424.98px) {
  .section-pricing .pricing-nav {
    margin-top: 20px;
  }
}
@media (max-width: 374.98px) {
  #up-arrow {
    right: 10px;
    height: 50px;
  }
}
@media (min-width: 1400px) {
  main .section-health {
    padding-top: 140px !important;
  }
}
:root {
  --header-top-overlap: 2px;
}/*# sourceMappingURL=style.css.map */