@font-face {
  font-family: "TT Lakes Neue";
  src: url("../fonts/TT-Lakes-Neue-Trial-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-accent: #3ddc97;
  --color-white: #fbfbfb;
  --color-black: #000000;
  --color-btn-text: #04050a;

  --font-heading: "TT Lakes Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
}

/* ========== Hero ========== */

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    url("../img/hero-bg.jpg") center / cover no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 24px 120px;
}

.hero__logo {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.hero__logo img {
  width: 96px;
  height: auto;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 780px;
  margin-top: 72px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(61, 220, 151, 0.55);
  border-radius: 999px;
  background: rgba(8, 18, 14, 0.55);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.hero__title {
  margin-top: 22px;
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.hero__title span {
  display: block;
  color: var(--color-accent);
}

.hero__text {
  margin-top: 18px;
  max-width: 460px;
  color: rgba(251, 251, 251, 0.88);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 400;
  line-height: 1.55;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 28px;
  border-radius: 24px 0 24px 0;
  background: var(--color-accent);
  color: var(--color-btn-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(61, 220, 151, 0.35),
    0 0 28px rgba(61, 220, 151, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero__btn img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(61, 220, 151, 0.45),
    0 0 36px rgba(61, 220, 151, 0.55),
    0 14px 32px rgba(0, 0, 0, 0.4);
}

.hero__badges {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(61, 220, 151, 0.35);
  border-radius: 16px;
  background: rgba(10, 14, 16, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(61, 220, 151, 0.12);
  white-space: nowrap;
  animation: hero-float 5.5s ease-in-out infinite;
}

.hero__badge img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero__badge span {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero__badge--left-1 {
  top: 42%;
  left: 4.5%;
  animation-delay: 0s;
}

.hero__badge--left-2 {
  top: 62%;
  left: 11%;
  animation-delay: -1.4s;
}

.hero__badge--right-1 {
  top: 38%;
  right: 5%;
  animation-delay: -2.2s;
}

.hero__badge--right-2 {
  top: 56%;
  right: 8%;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(61, 220, 151, 0.28);
  animation-delay: -3.1s;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1100px) {
  .hero__badge--left-1 {
    left: 2%;
  }

  .hero__badge--left-2 {
    left: 5%;
  }

  .hero__badge--right-1 {
    right: 2%;
  }

  .hero__badge--right-2 {
    right: 3%;
  }
}

@media (max-width: 900px) {
  .hero {
    background-position: center top;
  }

  .hero__inner {
    padding: 24px 20px 40px;
  }

  .hero__content {
    margin-top: 56px;
    max-width: 640px;
  }

  .hero__badge {
    padding: 10px 14px 10px 10px;
    gap: 8px;
  }

  .hero__badge span {
    font-size: 11px;
  }

  .hero__badge--left-1 {
    top: 48%;
    left: 2%;
  }

  .hero__badge--left-2 {
    top: 68%;
    left: 4%;
  }

  .hero__badge--right-1 {
    top: 46%;
    right: 2%;
  }

  .hero__badge--right-2 {
    top: 64%;
    right: 3%;
  }
}

@media (max-width: 700px) {
  .hero__logo img {
    width: 78px;
  }

  .hero__content {
    margin-top: 40px;
  }

  .hero__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero__text {
    max-width: 340px;
  }

  .hero__btn {
    width: 100%;
    max-width: 320px;
    padding: 15px 24px;
  }

  .hero__badge--left-1,
  .hero__badge--right-1 {
    display: none;
  }

  .hero__badge--left-2 {
    top: auto;
    bottom: 18%;
    left: 4%;
  }

  .hero__badge--right-2 {
    top: auto;
    bottom: 12%;
    right: 4%;
  }
}

@media (max-width: 480px) {
  .hero__inner {
    padding: 20px 16px 32px;
  }

  .hero__label {
    font-size: 10px;
    padding: 7px 14px;
  }

  .hero__title {
    margin-top: 18px;
  }

  .hero__text {
    margin-top: 14px;
    font-size: 14px;
  }

  .hero__btn {
    margin-top: 22px;
    font-size: 13px;
  }

  .hero__badges {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge {
    animation: none;
  }

  .hero__btn,
  .fixed-cta {
    transition: none;
  }
}

/* ========== Trusted ========== */

.trusted {
  position: relative;
  overflow: hidden;
  background: url("../img/trusted-bg.jpg") top center / cover no-repeat;
}

.trusted__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 350px 24px 250px;
}

.trusted__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.trusted__wreath {
  width: clamp(48px, 7vw, 78px);
  height: auto;
  flex-shrink: 0;
}

.trusted__title {
  text-align: center;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.trusted__title span {
  display: block;
  color: var(--color-accent);
}

.trusted__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 20px;
  margin-top: 56px;
  align-items: start;
}

.trusted__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trusted__item--1 {
  transform: translateY(28px);
}

.trusted__item--2 {
  transform: translateY(64px);
}

.trusted__item--3 {
  transform: translateY(16px);
}

.trusted__item--4 {
  transform: translateY(0);
}

.trusted__icon {
  width: clamp(140px, 16vw, 200px);
  height: auto;
  mix-blend-mode: lighten;
}

.trusted__caption {
  margin-top: 8px;
  max-width: 160px;
  color: var(--color-white);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .trusted {
    background-image: url("../img/trusted-bg-mobile.jpg");
  }

  .trusted__inner {
    padding: 120px 20px 100px;
  }

  .trusted__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
    margin-top: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .trusted__item--1,
  .trusted__item--2,
  .trusted__item--3,
  .trusted__item--4 {
    transform: none;
  }

  .trusted__caption {
    max-width: 180px;
  }
}

@media (max-width: 520px) {
  .trusted__inner {
    padding: 162px 16px 88px;
  }

  .trusted__heading {
    gap: 10px;
  }

  .trusted__wreath {
    width: 40px;
  }

  .trusted__list {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 240px;
  }

  .trusted__icon {
    width: 160px;
  }
}

/* ========== Why ========== */

.why {
  position: relative;
  overflow: hidden;
  background: url("../img/why-bg.jpg") center / cover no-repeat;
}

.why__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 24px 120px;
}

.why__title {
  text-align: center;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.why__title span {
  color: var(--color-accent);
  text-shadow: 0 0 40px rgba(61, 220, 151, 0.35);
}

.why__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.why__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(8, 12, 14, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.why__card--1 {
  transform: translateY(36px);
}

.why__card--2 {
  transform: translateY(72px);
}

.why__card--3 {
  transform: translateY(36px);
}

.why__card--4 {
  transform: translateY(0);
}

.why__media {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin-bottom: 18px;
}

.why__media::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: 0;
  width: 70%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(61, 220, 151, 0.35) 0%,
    rgba(61, 220, 151, 0) 70%
  );
  pointer-events: none;
}

.why__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.why__card-title {
  max-width: 200px;
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}

.why__card-text {
  margin-top: 10px;
  max-width: 210px;
  color: rgba(251, 251, 251, 0.72);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .why__list {
    gap: 16px;
  }

  .why__media {
    max-width: 180px;
  }
}

@media (max-width: 900px) {
  .why__inner {
    padding: 72px 20px 96px;
  }

  .why__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .why__card--1,
  .why__card--2,
  .why__card--3,
  .why__card--4 {
    transform: none;
  }

  .why__media {
    max-width: 200px;
  }
}

@media (max-width: 520px) {
  .why__inner {
    padding: 64px 16px 80px;
  }

  .why__list {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .why__card {
    padding: 16px 14px 24px;
  }
}

/* ========== How ========== */

.how {
  position: relative;
  overflow: hidden;
  background: url("../img/how-bg.jpg") center / cover no-repeat;
}

.how__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 24px 100px;
}

.how__title {
  max-width: 640px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.how__title span {
  display: block;
  color: var(--color-accent);
}

.how__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.how__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: #0a0c10;
}

.how__visual {
  width: 100%;
  height: auto;
}

.how__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px 28px;
}

.how__step {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.how__text {
  margin-top: 10px;
  max-width: 180px;
  color: var(--color-white);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .how__inner {
    padding: 72px 20px 88px;
  }

  .how__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .how__text {
    max-width: 200px;
  }
}

@media (max-width: 520px) {
  .how__inner {
    padding: 64px 16px 72px;
  }

  .how__list {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .how__body {
    padding: 8px 16px 24px;
  }
}

/* ========== FAQ ========== */

.faq {
  position: relative;
  overflow: hidden;
  background: url("../img/faq-bg.jpg") center / cover no-repeat;
}

.faq__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 24px 100px;
}

.faq__title {
  max-width: 720px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.faq__title span {
  display: block;
  color: var(--color-accent);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  margin-top: 48px;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(10, 14, 18, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 20px 24px;
  list-style: none;
  cursor: pointer;
  color: var(--color-white);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-transform: uppercase;
  user-select: none;
}

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

.faq__question::marker {
  content: "";
}

.faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-accent);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
}

.faq__toggle::before {
  width: 12px;
  height: 2px;
}

.faq__toggle::after {
  width: 2px;
  height: 12px;
}

.faq__item[open] .faq__toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.faq__item[open] .faq__toggle::before,
.faq__item[open] .faq__toggle::after {
  background: var(--color-white);
}

.faq__item[open] .faq__toggle::after {
  display: none;
}

.faq__answer {
  padding: 0 16px 16px;
}

.faq__answer p {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  color: rgba(251, 251, 251, 0.72);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .faq__inner {
    padding: 72px 20px 88px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 640px;
  }
}

@media (max-width: 520px) {
  .faq__inner {
    padding: 64px 16px 72px;
  }

  .faq__question {
    padding: 16px;
    font-size: 13px;
  }

  .faq__toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .faq__answer {
    padding: 0 12px 12px;
  }

  .faq__answer p {
    padding: 14px 14px;
    font-size: 13px;
  }
}

/* ========== About ========== */

.about {
  position: relative;
  overflow: hidden;
  background: url("../img/bg-about.jpg") center / cover no-repeat;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}

.about__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.about__title span {
  color: var(--color-accent);
}

.about__text {
  margin-top: 250px;
  max-width: 680px;
  color: rgba(251, 251, 251, 0.92);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about__inner {
    padding: 96px 20px;
  }
}

@media (max-width: 520px) {
  .about__inner {
    padding: 80px 16px;
  }

  .about__text {
    margin-top: 150px;
    font-size: 15px;
  }
}

/* ========== Footer ========== */

.footer {
  position: relative;
  overflow: hidden;
  color: #04050a;
  background: url("../img/footer-bg.jpg") top center / cover no-repeat;
}

.footer__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 250px 24px 28px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 40px;
}

.footer__nav a {
  color: #04050a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.footer__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #0a0c10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.footer__card-body {
  flex: 1;
  padding: 28px 28px 20px;
  text-align: center;
}

.footer__card-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
}

.footer__card-text {
  margin-top: 10px;
  color: rgba(251, 251, 251, 0.65);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.footer__email {
  display: block;
  padding: 16px 20px;
  border-top: 1px solid rgba(61, 220, 151, 0.12);
  background: #12161c;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.footer__email:hover {
  background: #171c24;
}

.footer__brand {
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 48px auto 0;
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 8px;
}

.footer__legal a,
.footer__legal p {
  color: #04050a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.footer__legal a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer__inner {
    padding: 188px 20px 24px;
  }

  .footer__cards {
    max-width: 640px;
    gap: 16px;
  }

  .footer__brand {
    margin-top: 40px;
  }
}

@media (max-width: 700px) {
  .footer__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .footer__legal {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .footer__inner {
    padding: 172px 16px 20px;
  }

  .footer__nav {
    gap: 10px 24px;
  }

  .footer__card-body {
    padding: 24px 20px 16px;
  }

  .footer__brand {
    margin-top: 32px;
  }
}

/* ========== Fixed CTA ========== */

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 24px 0 24px 0;
  background: var(--color-accent);
  color: var(--color-btn-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 1px rgba(61, 220, 151, 0.35),
    0 0 28px rgba(61, 220, 151, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.fixed-cta--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}

.fixed-cta img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fixed-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(61, 220, 151, 0.45),
    0 0 36px rgba(61, 220, 151, 0.55),
    0 14px 32px rgba(0, 0, 0, 0.4);
}

.fixed-cta--hidden:hover {
  transform: translateX(-50%) translateY(16px);
  box-shadow:
    0 0 0 1px rgba(61, 220, 151, 0.35),
    0 0 28px rgba(61, 220, 151, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 520px) {
  .fixed-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    transform: none;
    font-size: 13px;
    padding: 15px 24px;
  }

  .fixed-cta--hidden {
    transform: translateY(16px);
  }

  .fixed-cta:hover {
    transform: translateY(-2px);
  }

  .fixed-cta--hidden:hover {
    transform: translateY(16px);
  }
}

/* ========== Legal pages ========== */

.legal {
  position: relative;
  min-height: 60vh;
  background:
    radial-gradient(
      ellipse at top center,
      rgba(61, 220, 151, 0.08) 0%,
      transparent 55%
    ),
    #000;
}

.legal__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

.legal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.legal__logo img {
  width: 96px;
  height: auto;
}

.legal__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.legal__nav a {
  color: rgba(251, 251, 251, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.legal__nav a:hover {
  color: var(--color-accent);
}

.legal__title {
  margin-top: 56px;
  text-align: center;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.legal__title span {
  display: block;
  color: var(--color-accent);
}

.legal__meta {
  margin-top: 16px;
  text-align: center;
  color: rgba(251, 251, 251, 0.55);
  font-size: 14px;
}

.legal__card {
  margin-top: 36px;
  padding: 36px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(10, 14, 18, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.legal__section + .legal__section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal__section h2 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
}

.legal__section h3 {
  margin: 20px 0 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
}

.legal__section p {
  margin-bottom: 12px;
  color: rgba(251, 251, 251, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

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

.legal__section ul {
  margin: 0 0 12px;
  padding-left: 20px;
  list-style: disc;
}

.legal__section li {
  margin-bottom: 6px;
  color: rgba(251, 251, 251, 0.75);
  font-size: 15px;
  line-height: 1.55;
}

.legal__section a {
  display: inline-block;
  margin: 4px 0 12px;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 600;
  word-break: break-word;
}

.legal__section a:hover {
  text-decoration: underline;
}

.legal__or {
  margin: 4px 0 8px !important;
  color: rgba(251, 251, 251, 0.45) !important;
}

.legal__section--contact {
  text-align: center;
}

.footer--legal {
  background-position: bottom center;
}

.footer--legal .footer__inner {
  padding-top: 80px;
}

.footer--legal .footer__brand,
.footer--legal .footer__cards {
  display: none;
}

.footer__legal a[aria-current="page"] {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer--legal {
    background-position: top center;
  }
}

@media (max-width: 700px) {
  .legal__inner {
    padding: 24px 16px 64px;
  }

  .legal__card {
    margin-top: 28px;
    padding: 24px 20px;
  }

  .legal__title {
    margin-top: 40px;
  }
}
