* {
  box-sizing: border-box;
}

/* Public placeholders */
.gp-coming-soon-page {
  min-height: 100vh;
  margin: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  background: #111;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.gp-coming-soon-header {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gp-coming-soon {
  position: relative;
  isolation: isolate;
  width: min(720px, 100%);
  margin: auto;
  padding: 70px 32px;
  overflow: hidden;
  border: 1px solid rgba(32, 252, 193, .16);
  border-radius: 28px;
  background: #181a1a;
  text-align: center;
}

.gp-coming-soon__glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 300px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(32, 252, 193, .18);
  filter: blur(80px);
}

.gp-coming-soon__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #20fcc1, #00c8e6);
  color: #111;
  font-size: 18px;
  font-weight: 800;
}

.gp-coming-soon__pulse {
  width: 15px;
  height: 15px;
  border: 4px solid #111;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(17, 17, 17, .2);
}

.gp-coming-soon__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(32, 252, 193, .1);
  color: #20fcc1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gp-coming-soon h1 {
  margin: 18px 0 10px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
}

.gp-coming-soon p {
  max-width: 560px;
  margin: 0 auto;
  color: #9ca3a3;
  font-size: 16px;
  line-height: 1.7;
}

.gp-coming-soon__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 560px) {
  .gp-coming-soon-page { padding: 0 16px; }
  .gp-coming-soon { padding: 52px 20px; }
  .gp-coming-soon__actions { flex-direction: column; }
}

body {
  margin: 0;
  background: #1e1e1e;
  color: #fff;
  font-family: "Manrope", -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #20fcc1;
  text-decoration: none;
}

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

li {
  list-style: none;
}

.gp-page {
  background: #1e1e1e;
  overflow: hidden;
}

/* Shared buttons / links */
.gp-link-fade {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14.5px;
  font-weight: 500;
}

.gp-link-fade:hover {
  color: #fff;
}

