/* ========== HERO SECTION ========== */

.gp-hero {
  overflow: hidden;
}

.gp-hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gp-hero-layer--glow {
  background:
    radial-gradient(circle at 10% 0, rgba(255, 79, 178, 0.35), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(53, 225, 255, 0.25), transparent 60%);
  mix-blend-mode: screen;
}

.gp-hero-layer--grid {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    ),
    linear-gradient(
      120deg,
      rgba(255, 79, 178, 0.08),
      rgba(53, 225, 255, 0.04)
    );
  opacity: 0.18;
  mask-image: radial-gradient(circle at top, black, transparent 75%);
}

/* GRID */

.gp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  z-index: 1;
}

/* COPY */

.gp-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gp-accent-cyan);
}

.gp-hero-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: 0.02em;
}

.gp-hero-text {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gp-text-main);
}

.gp-hero-text--muted {
  color: var(--gp-text-muted);
}

/* BADGES */

.gp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.gp-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--gp-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  color: var(--gp-text-muted);
  background: radial-gradient(circle at 0 0, rgba(53, 225, 255, 0.2), #050714);
}

/* ACTIONS */

.gp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 14px;
}

/* LIST */

.gp-hero-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gp-hero-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

.gp-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(
    145deg,
    var(--gp-accent-pink),
    var(--gp-accent-cyan)
  );
  box-shadow: 0 0 8px rgba(255, 79, 178, 0.9);
}

/* MEDIA SIDE */

.gp-hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ORBIT CARD */

