:root {
  --px-bg: #06111f;
  --px-panel: rgba(15, 23, 42, 0.82);
  --px-panel-2: rgba(2, 6, 23, 0.72);
  --px-border: rgba(148, 163, 184, 0.22);
  --px-text: #e5eefb;
  --px-muted: #94a3b8;
  --px-cyan: #22d3ee;
  --px-blue: #38bdf8;
  --px-white: #ffffff;
}

.px-wrap {
  color: var(--px-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.px-wrap a {
  text-decoration: none;
}

.px-hero {
  position: relative;
  overflow: hidden;
  margin: 24px 0;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--px-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.28), transparent 35%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.2), transparent 34%),
    linear-gradient(135deg, #020617, #0f172a 58%, #06111f);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.32);
}

.px-hero span,
.px-grid small {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--px-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.px-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--px-white);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.px-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--px-muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.72;
}

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

.px-actions a,
.px-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--px-cyan), var(--px-blue));
  color: #020617;
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(34, 211, 238, 0.18);
}

.px-actions a + a {
  background: rgba(255, 255, 255, 0.06);
  color: var(--px-text);
  box-shadow: none;
}

.px-grid {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.px-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.px-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.px-grid article,
.px-band,
.px-form,
.px-success {
  border: 1px solid var(--px-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--px-panel);
  padding: 26px;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.18);
}

.px-grid h3,
.px-band h2 {
  margin: 0 0 12px;
  color: var(--px-white);
  font-size: 24px;
  line-height: 1.15;
}

.px-grid p,
.px-band p {
  margin: 0;
  color: var(--px-muted);
  line-height: 1.72;
}

.px-band {
  margin: 28px 0;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 38%),
    var(--px-panel-2);
}

.px-price strong {
  display: block;
  margin: 8px 0 16px;
  color: var(--px-cyan);
  font-size: 28px;
  line-height: 1;
}

.px-price.featured {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 24px 80px rgba(34, 211, 238, 0.14);
}

.px-form {
  margin: 26px 0;
}

.px-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.px-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--px-text);
  font-weight: 800;
}

.px-form input,
.px-form select,
.px-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.68);
  color: var(--px-white);
  padding: 13px 14px;
  outline: none;
}

.px-form input:focus,
.px-form select:focus,
.px-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.px-form textarea {
  resize: vertical;
}

.px-form button {
  cursor: pointer;
  width: 100%;
  border: 0;
}

.px-success {
  margin: 20px 0;
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.12);
  color: #bbf7d0;
}

/* Remove WooCommerce demo store notice safely from the front-end. */
.woocommerce-store-notice,
.demo_store,
p.demo_store,
.store-notice,
[class*="woocommerce-store-notice"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Make common cookie popups lighter on mobile without removing consent controls. */
@media (max-width: 768px) {
  .cky-consent-container,
  .cky-modal,
  .cc-window,
  .cc-banner,
  #cookie-notice,
  #cookie-law-info-bar,
  .cookie-notice-container,
  .cli-bar-container,
  .moove-gdpr-modal-content,
  .moove-gdpr-info-bar-container,
  .cookieadmin,
  [class*="cookieadmin"],
  [id*="cookieadmin"] {
    max-height: 58vh !important;
    max-width: calc(100vw - 22px) !important;
    overflow: auto !important;
    border-radius: 18px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .cky-consent-container button,
  .cc-window button,
  #cookie-notice button,
  #cookie-law-info-bar button,
  [class*="cookieadmin"] button,
  [id*="cookieadmin"] button {
    min-height: 36px !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 900px) {
  .px-grid.two,
  .px-grid.three,
  .px-form-grid {
    grid-template-columns: 1fr;
  }

  .px-hero {
    border-radius: 22px;
    padding: 28px 20px;
  }

  .px-grid article,
  .px-band,
  .px-form {
    border-radius: 20px;
    padding: 20px;
  }
}
