@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Prata&display=swap');

/* =========================================================
   1. ЦВЕТА И ОСНОВНЫЕ НАСТРОЙКИ
   ========================================================= */
:root {
  --n: #061625;
  --n2: #0b253d;
  --g: #d6a33b;
  --g2: #f2ce78;
  --iv: #f7f2e9;
  --ink: #071526;
  --mut: #68717d;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}
body {
  margin: 0;
  font-family: Manrope,Arial,sans-serif;
  color: var(--ink);
  background: var(--n);
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
  cursor: pointer;
}

/* =========================================================
   2. ШАПКА, ЛОГОТИП И МЕНЮ
   ========================================================= */
.header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px max(28px,calc((100vw - var(--max))/2));
  color: #fff;
  background: rgba(4,17,29,.94);
  border-bottom: 1px solid rgba(214,163,59,.45);
  backdrop-filter: blur(12px);
}
.brand {
  margin-right: auto;
  width: 190px;
}
.brand img {
  display: block;
  width: 100%;
  height: 58px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 24px;
  font-size: 15px;
}
.nav a:hover {
  color: var(--g2);
}
.btn {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid var(--g);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: .2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #0004;
}
.btn-outline,.btn-clear {
  color: #fff;
  background: transparent;
}
.btn-gold {
  color: #102030;
  background: linear-gradient(135deg,var(--g2),var(--g));
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

/* =========================================================
   3. ГЛАВНЫЙ ЭКРАН
   ========================================================= */
.hero {
  min-height: 650px;
  padding: 150px max(28px,calc((100vw - var(--max))/2)) 75px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: url("assets/main.png") center center / cover no-repeat,linear-gradient(120deg,#04101c,#071a2b);
}
.hero-copy {
  z-index: 2;
}
.eyebrow {
  color: var(--g2);
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 700;
}
.hero h1 {
  font: 400 clamp(46px,4vw,64px)/1.12 Prata,serif;
  margin: 25px 0 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--g2);
}
.lead {
  font-size: 18px;
  line-height: 1.65;
  color: #d5dde4;
  max-width: 620px;
}
.actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}
.hero-art {
  position: absolute;
  right: 0;
  top: 76px;
  width: 51%;
  height: 574px;
  mask-image: linear-gradient(to right,transparent,#000 22%);
}
.dark {
  color: #fff;
  background: linear-gradient(120deg,var(--n),var(--n2));
}

/* =========================================================
   4. БЛОК «СКОРОСТЬ, ТОЧНОСТЬ, ДИСЦИПЛИНА»
   ========================================================= */
.discipline {
  padding: 35px max(28px,calc((100vw - var(--max))/2));
  display: flex;
  align-items: center;
  gap: 55px;
}
.discipline h2 {
  min-width: 330px;
  font: 400 23px/1.4 Prata,serif;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 34px;
}
.benefits article {
  display: flex;
  align-items: center;
  gap: 14px;
}
.benefits b,.four article>b {
  width: 54px;
  height: 54px;
  border: 1px solid var(--g);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--g2);
  font-size: 24px;
  flex: none;
}
.benefits h3,.benefits p {
  margin: 0;
}
.benefits h3 {
  font-size: 13px;
}
.benefits p {
  margin-top: 6px;
  color: #bbc6cf;
  font-size: 10px;
  line-height: 1.5;
}
.section {
  padding: 70px max(28px,calc((100vw - var(--max))/2));
}

/* =========================================================
   5. ОБЩИЕ СВЕТЛЫЕ СЕКЦИИ И ЗАГОЛОВКИ
   ========================================================= */
.light {
  background: radial-gradient(circle at 100% 0,#fff,transparent 32%),var(--iv);
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2,.process>h2,.trust>h2,.cta h2 {
  font: 400 clamp(29px,3vw,43px)/1.25 Prata,serif;
  margin: 0;
}
.section-title i {
  display: block;
  position: relative;
  width: min(450px,65%);
  height: 14px;
  border-top: 1px solid var(--g);
  margin: 14px auto;
}
.section-title i:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 10px;
  height: 10px;
  background: var(--g);
  transform: rotate(45deg);
}

/* =========================================================
   6. БЛОКИ ИЗ ЧЕТЫРЁХ КАРТОЧЕК
   ========================================================= */
.four {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.four article {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid #d8cfbf;
}
.four article:last-child {
  border: 0;
}
.four article>b {
  margin: 0 auto 20px;
  color: var(--ink);
}
.four h3 {
  font-size: 16px;
}
.four p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--mut);
}