.gp-hero-orbit {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  background: radial-gradient(circle at 10% 0, #212854, #060818);
  box-shadow: var(--gp-shadow-soft);
  padding: 22px 20px 28px;
  overflow: hidden;
  transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
}

/* ORBIT RINGS */

.gp-hero-orbit-ring {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.gp-hero-orbit-ring--outer {
  border-style: solid;
  border-image: linear-gradient(
      120deg,
      rgba(255, 79, 178, 0.7),
      rgba(53, 225, 255, 0.7)
    )
    1;
  opacity: 0.85;
}

.gp-hero-orbit-ring--inner {
  inset: 46px 36px;
  opacity: 0.35;
}

/* PHOTOS – АККУРАТНАЯ РАСКЛАДКА */

.gp-hero-photo {
  position: absolute;
  display: flex;
}

.gp-hero-photo .gp-img {
  width: 100%;
  max-width: 260px; /* внутри карточки, чтобы не вылезало */
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Главная вертикальная фотка по центру, снизу */
.gp-hero-photo--primary {
  left: 50%;
  bottom: 24px;
  width: min(320px, 78%);
  transform: translateX(-50%);
}

.gp-hero-photo--primary .gp-img {
  max-width: 320px; /* ≤ 350px по требованию */
}

/* Маленькая фотка с командой сверху справа */
.gp-hero-photo--secondary {
  top: 70px;
  right: 28px;
  width: 38%;
}

/* Маленькая ночная дорога снизу слева */
.gp-hero-photo--tertiary {
  bottom: 120px;
  left: 26px;
  width: 36%;
}

/* SMALL STAT CARD */

.gp-hero-stat-card {
  position: absolute;
  left: 22px;
  top: 18px;
  padding: 10px 12px;
  border-radius: 16px;
  background: radial-gradient(circle at 0 0, #323d7b, #151935);
  border: 1px solid rgba(161, 174, 244, 0.7);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  max-width: 180px;
}

.gp-hero-stat-label {
  margin: 0 0 2px;
  font-size: 11px;
  color: var(--gp-text-soft);
}

.gp-hero-stat-value {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.gp-hero-stat-note {
  margin: 0;
  font-size: 11px;
  color: var(--gp-text-muted);
}

/* STATUS */

.gp-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(119, 255, 153, 0.5);
  background: rgba(6, 16, 25, 0.9);
  font-size: 12px;
  color: var(--gp-text-main);
}

/* PARALLAX / HOVER TILT EFFECT */

.gp-hero-orbit[data-tilt="active"] {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95);
}

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

@media (max-width: 1024px) {
  .gp-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 28px;
  }

  .gp-hero-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .gp-section {
    padding-block: 40px;
  }

  .gp-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-hero-media {
    order: -1;
  }

  .gp-hero-title {
    font-size: 26px;
  }

  .gp-hero-orbit {
    max-width: 320px;
    padding: 18px 16px 24px;
  }

  /* Чуть плотнее размещаем фото на планшете/мобилке */
  .gp-hero-photo--primary {
    bottom: 22px;
  }

  .gp-hero-photo--secondary {
    top: 64px;
    right: 22px;
    width: 42%;
  }

  .gp-hero-photo--tertiary {
    bottom: 110px;
    left: 20px;
    width: 40%;
  }

  .gp-hero-status {
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .gp-hero-title {
    font-size: 22px;
  }

  .gp-hero-text {
    font-size: 14px;
  }

  .gp-hero-orbit {
    max-width: 280px;
    border-radius: 26px;
  }

  .gp-hero-stat-card {
    left: 16px;
    top: 16px;
    max-width: 170px;
  }

  .gp-hero-photo--secondary {
    top: 70px;
    right: 18px;
  }

  .gp-hero-photo--tertiary {
    bottom: 105px;
    left: 18px;
  }

  .gp-hero-badges {
    gap: 6px;
  }

  .gp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gp-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .gp-hero-title {
    font-size: 22px;
  }

  .gp-hero-text {
    font-size: 14px;
  }

  .gp-hero-orbit {
    max-width: 260px;
    border-radius: 22px;
    padding: 14px 12px 16px;
    aspect-ratio: auto;            /* высота по контенту */
  }

  /* Убираем декоративные кольца, чтобы не мешали */
  .gp-hero-orbit-ring,
  .gp-hero-orbit-ring--inner {
    display: none;
  }

  /* Стат-картку выносим в поток сверху */
  .gp-hero-stat-card {
    position: relative;
    left: auto;
    top: auto;
    max-width: 100%;
    margin: 0 0 10px;
  }

  /* Фото больше НЕ абсолютные, просто идут столбиком */
  .gp-hero-photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin: 0 0 8px;
  }

  .gp-hero-photo .gp-img {
    max-width: 240px;   /* гарантия < 350px */
    margin: 0 auto;
  }

  /* Основная фотка */
  .gp-hero-photo--primary .gp-img {
    max-width: 260px;
  }

  /* Вторую оставляем поменьше */
  .gp-hero-photo--secondary .gp-img {
    max-width: 220px;
  }

  /* Третью на очень маленьких экранах просто скрываем,
     чтобы не перегружать блок */
  .gp-hero-photo--tertiary {
    display: none;
  }

  .gp-hero-badges {
    gap: 6px;
  }

  .gp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gp-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ========== GENERIC SECTION TYPO ========== */

.gp-section-title {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: 0.03em;
}

.gp-section-lead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gp-text-muted);
}

.gp-section-text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gp-text-main);
}

/* ========== SECTION 2: FLOW ========== */

.gp-flow {
  background: radial-gradient(circle at top left, #191f4b, #050714 65%);
}

.gp-flow-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.gp-flow-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-flow-item {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

.gp-flow-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 6px;
  background: conic-gradient(
    from 160deg,
    var(--gp-accent-pink),
    var(--gp-accent-cyan),
    var(--gp-accent-pink)
  );
}

/* Steps column */

.gp-flow-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gp-flow-line {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 79, 178, 0),
    rgba(255, 79, 178, 0.9),
    rgba(53, 225, 255, 0)
  );
  opacity: 0.9;
}

