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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[class],
ol[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #141A16;
  background: #F6F8F4;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #141A16;
}

.h1 {
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .h1 {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .h1 {
    font-size: 56px;
  }
}

.h2 {
  font-size: 26px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 34px;
  }
}
@media (min-width: 1024px) {
  .h2 {
    font-size: 40px;
  }
}

.h3 {
  font-size: 20px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 24px;
  }
}

.subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #5B6660;
}
@media (min-width: 768px) {
  .subtitle {
    font-size: 18px;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .section-head {
    margin-bottom: 48px;
  }
}
.section-head .h2 {
  margin-bottom: 12px;
}

.section-head--center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

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

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: #C3DE2E;
  color: #141A16;
  box-shadow: 0 8px 20px rgba(195, 222, 46, 0.35);
}
.btn--primary:hover {
  background: #A8C420;
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--outline-dark {
  background: transparent;
  color: #141A16;
  border: 1.5px solid rgba(20, 26, 22, 0.25);
}
.btn--outline-dark:hover {
  background: rgba(20, 26, 22, 0.06);
}

.btn--dark {
  background: #226D32;
  color: #FFFFFF;
}
.btn--dark:hover {
  background: #164522;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 12px 20px;
  font-size: 13px;
}

.section--bg-alt {
  background: #EFF3EA;
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, #EFF3EA, #EFF3EA 10px, rgb(90.816399287%, 93.1122994652%, 87.9465240642%) 10px, rgb(90.816399287%, 93.1122994652%, 87.9465240642%) 20px);
  border: 1px dashed rgba(20, 26, 22, 0.25);
  border-radius: inherit;
  color: #5B6660;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  padding: 12px;
}
.img-placeholder span {
  max-width: 22ch;
}

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  padding: 16px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}
.consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.consent__inner {
  max-width: 960px;
  margin-inline: auto;
  background: #141A16;
  color: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .consent__inner {
    padding: 22px 28px;
    flex-wrap: nowrap;
  }
}
.consent__text {
  flex: 1 1 260px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.consent__text a {
  color: #C3DE2E;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent__text a:hover {
  color: #A8C420;
}
.consent__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .consent__actions {
    width: auto;
  }
}
.consent__accept {
  white-space: nowrap;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(246, 248, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E1E7DC;
}
.header__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0;
  height: 72px;
}
@media (min-width: 1024px) {
  .header__inner {
    height: 80px;
  }
}
.header__logo {
  display: block;
  width: 132px;
}
@media (min-width: 1024px) {
  .header__logo {
    width: 152px;
  }
}
.header__logo img {
  width: 100%;
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
.header__nav-link {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #141A16;
  transition: color 0.25s ease;
}
.header__nav-link:hover {
  color: #226D32;
}
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 12px;
}
.header__lang {
  display: none;
}
@media (min-width: 768px) {
  .header__lang {
    display: inline-block;
  }
}
.header__cta {
  display: none;
}
@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }
}
.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EFF3EA;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  position: relative;
  width: 20px;
  height: 2px;
  background: #141A16;
  transition: background-color 0.25s ease;
}
.header__burger span::before, .header__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #141A16;
  transition: transform 0.25s ease, top 0.25s ease;
}
.header__burger span::before {
  top: -6px;
}
.header__burger span::after {
  top: 6px;
}
.header__burger[aria-expanded=true] span {
  background: transparent;
}
.header__burger[aria-expanded=true] span::before {
  top: 0;
  transform: rotate(45deg);
}
.header__burger[aria-expanded=true] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 99;
  background: #F6F8F4;
  padding: 24px 20px 32px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav__link {
  display: block;
  width: 100%;
  padding: 14px 4px;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px solid #E1E7DC;
}
.mobile-nav__lang {
  margin-top: 20px;
  margin-bottom: 4px;
}
.mobile-nav__cta {
  margin-top: 24px;
}

.lang-switch {
  position: relative;
}
.lang-switch__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 6px;
  padding: 6px 10px;
  border: none;
  border-radius: 999px;
  background: #EFF3EA;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #141A16;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.lang-switch__toggle:hover {
  background: rgb(89.8467023173%, 92.385026738%, 86.6737967914%);
}
.lang-switch__flag {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}
.lang-switch__chevron {
  color: #5B6660;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.lang-switch.is-open .lang-switch__chevron {
  transform: rotate(180deg);
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 130px;
  background: #FFFFFF;
  border: 1px solid #E1E7DC;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 20;
}
.lang-switch.is-open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switch__option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #141A16;
  transition: background-color 0.25s ease;
}
.lang-switch__option:hover {
  background: #EFF3EA;
}
.lang-switch__option.is-active {
  background: #EFF3EA;
  color: #226D32;
}

