/* =========================
   RESET / BASE
========================= */
:root {
  --bg: #eef3f6;
  --white: #fff;
  --text: #000;
  --text-2: #111827;
  --muted: #727b7c;
  --muted-2: #6b7280;
  --dark: #01021e;

  --brand: #176bf4;
  --brand-2: #1f74ff;

  --r-12: 12px;
  --r-14: 14px;
  --r-15: 15px;
  --r-24: 24px;
  --r-30: 30px;
  --r-32: 32px;
  --r-40: 40px;
  --r-50: 50px;
  --r-90: 90px;
  --r-150: 150px;
  --r-350: 350px;
  --r-pill: 800px;

  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.form * {
  outline: none;
}

/* =========================
   FONTS
   (исправлено: одна семья Manrope + веса)
========================= */
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Regular.woff2") format("woff2"),
    url("fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Medium.woff2") format("woff2"),
    url("fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-SemiBold.woff2") format("woff2"),
    url("fonts/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Bold.woff2") format("woff2"),
    url("fonts/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* TikTokSans: объединено в одну семью */
@font-face {
  font-family: "TikTokSans";
  src: url("fonts/TikTokSans_18pt_SemiExpanded-Regular.woff2") format("woff2"),
    url("fonts/TikTokSans_18pt_SemiExpanded-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TikTokSans";
  src: url("fonts/TikTokSans_18pt_Expanded-SemiBold.woff2") format("woff2"),
    url("fonts/TikTokSans_18pt_Expanded-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =========================
   GLOBAL
========================= */
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #101827;
  background-color: var(--bg);
}

.container {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}

.hero-container {
  max-width: 1830px;
  padding: 0 15px;
  margin: 0 auto;
}

.masters,
.interface,
.sellers,
.geo,
.faq-section,
.order-section {
  padding-bottom: 80px;
}

.order-section {
  padding-top: 90px;
  text-align: center;
}

.sellers-header,
.masters-header {
  margin-bottom: 40px;
}

.sellers-header-left,
.masters-header-left {
  text-align: left;
}

/* =========================
   TITLES
========================= */
.benefits-title,
.sellers-title,
.geo-title,
.faq-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #01021e;
  margin-bottom: 50px;
}

.benefits-title span,
.sellers-title span,
.geo-title span,
.faq-title span {
  color: var(--brand-2);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 220%;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--r-15);
  border: none;
  cursor: pointer;
  transition: background-color var(--t-base), color var(--t-base),
    border-color var(--t-base), transform var(--t-base),
    box-shadow var(--t-base), opacity var(--t-base);
  white-space: nowrap;
}

.btn-rec {
  font-weight: 600;
  font-size: 11px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #acb0ba;
  border: 1px solid #acb0ba;
  background-color: transparent;
  border-radius: var(--r-pill);
  padding: 5px;
  width: 130px;
  height: 34px;
  cursor: pointer;
}

.btn-reg {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--text);
  border-radius: var(--r-15);
  padding: 0 10px;
  width: 100%;
  height: 70px;
  background: #e5e7ee;
  margin-top: 20px;
}

.btn-primary {
  border-radius: var(--r-15);
  padding: 20px 40px;
  height: 70px;
  background: var(--brand);
}

.btn-primary:hover {
  background-color: #5e95f0;
}

.btn-secondary {
  padding: 0 10px;
  width: 240px;
  height: 70px;
  background: var(--white);
  color: var(--text);
}

.btn-secondary:hover {
  background-color: #cecece;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-2);
  color: var(--text-2);
  border-radius: var(--r-15);
  padding: 10px 22px;
}

.btn-outline:hover {
  background-color: var(--text-2);
  color: var(--white);
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background-color: transparent;
  transition: background-color var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.25);
  background: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  width: 217px;
  height: 26px;
}

.logo img {
  width: 100%;
  height: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav {
  margin-right: 80px;
}

.logo-black {
  display: none;
}

.site-header.scrolled .nav-link {
  color: var(--text);
}

.site-header.scrolled .nav-link:hover {
  color: #939e9f;
}

.site-header.scrolled .logo-white {
  display: none;
}

.site-header.scrolled .logo-black {
  display: inline-block;
}

.site-header.scrolled .btn-outline {
  border: 1px solid var(--text-2);
}

.site-header.scrolled .user-icon-btn {
  background-image: url("img/user-blue.svg");
}

.site-header.scrolled .burger svg path {
  fill: #000;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 220%;
  color: var(--white);
  transition: color var(--t-fast);
}

.nav-link:hover {
  color: #cecece;
}

.user-icon-btn {
  background-image: url("img/user.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 27px 27px;
  width: 27px;
  height: 27px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.header-question-btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 220%;
  background-color: var(--white);
  border: 1px solid var(--white);
  color: #020617;
  height: 40px;
  padding: 14px 28px;
  border-radius: var(--r-15);
  transition: background-color var(--t-base), color var(--t-base),
    border-color var(--t-base);
}

.site-header .header-question-btn:hover {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--white);
  z-index: 60;
  transform: translateX(-100%);
  transition: transform var(--t-base);
  overflow: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
  width: 350px;
}

.mobile-menu-inner {
  padding: 25px 20px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-close {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-weight: 600;
  font-size: 20px;
  line-height: 220%;
  color: var(--text);
}

.mobile-question-btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 220%;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: var(--r-12);
  padding: 15px;
  width: 174px;
  height: 40px;
  margin-bottom: 25px;
}

.mobile-footer-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 110%;
  color: var(--muted);
  margin-bottom: 20px;
}

.mobile-footer-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.mobile-footer-links a {
  font-weight: 500;
  font-size: 11px;
  line-height: 110%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--muted);
}

/* =========================
   HERO GRID WRAPPER (исправлено: template-areas)
   ВАЖНО: ниже использую .hero-images как контейнер визуала.
   Если у тебя в HTML используется .hero-visual, замени
   .hero-images на .hero-visual в этих блоках (или добавь оба).
========================= */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "top images"
    "center images";
  gap: 0;
}

.hero-top {
  grid-area: top;
}

