@charset "UTF-8";
:root {
  --pd-accent: #a855f7;
  --pd-accent-glow: rgba(168, 85, 247, 0.25);
  --pd-accent-2: #06b6d4;
  --pd-bg: #0d0f14;
  --pd-bg-card: rgba(255, 255, 255, 0.04);
  --pd-bg-card-hover: rgba(255, 255, 255, 0.07);
  --pd-border: rgba(255, 255, 255, 0.08);
  --pd-border-focus: rgba(168, 85, 247, 0.6);
  --pd-text: #f0f0f5;
  --pd-text-muted: #8a8a9a;
  --pd-red: #f87171;
  --pd-green: #4ade80;
  --pd-radius: 14rem;
  --pd-radius-lg: 20rem;
}

body {
  background: var(--pd-bg);
  color: var(--pd-text);
}

.custom-icon {
  display: inline-block;
  width: 16rem;
  height: 16rem;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.pd-benefit__img {
  display: block;
  width: 32rem;
  height: 32rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.payment-popup__icon .custom-icon {
  width: 48rem;
  height: 48rem;
  opacity: 0.9;
}

.pd-hero {
  padding: 96rem 0 80rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pd-hero::before {
  content: "";
  position: absolute;
  top: -200rem;
  left: 50%;
  transform: translateX(-50%);
  width: 700rem;
  height: 700rem;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  padding: 6rem 16rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1rem solid rgba(168, 85, 247, 0.3);
  border-radius: 20rem;
  font-size: 13rem;
  color: #c084fc;
  font-weight: 500;
  margin-bottom: 28rem;
  letter-spacing: 0.02em;
}

.pd-hero__title {
  font-size: clamp(32rem, 5vw, 58rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pd-text);
  margin-bottom: 20rem;
}
.pd-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pd-hero__sub {
  font-size: 18rem;
  color: var(--pd-text-muted);
  max-width: 580rem;
  margin: 0 auto 36rem;
  line-height: 1.65;
}

.pd-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  padding: 16rem 36rem;
  background: var(--pd-accent);
  color: #fff;
  font-size: 16rem;
  font-weight: 600;
  border-radius: 50rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 32rem rgba(168, 85, 247, 0.4);
}
.pd-hero__cta:hover {
  transform: translateY(-2rem);
  box-shadow: 0 0 48rem rgba(168, 85, 247, 0.55);
}

.pd-hero__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16rem;
  margin-top: 20rem;
  font-size: 13rem;
  color: var(--pd-text-muted);
}

.pd-hero__meta-dot {
  opacity: 0.4;
}

@media (max-width: 800px) {
  .pd-hero {
    padding: 64rem 0 48rem;
  }

  .pd-hero__title {
    font-size: 30rem;
  }

  .pd-hero__sub {
    font-size: 16rem;
  }
}
.pd-benefits {
  padding: 56rem 0;
}
.pd-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20rem;
}
@media (max-width: 800px) {
  .pd-benefits__grid {
    grid-template-columns: 1fr;
  }
}

.pd-benefit {
  padding: 28rem;
  background: var(--pd-bg-card);
  border: 1rem solid var(--pd-border);
  border-radius: var(--pd-radius);
  transition: border-color 0.2s, background 0.2s;
}
.pd-benefit:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: var(--pd-bg-card-hover);
}
.pd-benefit__icon {
  font-size: 28rem;
  margin-bottom: 14rem;
}
.pd-benefit__title {
  font-size: 16rem;
  font-weight: 600;
  color: var(--pd-text);
  margin-bottom: 8rem;
}
.pd-benefit__text {
  font-size: 14rem;
  color: var(--pd-text-muted);
  line-height: 1.6;
}

.pd-form-section {
  padding: 56rem 0 72rem;
}
.pd-form-section__header {
  text-align: center;
  margin-bottom: 40rem;
}
.pd-form-section__title {
  font-size: 32rem;
  font-weight: 700;
  color: var(--pd-text);
  margin-bottom: 10rem;
}
.pd-form-section__sub {
  font-size: 15rem;
  color: var(--pd-text-muted);
}

.pd-form-wrap {
  max-width: 700rem;
  margin: 0 auto;
  background: var(--pd-bg-card);
  border: 1rem solid var(--pd-border);
  border-radius: var(--pd-radius-lg);
  padding: 36rem;
}
@media (max-width: 800px) {
  .pd-form-wrap {
    padding: 24rem 20rem;
  }
}