.gp-btn-outline {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.gp-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.gp-btn-outline--lg {
  height: 54px;
  gap: 10px;
  padding: 0 26px;
  border-radius: 14px;
  font-size: 16px;
}

.gp-btn-primary {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(100deg, #20fcc1, #00c8e6);
  color: #08201b;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(32, 252, 193, 0.24);
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.gp-btn-primary:hover {
  color: #08201b;
  filter: brightness(1.06);
}

.gp-btn-primary--lg {
  height: 54px;
  padding: 0 30px;
  border-radius: 14px;
  font-size: 16px;
  box-shadow: 0 18px 44px rgba(32, 252, 193, 0.26);
}

.gp-hover-card:hover {
  border-color: rgba(32, 252, 193, 0.42);
  transform: translateY(-3px);
}

.gp-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #20fcc1;
  margin-bottom: 12px;
}

.gp-eyebrow--muted {
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 0;
}

.gp-section-title {
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.gp-section-title--tight {
  margin-bottom: 0;
}

.gp-section-lead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

/* Header */
.gp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(30, 30, 30, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Во всю ширину окна, в отличие от секций ниже (они держат 1240px). Внутри
   шапки лежит ровно столько, сколько лежит, и при потолке в 1240px на
   экране в 1440px кнопкам не хватало сотни пикселей — они переносились
   второй строкой, хотя справа пустовало почти 200px самого окна. Логотип
   поэтому стоит по краю окна, а не по колонке контента: это осознанно. */
.gp-header__inner {
  padding: 12px clamp(16px, 4vw, 32px);
  min-height: 72px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 28px;
}

.gp-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.gp-brand__name {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 14px;
  color: #fff;
}

/* Меню шапки — одна строка. Перенос одного пункта под остальные читается
   как поломка, поэтому вместо переноса сжимаются промежутки: их хватает,
   чтобы шесть пунктов помещались рядом с логотипом и кнопками. */
.gp-nav {
  display: flex;
  flex-wrap: nowrap;
  column-gap: clamp(14px, 1.8vw, 24px);
  flex: 0 1 auto;
  min-width: 0;
}

.gp-nav > a {
  white-space: nowrap;
}

.gp-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* На широком экране обёртки как будто нет: меню и кнопки остаются прямыми
   детьми шапки и раскладываются в строку ровно как раньше. Обёртка нужна
   только телефону — там это одна раскрывающаяся панель. */
.gp-header__menu {
  display: contents;
}

.gp-burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

/* Три полосы одним элементом: средняя — он сам, крайние — псевдоэлементы.
   В раскрытом виде средняя гаснет, крайние складываются в крестик. */
.gp-burger__bars,
.gp-burger__bars::before,
.gp-burger__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .18s ease, background .18s ease;
}

.gp-burger__bars {
  position: relative;
}

.gp-burger__bars::before,
.gp-burger__bars::after {
  content: '';
  position: absolute;
  left: 0;
}

.gp-burger__bars::before {
  top: -6px;
}

.gp-burger__bars::after {
  top: 6px;
}

.gp-header.is-open .gp-burger__bars {
  background: transparent;
}

.gp-header.is-open .gp-burger__bars::before {
  transform: translateY(6px) rotate(45deg);
}

.gp-header.is-open .gp-burger__bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------------------------------------------------------------------- */
/* Узкий экран ноутбука                                                     */
/* ---------------------------------------------------------------------- */

/* Полоса между «просторно» и «уже бургер»: ширины хватает впритык, и запас
   набираем промежутками — они дешевле, чем перенос кнопок второй строкой.
   Нижняя граница полосы не нужна: ниже 1400px меню уезжает под бургер и
   строка перестаёт быть тесной сама собой. */
@media (max-width: 1520px) {
  .gp-header__inner {
    column-gap: 18px;
  }

  .gp-nav {
    column-gap: 14px;
    font-size: 14px;
  }
}

/* Дальше — только запасной вариант без JS: бургера нет, меню осталось в
   строке, и подпись у кнопки выхода стоит дороже, чем целая строка меню.
   С работающим скриптом сюда не попасть — там уже бургер. */
@media (max-width: 1280px) {
  .gp-logout__label {
    display: none;
  }

  .gp-logout__btn {
    padding: 0 12px;
  }
}

/* Ниже 1400px шесть пунктов меню и три кнопки уже стоят вплотную: строка
   формально помещается, но читается как забитая под завязку. Меню уезжает
   под бургер слева от логотипа, а кнопки остаются на виду: за «Подключить»
   приходят чаще, чем за разделами.
   Прячется меню лишь тогда, когда скрипт пометил шапку готовой, — иначе
   оно осталось бы спрятанным без кнопки, которая его открывает. */
@media (max-width: 1399px) {
  .gp-burger {
    display: inline-flex;
  }

  .gp-header[data-menu="ready"] .gp-header__menu {
    display: none;
  }

  .gp-header[data-menu="ready"].is-open .gp-header__menu {
    display: flex;
    flex-direction: column;
    /* Последним в строке, хотя в разметке панель стоит раньше кнопок: так
       раскрытое меню уходит под строку шапки, а кнопки остаются в ней. */
    order: 5;
    flex-basis: 100%;
    gap: 14px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    /* На невысоком экране в альбомной ориентации панель прокручивается
       сама, а не выходит за пределы шапки. */
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  /* Внутри панели меню это обычный столбец: правило «своя строка в шапке»
     из блока пошире здесь только мешало бы — растягивало бы список по
     высоте панели. */
  .gp-header__menu .gp-nav {
    order: 0;
    flex: 0 0 auto;
    flex-direction: column;
    row-gap: 2px;
    font-size: 15px;
  }

  /* Палец, а не курсор: ряд из шести ссылок подряд без запаса по высоте
     промахивается. */
  .gp-header__menu .gp-nav > a {
    padding: 9px 2px;
  }
}

/* Запасная раскладка — когда скрипт не отработал и бургера нет. Ужимать
   дальше некуда, поэтому меню занимает свою строку целиком: так это
   выглядит решением, а не съехавшей вёрсткой. */
@media (max-width: 1180px) {
  .gp-nav {
    order: 3;
    flex: 1 0 100%;
    column-gap: 18px;
    font-size: 14.5px;
  }
}

/* Hero */
.gp-hero {
  position: relative;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 32px) 0;
}

.gp-hero__glow {
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 620px;
  background: radial-gradient(closest-side, rgba(32, 252, 193, 0.16), rgba(30, 30, 30, 0));
  pointer-events: none;
}

.gp-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}

.gp-hero__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.gp-hero__title {
  font-size: clamp(32px, 6vw, 66px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 900px;
  text-wrap: balance;
}

.gp-hero__title-accent {
  background: linear-gradient(100deg, #20fcc1, #00c8e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gp-hero__lead {
  font-size: clamp(15.5px, 2vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 640px;
  text-wrap: pretty;
}

.gp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.gp-hero__trust {
  display: flex;
  width: 100%;
  gap: 26px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13.5px;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

.gp-hero__image-wrap {
  position: relative;
  margin: 34px -32px 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.gp-hero__image {
  width: 100%;
  max-width: 1440px;
  height: auto;
  display: block;
}

/* Methods */
.gp-methods {
  position: relative;
  padding: clamp(38px, 6vw, 54px) clamp(18px, 4vw, 32px);
}

.gp-methods__grid-bg {
  position: absolute;
  inset: -40px 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 100%;
  mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, #000, transparent 78%);
  pointer-events: none;
}

.gp-methods__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.gp-methods__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gp-method-chip {
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  font-weight: 600;
}

/* Features */
.gp-features {
  position: relative;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 32px);
}

.gp-features__glow {
  position: absolute;
  top: 40px;
  right: -140px;
  width: 620px;
  height: 620px;
  background: radial-gradient(closest-side, rgba(0, 200, 230, 0.13), transparent);
  pointer-events: none;
}

.gp-features__grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 12% 45%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 12% 45%, #000, transparent 76%);
  pointer-events: none;
}

.gp-features__inner,
.gp-tariffs__inner,
.gp-verticals__inner,
.gp-support__inner,
.gp-steps__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.gp-section-head {
  max-width: 660px;
  margin-bottom: 40px;
}

.gp-section-head--narrow {
  max-width: 640px;
  margin-bottom: 36px;
}

.gp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: 16px;
}

.gp-feature-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  padding: 28px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gp-feature-card__icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20fcc1, #00c8e6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-feature-card__title,
.gp-tariff-card h3,
.gp-vertical-card__title,
.gp-team-card__title,
.gp-security-card__title,
.gp-step-card__title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.gp-feature-card__text {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.56);
  text-wrap: pretty;
}

/* Tariffs */
.gp-tariffs {
  position: relative;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 32px);
}

.gp-tariffs__glow {
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 640px;
  height: 640px;
  background: radial-gradient(closest-side, rgba(32, 252, 193, 0.12), transparent);
  pointer-events: none;
}

.gp-tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 16px;
}

.gp-tariff-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 210px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gp-tariff-card h3 {
  font-size: 20px;
}

.gp-tariff-card__rate {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.gp-tariff-card__rate-value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(100deg, #20fcc1, #00c8e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gp-tariff-card__rate-note {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.gp-tariff-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.56);
  text-wrap: pretty;
}

.gp-tariff-card__meta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.34);
}

