/* ===== Variables ===== */
:root {
  --color-dark: #1a1a1a;
  --color-dark-2: #252525;
  --color-dark-3: #2d2d2d;
  --color-accent: #f2a900;
  --color-accent-hover: #d99500;
  --color-white: #ffffff;
  --color-gray: #f5f5f5;
  --color-gray-2: #e8e8e8;
  --color-text: #333333;
  --color-text-light: #888888;
  --color-text-muted: #aaaaaa;
  --font: 'Montserrat', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --transition: 0.3s ease;
  --header-height: 72px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--header-height);
}

/* Theme scrollbars (Firefox + Chromium/WebKit) */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) var(--color-dark-2);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--color-dark-2);
}

*::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 999px;
  border: 2px solid var(--color-dark-2);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-hover);
}

*::-webkit-scrollbar-corner {
  background: var(--color-dark-2);
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button, input {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===== Utilities ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-accent {
  color: var(--color-accent);
}

.section {
  padding: 80px 0;
}

.section--light {
  background: var(--color-white);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--gray {
  background: var(--color-gray);
}

.section__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  color: inherit;
}

.section__title--left {
  text-align: left;
}

.section-head {
  margin-bottom: 48px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section__title {
  margin-bottom: 16px;
}

.section__lead {
  max-width: 720px;
  margin: 0;
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.6;
}

.section-head--center .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.section__lead--left {
  margin-top: 16px;
}

.section__lead--on-dark {
  color: var(--color-text-muted);
}

.section__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-dark);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 169, 0, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-dark-2);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn--full {
  width: 100%;
}

/* ===== Form ===== */
.form__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 1.5px solid var(--color-gray-2);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition);
  margin-bottom: 12px;
}

.form__input:focus {
  border-color: var(--color-accent);
}

.form__input::placeholder {
  color: var(--color-text-light);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo__icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.logo__text {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.logo__accent {
  color: var(--color-accent);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__scroll {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav__bottom {
  display: none;
}

.nav__list {
  display: flex;
  gap: 28px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.header__phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}

.header__phone:hover {
  color: var(--color-accent);
}

.header__hours {
  font-size: 11px;
  color: var(--color-text-muted);
}

.header__callback {
  flex-shrink: 0;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  z-index: 1101;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.burger__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
  pointer-events: none;
}

.burger__box span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}

.burger--active {
  background: rgba(242, 169, 0, 0.15);
  border-color: rgba(242, 169, 0, 0.45);
}

.burger--active .burger__box span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger--active .burger__box span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger--active .burger__box span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: auto;
  display: block;
  padding-top: var(--header-height);
  background: var(--color-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-dark);
  background-image:
    linear-gradient(90deg, rgba(26, 26, 26, 0.97) 40%, rgba(26, 26, 26, 0.4) 70%, rgba(26, 26, 26, 0.2) 100%),
    var(--bc-hero-bg, none);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  padding: 76px 20px 84px;
}

.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 17px;
  color: #cfcfd6;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  max-width: 600px;
}

.hero__feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
}

.hero__feature svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.hero__feature-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.35;
}

.hero__feature-text {
  display: block;
  font-size: 13px;
  color: #9d9da6;
  margin-top: 2px;
  line-height: 1.45;
}

.hero__form-card {
  background: var(--color-white);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero__form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 6px;
}

.hero__form-subtitle {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero__form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 12px;
}

.hero__form-note svg {
  width: 14px;
  height: 14px;
  color: var(--color-text-light);
}

/* ===== Cards Grid ===== */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-2);
  border-radius: 6px;
  padding: 26px 24px 22px;
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.cards-grid--services {
  gap: 28px;
}

.cards-grid--services .card--service {
  display: flex;
  flex-direction: column;
  padding: 34px 32px 30px;
  border-radius: 4px;
  border-color: #eaeaea;
}