.pd-form-group {
  margin-bottom: 22rem;
}
.pd-form-group label {
  display: block;
  font-size: 13rem;
  font-weight: 600;
  color: var(--pd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8rem;
}
.pd-form-group .pd-hint {
  font-size: 12rem;
  color: rgba(138, 138, 154, 0.7);
  margin-top: 6rem;
}
.pd-form-group .label-optional {
  color: rgba(138, 138, 154, 0.6);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.pd-input,
.pd-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1rem solid var(--pd-border);
  border-radius: 10rem;
  color: var(--pd-text);
  font-family: inherit;
  font-size: 15rem;
  padding: 13rem 16rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  resize: vertical;
}
.pd-input:focus,
.pd-textarea:focus {
  outline: none;
  border-color: var(--pd-border-focus);
  box-shadow: 0 0 0 3rem rgba(168, 85, 247, 0.12);
}
.pd-input::placeholder,
.pd-textarea::placeholder {
  color: rgba(138, 138, 154, 0.5);
}

.pd-textarea {
  min-height: 130rem;
  line-height: 1.6;
}

.pd-input--error {
  border-color: var(--pd-red) !important;
}

.pd-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16rem;
}
@media (max-width: 800px) {
  .pd-input-row {
    grid-template-columns: 1fr;
  }
}

.pd-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16rem;
  margin-top: 8rem;
}
@media (max-width: 800px) {
  .pd-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pd-btn-generate {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  padding: 14rem 32rem;
  background: var(--pd-accent);
  color: #fff;
  font-size: 15rem;
  font-weight: 600;
  border: none;
  border-radius: 50rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 24rem rgba(168, 85, 247, 0.35);
  white-space: nowrap;
}
.pd-btn-generate:hover:not(:disabled) {
  transform: translateY(-1rem);
  box-shadow: 0 0 36rem rgba(168, 85, 247, 0.5);
}
.pd-btn-generate:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.pd-btn-generate .btn__icon {
  transition: transform 0.2s;
}
.pd-btn-generate:hover .btn__icon {
  transform: translateX(3rem);
}

.pd-char-info {
  font-size: 12rem;
  color: var(--pd-text-muted);
}

/* ---- Loading ---- */
.pd-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14rem;
  padding: 48rem 0;
}
.pd-loading.is-visible {
  display: flex;
}
.pd-loading__spinner {
  width: 42rem;
  height: 42rem;
  border: 3rem solid rgba(168, 85, 247, 0.15);
  border-top-color: var(--pd-accent);
  border-radius: 50%;
  animation: pd-spin 0.8s linear infinite;
}
.pd-loading__text {
  color: var(--pd-text-muted);
  font-size: 14rem;
}

@keyframes pd-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ---- Error ---- */
.pd-error {
  display: none;
  align-items: center;
  gap: 12rem;
  padding: 14rem 18rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1rem solid rgba(248, 113, 113, 0.3);
  border-radius: 10rem;
  margin-top: 16rem;
  cursor: pointer;
  animation: pd-fadein 0.2s ease;
}
.pd-error.is-visible {
  display: flex;
}
.pd-error__icon {
  font-size: 18rem;
  flex-shrink: 0;
}
.pd-error__text {
  font-size: 14rem;
  color: #fca5a5;
  line-height: 1.5;
}

/* ---- Results ---- */
.pd-results {
  display: none;
  padding: 0 0 56rem;
}
.pd-results.is-visible {
  display: block;
}
.pd-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20rem;
  max-width: 700rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  .pd-results__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10rem;
  }
}
.pd-results__title {
  font-size: 18rem;
  font-weight: 600;
  color: var(--pd-text);
}

.pd-btn-retry {
  display: inline-flex;
  align-items: center;
  gap: 6rem;
  padding: 8rem 16rem;
  background: transparent;
  border: 1rem solid var(--pd-border);
  border-radius: 20rem;
  color: var(--pd-text-muted);
  font-size: 13rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-btn-retry:hover {
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--pd-text);
}