.hero-center {
  grid-area: center;
}

.hero-images {
  grid-area: images;
  position: relative;
  justify-self: center;
  max-width: 650px;
}

.hero-images .hero-visual-right {
  bottom: 50%;
}

.hero-top .hero-title-bottom {
  margin-bottom: 0;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 72px;
  background-image: url("img/fs-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #22112e;
  color: var(--white);
  border-radius: 0 0 var(--r-350) var(--r-350);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  position: relative;
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 90px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--brand);
  margin-bottom: 26px;
}

.hero-title .white {
  color: var(--white);
}

.hero-title .flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-title .icon-rub {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand);
  color: var(--white);
  border-radius: 50%;
  margin: 15px 5px 0 0;
  font-size: 30px;
  min-width: 46px;
  height: 46px;
}

.hero-title-bottom {
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  color: var(--white);
  margin-bottom: 50px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 150px;
}

.hero-info-chip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 13px;
  color: #e5e7eb;
}

.hero-info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-info-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  justify-self: center;
  max-width: 650px;
}

.hero-visual-tip {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 10px 27px;
  backdrop-filter: blur(30px);
  box-shadow: inset 0 4px 10px rgba(119, 123, 255, 0.08),
    inset 0 4px 30px rgba(198, 128, 255, 0.05);
  background: rgba(54, 75, 96, 0.3);
}

.hero-visual-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-visual-name {
  font-weight: 500;
  font-size: 8px;
  line-height: 110%;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual-text {
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  color: var(--white);
}

.hero-visual-left {
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 10;
}

.hero-visual-right {
  position: absolute;
  bottom: 250px;
  right: 0;
  z-index: 10;
}

.hero-phone {
  filter: drop-shadow(0 24px 70px rgba(15, 23, 42, 0.9));
  width: 100%;
}

.hero-info-text {
  max-width: 300px;
}

.hero-info-slogan {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #acb0ba;
}

/* =========================
   ABOUT
========================= */
.about {
  position: relative;
  padding: 80px 0;
}

.about::after {
  content: url("img/decor1.svg");
  position: absolute;
  bottom: -50%;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.about-column {
  display: flex;
  flex-direction: column;
}

.about-icon {
  width: 70px;
  height: 70px;
  margin: 0 0 24px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #050816;
  margin: 0 0 24px;
}

.about-text {
  position: relative;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 30px;
}

.about-text-decor {
  color: var(--brand);
}

.about-text-tip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  vertical-align: middle;
  transition: opacity var(--t-fast);
}

.about-text-tip:hover {
  opacity: 0.7;
}

.about-text-tip svg {
  display: block;
}

ul.about-list {
  list-style: disc;
  padding: 0;
  margin: 0 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list-item {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.about-list-item strong {
  font-weight: 700;
}

.about-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.about-footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.about-footer-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.about-text-block {
  margin-bottom: 24px;
}

.about-text-block:last-child {
  margin-bottom: 0;
}

.about-text-block p {
  font-size: 24px;
  line-height: 140%;
  color: var(--text);
}

.about-text-block p strong {
  font-weight: 700;
}

.about-fairness {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-30);
  padding: 30px 50px;
  box-shadow: 0 20px 50px rgba(14, 7, 28, 0.1);
  background: var(--white);
  margin-bottom: 40px;
}

.about-fairness-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 35px;
}

.about-fairness-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-fairness-items {
  display: flex;
  gap: 16px;
}

.about-fairness-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--text);
  border-radius: var(--r-pill);
  padding: 2px 15px;
  height: 50px;
}

.about-fairness-item span {
  font-weight: 700;
  font-size: 27px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.about-fairness-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.about-fairness-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  color: var(--text);
  max-width: 430px;
}

.about-tip-popup {
  position: absolute;
  top: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: opacity var(--t-fast), visibility var(--t-fast);
}

.about-tip-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.about-tip-popup-content {
  position: relative;
  padding: 24px 28px 24px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-30);
  max-width: 624px;
  width: 100%;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(14, 7, 28, 0.1), inset 0 4px 30px #6d659c;
  background: rgba(15, 11, 33, 0.9);
}

.about-tip-popup-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-tip-popup-icon svg {
  width: 100%;
  height: 100%;
}

.about-tip-popup-text {
  flex: 1;
  padding-right: 8px;
}

.about-tip-popup-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 400;
}

.about-tip-popup-close {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-fast);
}

.about-tip-popup-close:hover {
  opacity: 0.7;
}

.about-tip-popup-close svg {
  width: 100%;
  height: 100%;
}

/* =========================
   FEATURES
========================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--r-24);
  padding: 24px 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: #eff4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-2);
}

.feature-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted-2);
}

/* =========================
   BENEFITS
========================= */
.benefits-box {
  max-width: 1090px;
}

.benefits-subtitle {
  font-weight: 400;
  font-size: 27px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 70px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 311px 257px 258px 429px;
  gap: 8px;
  margin-bottom: 70px;
}

.benefits-grid .card-more-tip:last-child {
  font-weight: 600;
}

.benefit-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--r-24);
  padding: 47px 32px 0;
  height: 390px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.benefit-card .card-more {
  min-width: 240px;
  width: 100%;
}

.benefit-card.active {
  box-shadow: 0 20px 80px rgba(48, 70, 84, 0.2);
  height: auto;
  max-height: 454px;
  z-index: 1;
  border-radius: var(--r-30) var(--r-30) 0 0;
}

.benefit-card.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 4px solid var(--brand-2);
  pointer-events: none;
}

.benefit-card.active .card-bottom {
  bottom: -79px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.08s;
  padding: 0 16px;
  height: 80px;
  z-index: 1;
  background: var(--white);
  border-radius: 0 0 var(--r-30) var(--r-30);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.benefit-image img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.benefit-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 24px;
}

.benefit-card-icon {
  position: absolute;
  top: 25px;
  right: 22px;
}

.benefit-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.benefit-bottom {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 24px;
}

.benefit-bottom-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}

