:root {
  --primary: #006c35;
  --primary-dark: #064e2a;
  --primary-soft: #e5f4ec;
  --secondary: #0f8f4a;
  --accent: #f59e0b;
  --text: #102033;
  --text-light: #64748b;
  --background: #f8fafc;
  --card: rgba(255, 255, 255, 0.84);
  --border: rgba(0, 108, 53, 0.14);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  --radius: 28px;
  --transition: all 0.28s ease;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  background:
    radial-gradient(
      circle at 82% 8%,
      rgba(0, 108, 53, 0.18),
      transparent 28rem
    ),
    radial-gradient(
      circle at 8% 16%,
      rgba(15, 143, 74, 0.12),
      transparent 26rem
    ),
    linear-gradient(180deg, #fbfefc 0%, #f8fafc 42%, #eef7f2 100%),
    var(--background);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.74),
    rgba(240, 253, 244, 0.42)
  );
}

.section__header {
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}

.section__subtitle {
  color: var(--secondary);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section__title {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section__description {
  color: var(--text-light);
  font-size: 18px;
}

.header {
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.76);
  border-bottom: 1px solid var(--border);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: var(--transition);
  z-index: 20;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.09);
}

.nav {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: var(--header-height);
}

.nav__logo,
.footer__brand,
.hero__brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.nav__logo {
  text-decoration: none;
}

.app-logo {
  align-items: center;
  border-radius: 18px;
  display: inline-flex;
  height: 54px;
  object-fit: cover;
  width: 54px;
}

.app-logo--large {
  border-radius: 24px;
  height: 189px;
  width: 130px;
}

