:root {
  --font-main: 'Inter', sans-serif;

  --bg: #f5f7fb;
  --bg-soft: #eef3f8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;

  --text: #0f172a;
  --text-soft: #334155;
  --text-muted: #64748b;
  --text-white: #f8fafc;

  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);

  --primary: #1078ff;
  --primary-dark: #1078ff;
  --primary-soft: rgba(37, 99, 235, 0.08);

  --success: #059669;

  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 20px 50px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.1);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1240px;
  --container-narrow: 1040px;

  --transition: 0.22s ease;
}

/* ===== RESET ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background:#fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition:
	color var(--transition),
	border-color var(--transition),
	background-color var(--transition),
	box-shadow var(--transition),
	opacity var(--transition),
	transform var(--transition);
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
textarea {
  outline: none;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

details summary {
  list-style: none;
  cursor: pointer;
}

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

/* ===== GLOBAL ===== */

.site-wrap {
  overflow: clip;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.container--narrow {
  width: min(100% - 48px, var(--container-narrow));
}

.section {
  padding: 70px 0;
}

.section--soft {
  /*background: black;*/
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.eyebrow--light {
  color: rgba(248, 250, 252, 0.96);
  border-color: rgba(248, 250, 252, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.section-head {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-title {
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.section-text {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.36;
  color: var(--text-soft);
}

.statement {
  margin-top: 34px;
  padding: 24px 28px;
  text-align: center;
}

.statement p {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.05em;
  font-weight: 400;
}
.statement--quote {
  padding: 36px 32px;
}

.quote-card {
  margin: 0;
  text-align: center;
}

.quote-card__text {
  margin: 0;
  position: relative;
  max-width: 860px;
  margin-inline: auto;
}

.quote-card__text p {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.05em;
  font-weight: 400;
  color: var(--text);
}

.quote-card__text::before,
.quote-card__text::after {
  position: absolute;
  color: rgb(16 120 255 / 90%);
  font-size: clamp(54px, 6vw, 92px);
  line-height: 1;
  font-weight: 600;
  pointer-events: none;
}

.quote-card__text::before {
  content: "“";
  top: -22px;
  left: -18px;
}

.quote-card__text::after {
  content: "”";
  right: -18px;
  bottom: -46px;
}

.quote-card__author {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.quote-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgb(16 120 255 / 90%);
  box-shadow: 0 10px 24px rgb(15 23 42 / 20%);
}

.quote-card__meta {
  margin-top: 14px;
}

.quote-card__name {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--text);
}

.quote-card__role {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 100;
  color: var(--text-muted);
  letter-spacing: -0.05em;
}

@media (max-width: 860px) {
  .statement--quote {
	padding: 28px 22px;
  }

  .quote-card__text::before {
	left: -6px;
	top: -12px;
  }

  .quote-card__text::after {
	right: -6px;
	bottom: -26px;
  }

  .quote-card__avatar {
	width: 76px;
	height: 76px;
  }

  .quote-card__name {
	font-size: 16px;
  }

  .quote-card__role {
	font-size: 12px;
  }
}

@media (max-width: 560px) {
  .quote-card__text p {
	font-size: 24px;
	line-height: 1.22;
  }

  .quote-card__text::before,
  .quote-card__text::after {
	font-size: 56px;
  }
}

.section-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ===== ICONS ===== */

.icon {
  flex: 0 0 auto;
  color: currentColor;
}

.icon--xs {
  width: 16px;
  height: 16px;
}

.icon--sm {
  width: 18px;
  height: 18px;
}

.icon--md {
  width: 22px;
  height: 22px;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #2b69ef 0%, #2052de 100%);
}

.btn--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  border-color: rgba(37, 99, 235, 0.18);
  color: var(--primary);
}

.btn--lg {
  min-height: 60px;
  padding: 17px 28px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

/* ===== HEADER ===== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 14px 18px;
  background: rgb(255 255 255 / 61%);
  border-radius: 24px;
  backdrop-filter: blur(5px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  width: 180px;
  height: auto;
}

.logo__mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.logo__text {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav__link {
  position: relative;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
}

.nav__link:hover {
  color: var(--text);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== ACCOUNT MENU ===== */

.account-menu {
  position: relative;
}

.account-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.account-menu__toggle:hover {
  border-color: rgba(37, 99, 235, 0.18);
  color: var(--primary);
}

.account-menu__toggle-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary-soft);
}

.account-menu__toggle-text {
  font-size: 14px;
  font-weight: 400;
}

.account-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.account-menu__link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
}

.account-menu__link:hover {
  background: rgba(37, 99, 235, 0.05);
}

.account-menu__link + .account-menu__link {
  margin-top: 4px;
}

.account-menu__link-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  flex: 0 0 auto;
}

.account-menu__link-content {
  display: grid;
  gap: 4px;
}

.account-menu__link-content strong {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
}

.account-menu__link-content span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.account-menu.is-open .account-menu__toggle {
  border-color: rgba(37, 99, 235, 0.2);
}

.account-menu.is-open .account-menu__toggle .icon--xs {
  transform: rotate(180deg);
}

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

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.88fr);
  gap: 64px;
  align-items: center;
}