.benefit-bottom-erroe {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
  border: 1px solid #9da0a8;
  border-radius: var(--r-pill);
  padding: 15px;
  height: 43px;
  background: var(--white);
}

/* =========================
   SELLERS
========================= */
.sellers-slogan {
  font-weight: 400;
  font-size: 27px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 30px;
}

/* =========================
   PROCESS
========================= */
.process-inner {
  max-width: 1610px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-50);
  padding: 80px 160px;
  box-shadow: 0 20px 20px rgba(14, 7, 28, 0.1);
  background: var(--white);
}

.process-grid {
  max-width: 1280px;
  margin: 0 auto;
}

.process-grid-top {
  position: relative;
  display: grid;
  grid-template-columns: 428px 428px 406px;
  gap: 10px;
  margin-bottom: 20px;
}

.process-grid-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 538px 362px 362px;
  gap: 10px;
  margin-bottom: 70px;
}

.process-cta,
.benefit-cta {
  text-align: center;
}

.process-card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.process-card {
  position: relative;
  border-radius: var(--r-30);
  background: var(--bg);
  padding: 40px 45px 0;
  min-height: 350px;
  height: 100%;
  cursor: pointer;
}

.process-card.active::after,
.process-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 4px solid var(--brand-2);
  pointer-events: none;
}

.process-card.active {
  box-shadow: 0 20px 80px rgba(48, 70, 84, 0.2);
  background: var(--white);
  height: auto;
  max-height: 454px;
  z-index: 1;
  border-radius: var(--r-30) var(--r-30) 0 0;
}

.card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.process-card.active .card-bottom {
  bottom: -63px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.08s;
  height: 80px;
  z-index: 1;
  background: var(--white);
  border-radius: 0 0 var(--r-30) var(--r-30);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -15px 100px 100px -60px rgba(48, 70, 84, 0.2);
}

.process-icon {
  align-self: center;
}

.process-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 30px;
}

.process-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.process-text-tip {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: text-bottom;
}

.card-more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #636a7a;
  border-radius: var(--r-pill);
  width: 260px;
  height: 60px;
  margin: 0 auto 20px;
  padding: 12px;
}

.card-more-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.process-cta-title,
.benefit-cta-title {
  font-weight: 600;
  font-size: 27px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 30px;
}

.benefits-icon {
  margin-left: 50px;
}

/* =========================
   INTERFACE SLIDER
========================= */
.interface .swiper-slide {
  cursor: grab;
}

.interface-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.interface-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.interface-slider-wrapper {
  max-width: 1610px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.interface-swiper {
  overflow: visible;
  padding: 0 0 60px;
}

.interface-slide {
  height: auto;
  display: flex;
  justify-content: center;
  border-radius: var(--r-30);
}

.interface-slide img {
  width: 100%;
  height: auto;
  max-width: 285px;
  border-radius: var(--r-30);
}

#interface .swiper-btn-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

#interface .swiper-button-prev.interface-swiper-btn,
#interface .swiper-button-next.interface-swiper-btn {
  position: static;
  margin: 0;
  inset: auto;
  transform: none;
}

#interface .interface-swiper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #7f8697;
  background: transparent;
}

#interface .interface-swiper-btn:active {
  transform: translateY(1px);
}

#interface .interface-swiper-btn::after {
  display: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 7px;
  height: 13px;
}

#interface .swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

#interface .interface-swiper-pagination {
  bottom: 0 !important;
  left: 0;
  width: 100%;
  text-align: center;
}

#interface .interface-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 68px;
  margin: 0 6px !important;
  background: #d4dde3;
  opacity: 1;
  transition: width 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

#interface .interface-swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
  background: rgba(10, 20, 40, 0.75);
}

.interface .container {
  padding: 0;
}

/* =========================
   GEO / TABS
========================= */
.directions-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.tabs {
  margin-top: 32px;
}

.geo {
  position: relative;
}

.geo::after {
  content: url("img/decor2.svg");
  position: absolute;
  bottom: 0;
  right: 27%;
  pointer-events: none;
  z-index: -1;
}

.geo-title {
  margin-bottom: 0;
}

.geo-trigger__flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.geo-trigger__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.geo-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.geo-dropdown {
  position: relative;
}

.geo-trigger {
  border: 1px solid var(--text);
  border-radius: var(--r-pill);
  min-width: 176px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 27px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: border-color var(--t-base);
}

.geo-trigger:hover {
  border-color: #939e9f;
}

.geo-trigger__arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-2);
  border-bottom: 2px solid var(--text-2);
  transform: rotate(45deg);
  transition: transform var(--t-fast);
  margin-top: -2px;
}

.geo-dropdown.is-open .geo-trigger__arrow {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.geo-dropdown__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 180px;
  padding: 8px;
  border-radius: var(--r-14);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 50;
}

.geo-dropdown.is-open .geo-dropdown__panel {
  display: block;
}

/* было: left:0 !important дублировалось — оставил один раз */
.geo-dropdown__panel {
  left: 0 !important;
}

.geo-option {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-2);
}

.geo-option:hover {
  background: rgba(31, 116, 255, 0.08);
}

.geo-option.is-active {
  background: rgba(31, 116, 255, 0.12);
  color: var(--brand-2);
  font-weight: 600;
}

/* TABS NAV */
.tabs-nav {
  position: relative;
  border-bottom: 1px solid #abb7bf;
  padding: 0 156px 0 0;
}

.btn-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 34px;
  background-color: var(--bg);
  z-index: 1;
}

.tabs-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #7f8697;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  transition: box-shadow var(--t-fast), opacity var(--t-fast);
}

.tabs-nav-arrow:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tabs-nav-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  box-shadow: none;
}

.tabs-nav-arrow--prev {
  left: 8px;
}

.tabs-nav-arrow--next {
  right: 8px;
}

.tabs-nav-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #7f8697;
  border-right: 2px solid #7f8697;
  transform: translate(-50%, -50%) rotate(45deg);
}

.tabs-nav-arrow--prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.tabs-nav .swiper-wrapper {
  align-items: flex-end;
}

.tabs-nav .swiper-slide {
  width: auto;
}