/* ---- Response cards ---- */
@keyframes pd-fadein {
  from {
    opacity: 0;
    transform: translateY(6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pd-response-group {
  max-width: 700rem;
  margin: 0 auto 24rem;
}
.pd-response-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12rem;
  padding: 0 4rem;
}
.pd-response-group__label {
  font-size: 12rem;
  color: var(--pd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pd-response-group__time {
  font-size: 12rem;
  color: rgba(138, 138, 154, 0.5);
}

.pd-response-card {
  background: var(--pd-bg-card);
  border: 1rem solid var(--pd-border);
  border-radius: var(--pd-radius);
  padding: 22rem;
  margin-bottom: 12rem;
  transition: border-color 0.2s;
  cursor: pointer;
  animation: pd-fadein 0.3s ease;
}
.pd-response-card:hover {
  border-color: rgba(168, 85, 247, 0.35);
  background: var(--pd-bg-card-hover);
}
.pd-response-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14rem;
}
.pd-response-card__tone {
  display: inline-flex;
  align-items: center;
  gap: 6rem;
  font-size: 12rem;
  font-weight: 600;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pd-response-card__tone::before {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: currentColor;
}
.pd-response-card__text {
  font-size: 14rem;
  line-height: 1.75;
  color: rgba(240, 240, 245, 0.85);
  white-space: pre-wrap;
}

.pd-tone-trust .pd-response-card__tone {
  color: #4ade80;
}

.pd-tone-expert .pd-response-card__tone {
  color: #60a5fa;
}

.pd-tone-sell .pd-response-card__tone {
  color: #fb923c;
}

.pd-btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 5rem;
  font-size: 12rem;
  color: var(--pd-text-muted);
  transition: color 0.2s;
  user-select: none;
}
.pd-btn-copy:hover {
  color: var(--pd-accent);
}
.pd-btn-copy.copied {
  color: var(--pd-green);
}

.pd-how {
  padding: 56rem 0;
  border-top: 1rem solid var(--pd-border);
}
.pd-how__title {
  text-align: center;
  font-size: 28rem;
  font-weight: 700;
  color: var(--pd-text);
  margin-bottom: 40rem;
}
.pd-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32rem;
  max-width: 820rem;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .pd-how__grid {
    grid-template-columns: 1fr;
    gap: 24rem;
  }
}

.pd-step {
  text-align: center;
}
.pd-step__num {
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.12);
  border: 1rem solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18rem;
  font-weight: 700;
  color: var(--pd-accent);
  margin: 0 auto 16rem;
}
.pd-step__title {
  font-size: 15rem;
  font-weight: 600;
  color: var(--pd-text);
  margin-bottom: 8rem;
}
.pd-step__text {
  font-size: 13rem;
  color: var(--pd-text-muted);
  line-height: 1.6;
}

#payment-step-form {
  display: none;
  width: 100%;
}

/* ---- PRICING SECTION ---- */
.pricing-section {
  padding: 64rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.04) 100%);
}

.pricing__title {
  font-size: 32rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10rem;
  background: linear-gradient(135deg, #fff 40%, var(--pd-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__sub {
  text-align: center;
  color: var(--pd-text-muted);
  font-size: 15rem;
  margin-bottom: 44rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240rem, 1fr));
  gap: 20rem;
  max-width: 860rem;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-empty {
  grid-column: 1/-1;
  padding: 40rem 0;
  color: var(--pd-text-muted);
  text-align: center;
  font-size: 15rem;
}

.pricing-card {
  position: relative;
  padding: 28rem 24rem;
  border-radius: 16rem;
  display: flex;
  flex-direction: column;
  gap: 16rem;
  background: var(--glass-bg);
  border: 1rem solid var(--glass-border);
  backdrop-filter: blur(20rem);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-3rem);
  box-shadow: 0 16rem 48rem rgba(168, 85, 247, 0.12);
}
.pricing-card--featured {
  border-color: rgba(168, 85, 247, 0.45);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(10, 10, 25, 0.6) 100%);
  box-shadow: 0 6rem 32rem rgba(168, 85, 247, 0.18);
}
.pricing-card__badge {
  position: absolute;
  top: -12rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pd-accent), #7c3aed);
  color: #fff;
  font-size: 11rem;
  font-weight: 700;
  padding: 3rem 14rem;
  border-radius: 20rem;
  white-space: nowrap;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}