.card--service:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 28px rgba(35, 37, 43, 0.07);
  transform: translateY(-2px);
}

.card--flat:hover {
  transform: none;
  box-shadow: none;
  border-color: #eaeaea;
}

.card__icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 22px;
  height: 30px;
  color: var(--color-accent);
}

.card__icon svg {
  display: block;
  width: 30px;
  height: 30px;
  color: inherit;
}

.card__icon-img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.cards-grid--services .card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #1f2226;
  margin: 0 0 14px;
  min-height: 2.7em;
}

.cards-grid--services .card__text {
  font-size: 15.5px;
  line-height: 1.72;
  color: #8e949c;
  margin: 0 0 22px;
}

.card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-hover);
}

.card__more svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition);
}

.card--service:hover .card__more svg {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .card--service,
  .card--service:hover,
  .card__more svg {
    transition: none;
    transform: none;
  }
}

/* ===== Problem Section ===== */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.problem__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.solution-box {
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.solution-box__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.solution-box__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.solution-box__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.restrictions-card {
  background: var(--color-dark-2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.restrictions-card__title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.restrictions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.restrictions-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.restrictions-list svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.restrictions-list strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.restrictions-list span {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}

.step__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.step__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  user-select: none;
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.step__text {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ===== Documents & Brands ===== */
.docs-brands {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.docs__eyebrow,
.brands__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  margin-bottom: 10px;
}

.docs .section__title,
.brands .section__title {
  margin-bottom: 28px;
}

.docs__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.docs__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation: docs-rise 0.55s ease both;
  animation-delay: calc(var(--i, 0) * 0.05s);
}

.docs__item:hover {
  transform: translateX(4px);
  border-color: rgba(242, 169, 0, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.docs__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.14);
  color: var(--color-accent-hover);
  flex-shrink: 0;
}

.docs__check svg {
  width: 16px;
  height: 16px;
}

.docs__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
}

.docs__index {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.brands__panel {
  height: 100%;
  background: var(--color-dark);
  border-radius: 16px;
  padding: 32px 28px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.brands__panel::before {
  content: '';
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 169, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.brands__panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent 70%);
}

.brands__header {
  position: relative;
  z-index: 1;
}

.brands__eyebrow {
  color: var(--color-accent);
}

.brands .section__title {
  color: var(--color-white);
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
  animation: docs-rise 0.55s ease both;
  animation-delay: calc(0.15s + var(--i, 0) * 0.04s);
}

.brand__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  transition: color var(--transition);
}

.brand:hover {
  background: rgba(242, 169, 0, 0.12);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.brand:hover .brand__name {
  color: var(--color-accent);
}

.brands__note {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
  padding-top: 4px;
}

/* ===== Social messengers ===== */
.bc-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bc-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform var(--transition), opacity var(--transition);
}

.bc-social__link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.bc-social__icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
}

.bc-social__icon--max {
  border-radius: 8px;
}

.bc-social__label {
  font-size: 13px;
  font-weight: 600;
}

.bc-social--footer {
  margin-top: 14px;
  justify-content: flex-end;
}

.bc-social--footer .bc-social__label {
  color: var(--color-text-muted);
}

.bc-social--footer .bc-social__link:hover .bc-social__label {
  color: var(--color-accent);
}

.bc-social--nav {
  justify-content: flex-start;
  gap: 14px;
}

.bc-social--nav .bc-social__label {
  color: var(--color-white);
}

.bc-social--nav .bc-social__icon {
  width: 30px;
  height: 30px;
}

.bc-social--contacts {
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.bc-social--contacts .bc-social__link {
  padding: 12px 16px;
  background: var(--color-gray);
  border: 1px solid var(--color-gray-2);
  border-radius: var(--radius-lg);
}

.bc-social--contacts .bc-social__label {
  color: var(--color-dark);
}

.bc-social--contacts .bc-social__icon {
  width: 40px;
  height: 40px;
}

.bc-social--form {
  justify-content: center;
  gap: 12px;
}

.bc-social--form .bc-social__label {
  display: none;
}

.bc-social--form .bc-social__icon {
  width: 32px;
  height: 32px;
}

.contacts-messengers {
  max-width: 820px;
  margin: 36px auto 0;
  padding: 28px 24px;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  color: var(--color-white);
}

.contacts-messengers__title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
}

.contacts-messengers__text {
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.contacts-messengers .bc-social--contacts .bc-social__link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.contacts-messengers .bc-social--contacts .bc-social__label {
  color: var(--color-white);
}

/* ===== CF7 shared lead form layout ===== */
.bc-cf7--hero .wpcf7-form,
.bc-cf7--cta .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-cf7-fields-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.bc-cf7--cta .bc-cf7-fields-row {
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.bc-cf7-consent {
  display: flex;
}

.bc-cf7-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  padding: 10px 0;
}

.bc-cf7-consent__text {
  flex: 1 1 auto;
  min-width: 0;
}

.bc-cf7-consent__text a {
  color: inherit;
  text-decoration: underline;
}

.bc-cf7-consent .wpcf7-form-control-wrap,
.bc-cf7-consent .wpcf7-acceptance,
.bc-cf7-consent .wpcf7-list-item {
  display: block;
  margin: 0;
  width: auto;
}

.bc-cf7-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  margin: 1px 0 0 !important;
  flex: 0 0 18px;
  border: 1.5px solid var(--color-gray-2);
  border-radius: 3px;
  background: #fafafa;
  cursor: pointer;
  position: relative;
}

.bc-cf7-consent input[type="checkbox"]:checked {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.bc-cf7-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--color-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bc-cf7--hero .bc-cf7-consent,
.bc-cf7--hero .bc-cf7-consent__label {
  color: var(--color-text-light);
}

.bc-cf7--cta .bc-cf7-consent,
.bc-cf7--cta .bc-cf7-consent__label {
  color: #5c4508;
}

.bc-cf7--cta .bc-cf7-consent__text a {
  color: #3d2e05;
}

.bc-cf7--cta .bc-cf7-consent input[type="checkbox"] {
  border-color: rgba(26, 26, 26, 0.2);
  background: var(--color-white);
}

/* ===== CF7 Hero form ===== */
.bc-cf7--hero .wpcf7-form-control-wrap {
  display: block;
}

.bc-cf7--hero input.wpcf7-form-control:not([type="checkbox"]):not([type="submit"]),
.bc-cf7--hero input.form__input,
.bc-cf7--hero .wpcf7-text,
.bc-cf7--hero .wpcf7-tel {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 1.5px solid var(--color-gray-2);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  margin-bottom: 0;
}

.bc-cf7--hero input.wpcf7-form-control:focus {
  border-color: var(--color-accent);
  outline: none;
}

.bc-cf7--hero .wpcf7-submit,
.bc-cf7--hero input[type="submit"] {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-dark);
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.bc-cf7--hero .wpcf7-submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 169, 0, 0.4);
}