.gp-flow-step {
  position: relative;
  margin-left: 0;
  padding: 10px 14px 12px 34px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 0 0, #262f66, #0a0f26);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.gp-flow-step::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff, var(--gp-accent-cyan));
  box-shadow: 0 0 10px rgba(53, 225, 255, 0.9);
}

.gp-flow-step-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.gp-flow-step-index {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gp-text-muted);
}

.gp-flow-step-title {
  margin: 0;
  font-size: 14px;
}

.gp-flow-step-text {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--gp-text-soft);
}

.gp-flow-step-media {
  display: flex;
  justify-content: flex-start;
}

.gp-img--flow {
  max-width: 260px;
}

/* ========== SECTION 3: SERVICES PREVIEW ========== */

.gp-services-preview {
  background: radial-gradient(circle at top right, #1e2254, #050714 70%);
}

.gp-services-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}

/* Left neon ring */

.gp-services-ring {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  margin-inline: auto;
  background: radial-gradient(circle at 30% 0, #273276, #050714);
  box-shadow: var(--gp-shadow-soft);
  overflow: hidden;
}

.gp-services-ring-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(5, 7, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.gp-services-ring-label {
  display: block;
  font-size: 13px;
}

.gp-services-ring-sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--gp-text-soft);
}

.gp-services-orbit {
  position: absolute;
  inset: 18px;
  border-radius: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.gp-services-orbit--pink {
  inset: 30px 60px;
  border-color: rgba(255, 79, 178, 0.8);
  animation: gp-orbit-pink 9s linear infinite;
}

.gp-services-orbit--cyan {
  inset: 60px 30px;
  border-color: rgba(53, 225, 255, 0.8);
  animation: gp-orbit-cyan 11s linear infinite;
}

@keyframes gp-orbit-pink {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gp-orbit-cyan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* Right content */

.gp-services-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gp-service-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.gp-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    135deg,
    rgba(15, 22, 64, 0.96),
    rgba(5, 7, 20, 0.98)
  );
}

.gp-service-card--highlight {
  border-color: rgba(255, 216, 107, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

.gp-service-thumb {
  align-self: center;
}

.gp-img--service {
  max-width: 120px;
}

.gp-service-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gp-service-title {
  margin: 0;
  font-size: 15px;
}

.gp-service-text {
  margin: 0;
  font-size: 13px;
  color: var(--gp-text-soft);
}

.gp-service-list {
  margin: 4px 0 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gp-text-muted);
}

/* ========== SECTION 4: MAP PREVIEW ========== */

.gp-map-preview {
  background: radial-gradient(circle at bottom, #181f4a, #050714 70%);
}

.gp-map-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.gp-map-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-map-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

.gp-map-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gp-accent-cyan);
  box-shadow: 0 0 12px rgba(53, 225, 255, 0.9);
}

.gp-map-dot--main {
  background: var(--gp-accent-pink);
  box-shadow: 0 0 14px rgba(255, 79, 178, 0.9);
}

.gp-map-dot--branch {
  background: var(--gp-accent-cyan);
}

/* Card */