/* Figures band */
.gp-figures {
  position: relative;
  padding: clamp(30px, 5vw, 44px) clamp(18px, 4vw, 32px);
}

.gp-figures__panel {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.028);
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: clamp(22px, 3vw, 40px);
}

.gp-figure {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-figure__value {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.gp-figure__label {
  font-size: 14.5px;
  font-weight: 700;
}

.gp-figure__note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Verticals */
.gp-verticals {
  position: relative;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 32px);
}

.gp-verticals__glow {
  position: absolute;
  top: 40px;
  right: -140px;
  width: 620px;
  height: 620px;
  background: radial-gradient(closest-side, rgba(0, 200, 230, 0.12), transparent);
  pointer-events: none;
}

.gp-vertical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 16px;
}

.gp-vertical-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.022);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gp-vertical-card__title {
  font-size: 18px;
}

.gp-vertical-card__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.54);
  text-wrap: pretty;
}

/* Support / team */
.gp-support {
  position: relative;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 32px);
}

.gp-support__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 65% at 50% 45%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 60% 65% at 50% 45%, #000, transparent 78%);
  pointer-events: none;
}

.gp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.gp-team-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gp-team-card__title {
  font-size: 19px;
}

.gp-team-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-team-card__item {
  display: flex;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.gp-team-card__check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 7px;
  background: rgba(32, 252, 193, 0.14);
  color: #20fcc1;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-security-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.gp-security-card {
  border-radius: 20px;
  border: 1px solid rgba(32, 252, 193, 0.16);
  background: linear-gradient(140deg, rgba(32, 252, 193, 0.07), rgba(30, 30, 30, 0) 80%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-security-card__tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gp-security-card__tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #20fcc1;
  text-transform: uppercase;
}

.gp-security-card__title {
  font-size: 19px;
}

.gp-security-card__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.56);
  text-wrap: pretty;
}