body.nav-open {
  overflow: hidden;
}

.footer {
  background: #141A16;
  color: #FFFFFF;
  padding-block: 40px;
  position: relative;
}
.footer__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
  }
}
.footer__logo {
  width: 140px;
}
.footer__logo img {
  width: 100%;
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__nav {
    flex-direction: row;
    gap: 28px;
  }
}
.footer__nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}
.footer__nav-link:hover {
  color: #C3DE2E;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
}
.footer__legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease;
}
.footer__legal-link:hover {
  color: #C3DE2E;
}

.to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C3DE2E;
  color: #141A16;
  box-shadow: 0 8px 20px rgba(195, 222, 46, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 90;
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes hero-bg-reveal {
  from {
    opacity: 0;
    transform: translateX(72px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero {
  position: relative;
  padding-top: 112px;
  padding-bottom: 56px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 152px;
    padding-bottom: 96px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../imgs/hero-img.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: saturate(1.35) contrast(1.12) brightness(1.02);
  opacity: 0;
  animation: hero-bg-reveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
@media (max-width: 767px) {
  .hero::before {
    background-position: center;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 68% 45%, rgba(22, 69, 34, 0) 0%, rgba(22, 69, 34, 0.1) 55%, rgba(22, 69, 34, 0.28) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.hero__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 460px;
    align-items: center;
    gap: 32px;
  }
}
.hero__content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}
.hero__title {
  margin-bottom: 16px;
}
.hero__subtitle {
  margin-bottom: 28px;
  max-width: 46ch;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    margin-inline: 0;
  }
}
.hero__calculator-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__license {
  margin-top: 14px;
  max-width: 430px;
  text-align: center;
  font-size: 12px;
  color: #5B6660;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .hero__actions {
    justify-content: flex-start;
  }
}

.calculator-placeholder {
  background: #226D32;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  position: relative;
  min-height: 420px;
  padding: 24px;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.calculator-placeholder::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: #C3DE2E;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.55;
  pointer-events: none;
}
.calculator-placeholder__label {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 26ch;
}

.rates {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .rates {
    padding-block: 96px;
  }
}
.rates__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
.rates__card {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  padding: 20px;
  border: 1px solid #E1E7DC;
}
@media (min-width: 1024px) {
  .rates__card {
    padding: 32px;
  }
}
.rates__table-wrap {
  overflow-x: auto;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.rates__table-wrap.is-fading {
  opacity: 0;
  transform: translateY(8px);
}
.rates__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.rates__table th, .rates__table td {
  text-align: left;
  padding: 14px 12px;
  font-size: 14px;
  white-space: nowrap;
}
.rates__table thead th {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #5B6660;
  border-bottom: 1px solid #E1E7DC;
}
.rates__table tbody tr {
  border-bottom: 1px solid #E1E7DC;
}
.rates__table tbody tr:last-child {
  border-bottom: none;
}
.rates__table tbody td {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
}
.rates__table__currency {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
}
.rates__table__flag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 28px;
  height: 28px;
  min-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  background: #EFF3EA;
  color: #226D32;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
}
.rates__table__rate {
  color: #226D32;
}
.rates__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  margin-top: 20px;
}
.rates__page-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EFF3EA;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.rates__page-btn.is-active {
  background: #226D32;
  color: #FFFFFF;
}
.rates__page-btn:active {
  transform: scale(0.9);
}
.rates__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EFF3EA;
  transition: transform 0.15s ease;
}
.rates__nav-btn:active:not(:disabled) {
  transform: scale(0.9);
}
.rates__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.rates__note {
  margin-top: 16px;
  font-size: 13px;
  color: #5B6660;
  text-align: center;
}

.how {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .how {
    padding-block: 96px;
  }
}
.how {
  background: #226D32;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: #C3DE2E;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.how__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  z-index: 1;
}
.how h1, .how h2, .how h3, .how h4 {
  color: #FFFFFF;
}
.how__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.how__head .h2 {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.how__head .subtitle {
  color: rgba(255, 255, 255, 0.75);
}
.how__steps {
  position: relative;
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 768px) {
  .how__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .how__steps {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
  }
}
.how__center-icon {
  display: none;
}
@media (min-width: 1024px) {
  .how__center-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #C3DE2E;
    color: #141A16;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(195, 222, 46, 0.18);
  }
}
.how__step {
  counter-increment: step;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 24px 20px;
}
.how__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #C3DE2E;
  color: #141A16;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.how__step-num::before {
  content: counter(step);
}
.how__step-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.how__step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.how__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  margin-top: 40px;
}