.pricing-card__name {
  font-size: 15rem;
  font-weight: 600;
  color: var(--pd-text-muted);
}
.pricing-card__price {
  font-size: 36rem;
  font-weight: 800;
  color: var(--pd-text);
  letter-spacing: -1rem;
  line-height: 1;
}
.pricing-card__price span {
  font-size: 18rem;
  font-weight: 600;
  color: var(--pd-text-muted);
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8rem;
  font-size: 13rem;
  color: var(--pd-text-muted);
}
.pricing-card__features li::before {
  content: "✓";
  color: var(--pd-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- BUY BUTTON ---- */
.btn-buy {
  width: 100%;
  padding: 11rem;
  border-radius: 10rem;
  font-family: inherit;
  font-size: 14rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  margin-top: 4rem;
}
.btn-buy--primary {
  background: linear-gradient(135deg, var(--pd-accent), #7c3aed);
  color: #fff;
  box-shadow: 0 4rem 16rem rgba(168, 85, 247, 0.35);
}
.btn-buy--primary:hover {
  transform: translateY(-1rem);
  box-shadow: 0 6rem 24rem rgba(168, 85, 247, 0.45);
}
.btn-buy--outline {
  background: transparent;
  color: var(--pd-accent);
  border: 1rem solid rgba(168, 85, 247, 0.35);
}
.btn-buy--outline:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--pd-accent);
}

/* ---- PAYMENT OVERLAY ---- */
.payment-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6rem);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.payment-overlay.active {
  display: flex;
}

.payment-popup {
  position: relative;
  width: 95%;
  max-width: 600rem;
  max-height: 92vh;
  padding: 36rem 28rem 28rem;
  border-radius: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12rem;
  overflow-y: auto;
  background: var(--glass-bg);
  border: 1rem solid var(--glass-border);
  backdrop-filter: blur(20rem);
}
.payment-popup__close {
  position: absolute;
  top: 14rem;
  right: 14rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--pd-text-muted);
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.payment-popup__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--pd-text);
}
.payment-popup__icon {
  font-size: 36rem;
}
.payment-popup__title {
  font-size: 18rem;
  font-weight: 700;
  text-align: center;
  color: var(--pd-text);
}
.payment-popup__sub {
  color: var(--pd-text-muted);
  font-size: 13rem;
}

.payment-ps-list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  width: 100%;
  margin-top: 12rem;
}

.payment-ps-loading {
  text-align: center;
  padding: 20rem;
  color: var(--pd-text-muted);
}

.payment-ps-btn {
  display: flex;
  align-items: center;
  gap: 12rem;
  width: 100%;
  padding: 12rem 16rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1rem solid var(--glass-border);
  border-left: 3rem solid transparent;
  border-radius: 10rem;
  color: var(--pd-text);
  font-size: 14rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, border-color 0.15s;
}
.payment-ps-btn:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--pd-accent);
}

.payment-ps-logo {
  height: 22rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.payment-iframe {
  width: 100%;
  min-height: 520rem;
  border: none;
  border-radius: 10rem;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 8rem;
}

.payment-back-btn {
  background: none;
  border: none;
  color: var(--pd-text-muted);
  font-size: 13rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 8rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  transition: color 0.15s;
  font-family: inherit;
}
.payment-back-btn:hover {
  color: var(--pd-text);
}

/* ---- PRICING INFO BLOCK (Как работает покупка пакетов) ---- */
.pricing-info-block {
  max-width: 900rem;
  margin: 56rem auto 0;
  padding: 36rem 40rem;
  background: rgba(124, 92, 252, 0.04);
  border: 1rem solid rgba(124, 92, 252, 0.15);
  border-radius: 20rem;
  backdrop-filter: blur(12rem);
}

.pricing-info__title {
  font-size: 16rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 28rem;
  letter-spacing: 0.5rem;
}

.pricing-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24rem 40rem;
}
@media screen and (max-width: 800px) {
  .pricing-info__grid {
    grid-template-columns: 1fr;
    gap: 20rem;
  }
}

.pricing-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14rem;
}
.pricing-info__item strong {
  display: block;
  font-size: 14rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5rem;
  line-height: 1.4;
}
.pricing-info__item p {
  font-size: 13rem;
  color: var(--text-3);
  line-height: 1.65;
  margin: 0;
}

.pricing-info__icon {
  flex-shrink: 0;
  margin-top: 2rem;
  filter: drop-shadow(0 0 8rem rgba(124, 92, 252, 0.4));
}
.pricing-info__icon img {
  display: block;
  width: 22rem;
  height: 22rem;
  object-fit: contain;
}

