:root {
  --bg: #ffffff;
  --bg2: #fafafa;
  --text: #0b0b0b;
  --muted: rgba(0, 0, 0, 0.66);
  --muted2: rgba(0, 0, 0, 0.52);

  --card: #ffffff;
  --stroke: rgba(0, 0, 0, 0.1);

  --shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  --shadow2: 0 10px 26px rgba(0, 0, 0, 0.1);

  --radius: 18px;

  --primary: #0b0b0b;
  --primaryText: #ffffff;

  --btn: #ffffff;
  --btnHover: #f2f2f2;
  --bgImage: url("../img/bg.mp4");
}

* {
  box-sizing: border-box;
  touch-action: manipulation;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  background:
    radial-gradient(
      900px 500px at 15% 0%,
      rgba(0, 0, 0, 0.05),
      transparent 60%
    ),
    radial-gradient(
      700px 480px at 85% 10%,
      rgba(0, 0, 0, 0.04),
      transparent 60%
    ),
    radial-gradient(
      900px 620px at 60% 90%,
      rgba(0, 0, 0, 0.035),
      transparent 60%
    ),
    var(--bgImage), linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
code {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2px 6px;
  border-radius: 10px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.container--narrow {
  width: min(860px, calc(100% - 32px));
}

.h1 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.06;
  margin: 10px 0 12px;
  letter-spacing: -0.03em;
}
.h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.lead {
  color: var(--muted);
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.55;
  margin: 0;
  max-width: 70ch;
}
.muted {
  color: var(--muted);
}
.accent {
  display: inline-block;
  padding: 0 0.18em;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block; /* показываем лого */
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block; /* ВАЖНО */
}

#brandLogoFallback {
  display: none; /* прячем “G”, если есть картинка */
}
.brand__name {
  letter-spacing: -0.01em;
}

.nav {
  display: none;
  gap: 16px;
}
.nav__link {
  color: rgba(0, 0, 0, 0.68);
  font-weight: 800;
  font-size: 14px;
}
.nav__link:hover {
  color: rgba(0, 0, 0, 0.9);
}

.topbar__actions {
  display: none;
  gap: 10px;
}

.burger {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(0, 0, 0, 0.86);
  margin: 2px 0;
  border-radius: 2px;
}

.mobile-menu {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 0 18px;
  background: rgba(255, 255, 255, 0.86);
}

.mobile-menu__link {
  display: block;
  padding: 10px 0;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 900;
}
.mobile-menu__actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

/* Buttons */
.btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--btn);
  color: rgba(0, 0, 0, 0.92);
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.08s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.btn:hover {
  background: var(--btnHover);
  border-color: rgba(0, 0, 0, 0.14);
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  border: none;
  background: var(--primary);
  color: var(--primaryText);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
}
.btn--lg {
  padding: 12px 16px;
  border-radius: 16px;
}

/* Hero (centered) */
.hero {
  padding: 42px 0 18px;
}
.hero__center {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 1000;
  color: rgba(0, 0, 0, 0.76);
  font-size: 12px;
}

/* Section */
.section {
  padding: 18px 0 34px;
}
.section__head {
  margin-bottom: 14px;
}
.section__head--center {
  text-align: center;
}
.section__head--center p {
  margin: 0 auto;
  max-width: 70ch;
}

/* Showcase tiles */
.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* tile */
.tile {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  min-height: 230px;
  display: block;
  box-shadow: var(--shadow);
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.14s ease;
}
.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 0, 0, 0.14);
}

.tile__media {
  position: absolute;
  inset: 0;
}
.tile__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placeholder until videos are inserted */
.tile__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 1000;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
  background:
    radial-gradient(
      700px 420px at 20% 10%,
      rgba(0, 0, 0, 0.06),
      transparent 60%
    ),
    radial-gradient(
      600px 380px at 85% 10%,
      rgba(0, 0, 0, 0.05),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #f6f6f6);
}

/* text overlay with readable gradient */
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.85) 100%
  );
  pointer-events: none;
}