.payments {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .payments {
    padding-block: 96px;
  }
}
.payments {
  padding-block: 40px;
}
@media (min-width: 1024px) {
  .payments {
    padding-block: 56px;
  }
}
.payments__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
.payments__title {
  font-size: 14px;
  color: #5B6660;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.payments__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .payments__row {
    gap: 32px;
  }
}
.payments__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 112px;
  height: 56px;
  padding: 10px 16px;
  background: #FFFFFF;
  border: 1px solid #E1E7DC;
  border-radius: 12px;
  flex-shrink: 0;
}
.payments__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.payments__note {
  margin-top: 24px;
  max-width: 56ch;
  margin-inline: auto;
  font-size: 14px;
  color: #5B6660;
}

.services {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .services {
    padding-block: 96px;
  }
}
.services__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
.services__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__card {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  border: 1px solid #E1E7DC;
  padding: 28px 24px;
}
.services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #EFF3EA;
  color: #226D32;
  margin-bottom: 20px;
}
.services__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services__text {
  font-size: 14px;
  color: #5B6660;
  line-height: 1.6;
}

.referral {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .referral {
    padding-block: 96px;
  }
}
.referral {
  background: #226D32;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.referral::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: #C3DE2E;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.referral__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  z-index: 1;
}
.referral h1, .referral h2, .referral h3, .referral h4 {
  color: #FFFFFF;
}
.referral__top {
  display: grid;
  gap: 32px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .referral__top {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }
}
.referral__head .h2 {
  color: #FFFFFF;
  margin-bottom: 12px;
}
.referral__head .subtitle {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}
.referral__illustration {
  aspect-ratio: 3/2;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.referral__illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.referral__columns {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .referral__columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.referral__block-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.referral__steps {
  display: grid;
  gap: 12px;
}
.referral__step {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
}
.referral__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #C3DE2E;
  color: #141A16;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.referral__step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.referral__list {
  display: grid;
  gap: 10px;
}
.referral__list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.referral__list-item::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: #C3DE2E;
}
.referral__realtors {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 28px 24px;
}
@media (min-width: 1024px) {
  .referral__realtors {
    padding: 40px;
  }
}
.referral__realtors-inner {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .referral__realtors-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
  }
}
.referral__realtors-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .referral__realtors-title {
    font-size: 24px;
  }
}

.faq {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .faq {
    padding-block: 96px;
  }
}
.faq__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 860px;
}
.faq__list {
  display: grid;
  gap: 12px;
}
.faq__item {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  border: 1px solid #E1E7DC;
  overflow: hidden;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .faq__question {
    padding: 22px 28px;
    font-size: 16px;
  }
}
.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EFF3EA;
  color: #226D32;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.faq__icon svg {
  transition: transform 0.25s ease;
}
.faq__item.is-open .faq__icon {
  background: #C3DE2E;
}
.faq__item.is-open .faq__icon svg {
  transform: rotate(45deg);
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__item.is-open .faq__answer-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.faq__answer-inner {
  overflow: hidden;
}
.faq__answer-text {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #5B6660;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (min-width: 768px) {
  .faq__answer-text {
    padding: 0 28px 24px;
  }
}
.faq__answer-text a {
  color: #226D32;
  font-weight: 600;
  text-decoration: underline;
}
.faq__answer-text p + p {
  margin-top: 10px;
}
.faq__footer {
  background: #EFF3EA;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  margin-top: 24px;
  padding: 28px 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .faq__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    text-align: left;
  }
}
.faq__footer-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.faq__footer-text {
  font-size: 14px;
  color: #5B6660;
}
.faq__footer-cta {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .faq__footer-cta {
    margin-top: 0;
    flex-shrink: 0;
  }
}