/* =========================================================
   7. БЛОК «КАК МЫ РАБОТАЕМ»
   ========================================================= */
.process,.trust {
  text-align: center;
}
.process>h2,.trust>h2 {
  margin-bottom: 48px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  position: relative;
}
.steps article {
  position: relative;
  text-align: center;
  min-width: 0;
  z-index: 1;
}
.steps article .step-icon {
	display: block;
	width: 68px;
	height: 68px;
	object-fit: contain;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.steps article:not(:last-child):after {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(50% + 34px);
  top: 5px;
  width: calc(100% - 68px);
  height: 32px;
  border: 0;
  background-color: var(--g, #e0aa2d);
  pointer-events: none;
  border-radius: 0;

  /* Одна неглубокая пунктирная дуга без нижнего дублирования */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 32' preserveAspectRatio='none'%3E%3Cpath d='M2 29 Q50 5 98 29' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-dasharray='2 7'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 32' preserveAspectRatio='none'%3E%3Cpath d='M2 29 Q50 5 98 29' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-dasharray='2 7'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}
.steps b {
  position: relative;
  z-index: 1;
  margin: auto;
  width: 62px;
  height: 62px;
  border: 1px solid var(--g);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--n2);
  color: var(--g2);
  font-size: 23px;
}
.steps h3 {
  font-size: 13px;
  color: var(--g2);
}
.steps p {
  font-size: 11px;
  line-height: 1.6;
  color: #bdc7cf;
}

/* =========================================================
   8. БЛОК «РЕЗУЛЬТАТ В ЦИФРАХ»
   ========================================================= */
.metrics {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: stretch;
}
.metrics article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 145px;
  padding: 20px 28px;
  border-right: 1px solid #d8cfbf;
  min-width: 0;
  box-sizing: border-box;
}
.metrics article:last-child {
  border-right: none;
}
.metrics b {
  display: block;
  font: 400 37px Prata,serif;
}
.metrics .metric-icon {
	width: 72px;
	height: 72px;
	margin-right: 28px;
	flex: 0 0 72px;
	object-fit: contain;
}
.metrics b.date {
  font-size: 18px;
  line-height: 1.35;
}
.metrics span {
  color: var(--mut);
  font-size: 13px;
}
.metric-icon {
	width: 60px;
	height: auto;
	flex-shrink: 0;
}
.metric-icon1 {
	width: 98px;
	height: auto;
	flex-shrink: 0;
}
.metric-icon2 {
	width: 70px;
	height: auto;
	flex-shrink: 0;
}
.metric-icon3 {
	width: 64px;
	height: auto;
	flex-shrink: 0;
}
.metric-value {
	display: flex;
	align-items: baseline;
	gap: 8px;
	white-space: nowrap;
}

.metric-value b {
	display: inline-block;
	margin: 0;
	line-height: 1;
}

.metric-value span {
	display: inline-block;
}

/* =========================================================
   9. БЛОК «ПОЧЕМУ НАМ ДОВЕРЯЮТ»
   ========================================================= */
.trust .four article {
  border-color: #ca8e26;
}
.trust .four b {
  border: 0;
  color: var(--g2);
}
.trust .four h3 {
  color: var(--g2);
}
.trust .four p {
  color: #bdc7cf;
}
.trust_icon{
	width: 50px;
}

/* =========================================================
   10. ТАРИФЫ
   ========================================================= */