.bc-cf7__after {
  margin-top: 8px;
}

.bc-cf7__messengers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-gray-2);
}

.bc-cf7__messengers-label {
  font-size: 12px;
  color: var(--color-text-light);
  font-weight: 600;
}

.bc-cf7--hero .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  border: none !important;
}

.bc-cf7--hero .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #9b1c1c;
  margin-top: 4px;
}

.bc-cf7-missing {
  font-size: 13px;
  color: #9b1c1c;
}

@keyframes docs-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .docs__item,
  .brand {
    animation: none;
  }
}

/* ===== Advantages ===== */
.advantages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.advantage {
  text-align: center;
}

.advantage__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.advantage__icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.advantage__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.advantage__text {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ===== Reviews ===== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  background: var(--color-dark-2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review__stars {
  color: var(--color-accent);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.review__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--color-accent);
  padding: 48px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-banner__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.cta-banner__subtitle {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
}

.cta-banner__form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  background: var(--color-white);
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-banner__form .form__input {
  margin-bottom: 0;
  min-width: 180px;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  color: #9d9da6;
  padding: 56px 0 26px;
  font-size: 14px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid #3a3a3a;
}

.footer__logo {
  margin-bottom: 14px;
}

.footer__about {
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__req {
  font-size: 12.5px;
  line-height: 1.7;
  margin-top: 16px;
  color: #9d9da6;
}

.footer__heading {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__list a {
  color: #9d9da6;
  text-decoration: none;
  transition: color var(--transition);
}

.footer__list a:hover {
  color: var(--color-accent);
}

.footer__phone-link {
  color: var(--color-white);
  font-weight: 600;
}

.footer__messengers {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__messengers span {
  color: #75757e;
}

.footer__bottom {
  padding-top: 22px;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.footer__copy {
  font-size: 12px;
  color: #75757e;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer__legal a {
  font-size: 12px;
  color: #9d9da6;
  text-decoration: none;
}

.footer__legal a:hover {
  color: var(--color-accent);
}

.footer__disclaimer {
  font-size: 11.5px;
  color: #66666e;
  max-width: 780px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  width: 100%;
  max-width: 420px;
  margin: 20px;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal--open .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  background: none;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1;
}

.modal__close:hover {
  color: var(--color-dark);
}

.modal__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.toast--show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .header__contacts,
  .header__callback {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .hero__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .docs-brands {
    grid-template-columns: 1fr;
  }

  .brands__panel {
    padding: 28px 20px;
  }

  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__form {
    flex-direction: column;
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__contacts {
    align-items: center;
  }

  .bc-social--footer {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(86vw, 360px);
    height: 100vh;
    height: 100dvh;
    z-index: 1100;
    background: var(--color-dark);
    padding: calc(var(--header-height) + 12px) 20px 24px;
    transform: translateX(105%);
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav__scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding-bottom: 16px;
  }

  .nav__bottom {
    display: block;
    flex-shrink: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__item {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav--open .nav__scroll > .nav__list > .nav__item {
    opacity: 1;
    transform: translateX(0);
  }

  .nav--open .nav__scroll > .nav__list > .nav__item:nth-child(1) { transition-delay: 0.06s; }
  .nav--open .nav__scroll > .nav__list > .nav__item:nth-child(2) { transition-delay: 0.1s; }
  .nav--open .nav__scroll > .nav__list > .nav__item:nth-child(3) { transition-delay: 0.14s; }
  .nav--open .nav__scroll > .nav__list > .nav__item:nth-child(4) { transition-delay: 0.18s; }
  .nav--open .nav__scroll > .nav__list > .nav__item:nth-child(5) { transition-delay: 0.22s; }
  .nav--open .nav__scroll > .nav__list > .nav__item:nth-child(6) { transition-delay: 0.26s; }
  .nav--open .nav__scroll > .nav__list > .nav__item:nth-child(7) { transition-delay: 0.3s; }
  .nav--open .nav__scroll > .nav__list > .nav__item:nth-child(8) { transition-delay: 0.34s; }

  .nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    border-radius: var(--radius);
  }

  .nav__link::after {
    display: none;
  }

  .nav__link:hover,
  .nav__link--active {
    color: var(--color-accent);
    background: transparent;
  }

  .nav__arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .nav__item--open > .nav__submenu-btn .nav__arrow {
    transform: rotate(180deg);
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .section {
    padding: 56px 0;
  }

  .cards-grid--3 {
    grid-template-columns: 1fr;
  }

  .cards-grid--services .card__title {
    min-height: 0;
  }

  .cards-grid--services {
    gap: 16px;
  }

  .cards-grid--services .card--service {
    padding: 26px 22px 24px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero__features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .advantages {
    grid-template-columns: 1fr;
  }

  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Homepage (mockup) ===== */
.home-stats {
  background: var(--color-dark-2);
  border-top: 1px solid #3a3a3a;
  padding: 26px 0;
}

.home-stats__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.home-stats__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
}

.home-stats__value {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.home-stats__label {
  font-size: 13px;
  color: #a0a0a8;
  max-width: 140px;
  line-height: 1.35;
}

.home-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.home-deals {
  background: var(--color-white);
  border: 1px solid var(--color-gray-2);
  border-radius: 6px;
  overflow: hidden;
}

.home-deals__table,
.home-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 640px;
}

.home-deals__table th,
.home-deals__table td,
.home-compare th,
.home-compare td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-2);
}

.home-deals__table th,
.home-compare th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: var(--color-white);
}

.home-deals__table td:last-child {
  font-weight: 700;
  color: #2e9e5b;
}

.home-deals__table tr:last-child td {
  border-bottom: 0;
}

.home-deals__summary td {
  background: #fff9ec;
  font-weight: 700;
}

.home-deals__summary td:last-child {
  color: var(--color-accent-hover);
}

.home-footnote {
  font-size: 12.5px;
  color: var(--color-text-light);
  margin-top: 16px;
  max-width: 760px;
}

.home-footnote--on-dark {
  color: #8e8e96;
  margin-top: 20px;
}

.home-split {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 44px;
}

.home-honest {
  border-left: 3px solid var(--color-accent);
  background: var(--color-dark-2);
  padding: 22px 26px;
  border-radius: 0 4px 4px 0;
  margin-top: 34px;
}

.home-honest strong {
  display: block;
  color: var(--color-accent);
  margin-bottom: 8px;
  font-size: 15px;
}

.home-honest p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-hard {
  background: var(--color-dark-2);
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  padding: 28px;
}

.home-hard__title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.home-hard__list li {
  border-bottom: 1px solid #3a3a3a;
}

.home-hard__list li:last-child {
  border-bottom: 0;
}

.home-hard__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  text-decoration: none;
  font-size: 14.5px;
  color: #e6e6ea;
  transition: color var(--transition), padding-left var(--transition);
}

.home-hard__list a::after {
  content: '→';
  color: var(--color-accent);
  flex-shrink: 0;
}

.home-hard__list a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.home-hard__note {
  font-size: 13px;
  color: #8e8e96;
  margin-top: 18px;
  line-height: 1.55;
}

.home-compare-wrap {
  margin-bottom: 44px;
}

.home-compare th,
.home-compare td {
  border-bottom: 1px solid #3a3a3a;
}

.home-compare th {
  background: transparent;
  color: #8e8e96;
}

.home-compare th:nth-child(2) {
  color: var(--color-accent);
}

.home-compare td:nth-child(2) {
  background: rgba(242, 169, 0, 0.07);
  font-weight: 600;
  color: var(--color-white);
}

.home-compare td {
  color: var(--color-text-muted);
}

.home-compare td:first-child {
  color: var(--color-white);
  font-weight: 500;
}

.home-ways {
  background: var(--color-dark-2);
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  padding: 30px;
}

.home-ways__title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.home-ways__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-ways__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.home-ways__num {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-ways__list p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.steps--home {
  gap: 0;
}

.step--home {
  text-align: left;
  padding: 0 18px;
}

.step--home:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 27px;
  right: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-gray-2) 0 8px, transparent 8px 15px);
  z-index: 0;
}

.step--home .step__num {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step--home .step__head,
.step--home .step__icon {
  display: none;
}

.step--home .step__title {
  font-size: 17px;
  margin-bottom: 8px;
}

.step--home .step__text {
  font-size: 14px;
}

.docs__cta {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius);
  font-size: 14.5px;
  line-height: 1.55;
}

.docs__cta a {
  color: var(--color-accent);
  font-weight: 600;
}

.brands__grid--home {
  grid-template-columns: repeat(3, 1fr);
}

.advantages--home {
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}

.advantage--home {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.advantage--home .advantage__icon {
  justify-content: flex-start;
  margin-bottom: 0;
}

.advantage--home .advantage__icon svg {
  width: 34px;
  height: 34px;
}

.advantage--home .advantage__title {
  font-size: 16px;
  margin-bottom: 6px;
}

.advantage--home .advantage__text {
  font-size: 14px;
}

.home-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--color-text-muted);
}

.home-rating strong {
  font-size: 30px;
  color: var(--color-accent);
}

.home-rating a {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 600;
}

.reviews--screenshots {
  grid-template-columns: repeat(3, 1fr);
}

.review-shot {
  margin: 0;
  background: var(--color-dark-2);
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  overflow: hidden;
}

.review-shot img {
  width: 100%;
  background: var(--color-white);
}

.review-shot__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 13px;
}

.review-shot__footer span {
  color: #8e8e96;
}

.review-shot__footer a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.home-geo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.home-geo__card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-2);
  border-radius: 6px;
  padding: 28px;
}