.tile__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.tile__kicker {
  font-size: 12px;
  font-weight: 1000;
  color: rgba(0, 0, 0, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tile__title {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 1000;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: rgba(0, 0, 0, 0.92);
}
.tile__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  font-weight: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tile--wide {
  min-height: 300px;
}
.tile__overlay--big .tile__title {
  font-size: clamp(22px, 3vw, 34px);
}

/* Footer */
.footer {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}
.brand--footer .brand__logo {
  width: 30px;
  height: 30px;
  border-radius: 12px;
}
.footer__muted {
  color: rgba(0, 0, 0, 0.55);
  font-size: 12px;
  margin-top: 8px;
}
.footer__right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__link {
  color: rgba(0, 0, 0, 0.62);
  font-weight: 900;
  font-size: 13px;
}
.footer__link:hover {
  color: rgba(0, 0, 0, 0.9);
}

/* Desktop layout: 2 top tiles + wide bottom tile */
@media (min-width: 860px) {
  .nav {
    display: flex;
  }
  .topbar__actions {
    display: flex;
  }
  .burger {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }

  .hero {
    padding: 56px 0 20px;
  }

  .showcase {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .tile {
    min-height: 260px;
  }
  .tile--wide {
    grid-column: 1 / span 2;
    min-height: 340px;
  }

  .footer__inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .tile__cta {
    width: 100%;
  }
}

/* Brand logo image support */
.brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #ffffff00;
  color: #ffffff00;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block; /* показываем */
}

#brandLogoFallback {
  display: none; /* прячем “G” */
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.price {
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow2);
  padding: 16px;
  position: relative;
}

.price--featured {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03),
    rgba(255, 255, 255, 0.92)
  );
  border-color: rgba(0, 0, 0, 0.14);
}

.price__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.price__head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.price__title {
  font-weight: 1000;
  font-size: 16px;
}
.price__value {
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -0.02em;
}
.price__value span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 900;
}
.price__desc {
  color: var(--muted);
  font-size: 13px;
}

.list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.78);
}
.list li {
  margin: 8px 0;
  color: var(--muted);
}

.price__mini {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
  margin: 10px 0 14px;
}
.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(0, 0, 0, 0.78);
}
.mini-row strong {
  color: rgba(0, 0, 0, 0.92);
}

/* Below section */
.below {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.below__card {
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.below__title {
  font-weight: 1000;
  margin-bottom: 10px;
}
.below__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.below__item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  padding: 12px;
  border-radius: 16px;
}
.below__item strong {
  font-weight: 1000;
}
.below__item span {
  color: var(--muted);
  text-align: right;
}

/* Logo upload */
.logo-upload {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.logo-upload input {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 860px) {
  .pricing {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .below {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .below__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.btn--block {
  width: 100%;
}

/* Fix: remove "detached" top edge on pricing cards */
.price {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); /* мягче */
  background: rgba(255, 255, 255, 0.92);
}

.price--featured {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

/* make the top tag blend in */
.price__tag {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
}

/* prevent any overlay/gradient from other sections showing through */
#pricing {
  background: transparent;
}

/* Mobile menu – cleaner & tighter on phones */
@media (max-width: 859px) {
  .topbar__inner {
    padding: 10px 0;
  }

  .burger {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .mobile-menu {
    padding: 10px 0 14px;
  }

  .mobile-menu__link {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-menu__actions {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* две кнопки в ряд */
    gap: 10px;
  }

  .mobile-menu__actions .btn {
    width: 100%;
    padding: 10px 12px; /* меньше высота */
    border-radius: 14px;
  }

  /* меньше воздуха между меню и контентом */
  .hero {
    padding-top: 28px;
  }
}

@media (max-width: 859px) {
  .mobile-menu.is-open {
    margin: 10px 0 0;
    border-top: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
    padding: 12px 14px 14px;
  }
}
/* Burger button — smaller & cleaner */
.burger {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  padding: 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.burger span {
  width: 16px; /* было 18 */
  height: 2px;
  background: rgba(0, 0, 0, 0.86);
  margin: 2px 0;
  border-radius: 2px;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

/* Slightly thinner look on very small screens */
@media (max-width: 380px) {
  .burger {
    width: 34px;
    height: 34px;
  }
  .burger span {
    width: 15px;
  }
}

/* Desktop header: show nav + actions, hide burger */
@media (min-width: 860px) {
  .nav {
    display: flex !important;
  }
  .topbar__actions {
    display: flex !important;
  }
  .burger {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* Mobile header: hide nav + actions, show burger */
@media (max-width: 859px) {
  .nav {
    display: none !important;
  }
  .topbar__actions {
    display: none !important;
  }
  .burger {
    display: grid !important;
  }
}

/* Fix primary button hover (Try it) */
.btn--primary {
  background: #0b0b0b;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
  background: #111; /* остаётся тёмной */
  border-color: rgba(0, 0, 0, 0.18);
  filter: none; /* убираем brightness */
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0px);
}
/* Mobile burger like Canva: no border, smaller, softer */
@media (max-width: 859px) {
  .burger {
    width: 32px;
    height: 32px;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0;
  }

  .burger span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.55); /* мягче */
  }

  /* чуть легче нажатие, без "кнопочного" эффекта */
  .burger:active {
    transform: none;
  }
}
/* Mobile menu — rounded like card + animated slide */
.mobile-menu {
  /* было: display:none; */
  display: block; /* важно для анимации */
  max-height: 0; /* закрыто */
  opacity: 0;
  overflow: hidden;

  transform: translateY(-8px);
  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    transform 220ms ease;

  /* внешний вид как “карточка” */

  padding: 0 14px; /* в закрытом состоянии почти не видно */
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px; /* как у твоего выползающего меню */
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

/* открыто */
.mobile-menu.is-open {
  max-height: 320px; /* хватит под 2 ссылки + 2 кнопки */
  opacity: 1;
  transform: translateY(0);
  padding: 12px 14px 14px; /* нормальные паддинги только в открытом */
}

/* чуть приятнее кликабельность */
.mobile-menu__link {
  border-radius: 12px;
  padding: 10px 10px;
}
.mobile-menu__link:hover {
  background: rgba(0, 0, 0, 0.04);
}
/* video background */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* уходит под весь контент */
  pointer-events: none; /* чтобы не мешало кликам */
}

/* лёгкая “вуаль”, чтобы текст читался */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      900px 500px at 15% 0%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      700px 480px at 85% 10%,
      rgba(255, 255, 255, 0.45),
      transparent 60%
    ),
    radial-gradient(
      900px 620px at 60% 90%,
      rgba(255, 255, 255, 0.4),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0.75)
    );
}
/* =========================
   How it works slider
========================= */
.section--slider {
  padding-top: 8px;
}

.guide-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.guide-slider__track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.guide-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.guide-card {
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
}

.guide-card__caption {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* nav buttons */
.guide-slider__nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(0, 0, 0, 0.86);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: var(--shadow2);
  transition:
    transform 0.12s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.guide-slider__nav:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.16);
}

.guide-slider__nav:active {
  transform: translateY(1px);
}

/* dots */
.guide-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.guide-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 0;
}

.guide-dot.is-active {
  background: rgba(0, 0, 0, 0.82);
}

/* slide 1 */
.guide-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.guide-step {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.guide-step__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
}

.guide-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guide-step__label {
  font-size: 13px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.72);
  text-align: center;
}

.guide-step__arrow {
  font-size: 28px;
  font-weight: 1000;
  color: rgba(0, 0, 0, 0.34);
  transform: translateY(-10px);
}

/* slide 2, 3 */
.guide-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.guide-feature__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 320px;
  background: rgba(0, 0, 0, 0.04);
}