.tabs-nav-btn {
  position: relative;
  border: none;
  background: none;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 0 0 20px;
  cursor: pointer;
  white-space: nowrap;
  margin-right: 40px;
  transition: color var(--t-base), border-color var(--t-base);
}

.tabs-nav-btn.is-active {
  color: var(--brand-2);
  border-bottom: 2px solid var(--brand-2);
}

.tabs-nav-btn.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--brand-2);
}

.tabs-nav-btn:hover {
  color: var(--muted);
}

.tabs-nav .swiper-slide:last-child .tabs-nav-btn {
  margin-right: 0;
}

/* CONTENT */
.tabs-content {
  padding-top: 20px;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.tab-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--dark);
  text-align: center;
  margin-bottom: 35px;
}

.tab-subtitle {
  font-weight: 700;
  font-size: 27px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 25px;
}

.tab-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  color: var(--text);
  margin-bottom: 10px;
}

.tab-items {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: var(--text);
}

ul.tab-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.tab-city {
  margin-top: 30px;
}

.tab-city-subtitle {
  font-weight: 700;
  font-size: 27px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
}

ul.tab-city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.tab-city-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  color: var(--text);
}

.tab-city-item.is-hidden {
  display: none;
}

.tab-city-content {
  max-width: 900px;
  width: 100%;
}

.tab-city-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* убраны дубли transition и border-bottom */
.tab-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--text);
  border-bottom: 1px solid #c6cadd;
  padding: 0 0 8px;
  cursor: pointer;
  transition: color var(--t-base);
}

.tab-link:hover {
  color: #939e9f;
}

.tab-link span {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #939e9f;
}

.tab-link-more {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--text);
  border-bottom: 1px solid #c6cadd;
  padding: 0 0 8px;
  text-decoration: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: color var(--t-base);
}

.tab-link-more:hover {
  color: #939e9f;
}

.tab-link-more span {
  color: #939e9f;
}

.is-hidden {
  display: none;
}

/* =========================
   FAQ
========================= */
.faq-section {
  border-radius: var(--r-350) var(--r-350) 0 0;
  background-image: url("img/faq-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #22112e;
  padding: 130px 0 75px;
}

.faq-title {
  color: var(--white);
  margin-bottom: 30px;
}

.faq-tabs {
  margin-top: 24px;
}

.faq-tabs-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.faq-tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.01em;
  border: 1px solid #545264;
  color: #545264;
  border-radius: var(--r-pill);
  background: transparent;
  cursor: pointer;
  height: 47px;
  padding: 0 15px;
  white-space: nowrap;
  transition: background-color var(--t-base), color var(--t-base),
    border-color var(--t-base);
}

.faq-tab-btn:hover {
  color: var(--white);
  border-color: var(--white);
}

.faq-tab-btn.is-active {
  font-weight: 700;
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.faq-tabs-content {
  margin-top: 50px;
}

.faq-tabs-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.faq-panel {
  display: none;
}

.faq-panel.is-active {
  display: block;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(217, 217, 217, 0.1);
  padding: 14px 16px 14px 0;
  background-color: transparent;
  cursor: pointer;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.accordion-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: var(--white);
  transition: color var(--t-base);
}

.accordion-title:hover {
  color: #939e9f;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  width: 44px;
  height: 46px;
  position: relative;
  flex-shrink: 0;
}

.accordion-icon::before {
  font-weight: 600;
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--white);
}

.accordion-item:not(.is-open) .accordion-icon::before {
  content: "+";
}

.accordion-item.is-open .accordion-icon::before {
  content: "−";
}

.accordion-body {
  margin-top: 8px;
  font-size: 13px;
  color: #9ca3af;
  display: none;
  text-align: left;
}

.accordion-body p {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #c4c1cc;
  padding-left: 68px;
}

.accordion-item.is-open .accordion-body {
  display: block;
}

.faq-footer {
  margin-top: 70px;
  text-align: center;
}

.faq-outline {
  border: 1px solid #53455d;
  border-radius: var(--r-15);
  width: 293px;
  height: 70px;
  padding: 20px 47px;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  background-color: transparent;
  transition: border-color var(--t-base), color var(--t-base),
    background-color var(--t-base);
}

.faq-outline:hover {
  border-color: var(--white);
}

/* =========================
   ORDER
========================= */
.order-inner {
  max-width: 800px;
  margin: 0 auto;
}

.order-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--dark);
  margin-bottom: 30px;
}

.order-title .icon-rub {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--brand);
  color: var(--white);
  border-radius: 50%;
  margin: 0 5px;
  font-size: 24px;
}

.order-subtitle {
  font-weight: 600;
  font-size: 27px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 30px;
}

.order-title span {
  color: var(--brand);
}

.order-btn {
  width: 412px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  padding: 0 0 60px;
}

.site-footer::after {
  content: url("img/decor3.svg");
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(171, 183, 191, 0.5);
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-2);
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-template-rows: auto;
  gap: 40px 70px;
  max-width: 100%;
  width: 100%;
}

.footer-menu-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 150%;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-menu-list {
  padding: 0;
  margin: 0;
}

.footer-menu-items {
  list-style-type: none;
}

.footer-menu-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 190%;
  color: var(--text);
  transition: color var(--t-base);
}

.footer-menu-link:hover {
  color: var(--muted);
}

.footer-bottom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-bottom-list a {
  text-decoration: underline;
}

.footer-company p {
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-item a {
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--muted);
  transition: color var(--t-base);
}

.footer-bottom-item a:hover {
  color: #adabab;
}

.footer-question-btn {
  border: 1px solid var(--text);
  border-radius: var(--r-12);
  padding: 15px;
  width: 174px;
  height: 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 220%;
  color: var(--text);
  transition: background-color var(--t-base), color var(--t-base),
    border-color var(--t-base);
}

.footer-question-btn:hover {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* =========================
   OVERLAY / MODAL
========================= */
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), visibility var(--t-fast);
  z-index: 40;
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t-fast), transform var(--t-fast),
    visibility var(--t-fast);
  z-index: 70;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modal-header {
  display: none;
}

