/* ==========================================================================
   Pixel Target - Inner page layer
   ========================================================================== */

/* --- Compact page banner ------------------------------------------------ */

.pt-banner.e-con { position: relative; isolation: isolate; }

.pt-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(244, 168, 37, 0.10), transparent 55%),
    linear-gradient(to bottom, rgba(19, 40, 61, 0.55) 0%, #060F18 100%);
}
.pt-banner > .e-con-inner, .pt-banner > .elementor-element { position: relative; z-index: 1; }

/* --- Platform chips ----------------------------------------------------- */

.pt-chiprow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.pt-chip-sm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(44, 85, 114, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.pt-chip-sm:hover { border-color: rgba(244, 168, 37, 0.45); background: rgba(244, 168, 37, 0.10); }
.pt-chip-sm svg { width: 17px; height: 17px; fill: var(--pt-gold); flex-shrink: 0; }

/* --- Hairline list (no cards) ------------------------------------------- */

.pt-hairline { list-style: none; margin: 0; padding: 0; }
.pt-hairline li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pt-hairline li:first-child { padding-top: 0; }
.pt-hairline li:last-child { border-bottom: 0; padding-bottom: 0; }
.pt-hairline .pt-hl-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(44, 85, 114, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
}
.pt-hairline .pt-hl-ico svg { width: 20px; height: 20px; fill: var(--pt-gold); }
.pt-hairline h3 { color: #FFFFFF; font-size: 20px; font-weight: 600; margin: 0 0 8px; line-height: 1.4; }
.pt-hairline p { color: var(--pt-muted); margin: 0; line-height: 1.8; font-size: 16px; }

@media (max-width: 600px) {
  .pt-hairline li { grid-template-columns: 1fr; gap: 14px; }
}

/* --- Process steps ------------------------------------------------------ */

.pt-steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: ptstep; }
@media (min-width: 700px)  { .pt-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pt-steps { grid-template-columns: repeat(4, 1fr); } }

.pt-step {
  position: relative;
  padding: 32px 26px 28px;
  border-radius: var(--pt-r-panel);
  background: linear-gradient(135deg, rgba(22, 54, 82, 0.40) 0%, rgba(8, 19, 31, 0.70) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.4s ease;
}
.pt-step:hover { border-color: rgba(244, 168, 37, 0.35); }
.pt-step::before {
  counter-increment: ptstep;
  content: counter(ptstep);
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: rgba(244, 168, 37, 0.30);
  margin-bottom: 18px;
}
.pt-step h3 { color: #FFFFFF; font-size: 19px; font-weight: 600; margin: 0 0 10px; }
.pt-step p { color: var(--pt-muted); margin: 0; font-size: 15px; line-height: 1.75; }

/* --- Static logo wall --------------------------------------------------- */

.pt-logo-wall { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px)  { .pt-logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .pt-logo-wall { grid-template-columns: repeat(5, 1fr); } }

.pt-logo-wall__cell {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(248, 248, 248, 0.92);
  border: 1px solid rgba(244, 168, 37, 0.18);
  border-radius: var(--pt-r-well);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pt-logo-wall__cell:hover { border-color: rgba(244, 168, 37, 0.55); transform: translateY(-4px); }
.pt-logo-wall__cell img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* --- Sector split ------------------------------------------------------- */

.pt-split { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .pt-split { grid-template-columns: 5fr 7fr; gap: 56px; } }
.pt-split h3 { color: #FFFFFF; font-size: 26px; font-weight: 700; margin: 0 0 14px; line-height: 1.4; }
.pt-split p { color: var(--pt-body); margin: 0; line-height: 1.8; }
.pt-split .pt-split__aside { color: var(--pt-muted); }

/* --- Two-up sub cards --------------------------------------------------- */

.pt-duo { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .pt-duo { grid-template-columns: repeat(2, 1fr); } }
.pt-duo__card {
  padding: 32px;
  border-radius: var(--pt-r-panel);
  background: rgba(22, 54, 82, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease;
}
.pt-duo__card:hover { border-color: rgba(244, 168, 37, 0.32); }
.pt-duo__card h3 { color: #FFFFFF; font-size: 21px; font-weight: 600; margin: 0 0 12px; }
.pt-duo__card p { color: var(--pt-muted); margin: 0 0 18px; line-height: 1.8; font-size: 16px; }
.pt-duo__card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pt-duo__card li { display: flex; gap: 10px; align-items: flex-start; color: var(--pt-body); font-size: 15px; }
.pt-duo__card li::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--pt-gold); flex-shrink: 0; margin-top: 9px; }

/* --- CTA strip ---------------------------------------------------------- */

.pt-cta-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 52px 32px;
  border-radius: var(--pt-r-panel);
  background: linear-gradient(135deg, rgba(244, 168, 37, 0.12) 0%, rgba(22, 54, 82, 0.35) 100%);
  border: 1px solid rgba(244, 168, 37, 0.22);
}
.pt-cta-strip h2 { color: #FFFFFF; font-size: 32px; font-weight: 700; margin: 0; line-height: 1.4; }
.pt-cta-strip p { color: var(--pt-body); margin: 0; max-width: 58ch; line-height: 1.8; }
.pt-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pt-gold);
  color: var(--pt-surface);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 38px;
  border-radius: var(--pt-r-ctrl);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.pt-cta-strip__btn:hover { transform: translateY(-4px); background: var(--pt-gold-soft); box-shadow: 0 0 25px rgba(244, 168, 37, 0.40); }
@media (max-width: 600px) {
  .pt-cta-strip { padding: 38px 22px; }
  .pt-cta-strip h2 { font-size: 25px; }
  .pt-cta-strip__btn { width: 100%; justify-content: center; }
}

/* --- Contact channels --------------------------------------------------- */

.pt-channels { display: flex; flex-direction: column; gap: 16px; }
.pt-channel {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--pt-r-well);
  background: rgba(22, 54, 82, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.pt-channel:hover { border-color: rgba(244, 168, 37, 0.40); background: rgba(244, 168, 37, 0.07); }
.pt-channel__ico {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(244, 168, 37, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.pt-channel__ico svg { width: 20px; height: 20px; fill: var(--pt-gold); }
.pt-channel__k { display: block; color: var(--pt-muted); font-size: 14px; margin-bottom: 5px; }
.pt-channel__v { display: block; color: #FFFFFF; font-size: 17px; font-weight: 600; }

/* --- Contact page split ------------------------------------------------- */

.pt-contact-split { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 980px) { .pt-contact-split { grid-template-columns: 7fr 5fr; gap: 44px; } }

/* --- FAQ group label ---------------------------------------------------- */

.pt-faq-group { color: var(--pt-gold); font-size: 20px; font-weight: 700; margin: 0 0 22px; }
.pt-faq-group + .elementor-widget-accordion { margin-bottom: 0; }


/* --- Theme colour guards: Astra computes pure black for gold grounds --- */
.elementor-widget-button .elementor-button,
.wp-block-button__link { color: #0B1928; }

::selection { background-color: var(--pt-gold); color: #0B1928; }
::-moz-selection { background-color: var(--pt-gold); color: #0B1928; }

.pt-btn-ghost .elementor-button { color: #FFFFFF; }
.pt-btn-ghost .elementor-button:hover { color: #FFFFFF; }