.home-geo__card--main {
  border-top: 3px solid var(--color-accent);
}

.home-geo__card strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.home-geo__card em {
  font-style: normal;
  font-size: 13px;
  color: var(--color-accent-hover);
  font-weight: 600;
}

.home-geo__card p {
  font-size: 14.5px;
  color: var(--color-text-light);
  margin-top: 14px;
  line-height: 1.6;
}

.bc-accordion--home {
  max-width: 840px;
  margin: 0 auto;
}

.cta-banner--home {
  padding: 52px 0;
}

.cta-banner__inner--home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.cta-banner--home .cta-banner__subtitle {
  margin-top: 12px;
  font-size: 16px;
  color: #5c4508;
}

.cta-banner__form-wrap {
  width: 100%;
}

.bc-cf7--cta input.wpcf7-form-control:not([type="checkbox"]):not([type="submit"]),
.bc-cf7--cta .wpcf7-text,
.bc-cf7--cta .wpcf7-tel {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: none;
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  margin: 0;
}

.bc-cf7--cta .wpcf7-form-control-wrap {
  display: block;
}

.bc-cf7--cta .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #5c2008;
  margin-top: 4px;
}

.bc-cf7--cta .wpcf7-submit,
.bc-cf7--cta input[type="submit"].wpcf7-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
  border: none !important;
  -webkit-text-fill-color: var(--color-white);
}