/* Steps */
.gp-steps {
  position: relative;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 32px);
}

.gp-steps__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000, transparent 78%);
  pointer-events: none;
}

.gp-steps__glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(32, 252, 193, 0.11), transparent);
  pointer-events: none;
}

.gp-steps__title {
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  text-align: center;
}

.gp-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 16px;
}

.gp-step-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gp-step-card__time {
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.08em;
}

.gp-step-card__title {
  font-size: 21px;
}

.gp-step-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.56);
  text-wrap: pretty;
}

/* FAQ */
.gp-faq {
  position: relative;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 32px);
}

.gp-faq__glow {
  position: absolute;
  top: 80px;
  right: -200px;
  width: 560px;
  height: 560px;
  background: radial-gradient(closest-side, rgba(0, 200, 230, 0.1), transparent);
  pointer-events: none;
}

.gp-faq__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.gp-faq__title {
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 34px;
  text-align: center;
}

.gp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  /* Отступы переехали внутрь summary: пока они были здесь, рамка вокруг
     вопроса в зону нажатия не входила, и клик рядом с текстом ничего не
     делал. */
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gp-faq-item summary {
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
}

/* Стандартный треугольник убираем в обоих движках: вместо него своя
   стрелка, которая ещё и поворачивается. */
.gp-faq-item summary::-webkit-details-marker {
  display: none;
}

.gp-faq-item summary::after {
  content: '';
  margin-left: auto;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-right: 2px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Раскрыт — стрелка смотрит вверх: состояние видно, не читая текст. */
.gp-faq-item[open] summary::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}

.gp-faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.gp-faq-item summary:hover::after {
  border-color: rgba(255, 255, 255, 0.8);
}

.gp-faq-item p {
  margin-top: 0;
  padding: 0 22px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.56);
  text-wrap: pretty;
}

/* Request form */
.gp-request {
  padding: clamp(24px, 4vw, 40px) clamp(18px, 4vw, 32px) clamp(56px, 8vw, 90px);
}

.gp-request__panel {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(32, 252, 193, 0.14);
  background: linear-gradient(160deg, rgba(32, 252, 193, 0.09), rgba(0, 200, 230, 0.045) 42%, rgba(30, 30, 30, 0) 88%);
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
}

.gp-request__glow-1 {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(closest-side, rgba(32, 252, 193, 0.18), transparent);
  pointer-events: none;
}

.gp-request__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 60% 90% at 15% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 90% at 15% 50%, #000, transparent 70%);
  pointer-events: none;
}

.gp-request__glow-2 {
  position: absolute;
  bottom: -220px;
  left: 22%;
  width: 460px;
  height: 460px;
  background: radial-gradient(closest-side, rgba(0, 200, 230, 0.14), transparent);
  pointer-events: none;
}

.gp-request__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gp-request__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.gp-request__lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.gp-request__status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.gp-request__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #20fcc1;
  box-shadow: 0 0 0 4px rgba(32, 252, 193, 0.16);
}