.modal-done {
  display: none;
}

.modal-done.active {
  display: block;
  width: 770px;
}

.modal-done-img {
  display: inline-block;
  margin-bottom: 30px;
}

.modal-done-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 27px;
}

.modal-done-slogan {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 30px;
}

.modal-btn-close {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--white);
  border-radius: var(--r-15);
  padding: 0 10px;
  width: 217px;
  height: 70px;
  background: var(--brand);
  border: none;
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  padding: 100px;
}

.modal-inner {
  position: relative;
  width: 770px;
}

.modal-inner.hidden {
  display: none;
}

.modal-close {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 45px;
  height: 45px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}

.modal-close:hover svg path,
.modal-close:active svg path {
  stroke: #a1a1a1;
}

.modal-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 30px;
  max-width: 500px;
}

/* =========================
   FORM
========================= */
.ask-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 595px;
  max-height: 680px;
  overflow-x: auto;
}

.form-role {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio__fake {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #d2d3df;
}

.radio input:checked + .radio__fake {
  border: 5px solid var(--brand);
}

.radio__label {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: var(--text);
}

.radio input:checked + .radio__fake + .radio__label {
  font-weight: 700;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: 14px;
  color: var(--text-2);
}

.field__control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #cecfd5;
  border-radius: var(--r-15);
  width: 100%;
  height: 80px;
  padding: 30px;
}

.field__control.is-error {
  border-color: red;
}

.field__flag {
  font-size: 18px;
}

.field__prefix {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.field__input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.field__input::placeholder {
  color: var(--text);
}

.field__textarea {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  width: 100%;
  background: transparent;
  border: 1px solid #cecfd5;
  border-radius: var(--r-15);
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 30px;
  height: 160px;
  resize: vertical;
}

.field__hint {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
}

.captcha {
  max-width: 301px;
  height: 104px;
}

.consent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #696c78;
  cursor: pointer;
  margin-left: 50px;
  max-width: 350px;
  padding-bottom: 30px;
}

.consent input {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.consent__fake {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d2d3df;
  border-radius: 8px;
  min-width: 24px;
  height: 24px;
}

a.consent-link {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.consent input:checked + .consent__fake::after {
  content: url("img/done.svg");
}

.btn-submit {
  width: 100%;
}

.form-message {
  min-height: 18px;
  font-size: 13px;
}

/* =========================
   SCROLL TOP (исправлено: убран конфликт display:none)
   По умолчанию скрываем через opacity/visibility.
========================= */
.scroll-top {
  position: fixed;
  bottom: 15px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--t-base), visibility var(--t-base),
    transform var(--t-base);
  z-index: 1000;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   PAGE / BREADCRUMBS / HERO-PAGE / CONTENT
========================= */
.breadcrumbs {
  padding: 60px 0 40px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 16px;
}

.breadcrumbs__item {
  position: relative;
  color: #dfdada;
}

.breadcrumbs__item:after {
  position: absolute;
  top: 1px;
  right: -11px;
  content: "\\";
  color: var(--brand);
}

.breadcrumbs__item:last-child:after {
  display: none;
}

.breadcrumbs__link,
.breadcrumbs__span {
  font-weight: 400;
  font-size: inherit;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #acb0ba;
}

.hero-page {
  position: relative;
  padding-top: 96px;
  padding-bottom: 250px;
  background-image: url("img/hero-page-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #22112e;
  color: var(--white);
  border-radius: 0 0 var(--r-350) var(--r-350);
}

.hero-page-title {
  font-family: "TikTokSans";
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 30px;
}

.hero-page-content {
  max-width: 1060px;
}

.hero-page-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-page-author-img {
  width: 33px;
  height: 33px;
  object-fit: cover;
}

.hero-page-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: var(--white);
}

.page-content {
  padding: 0 20px;
}

.page-content-inner {
  position: relative;
  z-index: 1;
  max-width: 1610px;
  margin: 0 auto;
  width: 100%;
  background: var(--white);
  border-radius: var(--r-32);
  padding: 50px 150px 100px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
  margin-top: -220px;
}

.page-content-slogan {
  font-weight: 700;
  font-size: 27px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 40px;
}

.page-content-text,
.page-content-text-bolt {
  font-size: 22px;
  line-height: 140%;
  color: var(--text);
}

.page-content-text {
  font-weight: 400;
  margin-bottom: 40px;
}

.page-content-text-bolt {
  font-weight: 700;
  margin-bottom: 0;
}

.page-content-h2,
.page-content-h3,
.page-content-h4 {
  font-family: "TikTokSans";
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 40px;
}

.page-content-h2 {
  font-size: 33px;
}

.page-content-h3 {
  font-size: 30px;
}

.page-content-h4 {
  font-size: 27px;
}

ul.page-content-list {
  margin: 0 0 40px 20px;
  list-style: disc;
}

ol.page-content-list {
  margin: 0 0 40px 20px;
  list-style: decimal;
}

.page-content-item {
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  color: var(--text);
}

.page-card {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: var(--r-30);
  padding: 30px 170px 30px 70px;
  margin-bottom: 40px;
}

.page-card--gray {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg);
}

.page-card--gray .page-card-icon {
  min-width: 110px;
  height: 110px;
}

.page-card-img {
  width: 100%;
  height: 100%;
}

.page-card-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 30px;
}

.page-card-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--text);
}

.page-content-link {
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--brand);
  cursor: pointer;
  transition: color var(--t-base);
}

.page-content-link:hover {
  color: var(--brand-2);
}

.page-card--red {
  background: #fbe1e6;
}

/* =========================
   MEDIA QUERIES
========================= */
@media (max-width: 1650px) {
  .hero,
  .hero-page {
    border-radius: 0 0 var(--r-150) var(--r-150);
  }

  .process-inner {
    padding: 60px;
  }

  .footer-menu {
    gap: 40px;
  }

  .interface .container {
    padding: 0 15px;
  }
}

