:root {
  --yellow: #ffc20a;
  --yellow-hover: #efb500;
  --yellow-soft: #fff8da;
  --black: #090909;
  --dark: #111111;
  --text: #1c1c1c;
  --muted: #666b73;
  --light: #f6f6f4;
  --white: #ffffff;
  --line: #e7e7e3;
  --green: #24a66a;
  --container: 1180px;
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231,231,227,.85);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__symbol {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.product-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.product-brand strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.6px;
}

.product-brand span {
  margin-top: 5px;
  color: #747474;
  font-size: 10px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav > a:not(.button) {
  color: #505050;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.nav > a:not(.button):hover {
  color: var(--black);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  margin: 5px 0;
  display: block;
  background: var(--black);
}

.button {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--yellow);
  border-radius: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  transition: all .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  box-shadow: 0 13px 30px rgba(239,181,0,.22);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 12px;
}

.button--outline {
  background: #fff;
  border-color: #deded9;
  box-shadow: none;
}

.button--outline:hover {
  background: #fafafa;
  border-color: #bdbdb7;
  box-shadow: none;
}

.button--white {
  margin-top: 28px;
  background: #fff;
  border-color: #fff;
  color: #000;
}

.button--black {
  background: #000;
  border-color: #000;
  color: #fff;
}

.button--black:hover {
  background: #171717;
  border-color: #171717;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 120px;
  background:
    radial-gradient(circle at 84% 15%, rgba(255,194,10,.16), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fffefa 100%);
}

.hero__shape {
  position: absolute;
  border: 1px solid rgba(255,194,10,.22);
  transform: rotate(30deg);
}

.hero__shape--01 {
  width: 420px;
  height: 420px;
  top: -250px;
  right: -110px;
  border-radius: 100px;
}

.hero__shape--02 {
  width: 260px;
  height: 260px;
  left: -160px;
  bottom: -180px;
  border-radius: 70px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 75px;
}

.brand-pill {
  width: max-content;
  max-width: 100%;
  margin-bottom: 26px;
  padding: 8px 14px 8px 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 99px;
  background: #fff7d5;
  border: 1px solid #ffe799;
  color: #5f4a00;
  font-size: 11px;
  font-weight: 800;
}

.brand-pill img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.01;
  letter-spacing: -4px;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--yellow-hover);
}

.hero__text {
  max-width: 645px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero__text strong {
  color: #111;
}

.hero__actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #727272;
  font-size: 11px;
  font-weight: 600;
}

.hero__trust i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f8f1;
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

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

.bee-mark {
  position: absolute;
  width: 430px;
  opacity: .055;
  transform: rotate(-9deg);
}

.message-demo {
  width: min(100%, 390px);
  position: relative;
  z-index: 3;
  padding: 24px;
  border: 1px solid #e9e7df;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 30px 80px rgba(26,26,20,.12);
  transform: rotate(1.5deg);
}

.message-demo__header {
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #ededeb;
}

.message-demo__avatar {
  width: 48px;
  height: 48px;
  padding: 7px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff4be;
}

.message-demo__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.message-demo__identity strong,
.message-demo__identity span {
  display: block;
}

.message-demo__identity strong {
  font-size: 13px;
  font-weight: 800;
}

.message-demo__identity span {
  margin-top: 3px;
  color: #868686;
  font-size: 9px;
}

.message-demo__verified {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 10px;
}

.message-demo__body {
  padding: 24px 0 18px;
}

.message-bubble {
  position: relative;
  padding: 18px 17px 27px;
  border-radius: 17px 17px 17px 5px;
  background: #f5f5f2;
}

.message-bubble strong {
  font-size: 12px;
}

.message-bubble p {
  margin-top: 6px;
  color: #606060;
  font-size: 11px;
  line-height: 1.65;
}

.message-bubble span {
  position: absolute;
  right: 11px;
  bottom: 7px;
  color: #999;
  font-size: 8px;
}

.message-button {
  margin-top: 12px;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background: var(--yellow);
  color: #111;
  font-size: 11px;
  font-weight: 800;
}

.message-demo__footer {
  padding-top: 16px;
  border-top: 1px solid #ededeb;
  color: #8d8d8d;
  text-align: center;
  font-size: 9px;
}

.mini-card {
  min-width: 195px;
  position: absolute;
  z-index: 5;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e9e7df;
  border-radius: 15px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 45px rgba(24,24,19,.10);
}

.mini-card--top {
  top: 80px;
  right: -30px;
}

.mini-card--bottom {
  bottom: 74px;
  left: -20px;
}

.mini-card__icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #fff5c9;
  color: #846600;
  font-size: 12px;
  font-weight: 900;
}

.mini-card strong,
.mini-card small {
  display: block;
}

.mini-card strong {
  font-size: 10px;
}