.prices {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.prices article {
  position: relative;
  padding: 35px;
  background: var(--n);
  border: 1px solid var(--g);
  color: #fff;
  box-shadow: 0 14px 35px #05142225;
  border-radius: 10px;
}
.prices article.popular {
  background: #fff;
  color: var(--ink);
  transform: translateY(-10px);
}
.prices h3 {
  text-align: center;
  font: 400 29px Prata;
  color: var(--g2);
  margin: 0 0 8px;
}
.popular h3 {
  color: var(--ink);
}
.prices strong {
  display: block;
  text-align: center;
  font: 400 24px Prata;
}
.prices small {
  font: 13px Manrope;
}
.prices article>p {
  text-align: center;
  color: #b9c2ca;
  font-size: 11px;

}
.popular>p {
  color: var(--mut);
}
.prices ul {
  list-style: none;
  padding: 10px 0;
  min-height: 184px;
}
.prices li {
  font-size: 12px;
  padding: 6px;
}
.prices li:before {
  content: "✓";
  color: var(--g);
  margin-right: 9px;
}
.prices .btn {
  width: 100%;
}
.popular .btn-clear {
  color: var(--ink);
}
.prices article {
  display: flex;
  flex-direction: column;
}

.prices ul {
  flex-grow: 1;
  min-height: 0;
}

.prices .btn {
  margin-top: auto;
}

.prices li.plan-inherits {
  font-weight: 700;
  color: var(--g2);
}

.prices .popular li.plan-inherits {
  color: #9a6c16;
}

.pricing-notes {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
}

.pricing-notes p {
  margin: 7px 0;
  color: var(--mut);
  font-size: 11px;
  line-height: 1.6;
}
.prices mark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  background: var(--g);
  padding: 7px 22px;
  font-size: 9px;
}
.note {
  text-align: center;
  color: var(--mut);
  font-size: 11px;
}

/* =========================================================
   11. ПРИЗЫВ К ДЕЙСТВИЮ
   ========================================================= */
.cta {
  align-items: center;
  padding: 40px 7%;
  justify-content: flex-end;
  color: #fff;
  background: url(assets/funnel.png) no-repeat;
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  min-height: 310px;
  display: grid;
}
.cta-content h2 {
  margin: 0 0 28px;
  font: Prata, serif;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1.25;
}
.cta-content .btn {
	margin: 0 auto;
  display: block;
  width: fit-content;
}

/* =========================================================
   12. ПОДВАЛ САЙТА
   ========================================================= */
.footer {
  padding: 22px max(30px,calc((100vw - var(--max))/2)) 12px;
  color: #fff;
  background: #061625;
  border-top: 1px solid var(--g);
  box-sizing: border-box;
}
.footer-main {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.3fr)
    minmax(190px, 1fr)
    minmax(190px, 1fr)
    minmax(220px, 1.2fr)
    minmax(220px, 1.1fr);
  align-items: center;
}
.footer-brand {
  padding-right: 28px;
}
.footer-brand > img {
  display: block;
  width: 210px;
  height: auto;
}
.footer-brand > span {
  display: block;
  margin: 0 0 0 20px;
  color: var(--g);
  font-size: 12px;
  line-height: 1.3;
}
.footer-contact {
  min-height: 68px;
  padding: 10px 20px 5px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid rgba(214, 163, 59, 0.65);
  box-sizing: border-box;
}
.footer-contact > img {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  object-fit: contain;
}
.footer-contact div,
.footer-policy a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact b {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.footer-contact a,
.footer-contact span {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}
.footer-contact a:hover {
  color: var(--g);
}
.footer-policy > img {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}
.footer-copyright {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-align: center;
}
/* =========================================================
   13. МОДАЛЬНОЕ ОКНО С ФОРМОЙ
   ========================================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  inset: 0;
  place-items: center;
  padding: 20px;
}
.modal.open {
  display: grid;
}
.backdrop {
  position: absolute;
  inset: 0;
  background: #000c;
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  width: min(490px,100%);
  padding: 38px;
  background: var(--iv);
  border-radius: 10px;
  border: 1px solid var(--g);
  box-shadow: 0 30px 80px #000;
}
.modal-card h2 {
  margin: 8px 0;
}
.modal-card>p {
  color: var(--mut);
  font-size: 14px;
  margin-bottom: 30px;
}
.close {
  position: absolute;
  right: 16px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 29px;
}
.modal label {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
}
.modal input[type=text],.modal input[type=tel] {
  width: 100%;
  border-radius: 10px;
  padding: 14px;
  margin-top: 6px;
  border: 1px solid #c7bca8;
  background: #fff;
  font-size: 16px;
}
.consent {
  display: flex!important;
  gap: 8px;
  font-weight: 400!important;
}
.modal form>.btn {
  width: 100%;
  margin-top: 20px;
}
.status {
  text-align: center;
  font-size: 11px;
}

/* =========================================================
   14. ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ
   ========================================================= */
.privacy {
  display: none;
  position: fixed;
  z-index: 120;
  inset: 15%;
  padding: 45px;
  background: var(--iv);
  border: 1px solid var(--g);
  box-shadow: 0 0 0 100vmax #000d;
}
.privacy:target {
  display: block;
}

/* =========================================================
   БЛОК «О КОМПАНИИ»
   ========================================================= */

.company-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 3% 15%,
      rgba(214, 163, 59, .14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #faf7f0 0%,
      #ffffff 48%,
      #f8f3e9 100%
    );
}

