/**
 * Pricing page – pricing.php only
 */
.page-pricing .home-pricing {
  padding: var(--section-y, clamp(64px, 8vw, 88px)) 0;
  background: #f8f9fc;
  overflow-x: clip;
}

.page-pricing .home-pricing__grid {
  padding-top: 14px;
}

.pricing-hero {
  background: linear-gradient(125deg, #0040c1 0%, #0b2b6f 48%, #071a42 100%);
  padding: clamp(64px, 8vw, 88px) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 50% at 85% 30%, rgba(255, 179, 2, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.pricing-hero .container { position: relative; z-index: 1; }

.pricing-hero__badge {
  display: inline-block;
  background: rgba(255, 179, 2, 0.15);
  border: 1px solid rgba(255, 179, 2, 0.4);
  color: #ffb302;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 16px;
}

.pricing-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  max-width: 580px;
}

.pricing-hero__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 18px;
}

.pricing-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.pricing-hero__trust li {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.pricing-hero__trust li i { color: #ffb302; margin-right: 6px; }

.pricing-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.pricing-compare {
  padding: clamp(64px, 8vw, 88px) 0;
}

.pricing-compare__table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e8ecf4;
  box-shadow: 0 12px 40px rgba(11, 43, 111, 0.1);
  background: #fff;
}

.pricing-compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-compare__table th,
.pricing-compare__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eef1f7;
}

.pricing-compare__table thead th {
  background: #f4f6fb;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #071a42;
}

.pricing-compare__table tr.is-featured { background: rgba(255, 179, 2, 0.06); }

.pricing-section {
  padding: clamp(64px, 8vw, 88px) 0;
}

.pricing-section--alt { background: #f8f9fc; }

.pricing-section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 5vw, 44px);
}

.pricing-section__head h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  color: #071a42;
  margin-bottom: 12px;
}

.pricing-section__head p { color: #5c6370; margin: 0; }

.pricing-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .pricing-trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-trust-item {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(11, 43, 111, 0.06);
}

.pricing-trust-item i {
  font-size: 24px;
  color: #0b2b6f;
  margin-bottom: 8px;
  display: block;
}

.pricing-trust-item span {
  font-size: 13px;
  font-weight: 700;
  color: #071a42;
}

.pricing-cta {
  background: linear-gradient(135deg, #071a42 0%, #0b2b6f 55%, #1a4a9e 100%);
  padding: clamp(56px, 8vw, 72px) 0;
  color: #fff;
  text-align: center;
}

.pricing-cta h2 { color: #fff; font-size: clamp(1.45rem, 3vw, 2rem); margin-bottom: 12px; }

.pricing-cta p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 22px; }

.pricing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.page-pricing .floating-contact {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-pricing .floating-contact a {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.page-pricing .floating-contact .btn-whatsapp { background: #25d366; }
.page-pricing .floating-contact .btn-telegram { background: #0088cc; }
.page-pricing .floating-contact.is-hidden { opacity: 0; pointer-events: none; }

@media (max-width: 767px) {
  .pricing-hero__actions { flex-direction: column; }
  .pricing-hero__actions .pg-btn { width: 100%; }
}