.mini-card small {
  margin-top: 2px;
  color: #868686;
  font-size: 8px;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  color: #9a7600;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.eyebrow--dark {
  color: var(--yellow);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.how__intro h2,
.security__panel h2,
.received h2,
.bebee__content h2,
.contact__heading h2 {
  margin-top: 14px;
  color: var(--black);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -2.5px;
  font-weight: 900;
}

.section-heading p,
.how__intro > p,
.received p,
.bebee__content p,
.contact__heading p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  min-height: 320px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(20,20,15,.07);
}

.benefit-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #d2d2cc;
  font-size: 10px;
  font-weight: 800;
}

.benefit-card__icon {
  width: 51px;
  height: 51px;
  margin-bottom: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--yellow);
  color: #111;
  font-size: 16px;
  font-weight: 900;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.benefit-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.how {
  background: #f6f6f3;
}

.how__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.how__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.how__brand {
  margin-top: 40px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #deded9;
}

.how__brand img {
  width: 50px;
}

.how__brand span {
  color: #7d7d76;
  font-size: 11px;
  line-height: 1.5;
}

.how__brand strong {
  color: #1a1a1a;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  padding: 30px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  border: 1px solid #e4e4de;
  border-radius: 21px;
  background: #fff;
}

.step__number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--yellow);
  color: #111;
  font-size: 11px;
  font-weight: 900;
}

.step h3 {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 800;
}

.step p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.security {
  background: #0d0d0d;
}

.security__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.security__panel {
  position: relative;
  padding-right: 30px;
  color: white;
}

.security__bee {
  width: 330px;
  position: absolute;
  left: -120px;
  top: -30px;
  opacity: .035;
}

.security__panel h2 {
  max-width: 550px;
  position: relative;
  color: white;
}

.security__panel h2 span {
  color: var(--yellow);
}

.security__panel > p {
  max-width: 560px;
  position: relative;
  margin-top: 22px;
  color: #a8a8a3;
  font-size: 14px;
  line-height: 1.8;
}

.security__notice {
  max-width: 540px;
  margin-top: 38px;
  padding: 20px;
  position: relative;
  display: flex;
  gap: 10px;
  border: 1px solid #2d2d29;
  border-radius: 16px;
  background: #151513;
  font-size: 11px;
  line-height: 1.6;
}

.security__notice strong {
  color: var(--yellow);
}

.security__notice span {
  color: #aaa;
}

.security__items {
  display: grid;
  gap: 12px;
}

.security-item {
  padding: 23px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  border: 1px solid #292925;
  border-radius: 18px;
  background: #131312;
}

.security-item > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #24241e;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.security-item h3 {
  color: white;
  font-size: 14px;
}

.security-item p {
  margin-top: 5px;
  color: #92928d;
  font-size: 11px;
  line-height: 1.7;
}

.security-item--highlight {
  grid-template-columns: 1fr;
  background: var(--yellow);
  border-color: var(--yellow);
}

.security-item--highlight .security-item__label {
  width: auto;
  height: auto;
  display: inline-block;
  background: transparent;
  color: #6a5300;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.security-item--highlight h3 {
  margin-top: 7px;
  color: #111;
  font-size: 18px;
}

.security-item--highlight a {
  display: inline-block;
  margin-top: 17px;
  color: #111;
  font-size: 11px;
  font-weight: 800;
}

.received {
  background: #fff;
}

.received__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.received h2 {
  max-width: 560px;
}

.received__content p:first-child {
  margin-top: 0;
}

.received__content .button {
  margin-top: 28px;
}