.gp-map-card {
  border-radius: 24px;
  padding: 14px 16px 16px;
  background: radial-gradient(circle at 0 0, #252f68, #060818);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--gp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gp-map-pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(154, 160, 198, 0.6);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gp-text-muted);
}

.gp-map-signal {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.gp-map-signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.gp-map-signal-dot--on {
  background: radial-gradient(circle, #8dff9b, #32d357);
  box-shadow: 0 0 10px rgba(50, 211, 87, 0.9);
}

/* Images inside map card */

.gp-map-images {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.gp-map-image {
  position: relative;
}

.gp-map-image--main {
  z-index: 2;
}

.gp-map-image--secondary {
  position: absolute;
  right: 4px;
  bottom: -6px;
  z-index: 1;
}

.gp-img--map {
  max-width: 220px;
}

/* Note */

.gp-map-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--gp-text-soft);
}
@media (max-width: 1024px) {
  .gp-flow-inner,
  .gp-services-inner,
  .gp-map-inner {
    gap: 28px;
  }

  .gp-services-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }

  .gp-map-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .gp-flow-inner,
  .gp-services-inner,
  .gp-map-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  /* текст сверху, картинки снизу — как ты просил */
  .gp-flow-copy,
  .gp-services-content,
  .gp-map-copy {
    order: 0;
  }

  .gp-flow-steps,
  .gp-services-ring,
  .gp-map-card {
    order: 1;
  }

  .gp-services-ring {
    max-width: 260px;
    margin-bottom: 10px;
  }

  .gp-service-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-service-thumb {
    justify-self: flex-start;
  }

  .gp-map-card {
    margin-top: 4px;
  }
}

/* блок @media (max-width: 480px) оставляем с теми правками, что уже сделали для hero;
   можно лишь немного уменьшить отступы новых секций при желании */
@media (max-width: 480px) {
  /* HERO */

  .gp-hero-title {
    font-size: 22px;
  }

  .gp-hero-text {
    font-size: 14px;
  }

  .gp-hero-orbit {
    max-width: 260px;
    border-radius: 22px;
    padding: 14px 12px 16px;
    aspect-ratio: auto; /* высота по контенту */
  }

  /* убираем декоративные кольца */
  .gp-hero-orbit-ring,
  .gp-hero-orbit-ring--inner {
    display: none;
  }

  /* стат-картка сверху внутри блока */
  .gp-hero-stat-card {
    position: relative;
    left: auto;
    top: auto;
    max-width: 100%;
    margin: 0 0 10px;
  }

  /* фотки — колонкой, без absolute */
  .gp-hero-photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin: 0 0 8px;
  }

  .gp-hero-photo .gp-img {
    max-width: 240px;
    margin: 0 auto;
  }

  .gp-hero-photo--primary .gp-img {
    max-width: 260px;
  }

  .gp-hero-photo--secondary .gp-img {
    max-width: 220px;
  }

  /* третью скрываем на очень маленьких экранах */
  .gp-hero-photo--tertiary {
    display: none;
  }

  .gp-hero-badges {
    gap: 6px;
  }

  .gp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gp-btn {
    width: 100%;
    justify-content: center;
  }

  /* ========== SECTION 2: FLOW MOBILE ========== */

  .gp-flow-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .gp-flow-steps {
    gap: 14px;
  }

  .gp-flow-line {
    left: 11px;
  }

  .gp-flow-step {
    padding: 10px 12px 12px 26px;
  }

  .gp-flow-step::before {
    left: 6px;
  }

  .gp-img--flow {
    max-width: 220px;
    margin: 4px auto 0;
  }

  /* ========== SECTION 3: SERVICES MOBILE ========== */

  .gp-services-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-services-ring {
    max-width: 220px;
    margin: 0 auto 12px;
  }

  .gp-service-cards {
    gap: 12px;
  }

  .gp-service-card {
    grid-template-columns: minmax(0, 1fr);
    padding: 10px 12px;
  }

  .gp-service-thumb {
    justify-self: center;
  }

  .gp-img--service {
    max-width: 140px;
  }

  /* ========== SECTION 4: MAP MOBILE ========== */

  .gp-map-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-map-card {
    padding: 12px 12px 14px;
  }

  .gp-map-images {
    flex-direction: column;      /* стопка, а не наложение */
    align-items: center;
  }

  .gp-map-image--secondary {
    position: relative;          /* убираем absolute */
    right: auto;
    bottom: auto;
    margin-top: 8px;             /* отступ между фото */
  }

  .gp-img--map {
    max-width: 220px;            /* далеко до лимита 350px */
  }
}
/* ========== SECTION 5: NIGHT SHIFT ========== */