.reviews {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .reviews {
    padding-block: 96px;
  }
}
.reviews__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
.reviews__head {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .reviews__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 40px;
  }
}
.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #226D32;
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .reviews__link {
    margin-top: 0;
    flex-shrink: 0;
  }
}
.reviews__viewport {
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reviews__card {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  border: 1px solid #E1E7DC;
  flex: 0 0 280px;
  padding: 20px;
}
@media (min-width: 768px) {
  .reviews__card {
    flex-basis: 320px;
    padding: 24px;
  }
}
.reviews__author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 14px;
}
.reviews__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #226D32;
  color: #FFFFFF;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.reviews__author-name {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}
.reviews__author-role {
  font-size: 12px;
  color: #5B6660;
}
.reviews__text {
  font-size: 14px;
  line-height: 1.6;
  color: #141A16;
}
.reviews__source-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #226D32;
  text-decoration: underline;
}
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
  margin-top: 28px;
}
.reviews__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EFF3EA;
  transition: background-color 0.25s ease, transform 0.15s ease;
}
.reviews__arrow:hover {
  background: #C3DE2E;
}
.reviews__arrow:active:not(:disabled) {
  transform: scale(0.9);
}
.reviews__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.reviews__arrow:disabled:hover {
  background: #EFF3EA;
}
.reviews__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E1E7DC;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.reviews__dot.is-active {
  background: #226D32;
  transform: scale(1.3);
}

.office {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .office {
    padding-block: 96px;
  }
}
.office__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
.office__card {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  border: 1px solid #E1E7DC;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .office__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.office__photo {
  aspect-ratio: 16/10;
  border-radius: 0;
  overflow: hidden;
}
.office__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .office__photo {
    height: 100%;
    aspect-ratio: auto;
  }
}
.office__body {
  padding: 28px 24px;
}
@media (min-width: 1024px) {
  .office__body {
    padding: 40px;
    align-self: center;
  }
}
.office__name {
  margin-bottom: 12px;
}
.office__desc {
  font-size: 14px;
  color: #5B6660;
  margin-bottom: 24px;
  line-height: 1.6;
}
.office__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #E1E7DC;
}
.office__row:last-of-type {
  border-bottom: 1px solid #E1E7DC;
}
.office__row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EFF3EA;
  color: #226D32;
}
.office__row-label {
  font-size: 12px;
  color: #5B6660;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.office__row-value {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.office__cta {
  margin-top: 24px;
}

.page-content {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .page-content {
    padding-block: 96px;
  }
}
.page-content__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 860px;
}
.page-content__title {
  margin: 0 0 8px;
}
.page-content__updated {
  color: #5B6660;
  font-size: 14px;
  margin: 0 0 40px;
}
.page-content__body {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 26, 22, 0.08);
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .page-content__body {
    padding: 48px 56px;
  }
}
.page-content__body h2, .page-content__body h3, .page-content__body h4 {
  margin: 1.6em 0 0.6em;
  text-transform: none;
}
.page-content__body h2:first-child, .page-content__body h3:first-child, .page-content__body h4:first-child {
  margin-top: 0;
}
.page-content__body h2 {
  font-size: 22px;
}
.page-content__body h3 {
  font-size: 18px;
}
.page-content__body p, .page-content__body ul, .page-content__body ol {
  margin: 0 0 1em;
  color: #141A16;
}
.page-content__body ul, .page-content__body ol {
  padding-left: 1.3em;
}
.page-content__body ul li + li, .page-content__body ol li + li {
  margin-top: 0.4em;
}
.page-content__body a {
  color: #226D32;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content__body a:hover {
  color: #164522;
}
.page-content__body strong {
  font-weight: 700;
}
.page-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.4em;
  font-size: 14px;
}
.page-content__body table th, .page-content__body table td {
  border: 1px solid #E1E7DC;
  padding: 10px 12px;
  text-align: left;
}
.page-content__body table th {
  background: #EFF3EA;
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
}
.page-content__body blockquote {
  margin: 0 0 1.4em;
  padding: 12px 20px;
  border-left: 3px solid #C3DE2E;
  background: #EFF3EA;
  color: #5B6660;
}

.error-404-section {
  padding-block: 56px;
}
@media (min-width: 1024px) {
  .error-404-section {
    padding-block: 96px;
  }
}
.error-404-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
}
.error-404-section__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 620px;
  text-align: center;
}
.error-404-section__code {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  color: #C3DE2E;
  -webkit-text-stroke: 2px #141A16;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .error-404-section__code {
    font-size: 140px;
  }
}
.error-404-section__title {
  margin: 0 0 12px;
}
.error-404-section__text {
  color: #5B6660;
  margin: 0 0 32px;
  font-size: 16px;
}
.error-404-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}
