html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--nav-float-top, 12px) + var(--nav-float-h, 96px) + 8px);
}

:root {
  --nav-float-top: 60px;
  --nav-float-h: 96px;
  --page-bg: #F0F1EC;
  --brand-teal: #0d7574;
  --brand-text: #1f2227;
  --muted-text: #6b6f72;
  --brand-yellow: #f7c942;
  --light-btn-bg: #f7f7f7;
  --testimonial-bg: #dceeec;
  --feature-frame-bg: #ffd84a;
  --plan-card-border: #e3e4df;
  --color-white: #ffffff;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: #ffffff;
  color: var(--brand-text);
  font-size: 15px;
}

.hero-page {
  background: var(--page-bg);
  padding-top: calc(var(--nav-float-top) + var(--nav-float-h) + 0.75rem);
}

@media (min-width: 992px) {
  .hero-page {
    padding-top: calc(var(--nav-float-top) + var(--nav-float-h) + 1.75rem);
  }
}

.hero-container {
  max-width: 1120px;
}

.brand-logo {
  width: 168px;
  height: auto;
  display: block;
}

#siteNav {
  position: fixed;
  top: var(--nav-float-top);
  left: 16px;
  right: 16px;
  z-index: 1030;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--page-bg);
  opacity: 0;
  transform: translateY(-20px);
  animation: navFadeDown 700ms ease-out 120ms forwards;
  transition: top 320ms ease;
}

body.is-nav-docked #siteNav {
  top: 0;
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 0%), 0 6px 20px 0 rgb(0 0 0 / 15%);
  border-radius: 25px;
}

.navbar .container-fluid {
  padding: 20px 50px;
}

.navbar .nav-link {
  color: #2c2f31;
  font-weight: 600;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.navbar .nav-link:hover {
  color: var(--brand-teal);
}

.navbar .nav-link.active {
  color: var(--brand-teal) !important;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.navbar .nav-link.nav-link--green,
.navbar .nav-link.nav-link--green:hover,
.navbar .nav-link.nav-link--green:focus {
  color: var(--brand-teal);
}

.hero-content {
  padding-top: 50px;
  padding-bottom: 56px;
}

.hero-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--brand-teal);
}

.hero-title {
  font-size: 56px;
  line-height: 1.14;
  font-weight: 800;
  color: #0f1115;
}

.hero-title-dot {
  color: var(--brand-yellow);
}

.hero-subtitle {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--muted-text);
}

.showcase-wrap {
  background: var(--page-bg);
}

.showcase-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(36px);
  animation: heroProductReveal 900ms ease-out 220ms forwards;
}

@keyframes heroProductReveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.teal-band {
  background: var(--brand-teal);
  min-height: 128px;
  padding: 30px 0;
}

.teal-band .teal-stats-lead {
  color: #eaf4f4;
  font-size: 200%;
  line-height: 1.35;
  font-weight: 600;
}

.teal-band .teal-stats-lead-value {
  color: var(--color-white);
  font-size: inherit;
  font-weight: 700;
}

.teal-band .teal-metric-value {
  color: var(--color-white);
  font-size: 44px;
  line-height: 1.1;
  font-weight: 600;
}

.teal-band .teal-metric-label {
  color: #d6eceb;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}

.client-logo {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: grayscale(5%);
  opacity: 0.9;
}

.features-section {
  background: #ffffff;
}

.feature-card {
  padding: 0 0.5rem;
}

.feature-card__frame {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: block;
}

.feature-card--tilt-left .feature-card__frame {
  transform: none;
}

.feature-card--tilt-right .feature-card__frame {
  transform: none;
}

.feature-card__image {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-text);
}

.feature-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-text);
}

.pricing-section {
  background: var(--page-bg);
  padding: 100px 0;
}

.plan-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--plan-card-border);
  border-radius: 14px;
  padding: 40px 32px 36px;
  min-height: 460px;
  height: 100%;
  color: var(--brand-text);
  box-shadow: 0 6px 18px rgba(15, 17, 21, 0.04);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: scale(1.045);
  z-index: 2;
  box-shadow: 0 14px 36px rgba(15, 17, 21, 0.12);
}