.guide-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.guide-feature__content {
  display: grid;
  gap: 10px;
}

.guide-feature__kicker {
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
}

.guide-feature__title {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.guide-feature__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* mobile */
@media (max-width: 859px) {
  .guide-slider {
    gap: 8px;
  }

  .guide-slider__nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .guide-card {
    padding: 14px;
    border-radius: 22px;
  }

  .guide-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .guide-step__arrow {
    display: none;
  }

  .guide-card__caption {
    margin-top: 14px;
    font-size: 13px;
  }

  .guide-feature {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .guide-feature__media,
  .guide-feature__media img {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .guide-slider {
    display: block;
  }

  .guide-slider__nav {
    position: absolute;
    top: calc(50% - 18px);
    z-index: 3;
  }

  .guide-slider__nav--prev {
    left: 8px;
  }

  .guide-slider__nav--next {
    right: 8px;
  }
}
.guide-card__footer {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.btn--guide {
  min-width: 180px;
  text-align: center;
}
@media (max-width: 520px) {
  .guide-card__footer {
    justify-content: stretch;
  }

  .btn--guide {
    width: 100%;
  }
}
.guide-slider__viewport {
  overflow: hidden;
  width: 100%;
  transition: height 0.3s ease;
}

.guide-slider__track {
  display: flex;
  align-items: flex-start; /* важно */
  transition:
    transform 0.35s ease,
    height 0.3s ease;
  will-change: transform;
}

.guide-slide {
  min-width: 100%;
  flex: 0 0 100%;
}
.planPrice {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.planPrice__stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.planPrice__old {
  font-size: 15px;
  font-weight: 900;
  opacity: 0.55;
  text-decoration: line-through;
  line-height: 1;
}

.planPrice__main {
  font-size: 34px;
  font-weight: 1000;
  line-height: 1;
}

.planPrice__per {
  font-weight: 900;
  opacity: 0.75;
  padding-bottom: 3px;
}

.planCard--primary .planPrice__old,
.planCard--primary .planPrice__per {
  color: rgba(255, 255, 255, 0.82);
}
/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.faq__item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.48);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__question::after {
  content: "−";
}

.faq__answer {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 520px) {
  .faq__question {
    padding: 16px;
    font-size: 15px;
  }

  .faq__answer {
    padding: 0 16px 16px;
    font-size: 14px;
  }
}