.company-frame {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 68px;
  background: rgba(255, 255, 255, .73);
  box-shadow: 0 24px 70px rgba(6, 22, 37, .07);
}

/* Большой верхний левый угол */
.company-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 82px;
  border-top: 2px solid var(--g);
  border-left: 2px solid var(--g);
  pointer-events: none;
}

/* Большой нижний правый угол */
.company-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 82px;
  border-right: 2px solid var(--g);
  border-bottom: 2px solid var(--g);
  pointer-events: none;
}

/* Маленькие противоположные уголки */
.company-corner {
  position: absolute;
  width: 72px;
  height: 42px;
  pointer-events: none;
}

.company-corner-tr {
  top: 20px;
  right: 20px;
  border-top: 1px solid rgba(214, 163, 59, .55);
  border-right: 1px solid rgba(214, 163, 59, .55);
}

.company-corner-bl {
  left: 20px;
  bottom: 20px;
  border-left: 1px solid rgba(214, 163, 59, .55);
  border-bottom: 1px solid rgba(214, 163, 59, .55);
}

.company-grid {
  display: grid;
  grid-template-columns:
    minmax(0, .9fr)
    1px
    minmax(0, 1.25fr);
  gap: 55px;
  align-items: stretch;
}

/* Логотип и линии по бокам */
.company-logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}

.company-logo-row > span {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--g)
  );
}

.company-logo-row > span:last-child {
  background: linear-gradient(
    90deg,
    var(--g),
    transparent
  );
}

.company-logo {
  display: block;
  width: 226px;
  max-width: 55%;
  height: auto;
  object-fit: contain;
}

/* Заголовок */
.company-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-brand h2 {
  margin: 0;
  color: var(--ink);
  font: 400 clamp(37px, 3.2vw, 33px)/1.22 Prata, serif;
  letter-spacing: -.02em;
}

.company-brand h2 span {
  display: block;
  margin-top: 8px;
}

/* Центральная золотая линия */
.company-divider {
  position: relative;
  align-self: stretch;
  width: 1px;
  min-height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--g) 15%,
    var(--g) 85%,
    transparent
  );
}

.company-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--g);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 5px #fff;
}

/* Текст */
.company-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-content > p {
  margin: 0 0 23px;
  color: var(--mut);
  font-size: 14px;
  line-height: 1.85;
}

/* Нижняя плашка */
.company-highlight {
  position: relative;
  margin-top: 8px;
  padding: 25px 30px 25px 36px;
  color: #fff;
  background: linear-gradient(
    135deg,
    #0a1b2d,
    #10283f
  );
  border-left: 5px solid var(--g);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(6, 22, 37, .16);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

/* Небольшой золотой штрих внутри плашки */
.company-highlight::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 16px;
  width: 38px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--g)
  );
}


.faq-section {
  color: #fff;
  background: linear-gradient(120deg,var(--n),var(--n2));
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(214,163,59,.55);
}