.plan-card--featured {
  background: var(--brand-teal);
  border-color: var(--brand-teal);
  color: var(--color-white);
}

.plan-card--featured .plan-price__period {
  color: rgba(255, 255, 255, 0.78);
}

.plan-badge {
  align-self: flex-start;
  background: var(--brand-yellow);
  color: #1d1f21;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.plan-badge--placeholder {
  visibility: hidden;
  pointer-events: none;
}

.plan-card__title {
  align-self: stretch;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-top: auto;
  margin-bottom: 18px;
  line-height: 1;
}

.plan-price__currency {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  margin-top: 4px;
}

.plan-price__amount {
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
}

.plan-price__period {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted-text);
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 6px;
  margin-left: 2px;
}

.plan-divider {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(15, 17, 21, 0.12);
  opacity: 1;
  margin: 0 0 14px;
}

.plan-card--featured .plan-divider {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.plan-card__note {
  align-self: stretch;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--muted-text);
  min-height: 7.5em;
}

.plan-card--featured .plan-card__note {
  color: rgba(255, 255, 255, 0.78);
}

.testimonials-section {
  background: var(--testimonial-bg);
  padding: 100px 0;
}

.testimonials-splide-fullwidth {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px 24px;
  height: 100%;
  box-shadow: 0 6px 18px rgba(15, 17, 21, 0.06);
  display: flex;
  flex-direction: column;
}

.testimonial-quote-mark {
  display: block;
  font-family: "Open Sans", serif;
  font-size: 56px;
  line-height: 0.6;
  color: var(--brand-yellow);
  margin-bottom: 12px;
}

.testimonial-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--brand-text);
  flex: 1 1 auto;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted-text);
}

#testimonials-carousel {
  position: relative;
  padding: 0 3rem 0.25rem;
}

#testimonials-carousel .splide__slide {
  transition: opacity 0.35s ease;
  opacity: 1;
}

#testimonials-carousel .splide__slide.is-testimonial-edge {
  opacity: 0.45;
}

#testimonials-carousel .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(13, 117, 116, 0.18);
  box-shadow: 0 2px 10px rgba(15, 17, 21, 0.08);
  opacity: 1;
  color: var(--brand-teal);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease,
    box-shadow 0.2s ease;
}

#testimonials-carousel .splide__arrow svg {
  fill: currentColor;
  stroke: currentColor;
}

#testimonials-carousel .splide__arrow:hover:not(:disabled),
#testimonials-carousel .splide__arrow:focus-visible:not(:disabled) {
  background: var(--brand-teal);
  color: #ffffff;
  border-color: var(--brand-teal);
  box-shadow: 0 4px 14px rgba(13, 117, 116, 0.35);
}

#testimonials-carousel .splide__arrow:disabled {
  opacity: 0.4;
  background: rgba(255, 255, 255, 0.65);
}

#testimonials-carousel .splide__pagination {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  margin: 1.5rem 0 0;
  padding: 0;
  justify-content: center;
}

#testimonials-carousel .splide__pagination__page {
  background: rgba(13, 117, 116, 0.25);
  opacity: 1;
  transform: none;
  width: 8px;
  height: 8px;
  margin: 0 4px;
}

#testimonials-carousel .splide__pagination__page.is-active {
  background: var(--brand-teal);
  transform: scale(1.2);
}

.faq-section {
  background: #ffffff;
  padding: 100px 0;
}

.faq-accordion {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.faq-item {
  border: 0;
  border-bottom: 1px solid rgba(15, 17, 21, 0.14);
  border-radius: 0;
  margin: 0;
  background: transparent;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(15, 17, 21, 0.14);
}

.faq-accordion .accordion-item {
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: #222428;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.faq-question:not(.collapsed) {
  color: #222428;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.faq-question:hover {
  background: transparent;
}

.faq-question:focus,
.faq-question:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.faq-question::after {
  display: none;
}

.faq-toggle-icon {
  margin-left: auto;
  width: auto;
  height: auto;
  border: 0;
  transform: none;
  transition: none;
  flex-shrink: 0;
  margin-right: 2px;
  color: #2a2c30;
  line-height: 1;
}

.faq-toggle-icon::before {
  content: "-";
  font-size: 28px;
  font-weight: 400;
}

.faq-question.collapsed .faq-toggle-icon::before {
  content: "+";
}

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted-text);
  background: transparent;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-link:hover,
