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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
}

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #004f44;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: block;
  text-decoration: none;
}

.header__logo-img {
  display: block;
  height: 1.5rem;
  width: auto;
}

.header__logo:hover .header__logo-img {
  opacity: 0.9;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #1fd95e;
  color: #004f44;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.1s;
}

.header__link:hover {
  background: #fff;
}

.header__link:active {
  transform: scale(0.98);
}

.hero {
  position: relative;
  min-height: 80vh;
  background-color: #004f44;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/home-pattern.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  color: #1fd95e;
}

.hero__title-highlight {
    display: inline-block;
    background-color: #1fd95e;
    border-radius: 1.5rem;
    color: #fff;
    line-height: 1;
    padding: .5rem .75rem;
    transform: rotate(-12.23deg);
    vertical-align: middle;
    font-size: 1.5rem;
}

.hero__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.promo-arrow,
.hero__arrow {
  position: absolute;
  left: 51%;
  top: 65%;
  width: 19.25rem;
  height: 12.8125rem;
  background-image: url('images/arrow.svg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(-142deg);
  pointer-events: none;
}

.hero__form-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero__form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero__form-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #004f44;
}

.hero__form-desc {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.hero__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}

.hero__required {
  color: #c00;
}

.hero__input {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.hero__input:focus {
  outline: none;
  border-color: #004f44;
  box-shadow: 0 0 0 2px rgba(0, 79, 68, 0.2);
}

.hero__input::placeholder {
  color: #999;
}

.hero__submit {
  margin-top: 0.25rem;
  padding: 0.875rem 1.5rem;
  background: #004f44;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.hero__submit:hover {
  background: #003d35;
}

.hero__submit:active {
  transform: scale(0.98);
}

/* ---------- About strip (below hero) ---------- */
.about-strip {
  background: linear-gradient(180deg, #fff 0%, #f5f9f8 100%);
  padding: 4rem 2rem;
  border-bottom: 1px solid #e0e8e5;
}

.about-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-strip__lead {
  margin: 0 auto 3rem;
  max-width: 36ch;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  color: #004f44;
  text-align: center;
}

.about-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-strip__card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 79, 68, 0.06);
  border: 1px solid rgba(0, 79, 68, 0.1);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.about-strip__card:hover {
  box-shadow: 0 8px 24px rgba(0, 79, 68, 0.1);
  border-color: rgba(0, 79, 68, 0.2);
}

.about-strip__card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1fd95e;
  margin-bottom: 0.75rem;
}

.about-strip__card-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
}

/* ---------- Income section ---------- */
.income {
  background: #f8faf9;
  padding: 4rem 2rem;
}

.income__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.income__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #004f44;
}

.income__list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.income__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #333;
}

.income__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  background: #1fd95e;
  border-radius: 50%;
}

.income__cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: #004f44;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}

.income__cta:hover {
  background: #003d35;
}

.income__cta:active {
  transform: scale(0.98);
}

.income__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.income__mockup {
  max-width: 350px;
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- How it works ---------- */
.how {
  background: #fff;
  padding: 4rem 2rem;
  border-top: 1px solid #e0e8e5;
}

.how__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #004f44;
}

.how__subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #555;
}

.how__cta {
  display: inline-block;
  margin-bottom: 3rem;
  padding: 0.75rem 1.5rem;
  background: #1fd95e;
  color: #004f44;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}

.how__cta:hover {
  background: #1ae055;
}

.how__cta:active {
  transform: scale(0.98);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.how__step {
  padding: 0 0.5rem;
}

.how__step-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.25rem;
  display: block;
}

.how__step-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #004f44;
}

.how__step-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

/* ---------- Payouts ---------- */
.payouts {
  position: relative;
  background-color: #004f44;
  padding: 4rem 2rem;
  overflow: hidden;
}

.payouts__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/home-pattern.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.payouts__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.payouts__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
}