.bc-cf7--cta .wpcf7-submit:hover,
.bc-cf7--cta input[type="submit"].wpcf7-submit:hover {
  background: #000 !important;
  color: var(--color-white) !important;
  -webkit-text-fill-color: var(--color-white);
}

.bc-cf7--cta .wpcf7-response-output {
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  border: none !important;
}

.home-mbar {
  display: none;
}

.bc-front-page {
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .home-split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-ways__list {
    grid-template-columns: 1fr;
  }

  .advantages--home,
  .reviews--screenshots {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner__inner--home {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    padding: 46px 20px 58px;
    gap: 40px;
  }

  .hero__features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-stats__inner {
    gap: 18px;
  }

  .home-stats__item {
    flex: 1 1 45%;
  }

  .steps--home {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }

  .step--home::after {
    display: none;
  }

  .home-geo,
  .advantages--home,
  .reviews--screenshots,
  .bc-cf7--cta .bc-cf7-fields-row {
    grid-template-columns: 1fr;
  }

  .bc-front-page {
    padding-bottom: 66px;
  }

  .home-mbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: var(--color-dark);
    border-top: 1px solid #3a3a3a;
  }

  .home-mbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 17px 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    letter-spacing: 0.04em;
  }

  .home-mbar a + a {
    background: var(--color-accent);
    color: var(--color-dark);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