.hero__content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero__title {
  margin-top: 20px;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.hero__subtitle {
  margin-top: 24px;
  max-width: 560px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: #3f5e8c;
}

.hero__text {
  margin-top: 16px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.38;
  color: var(--text-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__meta li {
  min-height: 40px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone-visual {
  position: relative;
  width: min(100%, 395px);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-visual__blur {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
}

.hero-phone-visual__blur--one {
  width: 230px;
  height: 230px;
  top: 60px;
  right: 0;
  background: radial-gradient(circle, rgba(16, 120, 255, 0.12) 0%, rgba(16, 120, 255, 0) 72%);
}

.hero-phone-visual__blur--two {
  width: 190px;
  height: 190px;
  left: 0;
  bottom: 54px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0) 74%);
}

.hero-phone {
  position: relative;
  width: min(100%, 322px);
  aspect-ratio: 424 / 860;
  filter: drop-shadow(0 22px 36px rgba(15, 23, 42, 0.14));
}

.hero-phone__frame {
  position: absolute;
  inset: 0;
  background: url("https://app.airtarget.ru/frontend/images/phone.png") center center / contain no-repeat;
  z-index: 3;
  pointer-events: none;
}

.hero-phone__screen {
  position: absolute;
  top: 13px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 27px);
  border-radius: 31px;
  overflow: hidden;
  background: #e9eef4;
  z-index: 1;
}

.hero-phone__inner {
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3f8 0%, #e8edf4 100%);
}

.hero-phone__cover {
  height: 205px;
  background: linear-gradient(180deg, #dfe9f5 0%, #edf3f9 100%);
}

.hero-phone__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone__body {
  position: relative;
  margin-top: -12px;
  padding: 0 1px 10px;
  border-radius: 20px 20px 0 0;
}

.hero-phone__card {
  background: rgba(255, 255, 255);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.hero-phone__card + .hero-phone__card {
  margin-top: 7px;
}

.hero-phone__card--lead {
  padding: 14px 12px 25px;
}

.hero-phone__pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(16, 120, 255, 0.08);
  color: #1078ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-phone__title {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #000;
}

.hero-phone__desc {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.24;
  color: #4a5d78;
  font-weight: 400;
}

.hero-phone__choices {
  margin-top: 11px;
  display: grid;
  gap: 7px;
}

.hero-phone__choice {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  min-height: 20px;
}

.hero-phone__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero-phone__choice-ui {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  border: 1px solid #b8c3d1;
  background: #f4f7fb;
  position: relative;
  flex: 0 0 auto;
  transition: border-color var(--transition), background-color var(--transition);
}

.hero-phone__choice-ui::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #1078ff;
  transform: scale(0);
  transition: transform var(--transition);
}

.hero-phone__choice input:checked + .hero-phone__choice-ui {
  border-color: #1078ff;
  background: rgba(16, 120, 255, 0.06);
}

.hero-phone__choice input:checked + .hero-phone__choice-ui::after {
  transform: scale(1);
}

.hero-phone__choice-text {
  color: #0f172a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.hero-phone__card--flow {
  padding: 11px 12px;
}

.hero-phone__flow-title {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  color: #6b7d96;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-phone__flow-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  line-height: 1.3;
}

.hero-phone__flow-line span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #f5f8fc;
  border: 1px solid rgba(15, 23, 42, 0.07);
  color: #0f172a;
  font-weight: 600;
}

.hero-phone__flow-line i {
  font-style: normal;
  color: #1078ff;
  font-weight: 700;
}

.hero-phone__flow-note {
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.34;
  color: #5d6e86;
}

.hero-phone__card--messengers {
  padding: 11px 8px 8px;
}

.hero-phone__messengers-title {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  font-size: 11px;
  line-height: 1.25;
  color: #000;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-phone__messengers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
}

.hero-phone__messengers li {
  min-width: 0;
}

.hero-msg-btn {
  position: relative;
  display: block;
  padding: 32px 4px 8px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-msg-btn i {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 19px;
  height: 19px;
}

.hero-msg-btn i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-msg-btn span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 9px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-msg-btn--vk {
  background: linear-gradient(180deg, #007dff 0%, #0077ff 100%);
}

.hero-msg-btn--wa {
  background: linear-gradient(180deg, #25e676 0%, #25d366 100%);
}

.hero-msg-btn--tg {
  background: linear-gradient(180deg, #20b1f5 0%, #229ed9 100%);
}

.hero-msg-btn--max {
  background: linear-gradient(135deg, #4fbefc 0%, #7d3fe5 100%);
}

.hero-metric {
  position: absolute;
  right: 2px;
  bottom: 110px;
  z-index: 4;
  width: 184px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgb(255 255 255 / 83%);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(4px);
}

.hero-metric__label {
  color: #6b7d96;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-metric__value {
  margin-top: 8px;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #0f172a;
}

.hero-metric__rows {
  margin-top: 10px;
  display: grid;
  gap: 7px;
}

.hero-metric__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-metric__row span {
  color: #64748b;
  font-size: 11px;
  line-height: 1.25;
}

.hero-metric__row strong {
  color: #0f172a;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.hero-metric__footer {
  margin-top: 9px;
  color: #1078ff;
  font-size: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== HERO RESPONSIVE ===== */

@media (max-width: 1240px) {
  .hero__inner {
	grid-template-columns: 1fr;
	gap: 32px;
  }

  .hero__content {
	max-width: 100%;
  }

  .hero-phone-visual {
	width: min(100%, 470px);
	min-height: auto;
	padding-top: 10px;
  }

  .hero-phone {
	width: min(100%, 372px);
  }

  .hero-phone__screen {
	top: 15px;
	left: 18px;
	width: calc(100% - 36px);
	height: calc(100% - 31px);
	border-radius: 36px;
  }

  .hero-phone__cover {
	height: 220px;
  }

  .hero-phone__body {
	margin-top: -7px;
	padding: 0 9px 10px;
  }

  .hero-phone__card {
	border-radius: 18px;
  }

  .hero-phone__card--lead {
	padding: 16px 14px 14px;
  }

  .hero-phone__title {
	font-size: 21px;
  }

  .hero-phone__desc,
  .hero-phone__choice-text {
	font-size: 14px;
  }

  .hero-phone__card--flow {
	padding: 13px 14px;
  }

  .hero-phone__flow-line {
	font-size: 12px;
  }

  .hero-phone__flow-line span {
	min-height: 28px;
	padding: 5px 9px;
  }

  .hero-phone__flow-note {
	font-size: 12px;
  }

  .hero-phone__card--messengers {
	padding: 13px 10px 10px;
  }

  .hero-phone__messengers-title {
	font-size: 13px;
  }

  .hero-msg-btn {
	min-height: 72px;
	padding: 39px 4px 9px;
	border-radius: 9px;
  }

  .hero-msg-btn i {
	top: 11px;
	width: 22px;
	height: 22px;
  }

  .hero-metric {
	right: -10px;
	bottom: 96px;
	width: 214px;
	padding: 16px;
  }

  .hero-metric__value {
	font-size: 28px;
  }
}

@media (max-width: 860px) {
  .hero {
	padding: 28px 0 26px;
  }

  .hero__subtitle,
  .hero__text {
	font-size: 17px;
  }

  .hero-phone-visual {
	width: 100%;
  }

  .hero-phone {
	width: min(100%, 360px);
  }

  .hero-metric {
	right: 0;
	bottom: 78px;
	width: 208px;
	padding: 15px;
  }

  .hero-metric__value {
	font-size: 26px;
  }
}

@media (max-width: 560px) {
  .hero__title {
	font-size: clamp(36px, 12vw, 52px);
  }

  .hero__subtitle {
	font-size: 19px;
  }

  .hero__actions {
	flex-direction: column;
	align-items: stretch;
  }

  .hero__actions .btn {
	width: 100%;
  }

  .hero__meta {
	display: grid;
  }

  .hero-phone-visual {
	width: 100%;
	min-height: auto;
  }

  .hero-phone {
	width: min(100%, 338px);
  }

  .hero-phone__screen {
	top: 14px;
	left: 16px;
	width: calc(100% - 32px);
	height: calc(100% - 28px);
	border-radius: 32px;
  }

  .hero-phone__cover {
	height: 205px;
  }

  .hero-phone__body {
	padding: 0 8px 10px;
	margin-top: -12px;
  }

  .hero-phone__card {
	border-radius: 17px;
  }

  .hero-phone__card--lead,
  .hero-phone__card--flow,
  .hero-phone__card--messengers {
	padding-left: 12px;
	padding-right: 12px;
  }

  .hero-phone__title {
	font-size: 19px;
  }

  .hero-phone__desc,
  .hero-phone__choice-text {
	font-size: 13px;
  }

  .hero-phone__flow-line {
	gap: 4px;
	font-size: 11px;
  }

  .hero-phone__flow-line span {
	padding: 5px 8px;
	min-height: 27px;
  }

  .hero-phone__messengers {
	gap: 3px;
  }

  .hero-msg-btn {
	min-height: 68px;
	padding: 36px 4px 8px;
	border-radius: 8px;
  }

  .hero-msg-btn i {
	top: 10px;
	width: 21px;
	height: 21px;
  }

  .hero-msg-btn span {
	font-size: 10px;
  }

  .hero-metric {
	position: relative;
	right: auto;
	bottom: auto;
	width: min(100%, 320px);
	margin: 14px auto 0;
  }
}

/* ===== TRUST STRIP ===== */

.trust-strip {
  padding: 0 0 18px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip__item {
  min-height: 74px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

/* ===== COMMON CARDS ===== */

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid--4 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.mini-card,
.case-card,
.audience-card,
.process-step,
.pricing-card,
.compare__col,
.method-step {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

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

.card__icon-wrap,
.card__icon-only,
.system-flow__icon,
.process-step__icon,
.method-step__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
}

.card__number {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.card__title {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.card__text {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.32;
}

.problem-card__image {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto -10px;
  object-fit: contain;
}

/* ===== SYSTEM FLOW ===== */

.system-flow {
  display: grid;
  grid-template-columns: repeat(9, auto);
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}

.system-flow__item {
  width: 210px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgb(16 121 255);
  box-shadow: var(--shadow-sm);
}

.system-flow__step {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.system-flow__icon {
  margin-top: 14px;
}

.system-flow__item strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #fff;
}

.system-flow__item p {
  margin-top: 10px;
  line-height: 1.2;
  color: rgb(255 255 255 / 75%);
}

.system-flow__arrow {
  align-self: center;
  font-size: 20px;
  font-weight: 400;
  color: #107aff;
}

/* ===== METHOD BLOCK ===== */

.method-block {
  display: grid;
  gap: 36px;
}

.method-block__intro {
  max-width: 860px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.method-step {
  min-height: 100%;
}

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

.method-step__num {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.method-step__title {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.method-step__text {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.32;
  font-size: 14px;
}

/* ===== OWNER VISION ===== */

.owner-vision__frame {
  position: relative;
  min-height: 0px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #d9e3ee;
}

.owner-vision__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: unset;
  object-position: center top;
}

.owner-vision__overlay {
  position: absolute;
  inset: 0;
  background:url(/stat/i/amocrm-dashboard-main.jpg) left / cover no-repeat;
}

.owner-vision__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 200px 16px;
  color: var(--text-white);
}

.owner-vision__content--right {
  margin-left: auto;
  text-align: left;
}

.owner-vision__title {
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.owner-vision__text {
  margin-top: 18px;
  max-width: 520px;
  color: rgba(248, 250, 252, 0.88);
  font-size: 18px;
  line-height: 1.38;
}

.owner-vision__list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.owner-vision__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(248, 250, 252, 0.92);
  font-weight: 600;
  line-height: 1.6;
}

/* ===== BENEFIT BLOCK ===== */

.benefit-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.benefit-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mini-card--accent {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(255, 255, 255, 0.84));
  border-color: rgba(37, 99, 235, 0.14);
}

/* ===== COMPARE ===== */

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare__col--accent {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.84));
  border-color: rgba(37, 99, 235, 0.14);
}

.compare__head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}

.compare__col:not(.compare__col--accent) .compare__head {
  color: var(--text);
}

.compare__title {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.compare__list {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.compare__list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.3;
}

.compare__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.42);
}

.compare__col--accent .compare__list li::before {
  background: var(--primary);
}

/* ===== AUDIENCE ===== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ===== CASES ===== */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.case-card__tag,
.case-card__metric {
  min-height: 36px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.case-card__tag {
  background: var(--primary-soft);
  color: var(--primary);
}

.case-card__metric {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.case-card__title {
  margin-top: 18px;
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.case-card__text {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.34;
}

/* ===== PRICING ===== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.pricing-card--main {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.86));
  border-color: rgb(0 0 0 / 14%);
}

.pricing-card__badge {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.pricing-card__header {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}

.pricing-card:not(.pricing-card--main) .pricing-card__header {
  color: var(--text);
}

.pricing-card__title {
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.pricing-card__price {
  margin-top: 16px;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 400;
}

.pricing-card__price span {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card__meta {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  color: var(--text-soft);
  line-height: 1.32;
}

.pricing-card__list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  flex: 1 1 auto;
}

.pricing-card__list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  line-height: 1.6;
}

.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
}

.pricing-card .btn {
  margin-top: 28px;
}

/* ===== FAQ ===== */

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item__question {
  position: relative;
  padding: 24px 68px 24px 24px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.faq-item[open] .faq-item__question::after {
  content: '–';
}

.faq-item__answer {
  padding: 0 24px 24px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.32;
}

/* ===== CTA ===== */

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 24px;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgb(201 201 201 / 78%);
  background-image: url(/img/new-min.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  box-shadow: var(--shadow-lg);
}

.cta-box__content {
  padding: 18px;
}

.cta-box__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-box__note {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-form {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.contact-form__title {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.contact-form__text {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.3;
}

.contact-form__fields {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

.field__input,
.field__textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

.field__input {
  min-height: 56px;
  padding: 0 18px;
}

.field__textarea {
  min-height: 132px;
  resize: vertical;
  padding: 16px 18px;
}

.field__input:focus,
.field__textarea:focus {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.contact-form .btn {
  margin-top: 20px;
}

.contact-form__policy {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-form__policy a {
  color: var(--primary);
  font-weight: 400;
}
/* ===== FOCUS ===== */

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.2);
  outline-offset: 2px;
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1320px) {
  .method-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1240px) {
  .hero__inner,
  .benefit-block,
  .cta-box {
	grid-template-columns: 1fr;
	gap: 32px;
  }

  .hero__content {
	max-width: 100%;
  }

  .cards-grid--4,
  .cases-grid,
  .pricing-grid,
  .footer__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid,
  .method-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-flow {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
  }

  .system-flow__arrow {
	display: none;
  }

  .system-flow__item {
	width: 100%;
	min-height: auto;
  }
}

@media (max-width: 1080px) {
  .nav {
	display: none;
  }

  .trust-strip__inner,
  .hero-screen__row,
  .compare {
	grid-template-columns: 1fr;
  }

  .owner-vision__frame {
	min-height: 640px;
  }

  .owner-vision__content {
	max-width: 100%;
	padding: 48px 36px;
  }
}

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

  .container,
  .container--narrow {
	width: min(100% - 28px, var(--container));
  }

  .header {
	padding: 12px 0;
  }

  .header__inner {
	min-height: 66px;
	padding: 12px 14px;
	gap: 14px;
  }

  .header__actions .btn {
	min-height: 48px;
	padding-inline: 18px;
	font-size: 14px;
  }

  .account-menu__toggle {
	min-height: 48px;
	padding-inline: 12px;
  }

  .account-menu__toggle-text {
	display: none;
  }

  .account-menu__toggle-icon {
	width: 30px;
	height: 30px;
  }

  .account-menu__panel {
	width: min(320px, calc(100vw - 28px));
	right: -6px;
  }

  .hero {
	padding: 28px 0 26px;
  }

  .hero__subtitle,
  .hero__text,
  .section-text {
	font-size: 17px;
  }

  .cards-grid--4,
  .audience-grid,
  .cases-grid,
  .pricing-grid,
  .footer__grid,
  .benefit-block__grid,
  .method-grid {
	grid-template-columns: 1fr;
  }

  .system-flow {
	grid-template-columns: 1fr;
  }

  .trust-strip__inner {
	grid-template-columns: 1fr;
  }

  .section-head {
	margin-bottom: 36px;
  }

  .section-title {
	margin-top: 14px;
  }

  .card,
  .mini-card,
  .case-card,
  .audience-card,
  .pricing-card,
  .compare__col,
  .method-step,
  .footer__col {
	padding: 24px;
  }

  .owner-vision__frame {
	min-height: 560px;
	border-radius: 28px;
  }

  .owner-vision__overlay {
	background: url(/stat/i/amocrm-dashboard-main.jpg) left / cover no-repeat;
  }

  .owner-vision__content {
	padding: 34px 24px;
  }

  .owner-vision__content--right {
	margin-left: 0;
  }

  .faq-item__question {
	font-size: 18px;
	padding: 20px 58px 20px 20px;
  }

  .faq-item__answer {
	padding: 0 20px 20px;
	font-size: 16px;
  }

  .cta-box {
	padding: 18px;
	border-radius: 26px;
  }

  .contact-form {
	padding: 22px;
	border-radius: 22px;
  }

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

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

  .eyebrow {
	min-height: 32px;
	padding: 7px 12px;
	font-size: 11px;
  }
  .hero__visual {
	  display: none;
	}

  .header__actions .btn {
	  display: inline-flex;
	  min-height: 44px;
	  padding: 0 14px;
	  font-size: 13px;
	  border-radius: 12px;
	  white-space: nowrap;
	}
  
	.account-menu {
	  display: none;
	}
  
	.header__inner {
	  gap: 10px;
	}
  
	.header__actions {
	  margin-left: auto;
	}
  
	.logo__img {
	  width: 140px;
	  height: auto;
	}

  .hero__title {
	font-size: clamp(36px, 12vw, 52px);
  }

  .hero__subtitle {
	font-size: 19px;
  }

  .hero__actions,
  .cta-box__actions {
	flex-direction: column;
	align-items: stretch;
  }

  .hero__actions .btn,
  .cta-box__actions .btn,
  .section-actions .btn {
	width: 100%;
  }

  .hero__meta {
	display: grid;
  }

  .hero-screen {
	border-radius: 24px;
  }

  .hero-screen__body {
	padding: 18px;
	gap: 14px;
  }

  .hero-screen__metric {
	padding: 18px;
	border-radius: 18px;
  }

  .hero-screen__value {
	font-size: 30px;
  }

  .hero-screen__flow span {
	width: 100%;
	justify-content: flex-start;
  }

  .trust-strip__item {
	min-height: auto;
	padding: 16px 18px;
  }

  .card__title,
  .method-step__title {
	font-size: 22px;
  }

  .case-card__title {
	font-size: 24px;
  }

  .compare__title,
  .pricing-card__title {
	font-size: 26px;
  }

  .pricing-card__price {
	font-size: 36px;
  }

  .audience-card,
  .mini-card {
	min-height: auto;
	font-size: 18px;
  }

  .owner-vision__frame {
	min-height: 520px;
  }

  .owner-vision__title {
	font-size: 30px;
  }

  .owner-vision__text {
	font-size: 16px;
  }

  .contact-form__title {
	font-size: 24px;
  }
}
/* =========================================================
   NEW FOOTER / footer.php include
   Добавить в конец style.css
========================================================= */

.new-footer {
  background: #292929;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.new-footer a {
  color: #cdcdcd;
  text-decoration: none;
  font-weight: 400;
}

.new-footer a:hover {
  text-decoration: underline;
}

.new-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .new-footer__container {
	padding: 0 110px;
  }
}

/* ---------- TOP ---------- */

.new-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding: 78px 0 24px;
}

.new-footer__contacts {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  flex: 1 1 70%;
}

.new-footer .contact-block {
  max-width: 680px;
}

.new-footer .contact-block__title {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #fff;
}

.new-footer .contact-block__desc,
.new-footer .contact-block__email {
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.new-footer .contact-block__email {
  margin-top: 8px;
}

/* ---------- SOCIAL ---------- */

.new-footer .social-list {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.new-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5c5c5c;
  color: #c8c8c8;
  transition: .25s ease;
}

.new-footer .social-link:hover {
  background: #6a6a6a;
  color: #fff;
  text-decoration: none;
}

.new-footer .social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.new-footer .social-link.vk,
.new-footer .social-link.tg {
  background-color: #5c5c5c;
  color: #c8c8c8;
}

/* ---------- DIVIDER ---------- */

.new-footer__divider {
  border: none;
  border-top: 1px solid #333;
  margin: 0;
}

/* ---------- MIDDLE ---------- */

.new-footer__middle {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 24px 0;
}

.new-footer .legal-link {
  flex-shrink: 0;
  font-weight: 400;
  color: #cdcdcd;
}

.new-footer .legal-text {
  margin-left: auto;
  max-width: 610px;
  color: #cdcdcd;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
}

.new-footer .legal-text p {
  margin: 0 0 12px;
}

.new-footer .legal-text p:last-child {
  margin-bottom: 0;
}

/* ---------- BOTTOM ---------- */

.new-footer__bottom {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 32px 0 48px;
}

.new-footer .copyright {
  color: #a0a0a0;
  font-size: 12px;
  line-height: 1.4;
}

.new-footer .runet-award {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.3;
}

.new-footer .runet-award img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 140px;
}

.new-footer .runet-award svg {
  width: 24px;
  height: 24px;
}

/* ---------- FOOTER MOBILE ---------- */

@media (max-width: 768px) {
  .new-footer {
	font-size: 13px;
  }

  .new-footer__top {
	flex-direction: column;
	gap: 24px;
  }

  .new-footer__contacts {
	flex-direction: column;
	gap: 24px;
  }

  .new-footer .social-list {
	order: -1;
	margin-bottom: 8px;
  }

  .new-footer__middle {
	flex-direction: column;
	gap: 16px;
  }

  .new-footer .legal-text {
	margin-left: 0;
	max-width: 100%;
  }

  .new-footer__bottom {
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
  }

  .new-footer .runet-award {
	margin-left: 0;
  }
}
.tech-benefits-bg {
  position: relative;
	background: linear-gradient(0deg, rgb(7 17 34), rgb(14 34 68 / 0%)), url(/images/back.webp) right / cover no-repeat;
}

.section--transparent {
  background: transparent !important;
}

.tech-benefits-bg .section-title {
  color: #fff;
}

.tech-benefits-bg .section-text {
  color: rgba(255, 255, 255, 0.82);
}

.tech-benefits-bg .card,
.tech-benefits-bg .mini-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1px);
}