.payouts__subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.payouts__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.payouts__logo {
  height: 2.5rem;
  width: auto;
  max-width: 5rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.payouts__logo:hover {
  opacity: 1;
}

/* ---------- FAQ ---------- */
.faq {
  background: #f8faf9;
  padding: 4rem 2rem;
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #004f44;
  text-align: center;
}

.faq__subtitle {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #555;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e8e5;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq__item:hover,
.faq__item[open] {
  border-color: rgba(0, 79, 68, 0.25);
  box-shadow: 0 4px 12px rgba(0, 79, 68, 0.08);
}

.faq__question {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #004f44;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1fd95e;
  transition: transform 0.2s;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.faq__answer:first-of-type {
  padding-top: 0;
  margin-top: -0.25rem;
}

/* ---------- CTA bottom ---------- */
.cta-bottom {
  position: relative;
  background: #131414;
  padding: 3.5rem 2rem;
  text-align: center;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 80px;
  border-radius: 30px;
  margin-bottom: 80px;
}

.cta-bottom__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width:  min(45vw, 380px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  z-index: 0;
}

.cta-bottom__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-bottom__text {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.cta-bottom__btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #1fd95e;
  color: #004f44;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}

.cta-bottom__btn:hover {
  background: #fff;
}

.cta-bottom__btn:active {
  transform: scale(0.98);
}

/* ---------- About page ---------- */
.about-page {
  background: #fff;
  padding: 3rem 2rem 4rem;
  min-height: 60vh;
}

.about-page__inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-page__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1fd95e;
}

.about-page__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #004f44;
  line-height: 1.2;
}

.about-page__lead {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.about-page__intro {
  margin: 0 0 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #004f44;
}

.about-page__outro {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid #e8ecea;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  text-align: center;
}

.about-page__blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-page__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8ecea;
}

.about-page__block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.about-page__block-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #004f44;
}

.about-page__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(31, 217, 94, 0.12);
  border-radius: 12px;
  color: #004f44;
}

.about-page__icon svg {
  width: 24px;
  height: 24px;
}

.about-page__block-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  max-width: 52ch;
}

.about-page__cta {
  margin-top: 3rem;
  text-align: center;
}

.about-page__btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #004f44;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
}

.about-page__btn:hover {
  background: #003d35;
}

.about-page__btn:active {
  transform: scale(0.98);
}

/* ---------- Contact page ---------- */
.contact-page {
  background: #fff;
  padding: 3rem 2rem 4rem;
  min-height: 60vh;
}

.contact-page__inner {
  max-width: 520px;
  margin: 0 auto;
}

.contact-page__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #004f44;
  line-height: 1.2;
}

.contact-page__lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-page__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-page__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}

.contact-page__required {
  color: #c00;
}

.contact-page__input,
.contact-page__textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-page__input:focus,
.contact-page__textarea:focus {
  outline: none;
  border-color: #004f44;
  box-shadow: 0 0 0 2px rgba(0, 79, 68, 0.2);
}

.contact-page__input::placeholder,
.contact-page__textarea::placeholder {
  color: #999;
}

.contact-page__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-page__submit {
  margin-top: 0.25rem;
  padding: 0.875rem 1.5rem;
  background: #004f44;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.contact-page__submit:hover {
  background: #003d35;
}

.contact-page__submit:active {
  transform: scale(0.98);
}

/* ---------- Legal pages (Privacy, Terms) ---------- */
.legal-page {
  background: #fff;
  padding: 3rem 2rem 4rem;
  min-height: 60vh;
}

.legal-page__inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #004f44;
  line-height: 1.2;
}

.legal-page__updated {
  margin: 0 0 2.5rem;
  font-size: 0.9rem;
  color: #666;
}

.legal-page__content {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.legal-page__section {
  margin-bottom: 2rem;
}

.legal-page__section:last-child {
  margin-bottom: 0;
}

.legal-page__heading {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #004f44;
}

.legal-page__section p {
  margin: 0 0 1rem;
}

.legal-page__section p:last-child {
  margin-bottom: 0;
}

.legal-page__section ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.5rem;
}