.gp-request__form {
  position: relative;
  background: rgba(19, 20, 21, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.gp-request__input {
  height: 50px;
  padding: 0 16px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}

.gp-request__error {
  margin-top: -6px;
  font-size: 12.5px;
  color: #ff8a8a;
}

.gp-request__submit {
  height: 52px;
  margin-top: 4px;
  border-radius: 13px;
  font-size: 16px;
}

.gp-request__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.34);
  text-align: center;
  line-height: 1.5;
}

/* Footer */
.gp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(38px, 6vw, 54px) clamp(18px, 4vw, 32px) 34px;
}

.gp-footer__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: clamp(26px, 3vw, 40px);
}

.gp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gp-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.gp-footer__brand-name {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 14px;
}

.gp-footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
  max-width: 300px;
}

.gp-footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.gp-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.gp-footer__link {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
}

.gp-footer__bottom {
  max-width: 1240px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
}

.gp-footer__spacer {
  margin-left: auto;
}

/* Кнопка выхода в шапке лендинга. Форма не должна занимать место сама по
   себе — размеры задаёт кнопка внутри. */
.gp-logout {
  margin: 0;
  display: flex;
}

.gp-logout__btn {
  gap: 8px;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.gp-logout__btn:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

/* ---------------------------------------------------------------------- */
/* Телефон                                                                 */
/* ---------------------------------------------------------------------- */

/* Отдельного мобильного вида у лендинга не было вовсе: вёрстка держалась
   на auto-fit-сетках, а они не спасают, когда минимальная ширина колонки
   больше экрана. Здесь только то, что после починки сеток всё ещё мешает
   на узком экране. */
@media (max-width: 640px) {
  /* Иконка 76px рядом с текстом съедала половину строки, и заголовок
     переносился по слогам. На узком экране она встаёт над текстом. */
  .gp-feature-card {
    flex-direction: column;
    gap: 16px;
    padding: 22px;
  }

  .gp-feature-card__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .gp-feature-card__title,
  .gp-tariff-card h3,
  .gp-vertical-card__title,
  .gp-team-card__title,
  .gp-security-card__title,
  .gp-step-card__title {
    font-size: 18px;
  }

  .gp-tariff-card,
  .gp-vertical-card,
  .gp-team-card,
  .gp-security-card,
  .gp-step-card {
    padding: 20px;
  }

  /* Карточке тарифа не нужна фиксированная высота, когда она одна в ряду:
     снизу оставалось пустое место. */
  .gp-tariff-card {
    min-height: 0;
  }

  /* Кнопки в один столбец во всю ширину: рядом они не помещались и
     превращались в две узкие полоски с переносом текста. */
  .gp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gp-hero__actions .gp-btn-primary,
  .gp-hero__actions .gp-btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Запасной вид меню — когда скрипт не отработал и бургера нет. Пункты в
     сумме заметно длиннее ширины экрана, поэтому им нужен ряд поменьше и
     свои переносы. */
  .gp-nav {
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 4px;
    font-size: 14px;
  }

  .gp-header__inner {
    column-gap: 14px;
    row-gap: 12px;
  }

  /* Шапка на телефоне в две строки: логотип по центру верхней, а бургер
     спускается к кнопкам. В одну строку это не складывалось — логотип
     стоял не по центру, а там, где его оставляли бургер слева и перенос
     кнопок вниз, и шапка выглядела съехавшей. */
  .gp-brand {
    order: 1;
    flex: 1 0 100%;
    justify-content: center;
  }

  .gp-burger {
    order: 2;
  }

  /* Кнопки поджаты: во второй строке рядом с ними теперь стоит бургер, и
     на экране в 360px без этого «Подключить» уезжало третьей строкой. */
  .gp-header__actions {
    order: 4;
    gap: 8px;
  }

  .gp-header__actions .gp-btn-outline,
  .gp-header__actions .gp-btn-primary {
    padding: 0 14px;
  }

  /* Подвал: колонки в один столбец, а нижняя строка не растягивается на
     всю ширину пустотой между пунктами. */
  .gp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
