:root {
  --white: #ffffff;
  --dark: #15171a;
  --grey: #5b6169;
  --gold: #b79a63;

  --grey-light: rgb(91 97 105 / 0.65);
  --dark-lite: rgb(var(--dark-rgb) / 0.1);
  --dark-lite2: rgb(var(--dark-rgb) / 0.15);

  --dark-rgb: 21 23 26;
  --gold-rgb: 183 154 99;

  --gold-center: rgb(var(--gold-rgb) / 0.65);
  --gold-shadow: rgb(var(--gold-rgb) / 0.1);

  --container: 1200px;
  --px: 16px;

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;

  --shadow-sm: 0 10px 24px rgb(16 24 40 / 0.07);
  --shadow-md: 0 18px 44px rgb(16 24 40 / 0.1);

  --font-head:
    Onest, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body:
    Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --border-line: 1px solid var(--dark-lite);
}

@media (min-width: 768px) {
  :root {
    --px: 24px;
  }
}

@media (min-width: 1200px) {
  :root {
    --px: 16px;
  }
}

.bgc {
  background-color: rgb(var(--dark-rgb) / 0.025);
}

/* ========================================================================== */
/* BASE (Reset + defaults)                                                    */
/* ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);

  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--dark);

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

a {
  color: inherit;
}

p {
  margin: 14px 0 0;
  color: var(--grey);
  line-height: 1.55;
}

:focus-visible {
  outline: 3px solid rgb(var(--gold-rgb) / 0.22);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Scroll lock for mobile menu */
body.is-scroll-locked {
  overflow: hidden;
  touch-action: none;
}

/* Основной контейнер и секции */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--px);
}

.section {
  padding: 80px 0;
}

@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }
}

/* Заголовок секции - H2 */
.caption {
  max-width: 65ch;
  margin-bottom: 42px;
}

.caption--full {
  margin-bottom: 42px;
}

.not-margin {
  margin: 0;
}

.kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
}

/* рассмотреть необходимость */
.block-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--grey);
  padding-left: 14px;
  border-left: 2px solid rgb(var(--gold-rgb) / 0.35);
}

/* Кнопки */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;

  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  white-space: nowrap;

  border: var(--border-line);
  border-radius: var(--r-sm);

  background: var(--white);

  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    border-color: var(--dark-lite2);
  }
}

.btn-primary {
  color: var(--white);
  background: var(--dark);
  border-color: transparent;
}

/* Система Карточек */
.card {
  border: var(--border-line);
  border-radius: var(--r-md);
  padding: 18px;

  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--dark-lite2);
  }
}