@media (max-width: 1400px) {
  .hero-title .icon-rub {
    font-size: 22px;
    min-width: 32px;
    height: 32px;
    margin: 10px 0 0 0;
  }

  .header-right {
    gap: 20px;
  }

  .main-nav {
    margin-right: 0;
  }

  .nav-list {
    gap: 15px;
  }

  .hero-inner {
    gap: 70px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-actions {
    max-width: 340px;
    margin-bottom: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 40px;
  }

  .benefit-card {
    min-height: 390px;
    height: 100%;
  }

  .benefit-card .card-more {
    min-width: 220px;
    width: 100%;
  }

  .faq-section {
    border-radius: var(--r-150) var(--r-150) 0 0;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-middle {
    order: 1;
  }

  .process-grid-top {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .faq-tabs-nav {
    gap: 10px;
  }

  .order-title .icon-rub {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .about::after {
    content: url("img/decor1-t.svg");
    bottom: -100%;
  }

  .geo::after {
    content: url("img/decor2-t.svg");
    bottom: -116%;
    right: 0;
  }

  .site-footer::after {
    content: url("img/decor3-t.svg");
    bottom: 0;
    right: 0;
  }

  .tab-city-item {
    font-size: 16px;
  }

  .mobile {
    display: none;
  }

  .tab-city-box {
    flex-direction: column;
  }

  .tab-city-subtitle {
    font-size: 24px;
  }

  .tab-items {
    font-size: 16px;
  }

  .tab-text {
    font-size: 18px;
  }

  .tab-title {
    margin-bottom: 16px;
  }

  .tab-subtitle {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .tabs-content {
    padding-top: 25px;
  }

  .tabs-nav-btn {
    font-size: 18px;
  }

  .geo-trigger {
    font-size: 24px;
  }

  .process-grid-bottom {
    margin-bottom: 30px;
  }

  .process-card.active::after {
    display: none;
  }

  .process-card.active {
    box-shadow: none;
    background: var(--bg);
    border-radius: var(--r-30);
    max-height: 100%;
  }

  .process-card.active .card-bottom {
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    height: auto;
    z-index: 1;
    border-radius: 0;
    border: none;
    box-shadow: none;
    position: static;
    pointer-events: auto;
  }

  .card-more {
    width: 100%;
  }

  .process-inner {
    padding: 40px 30px;
  }

  .process-card {
    border-radius: var(--r-30);
    padding: 25px;
    min-height: 100%;
    height: auto;
  }

  .process-card-inner {
    gap: 0;
  }

  .interface-header {
    margin-bottom: 14px;
    align-items: flex-start;
  }

  .sellers-header,
  .masters-header {
    margin-bottom: 30px;
  }

  .logo {
    width: 217px;
    height: 26px;
  }

  .main-nav {
    display: none;
  }

  .header-question-btn {
    order: -1;
    margin-right: 16px;
  }

  .header-right {
    gap: 36px;
  }

  .burger {
    display: flex;
  }

  .hero {
    border-radius: 0 0 var(--r-90) var(--r-90);
    overflow: visible;
    height: 100%;
    padding: 110px 0 50px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    font-size: 18px;
  }

  .hero-info-chip {
    margin-left: 16px;
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-title {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 16px;
  }

  .hero-title-bottom {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .hero-info-slogan {
    font-size: 16px;
  }

  .hero-visual {
    max-width: 425px;
  }

  .hero-visual-left {
    top: 70px;
    left: 60px;
    padding: 3px 12px;
  }

  .hero-visual-left.hero-visual-tip {
    gap: 3px;
  }

  .hero-visual-left .hero-visual-name {
    font-size: 3px;
  }

  .hero-visual-left .hero-visual-text {
    font-size: 5px;
  }

  .hero-visual-right.hero-visual-tip {
    gap: 10px;
  }

  .hero-visual-right .hero-visual-name {
    font-size: 6px;
  }

  .hero-visual-right .hero-visual-text {
    font-size: 9px;
  }

  .hero-visual-left img {
    width: 10px;
    height: 10px;
  }

  .hero-visual-right img {
    width: 15px;
    height: 15px;
  }

  .hero-visual-right {
    bottom: 200px;
    right: 50px;
    padding: 5px;
  }

  .masters,
  .interface,
  .sellers,
  .geo,
  .faq-section,
  .order-section {
    padding-bottom: 40px;
  }

  .order-section {
    padding-top: 50px;
  }

  .benefits-title {
    margin-bottom: 20px;
  }

  .benefits-subtitle {
    font-size: 20px;
    margin-bottom: 0;
  }

  .benefits-title,
  .sellers-title,
  .geo-title,
  .faq-title {
    font-size: 40px;
  }

  .sellers-title {
    margin-bottom: 20px;
  }

  .sellers-slogan {
    margin-bottom: 5px;
  }

  .sellers-text {
    font-size: 18px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .process-cta-title,
  .benefit-cta-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .about {
    padding: 20px 0 50px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .about-icon {
    width: 50px;
    height: 50px;
    margin: 0 0 20px 10px;
  }

  .about-text {
    font-size: 20px;
    margin-bottom: 14px;
  }

  ul.about-list {
    gap: 10px;
  }

  .about-list-item {
    font-size: 18px;
  }

  .about-text-block p {
    font-size: 18px;
  }

  .about-footer-item {
    font-size: 18px;
  }

  .about-fairness {
    padding: 30px;
    margin: 0;
  }

  .about-fairness-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .about-fairness-item {
    padding: 3px 13px;
  }

  .about-fairness-text {
    font-size: 18px;
  }

  .about-fairness-item span {
    font-size: 24px;
  }

  .about-footer {
    margin-bottom: 26px;
  }

  .benefit-title {
    font-size: 20px;
    margin: 0 20px 20px 0;
  }

  .benefit-text {
    font-size: 16px;
  }

  .benefit-card {
    border-radius: 25px;
    padding: 25px;
    height: 100%;
    min-height: 100%;
  }

  .benefit-card.active .card-bottom {
    padding: 0;
  }

  .benefit-card:nth-child(4),
  .benefit-card:nth-child(1) {
    order: -1;
  }

  .benefit-card.active {
    height: 100%;
    max-height: 100%;
    border-radius: var(--r-30);
    box-shadow: none;
  }

  .benefit-card.active .card-bottom {
    height: 60px;
  }

  .benefit-card.active::after {
    display: none;
  }

  .benefit-card-inner {
    height: 100%;
  }

  .benefit-image img {
    width: 120px;
  }

  .benefits-icon {
    margin-left: 30px;
  }

  .benefits-icon svg {
    width: 39px;
    height: 39px;
  }

  .card-bottom {
    position: static;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
  }

  .card-more {
    background-color: var(--white);
    margin: 0 auto;
  }

  .sellers-slogan {
    font-size: 20px;
  }

  .tab-city-content {
    width: 100%;
  }

  ul.tab-city-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-section {
    border-radius: var(--r-90) var(--r-90) 0 0;
    padding: 60px 0 30px;
  }

  .faq-title {
    margin-bottom: 26px;
  }

  .faq-tab-btn {
    font-size: 18px;
    height: 43px;
  }

  .accordion-title {
    font-size: 20px;
  }

  .accordion-icon {
    width: 35px;
    height: 35px;
  }

  .accordion-icon::before {
    font-size: 20px;
  }

  .accordion-body p {
    font-size: 16px;
  }

  .btn.faq-outline {
    font-size: 20px;
  }

  .faq-footer {
    margin-top: 50px;
  }

  .order-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .order-subtitle {
    font-size: 24px;
  }

  .order-inner {
    max-width: 600px;
  }

  .site-footer {
    padding: 0 0 50px;
  }

  .footer-inner {
    gap: 40px;
    padding-top: 46px;
  }

  .footer-menu {
    gap: 26px 50px;
  }

  .btn.footer-question-btn {
    font-size: 16px;
  }

  .footer-menu-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .footer-menu-link {
    font-size: 14px;
  }

  .footer-middle {
    gap: 40px;
  }

  .footer-left {
    margin-bottom: 0;
  }

  .modal-dialog {
    max-width: 100%;
    padding: 60px;
    margin-left: 20px;
  }

  .modal-close {
    top: 30px;
    right: 40px;
  }

  .modal-inner {
    width: 100%;
  }

  .modal-done.active {
    width: 100%;
  }

  .modal-title {
    font-size: 40px;
  }

  .page-content-slogan {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .page-content-text {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .page-content-h2 {
    font-size: 27px;
    margin-bottom: 30px;
  }

  .page-content-h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .page-content-h4 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .page-content-item {
    font-size: 18px;
  }

  .page-content-link {
    font-size: 18px;
  }

  ul.page-content-list,
  ol.page-content-list {
    margin: 0 0 30px 20px;
  }

  .page-card {
    gap: 20px;
    padding: 30px 10px 30px 40px;
    margin-bottom: 30px;
  }

  .page-card--gray .page-card-icon {
    min-width: 68px;
    height: 68px;
  }

  .page-card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .page-card-text {
    font-size: 16px;
  }

  .hero-page {
    border-radius: 0 0 var(--r-90) var(--r-90);
    padding-bottom: 130px;
  }

  .page-content-inner {
    padding: 30px;
    margin-top: -100px;
  }

  .hero-page-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .hero-page-name {
    font-size: 16px;
  }

  .breadcrumbs {
    padding: 0 0 20px;
  }

  .breadcrumbs__list {
    font-size: 11px;
  }

  .btn {
    font-size: 18px;
  }

  .interface-slider-wrapper {
    padding: 0 14px;
  }

  .tab-link-more {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* HERO WRAPPER responsive (исправлено: template-areas) */
  .hero-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "images"
      "images"
      "center";
  }

  .hero-top,
  .hero-center {
    margin: 0 auto;
  }

  .hero-images .hero-phone {
    max-height: 400px;
    filter: none;
  }

  .hero-images .hero-visual-left {
    top: 25%;
    padding: 3px 10px;
  }

  .faq-tabs-nav {
    gap: 6px;
  }

  .interface .container {
    padding: 0 30px;
  }

  .tabs-nav {
    padding: 0;
  }

  .hero-title .icon-rub {
    font-size: 18px;
    min-width: 23px;
    height: 23px;
    margin: 5px 0 0 0;
  }

  .btn-reg {
    height: 60px;
  }

  .hero {
    padding: 80px 0 20px;
    border-radius: 0 0 var(--r-40) var(--r-40);
  }

  .hero-title-bottom {
    font-size: 24px;
  }

  .hero-info-box {
    justify-content: center;
    gap: 3px;
  }

  .hero-container {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 40px;
  }

  .process-grid-top {
    grid-template-columns: 1fr;
  }

  .process-grid-bottom {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 197px;
    height: 23px;
  }

  .header-right {
    gap: 20px;
  }

  .header-question-btn {
    display: none;
  }

  .container {
    padding: 0 30px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-actions .btn {
    width: 100%;
    height: 60px;
  }

  .btn-primary {
    height: 60px;
    padding: 10px;
    max-width: 100%;
    width: 340px;
  }

  .hero-info-slogan {
    font-size: 14px;
  }

  .hero-visual-left {
    left: 30px;
    padding: 3px;
  }

  .hero-visual-right {
    bottom: 200px;
    right: 30px;
    padding: 10px;
  }

  .masters,
  .interface,
  .sellers,
  .geo,
  .faq-section,
  .order-section {
    padding-bottom: 40px;
  }

  .benefits-title,
  .sellers-title,
  .geo-title,
  .faq-title,
  .process-title {
    font-size: 30px;
  }

  .process-title {
    margin-bottom: 30px;
  }

  .benefits-title {
    margin-bottom: 0;
  }

  .faq-title {
    margin-bottom: 24px;
  }

  .about::after {
    content: url("img/decor1-m.svg");
    bottom: 16%;
  }

  .about-icon {
    width: 40px;
    height: 40px;
    margin: 0 0 20px 0;
  }

  .about-text {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .about-tip-popup-text p {
    font-size: 14px;
  }

  .about-fairness {
    padding: 20px 30px;
    margin-bottom: 20px;
  }

  .about-fairness-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .about-fairness-content {
    flex-wrap: wrap;
    gap: 16px;
  }

  .about-fairness-items {
    gap: 12px;
  }

  .about-fairness-item {
    border: 0.8px solid var(--text);
    padding: 12px;
    height: 38px;
  }

  .about-fairness-item span {
    font-size: 20px;
  }

  .about-fairness-text {
    font-size: 14px;
  }

  .about-footer {
    gap: 6px;
  }

  .about {
    padding: 20px 0 25px;
  }

  .benefits-box-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
  }

  .benefits-icon {
    margin-left: 0;
  }

  .benefits-icon svg {
    width: 44px;
    height: 44px;
  }

  .benefits-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-card-icon {
    top: 30px;
    right: 20px;
  }

  .process-cta-title,
  .benefit-cta-title {
    font-size: 18px;
  }

  .about-column-left .interface-swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px !important;
  }

  .interface .interface-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }

  .interface .swiper-btns,
  .geo .swiper-btns {
    display: none !important;
  }

  .interface-title {
    font-size: 30px;
  }

  .interface-slider-wrapper {
    padding: 0 30px;
  }

  .sellers-title {
    margin-bottom: 30px;
  }

  .sellers-slogan,
  .sellers-text {
    font-size: 18px;
  }

  .process-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .process-text {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .process-icon {
    max-width: 150px;
  }

  .geo::after {
    content: url("img/decor2-m.svg");
    bottom: 0;
    right: 0;
  }

  .directions-header {
    gap: 15px;
  }

  .geo-trigger {
    min-width: 144px;
    height: 40px;
    font-size: 18px;
  }

  .tabs-nav-btn {
    font-size: 16px;
    margin-right: 20px;
  }

  .tab-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
  }

  .tab-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .tab-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .tab-item:nth-child(n + 3) {
    display: none !important;
  }

  .tab-item:nth-child(1),
  .tab-item:nth-child(2) {
    flex: 1;
    min-width: 0;
  }

  .tab-items,
  .tab-city-item {
    font-size: 16px;
  }

  .tab-link {
    font-size: 14px;
  }

  .tab-city-box {
    flex-direction: column;
  }

  .tab-city-subtitle {
    font-size: 20px;
  }

  ul.tab-city-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin-bottom: 15px;
  }

  .faq-section {
    border-radius: var(--r-40) var(--r-40) 0 0;
    padding: 24px 0 45px;
  }

  .faq-tab-btn {
    font-size: 14px;
    height: 30px;
    padding: 0 10px;
  }

  .faq-tabs-content {
    margin-top: 35px;
  }

  .faq-tabs-title {
    font-size: 20px;
  }

  .accordion {
    gap: 20px;
  }

  .accordion-header {
    gap: 15px;
  }

  .accordion-icon {
    width: 30px;
    height: 30px;
  }

  .accordion-icon::before {
    font-size: 20px;
  }

  .accordion-title {
    font-size: 18px;
  }

  .btn.faq-outline {
    width: 293px;
    height: 60px;
    font-size: 18px;
  }

  .order-section {
    padding-top: 42px;
  }

  .order-subtitle {
    font-size: 20px;
  }

  .order-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .order-title .icon-rub {
    width: 25px;
    height: 25px;
    font-size: 17px;
  }

  .order-btn {
    width: 340px;
    height: 60px;
  }

  .site-footer {
    padding: 0 0 40px;
  }

  .site-footer::after {
    content: url("img/decor3-m.svg");
    bottom: 0;
  }

  .footer-inner {
    padding-top: 40px;
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .footer-menu {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-menu-title {
    position: relative;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
  }

  .footer-menu-title::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-80%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transition: transform var(--t-base);
  }

  .footer-menu-title.active::after {
    transform: translateY(0) rotate(225deg);
  }

  .footer-menu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base), padding var(--t-base);
  }

  .footer-menu-list.active {
    max-height: 300px;
  }

  .footer-menu-link {
    font-size: 15px;
  }

  .footer-links {
    gap: 4px 16px;
  }

  .footer-bottom-item a {
    font-size: 12px;
  }

  .footer-right {
    display: none;
  }

  /* MOBILE MODAL */
  .modal {
    position: fixed;
    inset: 0;
    background-color: var(--white);
    z-index: 60;
    transform: translateX(-100%);
    transition: transform var(--t-base);
    opacity: 1;
    visibility: visible;
  }

  .modal.is-open {
    transform: translateX(0);
    width: 360px;
  }

  .modal-dialog {
    padding: 30px;
    margin-left: 0;
  }

  .modal-close-d {
    display: none;
  }

  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .modal-title {
    font-size: 30px;
  }

  .ask-form {
    gap: 20px;
  }

  .form-role {
    gap: 12px;
  }

  .radio__label {
    font-size: 16px;
  }

  .field__control {
    height: 60px;
    padding: 15px 30px;
  }

  .field__hint {
    font-size: 11px;
  }

  .consent {
    font-size: 11px;
    margin-left: 30px;
  }

  .modal-done-title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .modal-done-slogan {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .modal-btn-close {
    font-size: 20px;
    border-radius: var(--r-15);
    padding: 0 10px;
    width: 100%;
    height: 60px;
  }

  .hero-page {
    border-radius: 0 0 var(--r-40) var(--r-40);
  }

  .page-content {
    padding: 0 10px;
  }

  .page-content-inner {
    padding: 30px 20px;
  }

  .page-content-slogan {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .page-content-text {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .page-content-h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .page-content-h3 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .page-content-h4 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .page-content-item {
    font-size: 18px;
  }

  .page-card {
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    margin-bottom: 24px;
  }

  .page-card-icon svg {
    width: 27px;
    height: 27px;
  }

  .page-card-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

@media (max-width: 380px) {
  .order-btn {
    width: 100%;
  }

  .btn {
    white-space: normal;
    line-height: 1.3;
  }

  .faq-outline {
    width: 100%;
  }

  .card-more {
    width: 100%;
  }
}