.legal-page__section li {
  margin-bottom: 0.35rem;
}

.legal-page__link {
  color: #004f44;
  text-decoration: underline;
}

.legal-page__link:hover {
  color: #1fd95e;
}

@media (max-width: 900px) {
  .about-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .income__mockup {
    max-width: 280px;
  }

  .cta-bottom {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .hero__arrow,
  .promo-arrow {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__form-wrap {
    justify-content: center;
  }

  .hero__form-card {
    max-width: 100%;
  }

  .about-strip {
    padding: 3rem 1.5rem;
  }

  .about-strip__lead {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }

  .about-strip__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-page {
    padding: 2rem 1.5rem 3rem;
  }

  .about-page__block {
    gap: 0.75rem;
  }

  .about-page__cta {
    margin-top: 2.5rem;
  }

  .contact-page {
    padding: 2rem 1.5rem 3rem;
  }

  .contact-page__lead {
    margin-bottom: 1.5rem;
  }

  .legal-page {
    padding: 2rem 1.5rem 3rem;
  }

  .legal-page__updated {
    margin-bottom: 2rem;
  }

  .legal-page__section {
    margin-bottom: 1.5rem;
  }

  .income__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .income__mockup {
    max-width: 260px;
    margin: 0 auto;
  }

  .income__list li {
    padding-left: 0;
    padding-right: 1.75rem;
  }

  .income__list li::before {
    left: auto;
    right: 0.5rem;
  }

  .how {
    padding: 3rem 1.5rem;
  }

  .how__cta {
    margin-bottom: 2.5rem;
  }

  .payouts {
    padding: 3rem 1.5rem;
  }

  .payouts__logos {
    gap: 1.5rem;
  }

  .payouts__logo {
    height: 2rem;
  }

  .faq {
    padding: 3rem 1.5rem;
  }

  .faq__question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq__answer {
    padding: 0 1.25rem 1rem;
  }

  .cta-bottom {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }

  .cta-bottom__img {
    width: min(50vw, 220px);
    opacity: 0.8;
  }

  .cta-bottom__text {
    font-size: 1.1rem;
  }

  .header {
    padding: 0.6rem 1rem;
  }

  .header__logo-img {
    height: 1.35rem;
  }

  .footer__inner {
    padding: 1.5rem 1rem 0;
  }

  .footer__top {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    grid-template-columns: 1fr !important;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    min-width: 0;
    max-width: none;
  }

  .footer__nav-link {
    font-size: 0.9rem;
  }

  .footer__contact {
    text-align: center;
  }

  .footer__contact .footer__label {
    margin-top: 0.75rem;
  }

  .footer__contact .footer__label:first-child {
    margin-top: 0;
  }

  .footer__contact .footer__text {
    font-size: 0.85rem;
  }

  .footer__bottom {
    padding: 1rem 0;
  }

  .footer__copy {
    font-size: 0.8rem;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: #003d35;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  overflow-x: hidden;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
  box-sizing: border-box;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}

.footer__brand {
  @media (max-width: 768px) {
    text-align: center;
  }
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__logo {
  display: inline-block;
  text-decoration: none;
}

.footer__logo-img {
  display: block;
  height: 1.4rem;
  width: auto;
}

.footer__logo:hover .footer__logo-img {
  opacity: 0.9;
}

.footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__links-wrap {
  display: flex;
  justify-content: center;
  @media (max-width: 768px) {
    text-align: center;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
  max-width: 200px;
}

.footer__nav-link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav-link:hover {
  color: #1fd95e;
}

.footer__contact {
  text-align: right;
  @media (max-width: 768px) {
    text-align: center;
  }
}

.footer__contact .footer__label {
  margin-top: 1rem;
}

.footer__contact .footer__label:first-child {
  margin-top: 0;
}

.footer__label {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

.footer__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer__link:hover {
  color: #1fd95e;
}

.footer__bottom {
  padding: 1.25rem 0;
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