.card-shadow {
  border: 1px solid var(--dark-lite2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.card-lg {
  border: 1px solid var(--dark-lite2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

/* ========================================================================== */
/* HEADER                                                                     */
/* ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: var(--border-line);
}

.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
}

.brand-name {
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  padding: 10px 4px;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: var(--gold);
  }
}

.header-socials {
  display: none;
  align-items: center;
  gap: 10px;
}

.icon-social {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 40px;
  height: 40px;
  font-size: 28px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.icon-svg {
  width: 1em;
  height: 1em;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .icon-social:hover {
    color: var(--gold);
  }
}

.icon-social:active {
  transform: scale(0.9);
}

.header-phone {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .header-phone:hover {
    color: var(--gold);
  }
}

/* burger */
.burger {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: var(--border-line);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

@media (min-width: 1145px) {
  .nav {
    display: flex;
  }

  .header-socials {
    display: flex;
  }

  .burger {
    display: none;
  }
}

/* ========================================================================== */
/* HERO                                                                       */
/* ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 38px;
}

@media (max-width: 767px) {
  .hero {
    padding: 46px 0 18px;
  }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: -180px -180px auto -180px;
  height: 420px;
  background: radial-gradient(
    closest-side at 22% 40%,
    var(--dark-lite),
    transparent 68%
  );
  pointer-events: none;
}

.hero-inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40px;
  transform: translate(70%);
  width: 1000px;
  height: 420px;
  opacity: 0.07;
  background-image: radial-gradient(var(--dark) 1px, transparent 1px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(
    circle at 42% 38%,
    #000 30%,
    transparent 72%
  );
  mask-image: radial-gradient(circle at 42% 38%, #000 30%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-title {
  margin: 10px 0 0;
  max-width: 18ch;
}

.hero-lead {
  margin-top: 16px;
  max-width: 65ch;
}

.hero-badges {
  max-width: 62ch;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  font-size: 12px;
  color: var(--grey);
  border: var(--border-line);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-portrait {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: end;
}

.hero-portrait img {
  max-height: 420px;
  object-fit: contain;
  object-position: bottom right;
  z-index: 10;
}

@media (max-width: 520px) {
  .hero-portrait img {
    object-position: bottom center;
  }
}

/* ========================================================================== */
/* SERVICES                                                                   */
/* ========================================================================== */
.services-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.svc-card {
  display: flex;
  flex-direction: column;
}

.svc-desc {
  font-size: 14px;
  flex: 1 1 auto;
}

.svc-link {
  margin-top: 14px;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--dark);
  position: relative;
  transition: all 0.3s ease;
}

.svc-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.3s ease;
  color: var(--gold);
}

@media (hover: hover) and (pointer: fine) {
  .svc-link:hover {
    color: var(--gold);
  }

  .svc-link:hover span {
    transform: translateX(4px);
  }
}

.svc-list {
  margin: 0;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.svc-item {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
}

.svc-item::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-center);

  top: 50%;
  transform: translatey(-50%);
  left: 0;
}

/* ========================================================================== */
/* ADVANTAGES                                                                 */
/* ========================================================================== */
.advantages-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

@media (max-width: 767px) {
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.advantage-item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  align-items: start;
}

.advantage-text {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.advantage-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: var(--gold-center);
  box-shadow: 0 0 0 4px var(--gold-shadow);
}

/* ========================================================================== */
/* WORKFLOW - TIMELINE                                                        */
/* ========================================================================== */
.workflow-timeline {
  max-width: 760px;
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  gap: 24px;

  position: relative;
}

.workflow-timeline::after {
  content: "";
  position: absolute;
  left: 20px;
  transform: translateX(-50%);

  width: 1px;
  background: var(--dark-lite2);

  z-index: -1;

  top: 65px;
  height: calc(100% - 130px);
}

@media (max-width: 638px) {
  .workflow-timeline::after {
    top: 75px;
    height: calc(100% - 150px);
  }
}

@media (max-width: 547px) {
  .workflow-timeline::after {
    top: 90px;
    height: calc(100% - 180px);
  }
}

@media (max-width: 342px) {
  .workflow-timeline::after {
    top: 120px;
    height: calc(100% - 240px);
  }
}

.wf-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 500px) {
  .wf-step {
    gap: 12px;
  }
}

.wf-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
}

.wf-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--gold-center);
  box-shadow: 0 0 0 6px var(--gold-shadow);

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--grey);
  z-index: 1;
}

/* ========================================================================== */
/* CTA                                                                        */
/* ========================================================================== */
.cta-card {
  background: rgb(var(--dark-rgb) / 0.035);

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}

@media (max-width: 793px) {
  .cta-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .cta-card {
    padding: 18px;
  }
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.cta-socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* ========================================================================== */
/* FAQ                                                                        */
/* ========================================================================== */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.faq-details {
  border: var(--border-line);
  border-radius: var(--r-md);
  padding: 18px;
  outline: none;
}

.faq-summary {
  cursor: pointer;
  list-style: none;

  font-weight: 600;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-chev {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--grey);
  border-bottom: 2px solid var(--grey);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  margin-right: 4px;

  display: inline-block;
  transition: transform 0.2s ease;
}

.faq-details[open] .faq-chev {
  transform: rotate(-135deg);
}

.faq-answer {
  margin-top: 12px;
  color: var(--grey);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;

  overflow: hidden;
  height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq-chev {
    transition: none;
  }
}

.faq-summary:focus {
  outline: none;
}

.faq-summary:focus-visible {
  outline: none;
}

.faq-summary:active {
  outline: none;
}

/* ========================================================================== */
/* CONTACTS + FORM                                                            */
/* ========================================================================== */

/* Contacts */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 990px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
.con-grid {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;

  align-items: start;

  color: var(--grey);
  font-size: 16px;
}

.con-left {
  justify-self: end;
}

.con-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--dark);
}

.con-link {
  font-size: 16px;
  font-weight: 500;
  text-decoration-line: none;
  color: var(--dark);
  transition: all 0.3s ease;
}

.btn-map-link {
  display: inline-flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  gap: 2px;

  font-size: 16px;
  font-weight: 500;
  padding: 0;
  white-space: nowrap;
  color: var(--dark);

  background: var(--white);

  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .con-link:hover,
  .btn-map-link:hover {
    color: var(--gold);
  }
}

.map-svg {
  border-radius: 6px;
  width: 20px;
  height: 20px;
}