.pricing-info__item--full {
  grid-column: 1/-1;
  padding-top: 20rem;
  border-top: 1rem solid rgba(124, 92, 252, 0.12);
  margin-top: 4rem;
}

.pricing-info__link {
  display: inline-block;
  margin-top: 10rem;
  font-size: 13rem;
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1rem solid rgba(167, 139, 250, 0.35);
  padding-bottom: 1rem;
  transition: color 0.18s, border-color 0.18s;
}
.pricing-info__link:hover {
  color: #fff;
  border-color: rgba(167, 139, 250, 0.8);
}

.pricing-info__note {
  display: inline-block;
  margin-top: 10rem;
  font-size: 12rem;
  color: var(--text-3);
  font-style: italic;
}

.marketing-section {
  padding: 56rem 0;
  border-top: 1rem solid var(--glass-border);
}

.marketing-title {
  font-size: 28rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8rem;
  background: linear-gradient(135deg, #fff 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marketing-sub {
  font-size: 15rem;
  color: var(--text-2);
  text-align: center;
  margin-bottom: 36rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240rem, 1fr));
  gap: 16rem;
}

.benefit-card {
  padding: 24rem;
}
.benefit-card__icon {
  margin-bottom: 12rem;
  line-height: 1;
}
.benefit-card__icon img {
  display: block;
  width: 36rem;
  height: 36rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.benefit-card__title {
  font-size: 16rem;
  font-weight: 700;
  margin-bottom: 8rem;
}
.benefit-card__text {
  font-size: 14rem;
  color: var(--text-2);
  line-height: 1.6;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200rem, 1fr));
  gap: 14rem;
}

.target-card {
  padding: 20rem;
}
.target-card__icon {
  margin-bottom: 10rem;
  line-height: 1;
}
.target-card__icon img {
  display: block;
  width: 30rem;
  height: 30rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.target-card__title {
  font-size: 15rem;
  font-weight: 700;
  margin-bottom: 6rem;
}
.target-card__text {
  font-size: 13rem;
  color: var(--text-2);
  line-height: 1.55;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  max-width: 760rem;
  margin: 0 auto;
}

.faq-item {
  padding: 20rem 24rem;
}
.faq-item__q {
  font-size: 15rem;
  font-weight: 600;
  margin-bottom: 8rem;
}
.faq-item__a {
  font-size: 14rem;
  color: var(--text-2);
  line-height: 1.65;
}

@media screen and (max-width: 800px) {
  .marketing-section {
    padding: 36rem 0;
  }

  .marketing-title {
    font-size: 22rem;
  }

  .benefits-grid,
.target-grid {
    grid-template-columns: 1fr;
  }
}
.contacts-block {
  padding: 48rem 0;
  border-top: 1rem solid var(--glass-border);
}

.contacts-card {
  padding: 36rem;
  max-width: 640rem;
  margin: 0 auto;
  text-align: center;
}

.contacts-block__title {
  font-size: 22rem;
  font-weight: 700;
  margin-bottom: 10rem;
}

.contacts-block__desc {
  font-size: 14rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24rem;
}

.contacts-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12rem;
  padding: 14rem 18rem;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}
.contact-item:hover {
  border-color: rgba(124, 92, 252, 0.35);
  background: rgba(124, 92, 252, 0.06);
}
.contact-item__icon {
  flex-shrink: 0;
}
.contact-item__text {
  font-size: 14rem;
  font-weight: 500;
  color: var(--text-2);
}

.contact-logo {
  height: 24rem;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 800px) {
  .contacts-card {
    padding: 24rem 18rem;
  }
}
.pd-toast {
  position: fixed;
  bottom: 28rem;
  left: 50%;
  transform: translateX(-50%) translateY(20rem);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 9999;
}
.pd-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.pd-toast__box {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  padding: 12rem 20rem;
  background: rgba(22, 24, 32, 0.95);
  border: 1rem solid rgba(168, 85, 247, 0.3);
  border-radius: 50rem;
  backdrop-filter: blur(12rem);
  font-size: 14rem;
  color: var(--pd-text);
  white-space: nowrap;
}
.pd-toast__box--error {
  border-color: rgba(248, 113, 113, 0.4);
}