.brand-title {
  color: var(--primary);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

.brand-title--nav {
  font-size: 30px;
}

.brand-title--hero {
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.brand-title--footer {
  color: #fff;
  font-size: 30px;
}

.nav__menu {
  align-items: center;
  display: flex;
}

.nav__list {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__link {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--primary);
}

.nav__actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.nav__toggle,
.nav__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
}

.nav__toggle span,
.nav__close span {
  background: var(--primary);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.nav__close {
  position: absolute;
  right: 24px;
  top: 24px;
}

.nav__close span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav__close span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  box-shadow: 0 16px 34px rgba(0, 108, 53, 0.24);
  color: #fff;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  color: var(--primary);
}

.btn--header {
  padding: 11px 20px;
}

.btn--large {
  padding: 16px 26px;
}

.btn:hover,
.app-store-badge:hover,
.feature-card:hover,
.step:hover,
.legal-card:hover {
  transform: translateY(-4px);
}

.hero {
  min-height: 100vh;
  padding: calc(var(--header-height) + 28px) 0 80px;
  position: relative;
}

.hero::before {
  background: linear-gradient(
    135deg,
    rgba(0, 108, 53, 0.08),
    rgba(255, 255, 255, 0)
  );
  border-radius: 999px;
  content: "";
  height: 420px;
  left: -180px;
  position: absolute;
  top: 120px;
  width: 420px;
  z-index: -1;
}

.hero__content {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero__badges {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-badge {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow:
    0 10px 32px rgba(0, 108, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 11px 18px;
  white-space: nowrap;
}

.hero-badge--apple {
  background: linear-gradient(
    135deg,
    rgba(0, 108, 53, 0.1),
    rgba(255, 255, 255, 0.92)
  );
  color: var(--primary-dark);
}

.hero__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-lang {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 108, 53, 0.1);
  border-radius: 999px;
  color: var(--text-light);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  line-height: 1.2;
  padding: 8px 14px;
  white-space: nowrap;
}

.hero-lang--en {
  color: #1e3a5f;
}

.hero-lang--fr {
  color: #1a365d;
}

.hero-lang__flag {
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.1));
  font-size: 14px;
  line-height: 1;
}

.hero__brand {
  margin-bottom: 18px;
}

.hero__headline {
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero__description {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 680px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__proofs {
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__proofs span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.hero__visual {
  display: grid;
  min-height: 620px;
  place-items: center;
  position: relative;
}

.hero-mockup {
  filter: drop-shadow(0 34px 80px rgba(15, 23, 42, 0.2));
  position: relative;
  transform: rotate(3deg);
  z-index: 2;
}

.hero-mockup__image {
  display: block;
  height: min(78vh, 680px);
  max-width: min(100%, 340px);
  object-fit: contain;
  user-select: none;
  width: auto;
}

.hero__orb {
  border-radius: 999px;
  filter: blur(2px);
  position: absolute;
}

.hero__orb--one {
  background: rgba(0, 108, 53, 0.18);
  height: 180px;
  right: 20px;
  top: 60px;
  width: 180px;
}

.hero__orb--two {
  background: rgba(245, 158, 11, 0.14);
  bottom: 80px;
  height: 140px;
  left: 20px;
  width: 140px;
}

.features__grid,
.steps,
.legal__grid {
  display: grid;
  gap: 24px;
}

.features__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.step,
.legal-card,
.ios__content {
  backdrop-filter: blur(18px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.feature-card:hover,
.step:hover,
.legal-card:hover {
  border-color: rgba(0, 108, 53, 0.22);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.feature-card {
  padding: 28px;
}

.feature-card__icon {
  align-items: center;
  background: var(--primary-soft);
  border-radius: 20px;
  display: flex;
  font-size: 28px;
  height: 58px;
  justify-content: center;
  margin-bottom: 22px;
  width: 58px;
}

.feature-card h3,
.step h3,
.legal-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.feature-card p,
.step p,
.legal-card p {
  color: var(--text-light);
}

.value-props {
  overflow: hidden;
  position: relative;
}

.value-props::before,
.value-props::after {
  border-radius: 50%;
  content: "";
  filter: blur(64px);
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.value-props::before {
  background: rgba(56, 189, 248, 0.22);
  height: 280px;
  right: -120px;
  top: 8%;
  width: 280px;
}

.value-props::after {
  background: rgba(34, 197, 94, 0.18);
  bottom: 6%;
  height: 320px;
  left: -140px;
  width: 320px;
}

.value-props__container {
  align-items: start;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.75),
    rgba(248, 252, 250, 0.68)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: clamp(24px, 4vw, 44px);
}

.value-props__intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  text-align: left;
}

.value-props__intro .section__title {
  margin-bottom: 0;
}

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

.value-prop {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 18px;
  padding: 20px 22px;
  position: relative;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.value-prop::before {
  background: linear-gradient(
    180deg,
    rgba(15, 143, 74, 0.36),
    rgba(15, 143, 74, 0.1)
  );
  border-radius: 12px;
  content: "";
  height: calc(100% - 24px);
  left: 10px;
  position: absolute;
  top: 12px;
  width: 3px;
}

.value-prop:hover {
  border-color: rgba(15, 143, 74, 0.24);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.value-prop:nth-child(2)::before {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.38),
    rgba(59, 130, 246, 0.11)
  );
}

.value-prop:nth-child(3)::before {
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.42),
    rgba(245, 158, 11, 0.14)
  );
}

.value-prop__icon {
  align-items: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(236, 248, 241, 0.92)
  );
  border: 1px solid rgba(15, 143, 74, 0.16);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: var(--primary-dark);
  display: flex;
  flex-shrink: 0;
  font-size: 27px;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.value-prop:nth-child(2) .value-prop__icon {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(233, 244, 255, 0.92)
  );
  border-color: rgba(59, 130, 246, 0.2);
}

.value-prop:nth-child(3) .value-prop__icon {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 246, 228, 0.92)
  );
  border-color: rgba(245, 158, 11, 0.24);
}

.value-prop__body h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}

.value-prop__body p {
  color: var(--text-light);
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  padding: 32px;
  position: relative;
}

.step__number {
  color: var(--primary);
  display: block;
  font-size: 56px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.16;
}

.ios__content {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 42px;
}

.ios__text {
  flex: 1;
  min-width: 0;
}

.ios__description {
  margin: 0;
  max-width: 650px;
}

.app-store-badge {
  align-items: center;
  background: #0f172a;
  border-radius: 18px;
  color: white;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 14px;
  min-width: 230px;
  padding: 14px 20px;
  text-decoration: none;
  transition: var(--transition);
}

.app-store-badge__icon {
  font-size: 36px;
  line-height: 1;
}

.app-store-badge small,
.app-store-badge strong {
  display: block;
  line-height: 1.1;
}