.con-qr {
  margin-top: 26px;
}

.con-qr a {
  display: inline-block;
}

.con-qr a img {
  width: 184px;
}

.con-svg {
  width: 24px;
  height: 24px;
  display: block;
  color: inherit;
}

/* Form */
.form-actions {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  align-items: start;
}

.field--full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

input,
textarea {
  border-radius: var(--r-sm);
  border: var(--border-line);
  color: var(--dark);
  padding: 12px 12px;
  outline: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--grey-light);
}

input:focus,
textarea:focus {
  border-color: var(--gold-center);
  box-shadow: 0 0 0 4px var(--gold-shadow);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.check {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.check-text {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.check input {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 12px;
  accent-color: var(--gold-center);
}

.form-msg {
  font-size: 14px;
  color: var(--dark);
  display: block;
}

.form-msg.is-ok {
  color: rgba(183, 155, 108, 0.95);
}

.form-msg.is-err {
  color: rgba(255, 120, 120, 0.95);
}

.field-error {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 120, 120, 0.95);
}

.is-invalid {
  outline: 2px solid rgba(255, 120, 120, 0.35);
}

#formMsg[data-type="error"] {
  color: rgba(255, 120, 120, 0.95);
}

#form.is-loading {
  opacity: 0.85;
  pointer-events: none; /* визуально и физически блокирует */
}


/* ========================================================================== */
/* COOKIE                                                                     */
/* ========================================================================== */

.cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 720px;
  background: #fff;
  border: 1px solid rgba(21, 23, 26, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 14px 16px;
  z-index: 1000;
  border-radius: 16px;

  /* важно: скрываем корректно */
  display: none;
  opacity: 0;
  transform: translate(-50%, 16px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.cookie--visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

.cookie__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #15171a;
}

.cookie__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie__btn {
  flex: 0 0 auto;
  white-space: nowrap;
  background: #15171a;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
}

.cookie__btn:hover {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__btn {
    width: 100%;
  }
}


/* ========================================================================== */
/* Mobile Menu                                                                */
/* ========================================================================== */
.menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.menu.is-open {
  display: block;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}

.menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: rgba(255, 255, 255, 0.92);
  border-left: var(--border-line);
  padding: 18px;
  transform: translateX(0);
  box-shadow: var(--shadow-sm);
  overflow-y: auto;
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 4px 14px;
  border-bottom: var(--border-line);
}

.menu-head img {
  width: 46px;
  height: auto;
}

.menu-close {
  color: var(--dark);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: var(--border-line);
  background: var(--white);
  cursor: pointer;
}

.menu-links {
  display: flex;
  flex-direction: column;
  padding: 6px 2px;
  gap: 6px;

  list-style: none;
}

.menu-links li {
  width: 100%;
}

.menu-links a {
  width: 100%;
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  border: var(--border-line);

  color: var(--grey);
  text-decoration: none;
}

.menu-links a:hover {
  border-color: rgba(183, 155, 108, 0.4);
  box-shadow: 0 0 0 6px rgba(183, 155, 108, 0.06);
  color: var(--gold);
}

.menu-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2px;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-burg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.icon-social-burger {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 40px;
  height: 40px;
  font-size: 32px;
  color: var(--dark);
  transition: all .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .icon-social-burger:hover {
    color: var(--gold);
  }
}

.icon-social-burger:active {
  transform: scale(0.9);
}


/* ========================================================================== */
/* FOOTER                                                                     */
/* ========================================================================== */
.footer {
  border-top: var(--border-line);
  padding: 28px 0 12px;
  background: linear-gradient(to bottom, rgba(250, 251, 253, 0.65), #fff);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(231, 233, 238, 0.75);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
}

.footer-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(
    145deg,
    rgba(43, 78, 255, 0.1),
    rgba(43, 78, 255, 0.02)
  );
}

.footer-name {
  font-family: Onest, Inter, system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-size: 12px;
  color: var(--grey);
  text-decoration: none;
}

.footer-nav-link:hover {
  color: var(--dark);
  text-decoration: underline;
}

.footer-bot-link {
  font-size: 12px;
  color: var(--grey);
  text-decoration: underline;
  transition: all .3s ease;
}

.footer-bot-link:hover {
  color: var(--dark);
  text-decoration: none;
}

.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.footer-disclaimer {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 70ch;
}

.footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--grey);
  padding-top: 12px;
  border-top: 1px solid rgba(231, 233, 238, 0.75);
}

.footer-meta {
  white-space: nowrap;
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-mid {
    flex-direction: column;
  }
}