* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #f3e8ff;
  background: linear-gradient(135deg, #1e0533 0%, #0f1a3d 100%);
  min-height: 100vh;
  position: relative;
}
body.pg-no-scroll {
  overflow: hidden;
}
main,
.pg-header,
.pg-footer {
  position: relative;
  z-index: 1;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
}
@keyframes pg-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}
.pg-bg-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.pg-shape--1 {
  width: 600px;
  height: 600px;
  background: #7c3aed;
  top: -200px;
  right: -100px;
  animation: pg-float 12s ease-in-out infinite;
}
.pg-shape--2 {
  width: 400px;
  height: 400px;
  background: #2563eb;
  bottom: -100px;
  left: -100px;
  animation: pg-float 16s ease-in-out infinite reverse;
}
.pg-shape--3 {
  width: 300px;
  height: 300px;
  background: #a855f7;
  top: 50%;
  left: 40%;
  animation: pg-float 20s ease-in-out infinite 4s;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pg-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  color: #f3e8ff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pg-section-subtitle {
  font-size: 16px;
  color: #a78bca;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.pg-btn--primary {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}
.pg-btn--primary:hover {
  box-shadow: 0 0 48px rgba(168, 85, 247, 0.3), 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.pg-btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #f3e8ff;
  padding: 16px 32px;
}
.pg-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
}
.pg-btn--submit {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
  font-weight: 700;
  width: 100%;
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.3);
}
.pg-btn--submit:hover {
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}
.pg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(30, 5, 51, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}
.pg-header--scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}
.pg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.pg-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
.pg-header__logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
}
.pg-header__logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pg-header__logo-tag {
  display: block;
  font-size: 11px;
  color: #a78bca;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .pg-header__logo-tag {
    display: none;
  }
}
.pg-header__logo-text {
  display: flex;
  flex-direction: column;
}
.pg-header__btn {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  transition: all 0.3s ease;
}
.pg-header__btn:hover {
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.3);
}
@media (max-width: 768px) {
  .pg-header__btn {
    display: none;
  }
}
.pg-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.pg-nav a:not(.pg-header__btn) {
  color: #a78bca;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pg-nav a:not(.pg-header__btn):hover {
  color: #f3e8ff;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}
.pg-nav__btn {
  display: none;
}
.pg-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 8px;
}
.pg-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f3e8ff;
  transition: all 0.3s ease;
}
.pg-burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pg-burger--active span:nth-child(2) {
  opacity: 0;
}
.pg-burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.pg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 8, 20, 0.88) 0%, rgba(10, 8, 20, 0.94) 100%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=900&q=80') center / cover no-repeat;
}
.pg-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.pg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: #a78bca;
  margin-bottom: 32px;
}
.pg-hero__badge span {
  color: #a855f7;
  font-weight: 600;
}
.pg-hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.pg-hero__title-main {
  color: #f3e8ff;
}
.pg-hero__title-accent {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pg-hero__sub {
  font-size: 17px;
  color: #a78bca;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.pg-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.pg-hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  font-size: 14px;
  color: #a78bca;
}
.pg-hero__proof strong {
  color: #f3e8ff;
  font-weight: 600;
}
.pg-hero__proof-sep {
  color: rgba(167, 139, 202, 0.5);
}
.pg-services,
.pg-advantages,
.pg-process,
.pg-reviews {
  padding: 96px 0;
}
.pg-services__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pg-service-card {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  align-items: stretch;
}
.pg-service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.12);
  transform: translateY(-2px);
}
.pg-service-card__visual {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
.pg-service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: luminosity;
  filter: sepia(0.15) hue-rotate(240deg) saturate(0.8);
  transition: all 0.3s ease;
}
.pg-service-card:hover .pg-service-card__img {
  opacity: 0.7;
  transform: scale(1.03);
}
.pg-service-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(30, 5, 51, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #6366f1;
  backdrop-filter: blur(8px);
}
.pg-service-card__body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pg-service-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f3e8ff;
  margin-bottom: 12px;
}
.pg-service-card__text {
  color: #a78bca;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.pg-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pg-service-card__tags li {
  font-size: 12px;
  color: #f3e8ff;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.pg-service-card__metric {
  padding: 32px 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 160px;
  background: rgba(0, 0, 0, 0.15);
}
.pg-service-card__metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.pg-service-card__metric-label {
  font-size: 11px;
  color: #a78bca;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  max-width: 100px;
}
.pg-advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pg-advantage-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s ease;
}
.pg-advantage-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(168, 85, 247, 0.15);
}
.pg-advantage-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.pg-advantage-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #f3e8ff;
  margin-bottom: 12px;
}
.pg-advantage-card__text {
  color: #a78bca;
  font-size: 14px;
  line-height: 1.75;
}
.pg-clients {
  position: relative;
  padding: 96px 0;
  background-size: cover;
  background-position: center;
}
.pg-clients__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 61, 0.88);
  backdrop-filter: blur(4px);
}
.pg-clients__inner {
  position: relative;
  z-index: 1;
}
.pg-clients__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pg-clients__note {
  text-align: center;
  font-size: 14px;
  color: #a78bca;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.pg-client-logo {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 20px 16px;
  font-weight: 700;
  font-size: 11px;
  color: #a78bca;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
}
.pg-client-logo:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #f3e8ff;
  border-color: rgba(168, 85, 247, 0.3);
}
.pg-stats {
  padding: 96px 0;
}
.pg-stats__wrap {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 56px 32px;
}
.pg-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pg-stat-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.pg-stat-ring__svg {
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
}
.pg-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}
.pg-ring-fill {
  fill: none;
  stroke: url(#pg-gradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.5s ease;
}
.pg-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 12px;
}
.pg-ring-num {
  font-size: 24px;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.pg-ring-text {
  font-size: 12px;
  color: #a78bca;
  margin-top: 4px;
  line-height: 1.4;
  max-width: 100px;
}
.pg-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.pg-step {
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.pg-step:first-child {
  border-radius: 16px 0 0 16px;
}
.pg-step:last-child {
  border-radius: 0 16px 16px 0;
}
.pg-step:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
}
.pg-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a855f7;
  font-size: 20px;
  z-index: 2;
}
.pg-step__num {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.pg-step__title {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #f3e8ff;
  margin-bottom: 10px;
}
.pg-step__text {
  color: #a78bca;
  font-size: 14px;
  line-height: 1.7;
}
.pg-reviews__featured {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  transition: all 0.3s ease;
}
.pg-reviews__featured:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 24px 64px rgba(168, 85, 247, 0.12);
}
.pg-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pg-review {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pg-review:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}
.pg-review--featured {
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  display: contents;
}
.pg-review--featured:hover {
  transform: none;
  box-shadow: none;
}
.pg-review__quote {
  font-size: 64px;
  line-height: 1;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  font-family: Georgia, serif;
}
.pg-review__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.4);
  flex-shrink: 0;
}
.pg-review__avatar--lg {
  width: 80px;
  height: 80px;
  border-width: 3px;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.3);
}
.pg-review__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.pg-review__name {
  font-weight: 600;
  font-size: 15px;
  color: #f3e8ff;
  margin-bottom: 2px;
}
.pg-review__role {
  font-size: 12px;
  color: #a78bca;
}
.pg-review__stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 16px;
}
.pg-review__text {
  font-size: 15px;
  color: #a78bca;
  line-height: 1.75;
  font-style: italic;
}
.pg-review__text--lg {
  font-size: 18px;
  line-height: 1.8;
  color: #f3e8ff;
  font-style: normal;
  margin-bottom: 24px;
}
.pg-review__result {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  min-width: 140px;
  margin-top: auto;
}
.pg-review__result-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.pg-review__result-label {
  font-size: 11px;
  color: #a78bca;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pg-review__body {
  flex: 1;
}
.pg-cta {
  padding: 96px 0;
  text-align: center;
}
.pg-cta .pg-section-header {
  margin-bottom: 40px;
}
.pg-cta-form {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.pg-cta-form input,
.pg-cta-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #f3e8ff;
  padding: 14px 18px;
  font-size: 15px;
  width: 100%;
  transition: all 0.3s ease;
}
.pg-cta-form input:focus,
.pg-cta-form textarea:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.3);
}
.pg-cta-form input::placeholder,
.pg-cta-form textarea::placeholder {
  color: #a78bca;
}
.pg-cta__success {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #f3e8ff;
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.pg-cta__success span {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pg-cta__privacy {
  text-align: center;
  font-size: 12px;
  color: #a78bca;
  margin-top: 16px;
}
.pg-cta__privacy a {
  color: #a855f7;
  text-decoration: underline;
}
.pg-footer {
  background: rgba(15, 5, 30, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 56px 0 24px;
  position: relative;
  z-index: 1;
}
.pg-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.pg-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pg-footer__logo-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.3));
}
.pg-footer__logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.pg-footer__desc {
  font-size: 14px;
  color: #a78bca;
  line-height: 1.6;
  max-width: 280px;
}
.pg-footer__col-title {
  font-size: 12px;
  font-weight: 600;
  color: #f3e8ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pg-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pg-footer__links a {
  font-size: 14px;
  color: #a78bca;
  transition: all 0.3s ease;
}
.pg-footer__links a:hover {
  color: #f3e8ff;
}
.pg-footer__copy {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(167, 139, 202, 0.7);
}
.pg-advantage-card,
.pg-service-card,
.pg-review,
.pg-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pg-advantage-card.pg-animate,
.pg-service-card.pg-animate,
.pg-review.pg-animate,
.pg-step.pg-animate {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .pg-clients__logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .pg-header__btn {
    display: none;
  }
  .pg-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(30, 5, 51, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    gap: 0;
  }
  .pg-nav a:not(.pg-header__btn) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
  }
  .pg-nav__btn {
    display: inline-flex;
    margin-top: 20px;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #fff;
    font-weight: 600;
  }
  .pg-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .pg-burger {
    display: flex;
  }
  .pg-service-card {
    grid-template-columns: 200px 1fr;
  }
  .pg-service-card__metric {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: row;
    gap: 16px;
    padding: 20px 32px;
    min-width: 0;
  }
  .pg-service-card__metric-label {
    max-width: none;
    text-align: left;
  }
  .pg-reviews__featured {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px;
    text-align: center;
  }
  .pg-reviews__featured .pg-review__author {
    justify-content: center;
  }
  .pg-reviews__featured .pg-review__result {
    margin: 0 auto;
  }
  .pg-reviews__grid {
    grid-template-columns: 1fr;
  }
  .pg-advantages__grid {
    grid-template-columns: 1fr;
  }
  .pg-stats__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .pg-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pg-process__steps .pg-step {
    border-radius: 16px !important;
  }
  .pg-process__steps .pg-step::after {
    display: none;
  }
  .pg-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .pg-footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .pg-hero__btns {
    flex-direction: column;
    align-items: center;
  }
  .pg-hero__btns .pg-btn {
    width: 100%;
    max-width: 320px;
  }
  .pg-hero__proof {
    flex-direction: column;
    gap: 8px;
  }
  .pg-hero__proof-sep {
    display: none;
  }
  .pg-service-card {
    grid-template-columns: 1fr;
  }
  .pg-service-card__visual {
    min-height: 160px;
  }
  .pg-service-card__body {
    padding: 24px;
  }
  .pg-advantages__grid,
  .pg-reviews__grid,
  .pg-stats__row,
  .pg-process__steps,
  .pg-clients__logos {
    grid-template-columns: 1fr;
  }
  .pg-reviews__featured {
    padding: 28px 24px;
  }
  .pg-cta-form {
    padding: 32px 24px;
  }
  .pg-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pg-section-header {
    margin-bottom: 40px;
  }
}