.faq-list details {
  border-bottom: 1px solid rgba(214,163,59,.55);
}

.faq-list summary {
  position: relative;
  padding: 22px 55px 22px 0;
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--g2);
  font: 400 28px Prata,serif;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 780px;
  margin: -3px 0 23px;
  color: #bdc7cf;
  font-size: 13px;
  line-height: 1.75;
}

.audit-hint {
  max-width: 620px;
  margin: 17px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.65;
}



/* =========================================================
   15. АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ
   ========================================================= */
@media(max-width:950px) {
  .nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: var(--n);
}
  .nav.open {
    display: flex;
}
  .menu-toggle {
    display: grid;
    gap: 5px;
}
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--g);
}
  .header>.btn {
    display: none;
}
  .hero {
    grid-template-columns: 1fr;
}
  .hero-art {
    width: 100%;
    opacity: .35;
}
  .discipline {
    align-items: flex-start;
}
  .benefits {
    grid-template-columns: 1fr;
}
  .four {
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}
  .steps {
    grid-template-columns: repeat(3,1fr);
}
  .steps article:after {
    display: none;
}
  .prices {
    gap: 13px;
}
  .prices article {
    padding: 26px 17px;
}
  .footer {
    grid-template-columns: 1fr 1fr;
}
  .footer small {
    grid-column: 1/-1;
}
}

/* =========================================================
   16. АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНОВ
   ========================================================= */
@media(max-width:640px) {
  .header {
    height: 68px;
    padding: 8px 18px;
}
  .brand {
    width: 150px;
}
  .hero {
    min-height: 610px;
    padding: 115px 22px 55px;
}
  .hero h1 {
    font-size: 42px;
}
  .lead {
    font-size: 16px;
}
  .actions {
    align-items: flex-start;
    flex-direction: column;
}
  .hero-art {
    top: 68px;
    height: 542px;
}
  .discipline {
    display: block;
    padding: 32px 22px;
}
  .discipline h2 {
    min-width: 0;
}
  .benefits {
    margin-top: 24px;
}
  .section {
    padding: 52px 22px;
}
  .four,.steps,.metrics,.prices {
    grid-template-columns: 1fr;
}
  .four article,.metrics article {
    padding: 22px;
    border: 0;
    border-bottom: 1px solid #d8cfbf;
}
  .prices article.popular {
    transform: none;
}
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
}
  .footer img {
    margin: auto;
}
  .footer div {
    border: 0;
    padding: 0;
}
  .footer small {
    grid-column: 1;
}
  .privacy {
    inset: 5%;
    overflow: auto;
}
}

/* =========================================================
   17. АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНОВ
   ========================================================= */

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

	.metrics article {
		border-right: none;
		border-bottom: 1px solid #d8cfbf;
	}

	.metrics article:last-child {
		border-bottom: none;
	}
}
@media (max-width: 768px) {
	.cta {
		min-height: 360px;
		padding: 150px 22px 35px;

		display: flex;
		flex-direction: column;
		align-items: center;

		background-position: 30% center;
	}

	.cta h2 {
		margin-bottom: 22px;
		font-size: 27px;
		text-align: center;
	}
}

@media (max-width: 768px) {
  .cta {
    min-height: 420px;
    padding: 210px 22px 35px;

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

    background-position: 25% center;
  }

  .cta-content {
    width: 100%;
  }

  .cta-content h2 {
    font-size: 27px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding: 0 0 22px;
    text-align: center;
  }

  .footer-brand > img {
    margin: 0 auto;
  }

  .footer-brand > span {
    margin-left: 0;
  }

  .footer-contact {
    min-height: auto;
    padding: 18px 0;

    border-left: none;
    border-top: 1px solid rgba(214, 163, 59, 0.35);
  }

  .footer-copyright {
    margin-top: 20px;
  }
}


@media(max-width:760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy {
    padding-left: 0;
    padding-top: 25px;
    border-left: 0;
    border-top: 1px solid var(--g);
  }

  .faq-list summary {
    padding-right: 45px;
    font-size: 14px;
  }

  .audit-hint {
    font-size: 11px;
  }
}