.app-store-badge small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.app-store-badge strong {
  font-size: 24px;
}

.screenshots {
  overflow: hidden;
  position: relative;
}

.screenshots::before {
  background:
    linear-gradient(90deg, rgba(0, 108, 53, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 108, 53, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  opacity: 0.42;
  position: absolute;
  pointer-events: none;
}

.carousel {
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
}

.carousel__glow {
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.carousel__glow--one {
  background: rgba(0, 108, 53, 0.28);
  height: 220px;
  left: 8%;
  top: 18%;
  width: 220px;
}

.carousel__glow--two {
  background: rgba(15, 143, 74, 0.22);
  bottom: 10%;
  height: 180px;
  right: 10%;
  width: 180px;
}

.carousel__viewport {
  margin: 0 auto;
  max-width: 1020px;
  overflow: hidden;
  padding: 28px 0 10px;
  position: relative;
  z-index: 1;
}

.carousel__track {
  align-items: center;
  display: flex;
  gap: 34px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel__slide {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 250, 252, 0.86)
    ),
    var(--card);
  border: 1px solid rgba(0, 108, 53, 0.12);
  border-radius: 38px;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
  flex: 0 0 clamp(300px, 34vw, 430px);
  margin: 0;
  opacity: 0.36;
  padding: 16px;
  scale: 0.9;
  transform-origin: center center;
  transition:
    box-shadow 0.55s ease,
    opacity 0.55s ease,
    scale 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel__slide.is-active {
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(0, 108, 53, 0.08);
  opacity: 1;
  scale: 1;
}

.carousel__slide img {
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  display: block;
  height: min(72vh, 720px);
  margin: 0 auto;
  max-width: 100%;
  object-fit: contain;
  user-select: none;
  width: auto;
}

.carousel__btn {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  color: var(--text);
  cursor: pointer;
  display: grid;
  height: 52px;
  justify-content: center;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  width: 52px;
  z-index: 2;
}

.carousel__btn svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 22px;
}

.carousel__btn:hover {
  background: #fff;
  border-color: rgba(0, 108, 53, 0.28);
  color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.carousel__btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.carousel__btn--prev {
  left: 16px;
}

.carousel__btn--next {
  right: 16px;
}

.carousel__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.carousel__dot {
  background: rgba(0, 108, 53, 0.18);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: var(--transition);
  width: 10px;
}

.carousel__dot.is-active {
  background: var(--primary);
  width: 28px;
}

.carousel__dot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.faq__list {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 820px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.faq__question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 900;
  justify-content: space-between;
  padding: 22px 24px;
  text-align: left;
  width: 100%;
}

.faq__icon {
  color: var(--primary);
  font-size: 24px;
  font-weight: 400;
  transition: var(--transition);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq__answer p {
  color: var(--text-light);
}

.faq__answer a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

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

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__item.is-open .faq__answer {
  max-height: 320px;
  padding: 0 24px 22px;
}

.legal__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-card {
  padding: 30px;
}

.legal-card a {
  color: var(--primary);
  display: inline-block;
  font-weight: 900;
  margin-top: 14px;
  text-decoration: none;
}

.footer {
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 108, 53, 0.24),
      transparent 28rem
    ),
    #0f172a;
  color: #fff;
  padding: 56px 0 24px;
}

.footer__content {
  align-items: start;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.footer__content p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
  max-width: 420px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  margin-top: 34px;
  padding-top: 22px;
  text-align: center;
}

.back-to-top {
  align-items: center;
  background: var(--primary);
  border: 0;
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 14px 30px rgba(0, 108, 53, 0.24);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: 24px;
  transition: var(--transition);
  visibility: hidden;
  width: 48px;
  z-index: 30;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

[data-animation] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-animation].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animation="fade-left"] {
  transform: translateX(34px);
}

[data-animation="fade-left"].animated {
  transform: translateX(0);
}

.legal-page {
  padding: calc(var(--header-height) + 48px) 0 72px;
}

.legal-doc {
  backdrop-filter: blur(18px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  margin: 0 auto;
  max-width: 820px;
  padding: 32px;
}

.legal-doc__updated {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-doc__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 10px;
}

.legal-doc__intro {
  color: var(--text-light);
  font-size: 18px;
  margin-top: 14px;
}

.legal-doc__section {
  margin-top: 28px;
}

.legal-doc__section h2 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.legal-doc__section p,
.legal-doc__section li {
  color: var(--text-light);
  line-height: 1.65;
}

.legal-doc__section p + p {
  margin-top: 8px;
}

.legal-doc__section ul {
  display: grid;
  gap: 8px;
  list-style: disc;
  margin-top: 8px;
  padding-left: 22px;
}

.legal-doc__section a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.legal-doc__section a:hover {
  text-decoration: underline;
}

.legal-doc__back {
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-weight: 800;
  margin-top: 36px;
  padding-top: 22px;
}

.legal-doc__back a {
  color: var(--primary);
  text-decoration: none;
}

.legal-doc__back a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero__content,
  .features__grid,
  .steps,
  .legal__grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-props__container {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .value-props__intro {
    position: static;
    text-align: center;
  }

  .hero__content {
    text-align: left;
  }

  .hero__visual {
    min-height: 560px;
  }

  .carousel__slide {
    flex-basis: clamp(290px, 48vw, 400px);
  }
}

@media (max-width: 820px) {
  .nav__toggle,
  .nav__close {
    display: block;
  }

  .btn--header {
    display: none;
  }

  .nav__menu {
    background: #fff;
    box-shadow: -20px 0 60px rgba(15, 23, 42, 0.14);
    height: 100vh;
    padding: 84px 30px;
    position: fixed;
    right: -100%;
    top: 0;
    transition: right 0.34s ease;
    width: min(360px, 86vw);
  }

  .nav__menu--active {
    right: 0;
  }

  .nav__list {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__content,
  .features__grid,
  .steps,
  .legal__grid {
    grid-template-columns: 1fr;
  }

  .value-props__container {
    border-radius: 24px;
    padding: 22px 16px;
  }

  .value-prop {
    align-items: flex-start;
    padding: 18px;
  }

  .value-prop__icon {
    border-radius: 14px;
    font-size: 24px;
    height: 48px;
    width: 48px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 20px);
  }

  .hero__content,
  .hero__text {
    text-align: center;
  }

  .hero__text {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .hero__badges {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__langs {
    justify-content: center;
  }

  .hero__brand,
  .hero__cta,
  .hero__proofs {
    justify-content: center;
  }

  .hero__headline,
  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    width: 100%;
  }

  .hero__cta .btn {
    flex: 1 1 auto;
    min-width: min(100%, 280px);
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero-mockup {
    transform: rotate(0deg);
  }

  .ios__content,
  .footer__content {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .ios__text {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .ios__text .section__subtitle,
  .ios__text .section__title,
  .ios__description {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .app-store-badge {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .carousel__btn {
    height: 46px;
    width: 46px;
  }

  .carousel__btn--prev {
    left: 8px;
  }

  .carousel__btn--next {
    right: 8px;
  }

  .carousel__slide {
    flex-basis: min(76vw, 360px);
    padding: 12px;
  }

  .carousel__slide img {
    height: min(68vh, 640px);
  }

  .footer__brand,
  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 16px);
  }

  .brand-title--nav {
    font-size: 22px;
  }

  .app-logo {
    height: 46px;
    width: 46px;
  }

  .hero__langs {
    flex-direction: column;
    width: min(100%, 280px);
  }

  .hero-lang {
    justify-content: center;
    width: 100%;
  }

  .hero__brand {
    flex-direction: column;
  }

  .hero__headline {
    font-size: 2.35rem;
  }

  .hero__description {
    font-size: 17px;
  }

  .hero-mockup__image {
    height: min(68vh, 560px);
    max-width: min(100%, 300px);
  }

  .ios__content,
  .feature-card,
  .step,
  .legal-card {
    padding: 24px;
  }

  .carousel__slide {
    flex-basis: min(78vw, 320px);
  }

  .carousel__slide img {
    height: min(62vh, 560px);
  }

  .carousel__btn {
    height: 42px;
    width: 42px;
  }

  .legal-doc {
    padding: 22px 18px;
  }

  .legal-page {
    padding-top: calc(var(--header-height) + 32px);
  }
}