.bebee {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.bebee::before {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  right: -180px;
  top: -230px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 120px;
  transform: rotate(30deg);
}

.bebee__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.bebee__logo-wrap {
  min-height: 390px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: #0d0d0d;
}

.bebee__logo {
  width: 72%;
}

.bebee__content h2 {
  color: #111;
}

.bebee__content p {
  color: #554300;
}

.contact {
  background: #fff;
}

.contact__heading {
  max-width: 680px;
  margin-bottom: 45px;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  position: relative;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  transition: transform .2s ease, border-color .2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: #d7c15c;
}

.contact-card__icon {
  width: 45px;
  height: 45px;
  margin-bottom: 31px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.contact-card > span,
.contact-card > strong {
  display: block;
}

.contact-card > span {
  color: #8a8a84;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card > strong {
  margin-top: 5px;
  font-size: 13px;
}

.contact-card > i {
  position: absolute;
  right: 24px;
  bottom: 26px;
  color: #aaa;
  font-style: normal;
}

.cta {
  padding: 75px 0;
  background: #f4f4f1;
}

.cta__inner {
  position: relative;
  overflow: hidden;
  padding: 45px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-radius: 28px;
  background: var(--yellow);
}

.cta__mark {
  width: 290px;
  position: absolute;
  right: 220px;
  bottom: -180px;
  opacity: .08;
}

.cta__inner > div,
.cta__inner > a {
  position: relative;
  z-index: 2;
}

.cta__inner > div > span {
  display: block;
  margin-bottom: 8px;
  color: #715900;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.cta h2 {
  max-width: 700px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 900;
}

.footer {
  padding: 55px 0 28px;
  background: #080808;
  color: white;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.footer__identity {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__identity > img {
  width: 150px;
}

.footer__product {
  padding-left: 28px;
  border-left: 1px solid #2b2b2b;
}

.footer__product span,
.footer__product strong {
  display: block;
}

.footer__product span {
  color: #787878;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__product strong {
  margin-top: 3px;
  font-size: 14px;
}

.footer__links {
  max-width: 540px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer__links a {
  color: #9c9c9c;
  font-size: 10px;
}

.footer__links a:hover {
  color: white;
}

.footer__legal {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #222;
}

.footer__legal p {
  color: #686868;
  font-size: 9px;
}

@media (max-width: 1020px) {
  .hero__grid,
  .how__grid,
  .security__grid,
  .received__inner,
  .bebee__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .how__grid,
  .security__grid,
  .received__inner,
  .bebee__grid {
    gap: 55px;
  }

  .how__intro {
    position: static;
  }

  .bebee__logo-wrap {
    min-height: 300px;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    padding: 23px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: 0 24px 60px rgba(20,20,15,.12);
  }

  .nav.is-open {
    display: flex;
  }

  .benefits,
  .contact__cards {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .pre-footer__inner,
  .footer__top,
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__links {
    justify-content: flex-start;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header__inner {
    min-height: 72px;
  }

  .header__symbol {
    width: 39px;
    height: 39px;
  }

  .nav {
    top: 72px;
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 72px 0 82px;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -2.8px;
  }

  .hero__text {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 450px;
  }

  .mini-card {
    display: none;
  }

  .message-demo {
    padding: 18px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .how__intro h2,
  .security__panel h2,
  .received h2,
  .bebee__content h2,
  .contact__heading h2 {
    font-size: 34px;
    letter-spacing: -1.7px;
  }

  .step {
    grid-template-columns: 45px 1fr;
    padding: 22px;
  }

  .step__number {
    width: 45px;
    height: 45px;
  }

  .security__panel {
    padding-right: 0;
  }

  .security__notice {
    flex-direction: column;
  }

  .bebee__logo-wrap {
    min-height: 230px;
  }

  .cta {
    padding: 30px 0;
  }

  .cta__inner {
    padding: 33px 26px;
  }

  .cta__inner .button {
    width: 100%;
  }

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

  .footer__product {
    padding-left: 0;
    padding-top: 17px;
    border-left: 0;
    border-top: 1px solid #2b2b2b;
  }
}


.footer__company {
  margin-top: 42px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: .7fr 1.6fr .7fr;
  gap: 30px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.footer__company div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__company span {
  color: #666;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.footer__company strong,
.footer__company a {
  color: #b8b8b8;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
}

.footer__company a:hover {
  color: #fff;
}

.legal-page {
  min-height: 100vh;
  background: #fff;
}

.legal-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.legal-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-header__brand img {
  width: 42px;
}

.legal-header__brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.legal-header__brand strong {
  font-size: 16px;
  font-weight: 900;
}

.legal-header__brand span {
  margin-top: 5px;
  color: #777;
  font-size: 9px;
}

.legal-back {
  color: #555;
  font-size: 11px;
  font-weight: 700;
}

.legal-content {
  padding: 80px 0 100px;
}

.legal-content__inner {
  width: min(100%, 820px);
}

.legal-content h1 {
  margin-top: 14px;
  color: #111;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -3px;
  font-weight: 900;
}

.legal-updated {
  margin-top: 16px;
  color: #888;
  font-size: 11px;
}

.legal-intro {
  margin-top: 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.9;
}

.legal-section {
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  color: #111;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.8px;
}

.legal-section p,
.legal-section li {
  color: #5f6368;
  font-size: 13px;
  line-height: 1.85;
}

.legal-section p {
  margin-top: 14px;
}

.legal-section ul {
  margin: 14px 0 0 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-contact {
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  background: #f7f7f4;
}

.legal-contact strong,
.legal-contact span {
  display: block;
}

.legal-contact strong {
  color: #111;
  font-size: 13px;
}

.legal-contact span {
  margin-top: 5px;
  color: #666;
  font-size: 12px;
}

@media (max-width: 840px) {
  .footer__company {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .legal-content {
    padding: 60px 0 80px;
  }

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

  .legal-content h1 {
    letter-spacing: -2px;
  }
}