.gp-nightline {
  background: radial-gradient(circle at top left, #171e4a, #050714 70%);
}

.gp-nightline-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.gp-nightline-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-nightline-item {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

.gp-nightline-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 6px;
  background: radial-gradient(circle, var(--gp-accent-pink), var(--gp-accent-cyan));
  box-shadow: 0 0 10px rgba(255, 79, 178, 0.8);
}

.gp-nightline-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.gp-nightline-card {
  padding: 10px 12px;
  border-radius: 16px;
  background: radial-gradient(circle at 0 0, #252f68, #080d24);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gp-nightline-card-title {
  margin: 0 0 4px;
  font-size: 14px;
}

.gp-nightline-card-text {
  margin: 0;
  font-size: 13px;
  color: var(--gp-text-muted);
}

.gp-nightline-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 14px;
}

.gp-nightline-main {
  border-radius: 26px;
  padding: 10px;
  background: radial-gradient(circle at 10% 0, #283066, #050714);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--gp-shadow-soft);
}

.gp-img--night-main {
  max-width: 300px;
}

.gp-nightline-side {
  border-radius: 20px;
  padding: 6px;
  background: radial-gradient(circle at 100% 0, #1d264f, #040714);
  border: 1px solid rgba(53, 225, 255, 0.4);
}

.gp-img--night-side {
  max-width: 240px;
}

/* ========== SECTION 6: COMFORT & EXPRESS ========== */

.gp-comfort {
  background: radial-gradient(circle at top right, #1b2352, #050714 70%);
}

.gp-comfort-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.gp-comfort-card {
  position: relative;
  padding: 12px 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, #141b46, #050714);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

.gp-comfort-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: radial-gradient(circle at 30% 0, #ffffff, #ff4fb2);
  box-shadow: 0 0 18px rgba(255, 79, 178, 0.7);
}

.gp-comfort-icon--lane {
  background: radial-gradient(circle at 30% 0, #ffffff, #35e1ff);
}

.gp-comfort-icon--work {
  background: radial-gradient(circle at 30% 0, #ffffff, #ffd86b);
}

.gp-comfort-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gp-comfort-title {
  margin: 0;
  font-size: 14px;
}

.gp-comfort-text {
  margin: 0;
  font-size: 13px;
  color: var(--gp-text-soft);
}

.gp-img--comfort {
  margin-top: 6px;
  max-width: 220px;
}

/* ========== SECTION 7: BRANDS ========== */

.gp-brands {
  background: radial-gradient(circle at bottom, #181f4a, #050714 70%);
}

.gp-brands-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.gp-brands-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.gp-brand-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 13, 47, 0.98);
  border: 1px solid rgba(154, 160, 198, 0.5);
  font-size: 12px;
  color: var(--gp-text-muted);
}

.gp-brands-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.gp-brands-main {
  border-radius: 24px;
  padding: 8px;
  background: radial-gradient(circle at 0 0, #262f66, #060818);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--gp-shadow-soft);
}

.gp-img--brands-main {
  max-width: 280px;
}

.gp-brands-side {
  position: absolute;
  right: -8px;
  bottom: -18px;
  border-radius: 18px;
  padding: 4px;
  background: radial-gradient(circle at 100% 0, #2a346e, #050714);
  border: 1px solid rgba(255, 79, 178, 0.6);
}

.gp-img--brands-side {
  max-width: 160px;
}
/* TABLET / MOBILE LAYOUT FOR NEW SECTIONS */
@media (max-width: 768px) {
  .gp-nightline-inner,
  .gp-brands-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  /* текст сверху, медиа снизу */
  .gp-nightline-copy,
  .gp-brands-copy,
  .gp-comfort-copy {
    order: 0;
  }

  .gp-nightline-media,
  .gp-brands-media,
  .gp-comfort-grid {
    order: 1;
  }

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

  .gp-brands-side {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 10px;
  }
}

/* SMALL MOBILE – ещё проще макет */
@media (max-width: 480px) {
  .gp-nightline-inner {
    gap: 18px;
  }

  .gp-nightline-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-comfort-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-brands-media {
    position: relative;
  }

  .gp-brands-main,
  .gp-brands-side {
    position: relative;
    margin: 0 auto 8px;
  }

  .gp-img--brands-main {
    max-width: 240px;
  }

  .gp-img--brands-side {
    max-width: 150px;
  }
}
/* Images inside map card – аккуратная сетка, без наложения */

.gp-map-images {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: flex-end;
  justify-items: center;
  padding-top: 4px;
}

.gp-map-image {
  position: relative;
}

.gp-map-image--main {
  transform: translateX(-4px);
}

.gp-map-image--secondary {
  transform: translateX(4px);
  opacity: 0.95;
}

.gp-img--map {
  max-width: 220px; /* далеко до лимита 350px */
  width: 100%;
  height: auto;
  border-radius: 18px;
}
/* ========== SECTION 8: STORIES ========== */

.gp-stories {
  background: radial-gradient(circle at top left, #151c46, #050714 70%);
}

.gp-stories-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.gp-stories-bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

.gp-score-meter {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, #252f66, #080d24);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gp-score-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.gp-score-label {
  font-size: 12px;
  color: var(--gp-text-muted);
}

.gp-score-value {
  font-size: 16px;
  font-weight: 600;
}

.gp-score-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gp-score-fill {
  position: absolute;
  inset: 0;
  width: 96%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--gp-accent-pink),
    var(--gp-accent-cyan),
    var(--gp-accent-yellow)
  );
  box-shadow: 0 0 18px rgba(255, 79, 178, 0.8);
}

.gp-score-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--gp-text-muted);
}

.gp-stories-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-story-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, #151c46, #050714);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.gp-story-card--alt {
  background: radial-gradient(circle at 0 0, #272f66, #050714);
}

.gp-story-photo {
  align-self: center;
}

.gp-img--story {
  max-width: 80px;
}

.gp-story-name {
  margin: 0 0 4px;
  font-size: 14px;
}

.gp-story-text {
  margin: 0;
  font-size: 13px;
  color: var(--gp-text-soft);
}

/* ========== SECTION 9: PRICING ========== */

.gp-pricing {
  background: radial-gradient(circle at top right, #1b2252, #050714 70%);
}

.gp-pricing-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.gp-price-card {
  position: relative;
  padding: 12px 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 0 0, #252f66, #050714);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

.gp-price-card--plus {
  border-color: rgba(255, 216, 107, 0.9);
}

.gp-price-card--fleet {
  border-style: dashed;
}

.gp-price-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}

.gp-price-pill {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(154, 160, 198, 0.6);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gp-text-muted);
}

.gp-price-pill--accent {
  border-color: rgba(255, 216, 107, 0.9);
  color: var(--gp-accent-yellow);
}

.gp-price-title {
  margin: 0;
  font-size: 15px;
}

.gp-price-amount {
  margin: 4px 0 4px;
  font-size: 18px;
  font-weight: 600;
}

.gp-price-list {
  margin: 0 0 6px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gp-text-soft);
}

.gp-price-photo {
  margin-top: 4px;
}

.gp-img--price {
  max-width: 220px;
}

/* ========== SECTION 10: DIGITAL (NEW) ========== */

.gp-digital {
  background: radial-gradient(circle at bottom, #171f4a, #050714 70%);
}

.gp-digital-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.gp-digital-list {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

/* правая карточка */

.gp-digital-panel {
  display: flex;
  justify-content: center;
}

.gp-digital-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 14px 14px 16px;
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, #252f66, #050714);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.gp-digital-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 0 0,
    rgba(255, 79, 178, 0.25),
    transparent 60%
  );
  opacity: 0.7;
  pointer-events: none;
}

.gp-digital-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(154, 160, 198, 0.7);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gp-text-muted);
  background: rgba(5, 7, 20, 0.9);
}

/* скрины внутри карточки */

.gp-digital-screens {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 10px;
  z-index: 1;
}

.gp-digital-screen {
  display: flex;
  justify-content: center;
}

.gp-img--digital-wide {
  max-width: 260px; /* < 350px */
  border-radius: 18px;
}

.gp-img--digital-phone {
  max-width: 140px; /* < 350px */
  border-radius: 20px;
}

/* небольшой hover-эффект у телефона */
.gp-digital-screen--phone {
  justify-content: flex-end;
}

.gp-digital-screen--phone .gp-img--digital-phone {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gp-digital-card:hover .gp-digital-screen--phone .gp-img--digital-phone {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(53, 225, 255, 0.8);
}

.gp-digital-note {
  position: relative;
  margin: 0;
  font-size: 13px;
  color: var(--gp-text-soft);
}
@media (max-width: 768px) {
  .gp-digital-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  /* сначала текст, потом карточка */
  .gp-digital-copy {
    order: 0;
  }

  .gp-digital-panel {
    order: 1;
  }

  .gp-digital-card {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .gp-digital-card {
    max-width: 280px;
    border-radius: 22px;
  }

  .gp-digital-screens {
    gap: 8px;
  }

  .gp-digital-screen--phone {
    justify-content: center;
  }

  .gp-img--digital-wide {
    max-width: 230px;
  }

  .gp-img--digital-phone {
    max-width: 130px;
  }
}
/* ========== SECTION 11: SECURITY ========== */

.gp-security {
  background: radial-gradient(circle at top right, #181f4a, #050714 70%);
}

.gp-security-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.gp-security-list {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

.gp-security-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-security-row {
  display: flex;
  justify-content: center;
}

.gp-security-row--small {
  justify-content: flex-end;
}

.gp-img--security-main {
  max-width: 280px;
  border-radius: 22px;
}

.gp-img--security-small {
  max-width: 180px;
  border-radius: 18px;
}

/* ========== SECTION 12: TEAM ========== */

.gp-team {
  background: radial-gradient(circle at top left, #151c46, #050714 70%);
}

.gp-team-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.gp-team-card {
  padding: 12px 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(140deg, #151b46, #050714);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

.gp-team-photo {
  margin-bottom: 6px;
}

.gp-img--team {
  max-width: 120px;
  border-radius: 50%;
}

.gp-team-name {
  margin: 0 0 4px;
  font-size: 14px;
}

.gp-team-role {
  margin: 0;
  font-size: 13px;
  color: var(--gp-text-soft);
}

/* ========== SECTION 13: BOOKING CTA ========== */

.gp-booking {
  background: radial-gradient(circle at bottom, #181f4a, #050714 70%);
}

.gp-booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.gp-booking-list {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

.gp-booking-panel {
  display: flex;
  justify-content: center;
}

.gp-booking-card {
  width: 100%;
  max-width: 360px;
  padding: 14px 14px 16px;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, #252f66, #050714);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.gp-booking-label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(154, 160, 198, 0.7);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gp-text-muted);
  margin-bottom: 10px;
  background: rgba(5, 7, 20, 0.9);
}

.gp-booking-screens {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 8px;
  align-items: flex-end;
  margin-bottom: 10px;
}

.gp-img--booking-desktop {
  max-width: 220px;
  border-radius: 18px;
}

.gp-img--booking-phone {
  max-width: 120px;
  border-radius: 20px;
}

.gp-booking-note {
  margin: 0;
  font-size: 13px;
  color: var(--gp-text-soft);
}
@media (max-width: 768px) {
  .gp-security-inner,
  .gp-booking-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  /* текст сверху, картинки снизу */
  .gp-security-copy,
  .gp-booking-copy {
    order: 0;
  }

  .gp-security-panel,
  .gp-booking-panel {
    order: 1;
  }

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

  .gp-booking-card {
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .gp-security-inner {
    gap: 18px;
  }

  .gp-security-row--small {
    justify-content: center;
  }

  .gp-img--security-main {
    max-width: 240px;
  }

  .gp-img--security-small {
    max-width: 160px;
  }

  .gp-team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gp-team-card {
    text-align: left;
  }

  .gp-booking-card {
    max-width: 280px;
    border-radius: 22px;
  }

  .gp-booking-screens {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .gp-img--booking-desktop {
    max-width: 230px;
  }

  .gp-img--booking-phone {
    max-width: 130px;
  }
}
/* ===== MOBILE FIX: STORIES SECTION ===== */
@media (max-width: 768px) {
  /* 8 секция: всё в колонку */
  .gp-stories-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* порядок: сначала текст, потом карточки */
  .gp-stories-left {
    order: 0;
  }

  .gp-stories-right {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* каждая карточка на всю ширину, без второй колонки внутри */
  .gp-story-card {
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr); /* фото сверху, текст ниже */
  }

  .gp-story-photo {
    justify-self: flex-start;
    margin-bottom: 4px;
  }

  .gp-img--story {
    max-width: 80px; /* маленький портрет, точно не даст переполнения */
  }
}

@media (max-width: 480px) {
  .gp-stories-inner {
    gap: 18px;
  }

  .gp-story-card {
    padding: 10px 10px 12px;
    border-radius: 16px;
  }
}
/* ========== SECTION 14: INTERVALS ========== */

.gp-intervals {
  background: radial-gradient(circle at top left, #161c46, #050714 70%);
}

.gp-intervals-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.gp-intervals-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 10px;
}

.gp-interval-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(154, 160, 198, 0.6);
  font-size: 12px;
  color: var(--gp-text-muted);
  background: rgba(5, 7, 20, 0.9);
}

.gp-intervals-list {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--gp-text-soft);
}

.gp-intervals-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.gp-interval-card {
  border-radius: 22px;
  padding: 8px;
  background: radial-gradient(circle at 0 0, #252f66, #050714);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

.gp-interval-card--main {
  align-self: stretch;
}

.gp-interval-card--note {
  max-width: 220px;
}

.gp-img--interval-main {
  max-width: 280px;
  border-radius: 18px;
}

.gp-img--interval-note {
  max-width: 200px;
  border-radius: 18px;
}

/* ========== SECTION 15: FAQ ========== */

.gp-faq {
  background: radial-gradient(circle at top right, #181f4a, #050714 70%);
}

.gp-faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.gp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.gp-faq-item {
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, #252f66, #050714);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gp-faq-q {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.gp-faq-a {
  font-size: 13px;
  color: var(--gp-text-soft);
}

.gp-faq-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.gp-faq-main {
  border-radius: 22px;
  padding: 8px;
  background: radial-gradient(circle at 0 0, #252f66, #050714);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

.gp-faq-side {
  border-radius: 18px;
  padding: 6px;
  background: radial-gradient(circle at 100% 0, #1d2452, #050714);
  border: 1px solid rgba(53, 225, 255, 0.5);
}

.gp-img--faq-main {
  max-width: 260px;
  border-radius: 18px;
}

.gp-img--faq-side {
  max-width: 200px;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .gp-intervals-inner,
  .gp-faq-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  /* порядок: сначала текст, потом картинки */
  .gp-intervals-copy,
  .gp-faq-copy {
    order: 0;
  }

  .gp-intervals-media,
  .gp-faq-media {
    order: 1;
  }

  .gp-intervals-media {
    align-items: center;
  }

  .gp-interval-card--main {
    align-self: center;
  }

  .gp-faq-main {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .gp-intervals-inner,
  .gp-faq-inner {
    gap: 18px;
  }

  .gp-img--interval-main {
    max-width: 240px;
  }

  .gp-img--interval-note {
    max-width: 180px;
  }

  .gp-img--faq-main {
    max-width: 230px;
  }

  .gp-img--faq-side {
    max-width: 170px;
  }
}
