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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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

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

button,
[role=button] {
  cursor: pointer;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

@font-face {
  font-family: "Urbanist";
  src: url("../../assets/fonts/Urbanist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("../../assets/fonts/Urbanist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("../../assets/fonts/Urbanist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../../assets/fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../../assets/fonts/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  background-color: #fbfbf5;
}

body {
  overflow-x: hidden;
  background-color: #fbfbf5;
  color: #063231;
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p,
small,
li {
  font-family: "Lato", sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
}

p,
ul,
ol {
  margin: 0;
}

a {
  line-height: 1.5;
}

:focus-visible {
  outline: 2px solid #aff173;
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 999rem;
  background: #aff173;
  color: #063231;
  font-size: clamp(1.125rem, 0.94643rem + 0.89286vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background 0.34s ease, color 0.34s ease;
}
.button__icon {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
}
.button:hover {
  background: linear-gradient(135deg, #aff173 0%, #063231 100%);
  color: #ffffff;
}
.button:focus-visible {
  outline: 2px solid #18302f;
  outline-offset: 4px;
}
@media (min-width: 576px) {
  .button {
    width: fit-content;
  }
}

.tag {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer {
  width: 100%;
}
.site-footer__content {
  width: 100%;
  background-color: #aff173;
}
.site-footer__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 90rem;
  padding: 0.75rem 5vw;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .site-footer__content-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer__brand {
  display: inline-flex;
}
.site-footer__logo {
  width: auto;
  height: 3.5rem;
}
.site-footer__copyright {
  color: #063231;
  font-size: 1.125rem;
  text-align: center;
}
.site-footer__credit {
  width: 100%;
  padding: 0.75rem 5vw;
  background-color: #063231;
  color: #ffffff;
  text-align: center;
}
.site-footer__credit-text {
  font-size: 1.125rem;
}
.site-footer__credit-link {
  color: #ffffff;
  text-decoration-line: underline;
  text-decoration-color: #ffffff;
  text-decoration-thickness: 2px;
}

html.has-mobile-menu,
html.has-mobile-menu body {
  overflow: hidden;
  overscroll-behavior: none;
}

.site-header {
  width: 100%;
}
.site-header.is-open {
  position: fixed;
  z-index: 100;
  inset: 0;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #fbfbf5;
}
.site-header.is-open .site-header__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}
.site-header.is-open .site-header__left {
  display: contents;
}
.site-header.is-open .site-header__brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}
.site-header.is-open .site-header__menu-toggle {
  grid-column: 2;
  grid-row: 1;
}
.site-header__container {
  position: relative;
  width: 100%;
  max-width: 90rem;
  padding-block: clamp(1.5rem, 1.02381rem + 2.38095vw, 2.5rem);
  padding-inline: 5vw;
  margin-inline: auto;
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header__left {
  display: flex;
  align-items: center;
}
.site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
}
.site-header__logo {
  width: auto;
  height: 2.5rem;
}
.site-header__nav {
  display: none;
}
.site-header.is-open .site-header__nav {
  display: block;
  grid-column: 1/-1;
  grid-row: 2;
  margin-top: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.34s ease, transform 0.34s ease;
}
@starting-style {
  .site-header.is-open .site-header__nav {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
}
.site-header.is-open.is-closing .site-header__nav {
  opacity: 0;
  transform: translateY(-0.5rem);
}
.site-header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.site-header__nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.625rem 0.75rem;
  background-color: transparent;
  color: #063231;
  font-size: clamp(1.125rem, 1.06548rem + 0.29762vw, 1.25rem);
  text-align: right;
}
.site-header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.site-header__menu-toggle:focus-visible {
  outline: 2px solid #18302f;
  outline-offset: 4px;
}
.site-header__menu-icon {
  width: auto;
  height: 2rem;
}
.site-header__menu-icon--close {
  display: none;
}
.site-header.is-open .site-header__menu-icon--open {
  display: none;
}
.site-header.is-open .site-header__menu-icon--close {
  display: block;
}
.site-header__cta {
  display: none;
}
@media (min-width: 992px) {
  .site-header__logo {
    height: 4rem;
  }
}
@media (min-width: 1200px) {
  .site-header__container {
    padding-inline: 16px;
  }
  .site-header__left {
    gap: 2rem;
  }
  .site-header__nav, .site-header.is-open .site-header__nav {
    position: static;
    display: block;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
  }
  .site-header__nav-list {
    flex-direction: row;
    gap: 1rem;
    width: auto;
  }
  .site-header__nav-link {
    position: relative;
    justify-content: flex-start;
    width: fit-content;
    color: #626967;
    font-weight: 400;
    text-align: left;
    transition: color 0.34s ease;
  }
  .site-header__nav-link::after {
    position: absolute;
    right: 0.75rem;
    bottom: 0;
    left: 0.75rem;
    height: 3px;
    background: linear-gradient(135deg, #aff173 0%, #063231 100%);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.34s ease;
  }
  .site-header__nav-link:hover, .site-header__nav-link:focus-visible {
    color: #063231;
    font-weight: 700;
  }
  .site-header__nav-link:hover::after, .site-header__nav-link:focus-visible::after {
    transform: scaleX(1);
  }
  .site-header__menu-toggle {
    display: none;
  }
  .site-header__cta {
    display: inline-flex;
    font-size: 1.25rem;
  }
  .site-header__cta .button__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
  }
}
@media (min-width: 1400px) {
  .site-header {
    position: relative;
    z-index: 1;
  }
  .site-header__cta {
    flex-shrink: 0;
    margin-right: max(0px, var(--hero-image-photo-inset) - max(0px, (100vw - 90rem) / 2));
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header__nav, .site-header.is-open .site-header__nav, .site-header.is-open.is-closing .site-header__nav {
    transform: none;
    transition: none;
  }
  .site-header__nav-link, .site-header__nav-link::after {
    transition: none;
  }
}

.benefits {
  width: 100%;
  max-width: 120rem;
  padding: 2rem 5vw;
  margin-inline: auto;
  background-color: #aff173;
}
.benefits__container {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
}
.benefits__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.benefits__tag {
  color: #063231;
}
.benefits__title {
  color: #063231;
  font-size: clamp(2rem, 1.52381rem + 2.38095vw, 3rem);
  font-weight: 400;
}
.benefits__title strong {
  font-weight: 700;
}
.benefits__composition {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.benefits__media {
  width: 100%;
  max-width: 34.375rem;
  margin-inline: auto;
}
.benefits__image {
  width: 100%;
  height: auto;
  max-height: 34.375rem;
  margin-inline: auto;
  object-fit: contain;
}
.benefits__topics {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.benefits__topic-title {
  color: #063231;
  font-size: clamp(1.25rem, 1.13095rem + 0.59524vw, 1.5rem);
}
.benefits__topic-description {
  color: #626967;
  font-size: clamp(1.125rem, 1.06548rem + 0.29762vw, 1.25rem);
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .benefits__topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .benefits {
    padding-block: 5rem;
  }
  .benefits__composition {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 34.375rem) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
  }
  .benefits__media {
    grid-column: 2;
    grid-row: 1/3;
  }
  .benefits__topics {
    display: contents;
  }
  .benefits__topic--left-top, .benefits__topic--left-bottom {
    grid-column: 1;
  }
  .benefits__topic--right-top, .benefits__topic--right-bottom {
    grid-column: 3;
  }
  .benefits__topic--left-top, .benefits__topic--right-top {
    grid-row: 1;
    align-self: start;
  }
  .benefits__topic--left-bottom, .benefits__topic--right-bottom {
    grid-row: 2;
    align-self: end;
  }
}

.closing-cta {
  width: 100%;
  max-width: 90rem;
  padding-block: clamp(4rem, 2.33333rem + 8.33333vw, 7.5rem);
  padding-inline: 5vw;
  margin-inline: auto;
}
.closing-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 68.0625rem;
  margin-inline: auto;
  text-align: center;
}
.closing-cta__title {
  color: #063231;
  font-size: clamp(2rem, 1.04762rem + 4.7619vw, 4rem);
  line-height: 1.1;
}
.closing-cta__symbol {
  display: inline-block;
  width: auto;
  height: 1em;
  vertical-align: middle;
}
.closing-cta__subtitle {
  margin-top: 1rem;
  color: #626967;
  font-size: clamp(1.125rem, 1.06548rem + 0.29762vw, 1.25rem);
  line-height: 1.5;
}
.closing-cta__button {
  margin-top: 2.5rem;
}

.customer-journey {
  color: #ffffff;
}
.customer-journey__container, .customer-journey__layout, .customer-journey__content, .customer-journey__media {
  min-width: 0;
}
.customer-journey__layout {
  display: flex;
  flex-direction: column;
}
.customer-journey__tag {
  color: #aff173;
}
.customer-journey__title {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 1.52381rem + 2.38095vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}
.customer-journey__title strong {
  color: #aff173;
  font-weight: 600;
}
.customer-journey__description {
  margin-top: 1rem;
  color: #ffffff;
  font-size: clamp(1.125rem, 1.06548rem + 0.29762vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
}
.customer-journey__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 2.5rem;
}
.customer-journey__step {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  border-radius: 0.25rem;
  background-color: rgba(175, 241, 115, 0.5);
}
.customer-journey__step-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}
.customer-journey__step-content {
  margin-top: 1rem;
}
.customer-journey__step-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
}
.customer-journey__step-description {
  margin-top: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.customer-journey__media {
  margin-top: 2.5rem;
}
.customer-journey__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  box-shadow: 6px 6px 0 #ffffff;
}
.customer-journey__closing {
  margin-top: 2.5rem;
  color: #ffffff;
  font-size: clamp(1.125rem, 1.06548rem + 0.29762vw, 1.25rem);
  text-align: center;
}
@media (min-width: 768px) {
  .customer-journey__steps {
    gap: 1.5rem;
  }
  .customer-journey__step {
    flex-direction: row;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  .customer-journey__step-content {
    margin-top: 0;
    margin-left: 1rem;
  }
  .customer-journey__closing {
    margin-top: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .customer-journey__layout {
    display: grid;
    grid-template-areas: "media content";
    grid-template-columns: minmax(0, 600px) minmax(0, 29rem);
    align-items: stretch;
    justify-content: space-between;
    gap: 2.5rem;
    width: 100%;
  }
  .customer-journey__content {
    display: flex;
    flex-direction: column;
    grid-area: content;
    width: 100%;
    max-width: 29rem;
    min-width: 0;
  }
  .customer-journey__steps {
    margin-top: auto;
    padding-top: 2.5rem;
  }
  .customer-journey__media {
    grid-area: media;
    margin-top: 0;
    width: 100%;
    max-width: 600px;
    min-width: 0;
    min-height: 0;
  }
  .customer-journey__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.faq {
  --faq-icon-size: clamp(24px, calc(24px + (100vw - 320px) / 84), 32px);
  width: 100%;
  background-color: #063231;
  color: #ffffff;
}
.faq__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  padding-block: clamp(2rem, 32px + (100vw - 320px) / 14, 5rem);
  padding-inline: clamp(1rem, 16px + (100vw - 320px) * 106 / 880, 122px);
}
.faq__intro, .faq__items {
  min-width: 0;
}
.faq__tag {
  color: #ffffff;
}
.faq__title {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 32px + (100vw - 320px) / 42, 3rem);
  font-weight: 400;
  line-height: 1.1;
}
.faq__subtitle {
  margin-top: 1rem;
  font-size: clamp(1.125rem, 18px + (100vw - 320px) / 336, 1.25rem);
  line-height: 1.5;
}
.faq__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(135deg, #aff173 0%, #063231 100%);
  opacity: 0.2;
}
.faq__trigger {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(1.125rem, 18px + (100vw - 320px) / 112, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: padding-bottom 0.34s ease;
}
.faq__trigger:focus-visible {
  outline: 2px solid #aff173;
  outline-offset: 4px;
}
.faq__item:first-child .faq__trigger {
  padding-top: 0;
}
.faq__trigger[aria-expanded=true] {
  padding-bottom: 0;
}
.faq__icon {
  width: var(--faq-icon-size);
  height: var(--faq-icon-size);
  flex-shrink: 0;
}
.faq__icon--collapse, .faq__trigger[aria-expanded=true] .faq__icon--expand {
  display: none;
}
.faq__trigger[aria-expanded=true] .faq__icon--collapse {
  display: block;
}
.faq__answer {
  padding-left: calc(var(--faq-icon-size) + 1rem);
  font-size: clamp(1.125rem, 18px + (100vw - 320px) / 336, 1.25rem);
  line-height: 1.5;
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 0.34s ease, opacity 0.34s ease;
}
.faq__answer:not([hidden]) {
  display: grid;
}
.faq__answer[data-faq-open=false] {
  grid-template-rows: 0fr;
  opacity: 0;
}
.faq__answer-content {
  min-height: 0;
  overflow: hidden;
}
.faq__answer-content > :first-child {
  margin-top: 0.5rem;
}
.faq__answer-content > :last-child {
  margin-bottom: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .faq__trigger, .faq__answer {
    transition: none;
  }
}
@media (min-width: 768px) {
  .faq__container {
    flex-direction: row;
    align-items: flex-start;
  }
  .faq__intro {
    flex: 2 1 0;
  }
  .faq__items {
    flex: 3 1 0;
  }
}
@media (min-width: 992px) {
  .faq__container {
    justify-content: space-between;
  }
  .faq__intro {
    flex: 0 1 calc((100% - 2.5rem) * 0.4);
  }
  .faq__items {
    flex: 0 1 calc((100% - 2.5rem) * 0.6);
    max-width: 600px;
  }
}
@media (min-width: 100rem) {
  .faq {
    max-width: 1440px;
    margin-inline: auto;
    border-radius: 0.25rem;
  }
}

@media (min-width: 1400px) {
  body:has(.hero) {
    position: relative;
    isolation: isolate;
    --hero-image-width: min(54vw, 54rem);
    --hero-image-photo-inset: calc(var(--hero-image-width) * 457 / 2408);
    --hero-image-right: max(
      0px,
      calc((100vw - 90rem) / 2 - var(--hero-image-photo-inset))
    );
  }
}
.hero {
  padding-inline: 5vw;
}
.hero__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__title {
  font-size: clamp(2rem, 1.0476rem + 4.7619vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
}
.hero__symbol {
  display: inline-block;
  width: auto;
  height: 1em;
  vertical-align: middle;
}
.hero__subtitle {
  margin-top: 1rem;
  font-size: clamp(1.125rem, 0.9464rem + 0.8929vw, 1.5rem);
  line-height: 1.5;
  color: #626967;
}
.hero__button {
  margin-top: clamp(1.5rem, 1.0238rem + 2.381vw, 2.5rem);
}
.hero__visual {
  width: 100%;
  margin-top: 2.5rem;
}
.hero__image {
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .hero__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }
  .hero__copy {
    max-width: 708px;
  }
  .hero__visual {
    align-self: start;
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .hero__visual {
    aspect-ratio: 2408/2574;
  }
  .hero__image {
    position: absolute;
    top: 0;
    right: var(--hero-image-right);
    width: var(--hero-image-width);
    pointer-events: none;
  }
}

.plans {
  padding-block: clamp(4rem, 64px + (100vw - 320px) / 12, 7.5rem);
  padding-inline: 5vw;
  color: #063231;
}
.plans__container {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
}
.plans__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.plans__tag {
  color: #063231;
}
.plans__title {
  font-size: clamp(2rem, 32px + (100vw - 320px) / 42, 3rem);
  font-weight: 400;
}
.plans__title strong {
  font-weight: 600;
}
.plans__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 40px + (100vw - 320px) / 16.8, 5rem);
}
.plans__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  background-color: rgba(175, 241, 115, 0.2);
  box-shadow: 0 2px 8px rgba(6, 50, 49, 0.06), 0 12px 32px rgba(6, 50, 49, 0.1);
}
.plans__card--featured {
  background-color: #aff173;
}
.plans__card-title {
  font-size: clamp(2rem, 32px + (100vw - 320px) / 84, 2.5rem);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.plans__description {
  margin-top: 1rem;
  color: #626967;
  font-size: clamp(1.125rem, 18px + (100vw - 320px) / 336, 1.25rem);
  line-height: 1.5;
}
.plans__price {
  container-type: inline-size;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: clamp(2rem, 32px + (100vw - 320px) / 28, 3.5rem);
  font-weight: 600;
}
.plans__amount {
  font-size: min(clamp(2rem, 32px + (100vw - 320px) / 28, 3.5rem), (100cqi - 5rem) / 4.5);
  white-space: nowrap;
}
.plans__price--text {
  display: block;
  font-size: 2rem;
}
.plans__period, .plans__note {
  color: #626967;
  font-size: 1.125rem;
  font-weight: 400;
}
.plans__period {
  flex-shrink: 0;
}
.plans__divider {
  width: 100%;
  height: 1px;
  margin: 1rem 0 1.5rem;
  border: 0;
  background-color: rgba(98, 105, 103, 0.5);
}
.plans__included-title {
  color: #18302f;
  font-size: 1.25rem;
  font-weight: 600;
}
.plans__benefits {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.plans__benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}
.plans__benefit-icon {
  width: clamp(24px, 24px + (100vw - 320px) / 84, 32px);
  aspect-ratio: 1;
  flex-shrink: 0;
  color: #063231;
  background-color: currentColor;
  -webkit-mask: url("../../src/assets/icons/check-circle.svg") center/contain no-repeat;
  mask: url("../../src/assets/icons/check-circle.svg") center/contain no-repeat;
}
.plans__card--featured .plans__benefit-icon {
  color: #ffffff;
}
.plans__button {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: #aff173;
  font-size: clamp(1.25rem, 20px + (100vw - 320px) / 168, 1.5rem);
  font-weight: 600;
  text-align: center;
  transition: color 0.34s ease;
}
.plans__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #aff173 0%, #063231 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s ease;
}
.plans__button-label {
  position: relative;
  z-index: 1;
}
.plans__card--featured .plans__button {
  background-color: #063231;
  color: #ffffff;
}
.plans__custom {
  margin-top: clamp(2.5rem, 40px + (100vw - 320px) / 16.8, 5rem);
  font-family: "Urbanist", sans-serif;
  font-size: clamp(1.125rem, 18px + (100vw - 320px) / 112, 1.5rem);
  text-align: center;
}
.plans__contact {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}
.plans__button:focus-visible, .plans__contact:focus-visible {
  outline: 2px solid #063231;
  outline-offset: 4px;
}
.plans__button:focus-visible {
  color: #ffffff;
}
.plans__button:focus-visible::before {
  transform: scaleX(1);
}
@media (hover: hover) and (pointer: fine) {
  .plans__button:hover {
    color: #ffffff;
  }
  .plans__button:hover::before {
    transform: scaleX(1);
  }
}
@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .plans__card {
    position: relative;
    transform-origin: center;
    transition: transform 0.34s ease, box-shadow 0.34s ease;
  }
  .plans__card:first-child {
    transform-origin: left center;
  }
  .plans__card:last-child {
    transform-origin: right center;
  }
  .plans__card:hover, .plans__card:focus-within {
    z-index: 2;
    transform: scale(1.015);
    box-shadow: 0 4px 12px rgba(6, 50, 49, 0.08), 0 18px 44px rgba(6, 50, 49, 0.16);
  }
}
@media (prefers-reduced-motion: reduce) {
  .plans__card, .plans__card:hover, .plans__card:focus-within {
    transition: none;
    transform: none;
  }
  .plans__button, .plans__button::before {
    transition: none;
  }
}
@media (min-width: 768px) {
  .plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plans__card:last-child {
    grid-column: 1/-1;
    width: calc((100% - 1.5rem) / 2);
    justify-self: center;
  }
}
@media (min-width: 992px) {
  .plans__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .plans__card {
    padding: 2rem 1.5rem;
  }
  .plans__card:last-child {
    grid-column: auto;
    width: 100%;
  }
}

.platform-features {
  margin-top: 6.5rem;
  color: #ffffff;
}
.platform-features__container, .platform-features__introduction, .platform-features__header, .platform-features__description, .platform-features__showcase, .platform-features__modules, .platform-features__preview, .platform-features__module-card {
  min-width: 0;
}
.platform-features__tag {
  color: #aff173;
}
.platform-features__title {
  margin-top: 0.5rem;
  color: #ffffff;
  font-size: clamp(2rem, 1.52381rem + 2.38095vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}
.platform-features__title strong {
  color: #aff173;
  font-weight: 600;
}
.platform-features__description {
  margin-top: 1rem;
  color: #ffffff;
  font-size: clamp(1.125rem, 1.06548rem + 0.29762vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
}
.platform-features__showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-top: clamp(2.5rem, 1.30952rem + 5.95238vw, 5rem);
}
.platform-features__modules-list {
  display: grid;
  gap: 12px;
  width: 100%;
}
.platform-features__module-item {
  min-width: 0;
}
.platform-features__module-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  border: 0;
  border-radius: 0.25rem;
  background-color: rgba(175, 241, 115, 0.35);
  color: #063231;
  font-family: "Urbanist", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.34s ease, transform 0.34s ease;
}
.platform-features__module-button.is-active {
  background-color: #aff173;
}
.platform-features__module-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.platform-features__module-label {
  min-width: 0;
}
.platform-features__module-check {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  margin-left: 1rem;
  background-color: currentColor;
  -webkit-mask: url("../../src/assets/icons/check.svg") center/contain no-repeat;
  mask: url("../../src/assets/icons/check.svg") center/contain no-repeat;
}
.platform-features__preview {
  width: 100%;
  overflow: hidden;
  border-radius: 0.25rem;
}
.platform-features__preview-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.34s ease, transform 0.34s ease;
}
.platform-features__module-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: 2rem 1rem;
  border-radius: 0.25rem;
  background-color: #fbfbf5;
  color: #063231;
  text-align: left;
}
.platform-features__module-symbol {
  width: auto;
  height: 56px;
  transition: opacity 0.34s ease, transform 0.34s ease;
}
.platform-features__module-content {
  margin-top: 1.5rem;
  transition: opacity 0.34s ease, transform 0.34s ease;
}
.platform-features__module-title {
  color: #063231;
  font-size: clamp(1.125rem, 0.94643rem + 0.89286vw, 1.5rem);
  font-weight: 600;
  line-height: 1.1;
}
.platform-features__module-subtitle, .platform-features__module-description {
  color: #063231;
  font-size: 1rem;
  font-weight: 400;
}
.platform-features__module-subtitle {
  margin-top: 0.5rem;
}
.platform-features__module-description {
  margin-top: 1.5rem;
  color: #18302f;
  line-height: 1.5;
  transition: opacity 0.34s ease, transform 0.34s ease;
}
.platform-features.is-changing .platform-features__preview-image, .platform-features.is-changing .platform-features__module-symbol, .platform-features.is-changing .platform-features__module-content, .platform-features.is-changing .platform-features__module-description {
  opacity: 0;
  transform: translateY(0.5rem);
}
.platform-features__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.platform-features__pagination-item {
  display: block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999rem;
  background-color: rgba(175, 241, 115, 0.35);
  cursor: pointer;
  transition: flex-basis 0.34s ease, width 0.34s ease, background-color 0.34s ease;
}
.platform-features__pagination-item.is-active {
  flex-basis: 3rem;
  width: 3rem;
  background-color: #aff173;
}
.platform-features__pagination-item:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
@media (min-width: 768px) {
  .platform-features__showcase {
    grid-template-areas: "modules card" "preview preview";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .platform-features__modules {
    grid-area: modules;
  }
  .platform-features__preview {
    grid-area: preview;
  }
  .platform-features__module-card {
    grid-area: card;
  }
}
@media (min-width: 992px) {
  .platform-features__introduction {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    width: 100%;
  }
  .platform-features__header, .platform-features__description {
    flex: 0 1 calc((100% - 2.5rem) / 2);
    margin-top: 0;
  }
  .platform-features__showcase {
    grid-template-areas: "modules preview card";
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
  .platform-features__modules, .platform-features__modules-list, .platform-features__module-item, .platform-features__module-button, .platform-features__preview, .platform-features__module-card {
    height: 100%;
  }
  .platform-features__modules-list {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .platform-features__module-button {
    padding: 1rem 1.5rem;
  }
  .platform-features__preview-image {
    height: 100%;
  }
  .platform-features__module-card {
    padding-inline: 1.5rem;
  }
  .platform-features__pagination {
    margin-top: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .platform-features__module-button, .platform-features__preview-image, .platform-features__module-symbol, .platform-features__module-content, .platform-features__module-description, .platform-features__pagination-item {
    transition: none;
  }
  .platform-features.is-changing .platform-features__preview-image, .platform-features.is-changing .platform-features__module-symbol, .platform-features.is-changing .platform-features__module-content, .platform-features.is-changing .platform-features__module-description {
    opacity: 1;
    transform: none;
  }
}

.product-showcase {
  width: 100%;
  max-width: 90rem;
  margin-top: clamp(4rem, 2.72727rem + 6.36364vw, 7.5rem);
  padding-block: clamp(2rem, 0.57143rem + 7.14286vw, 5rem);
  padding-inline: 5vw;
  margin-inline: auto;
  background-color: #063231;
}
@media (min-width: 1200px) {
  .product-showcase {
    padding-inline: 122px;
  }
}
@media (min-width: 100rem) {
  .product-showcase {
    border-radius: 0.25rem;
  }
}

.site-showcase {
  padding-block: clamp(4rem, 2.33333rem + 8.33333vw, 7.5rem);
  padding-inline: 5vw;
}
.site-showcase__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.site-showcase__media, .site-showcase__image {
  width: 100%;
}
.site-showcase__image {
  height: auto;
  box-shadow: 6px 6px 0 #063231;
}
.site-showcase__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-showcase__title {
  font-weight: 400;
  margin-top: 0.5rem;
  font-size: clamp(2rem, 1.52381rem + 2.38095vw, 3rem);
}
.site-showcase__title strong {
  font-weight: 600;
}
.site-showcase__description {
  margin-top: 1rem;
  font-size: clamp(1.125rem, 1.06548rem + 0.29762vw, 1.25rem);
  line-height: 1.5;
}
.site-showcase__button {
  margin-top: 2.5rem;
}
@media (min-width: 992px) {
  .site-showcase__container {
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    max-width: 90rem;
    margin-inline: auto;
  }
  .site-showcase__media {
    flex: 0 0 calc(60% - 1.2rem);
  }
  .site-showcase__content {
    flex: 0 0 calc(40% - 0.8rem);
  }
}

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