.faq-link:focus-visible {
  color: #0a6362;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--brand-teal);
  color: #d8efee;
  padding: 100px 0 30px 0;
}

.site-footer__logo {
  width: 170px;
  height: auto;
  display: block;
}

.site-footer__about {
  max-width: 315px;
  color: #cce7e5;
  font-size: 16px;
  line-height: 1.55;
}

.site-footer__title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #f2f8f8;
  margin: 0 0 0.9rem;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li+li {
  margin-top: 0.65rem;
}

.site-footer__link,
.site-footer__text {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #cce7e5;
}

.site-footer__link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #ffffff;
}

.site-footer__divider {
  border: 0;
  border-top: 1px solid rgba(217, 239, 238, 0.34);
  opacity: 1;
  margin: 3rem 0 1.25rem;
}

.site-footer__copyright {
  text-align: center;
  color: #cce7e5;
  font-size: 14px;
  line-height: 1.4;
}

.site-footer__copyright-logo {
  display: inline-block;
  width: 102px;
  height: auto;
  vertical-align: -0.3em;
  margin: 0 0.2rem;
}

.site-footer__credit-link {
  color: #f7c942;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-footer__credit-link:hover,
.site-footer__credit-link:focus-visible {
  color: #ffe082;
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .hero-content {
    padding-top: 72px;
    padding-bottom: 42px;
  }

  .hero-tag {
    font-size: 13px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 17px;
    max-width: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #siteNav {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .showcase-image {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .plan-card,
  .plan-card:hover,
  .plan-card:focus-within {
    transform: none;
    transition: none;
  }

  #siteNav .nav-toggler-line {
    transition: none;
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-float-h: 88px;
  }

  #siteNav .navbar-collapse {
    max-height: min(70vh, 28rem);
    overflow-y: auto;
  }

  .navbar .nav-link {
    font-size: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  #siteNav .navbar-toggler {
    border: 1px solid rgba(15, 17, 21, 0.14);
    border-radius: 10px;
    padding: 0.75rem;
    background-color: var(--brand-yellow);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #siteNav .navbar-toggler:focus,
  #siteNav .navbar-toggler:focus-visible,
  #siteNav .navbar-toggler:active {
    outline: none;
    box-shadow: none;
  }

  #siteNav .navbar-toggler[aria-expanded="true"] {
    background-color: var(--brand-teal);
    border-color: rgba(255, 255, 255, 0.28);
  }

  #siteNav .nav-toggler-icon {
    position: relative;
    width: 1.35rem;
    height: 1.05rem;
    display: block;
  }

  #siteNav .nav-toggler-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 1px;
    background-color: var(--brand-text);
    transform-origin: center;
    transition:
      transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.22s ease,
      top 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      bottom 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      margin-top 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      background-color 0.2s ease;
  }

  #siteNav .nav-toggler-line--top {
    top: 2px;
    transform: rotate(0deg);
  }

  #siteNav .nav-toggler-line--mid {
    top: 50%;
    margin-top: -1px;
    transform: scaleX(1);
    opacity: 1;
  }

  #siteNav .nav-toggler-line--bot {
    bottom: 2px;
    transform: rotate(0deg);
  }

  #siteNav .navbar-toggler[aria-expanded="true"] .nav-toggler-line {
    background-color: #ffffff;
  }

  #siteNav .navbar-toggler[aria-expanded="true"] .nav-toggler-line--top {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }

  #siteNav .navbar-toggler[aria-expanded="true"] .nav-toggler-line--mid {
    opacity: 0;
    transform: scaleX(0.2);
  }

  #siteNav .navbar-toggler[aria-expanded="true"] .nav-toggler-line--bot {
    bottom: auto;
    top: 50%;
    margin-top: -1px;
    transform: rotate(-45deg);
  }

  .hero-content {
    padding-top: 56px;
    padding-bottom: 36px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 520px;
  }

  .teal-band {
    min-height: 104px;
    padding: 24px 0;
  }

  .teal-stats-lead {
    font-size: 18px;
  }

  .teal-stats-lead-value {
    font-size: inherit;
  }

  .teal-metric-value {
    font-size: 36px;
  }

  .teal-metric-label {
    font-size: 13px;
  }

  .client-logo {
    width: 88px;
    height: 88px;
  }

  .feature-card__title {
    font-size: 17px;
  }

  .plan-card {
    padding: 32px 26px 28px;
    min-height: 420px;
  }

  .plan-price__amount {
    font-size: 48px;
  }

  .faq-question {
    font-size: 17px;
    padding: 1rem 0;
  }

  .faq-answer {
    font-size: 15px;
    padding: 0 0 1rem;
  }

  .site-footer {
    padding: 64px 0 24px;
  }

  .site-footer__about {
    max-width: none;
    font-size: 16px;
  }

  .site-footer__title {
    font-size: 16px;
    margin-bottom: 0.8rem;
  }

  .site-footer__link,
  .site-footer__text {
    font-size: 15px;
  }

  .site-footer__list li+li {
    margin-top: 0.55rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --nav-float-top: 24px;
    --nav-float-h: 84px;
  }

  .brand-logo {
    width: 140px;
    height: auto;
  }

  #siteNav {
    left: 12px;
    right: 12px;
    border-radius: 14px;
  }

  .navbar .container-fluid {
    padding: 14px 18px;
  }

  .hero-content {
    padding-top: 44px;
    padding-bottom: 30px;
  }

  .hero-tag {
    font-size: 13px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .teal-band {
    min-height: 86px;
    padding: 22px 0;
  }

  .teal-stats {
    row-gap: 14px;
  }

  .teal-stats-lead {
    font-size: 17px;
    text-align: center;
  }

  .teal-stats-lead-value {
    font-size: inherit;
  }

  .teal-metric-value {
    font-size: 28px;
  }

  .teal-metric-label {
    font-size: 12px;
  }

  .client-carousel-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .client-carousel-section .splide__slide {
    min-height: 84px;
  }

  .client-logo {
    width: 76px;
    height: 76px;
  }

  .feature-card--tilt-left .feature-card__frame,
  .feature-card--tilt-right .feature-card__frame {
    transform: none;
  }

  .feature-card__frame {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .features-row {
    row-gap: 2rem !important;
  }

  .plan-card {
    padding: 28px 22px 24px;
    min-height: 380px;
  }

  .plan-price__amount {
    font-size: 44px;
  }

  .testimonial-card {
    padding: 24px 20px 20px;
  }

  .testimonial-quote-mark {
    font-size: 44px;
  }

  #testimonials-carousel {
    padding: 0 2.25rem 0.25rem;
  }

  #testimonials-carousel .splide__arrow {
    width: 2.25rem;
    height: 2.25rem;
  }

  .faq-section {
    padding: 80px 0;
  }

  .faq-accordion {
    border-radius: 0;
  }

  .faq-question {
    padding: 0.9rem 0;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 0 0.85rem;
    font-size: 13.5px;
  }

  .faq-link {
    font-size: 15px;
  }

  .site-footer {
    padding: 54px 0 22px;
  }

  .site-footer__logo {
    width: 145px;
  }

  .site-footer__about {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0.6rem !important;
  }

  .site-footer__title {
    font-size: 15px;
    margin-bottom: 0.65rem;
  }

  .site-footer__link,
  .site-footer__text {
    font-size: 14px;
  }

  .site-footer__divider {
    margin: 2rem 0 1rem;
  }

  .site-footer__copyright {
    font-size: 13px;
  }

  .site-footer__copyright-logo {
    width: 92px;
  }
}