/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}
body, html {
    overflow-x: hidden;
}
body {
  background: radial-gradient(circle at 0 0, #020617 0, #020617 40%, #020617 100%);
  color: #e5e7eb;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.pxb-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pxb-container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
.pxb-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,0.6));
  border-bottom: 1px solid rgba(148,163,184,0.3);
}

.pxb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

/* Logo */
.pxb-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.pxb-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: conic-gradient(from 140deg, #22c55e, #0ea5e9, #a855f7, #22c55e);
  position: relative;
}

.pxb-logo-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, #22c55e, #020617 65%);
}

.pxb-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pxb-logo-main {
  text-transform: lowercase;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: #f9fafb;
}

.pxb-logo-sub {
  font-size: 10px;
  color: #9ca3af;
}

/* Nav */
.pxb-nav {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.pxb-nav a {
  color: #9ca3af;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.pxb-nav a:hover,
.pxb-nav a.active {
  color: #e5e7eb;
  border-bottom-color: #22c55e;
}

/* Header phone */
.pxb-header-contact {
  font-size: 13px;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pxb-header-contact a {
  color: inherit;
  text-decoration: none;
}

/* Burger */
.pxb-burger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.pxb-burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin-bottom: 4px;
}

/* Mobile menu */
.pxb-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 230px;
  height: 100vh;
  background: #020617;
  border-left: 1px solid rgba(148,163,184,0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 72px;
  padding-left: 24px;
  transition: right 0.3s ease;
  z-index: 100;
}

.pxb-mobile-menu a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 14px;
}

.pxb-mobile-menu.open {
  right: 0;
}

/* ========== MAIN ========== */
.pxb-main {
  flex: 1;
  padding: 20px 0 24px;
}

/* ========== HERO ========== */
.pxb-hero {
  margin-bottom: 24px;
  border-radius: 24px;
  padding: 24px 22px;
  background:
    radial-gradient(circle at 0 0, rgba(34,197,94,0.18), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(56,189,248,0.2), transparent 55%),
    linear-gradient(135deg, #020617, #020617);
  border: 1px solid rgba(148,163,184,0.4);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 24px;
}

.pxb-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #a5b4fc;
}

.pxb-hero-left h1 {
  font-size: 30px;
  line-height: 1.3;
  margin-top: 6px;
  color: #f9fafb;
}

.pxb-hero-text {
  font-size: 13px;
  color: #cbd5f5;
  margin-top: 10px;
  max-width: 520px;
}

.pxb-hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pxb-hero-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.pxb-hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.7);
}

/* Hero right */
.pxb-hero-right {
  display: flex;
  align-items: stretch;
}

.pxb-hero-card {
  background: radial-gradient(circle at 0 0, rgba(34,197,94,0.15), #020617);
  border-radius: 20px;
  border: 1px solid rgba(148,163,184,0.5);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pxb-hero-photo {
  border-radius: 16px;
  overflow: hidden;
  max-height: 200px;
}

.pxb-hero-photo img {
  width: 100%;
  height: 100%;
}

.pxb-float {
  animation: pxbFloat 6s ease-in-out infinite;
}

@keyframes pxbFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Hero stats */
.pxb-hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

.pxb-stat {
  padding: 7px 8px;
  border-radius: 14px;
  background: rgba(15,23,42,0.92);
  border: 1px solid rgba(148,163,184,0.5);
  font-size: 12px;
  color: #cbd5f5;
}

.pxb-stat span {
  display: block;
  opacity: 0.85;
  margin-bottom: 2px;
}

.pxb-stat strong {
  color: #e5e7eb;
}

/* ========== BUTTONS ========== */
.pxb-btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.pxb-btn-primary {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #020617;
  border-color: #22c55e;
  box-shadow: 0 14px 30px rgba(56,189,248,0.45);
}

.pxb-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(56,189,248,0.6);
}

.pxb-btn-outline {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148,163,184,0.7);
}

.pxb-btn-outline:hover {
  background: rgba(15,23,42,0.85);
}

/* Pill */
.pxb-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,0.6);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bae6fd;
}

/* ========== SECTIONS ========== */
.pxb-section {
  margin-bottom: 24px;
}

.pxb-section-head {
  margin-bottom: 12px;
}

.pxb-section-head h2 {
  font-size: 19px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.pxb-section-head p {
  font-size: 13px;
  color: #9ca3af;
}

/* STRIP (formats) */
.pxb-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}

.pxb-strip-item {
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.5);
  background: radial-gradient(circle at 0 0, rgba(15,118,110,0.25), #020617);
  padding: 10px 11px 11px;
  font-size: 12px;
  color: #cbd5f5;
}

.pxb-strip-item h3 {
  font-size: 14px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.pxb-strip-item i {
  margin-right: 6px;
}

/* Flow section */
.pxb-section-alt {
  background: radial-gradient(circle at 0 0, rgba(56,189,248,0.18), transparent 65%);
  border-top: 1px solid rgba(15,23,42,0.9);
  border-bottom: 1px solid rgba(15,23,42,0.9);
  padding: 24px 0 26px;
}

.pxb-flow {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1.6fr);
  gap: 24px;
}

.pxb-flow-text h2 {
  font-size: 19px;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.pxb-flow-text p {
  font-size: 13px;
  color: #9ca3af;
}

.pxb-flow-steps {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}

.pxb-flow-step {
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.95);
  padding: 9px 10px;
  font-size: 12px;
  color: #cbd5f5;
  display: grid;
  grid-template-columns: 32px minmax(0,1fr);
  gap: 8px;
  align-items: flex-start;
}

.pxb-step-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(56,189,248,0.2);
  color: #bae6fd;
  font-size: 11px;
}

.pxb-flow-step h3 {
  font-size: 13px;
  margin-bottom: 2px;
  color: #e5e7eb;
}

/* Mosaic */
.pxb-mosaic {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1fr);
  gap: 12px;
}

.pxb-mosaic-item {
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  background: radial-gradient(circle at 0 0, rgba(34,197,94,0.18), #020617);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pxb-mosaic-main {
  grid-row: span 2;
}

.pxb-mosaic-img {
  max-height: 190px;
  overflow: hidden;
}

.pxb-mosaic-body {
  padding: 10px 11px 11px;
  font-size: 12px;
  color: #cbd5f5;
}

.pxb-mosaic-body h3 {
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 3px;
  color: #e5e7eb;
}

/* Fit section */
.pxb-strip-alt {
  margin-bottom: 22px;
  padding: 24px 0 22px;
  background: radial-gradient(circle at 100% 0, rgba(34,197,94,0.18), transparent 60%);
}

.pxb-fit {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1.5fr);
  gap: 22px;
}

.pxb-fit-text h2 {
  font-size: 19px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.pxb-fit-text p {
  font-size: 13px;
  color: #9ca3af;
}

.pxb-fit-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
}

.pxb-fit-card {
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.95);
  padding: 9px 10px 11px;
  font-size: 12px;
  color: #cbd5f5;
}

.pxb-fit-card h3 {
  font-size: 14px;
  margin-bottom: 3px;
  color: #e5e7eb;
}

/* Contact split */
.pxb-contact-split {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,1.1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.pxb-contact-panel {
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.95);
  padding: 11px 12px 12px;
  font-size: 12px;
  color: #cbd5f5;
}

.pxb-contact-panel h2 {
  font-size: 17px;
  margin-bottom: 5px;
  color: #e5e7eb;
}

.pxb-contact-panel p {
  margin-bottom: 4px;
}

.pxb-contact-note {
  margin-top: 6px;
  margin-bottom: 10px;
}

.pxb-map-panel {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.7);
  min-height: 220px;
}

/* Page head */
.pxb-page-head {
  margin-bottom: 14px;
}

.pxb-page-head h1 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.pxb-page-head p {
  font-size: 13px;
  color: #9ca3af;
}

/* Routes / formats cards */
.pxb-routes-grid,
.pxb-format-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
}

.pxb-route-card,
.pxb-format-card {
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.95);
  padding: 11px 12px 13px;
  font-size: 12px;
  color: #cbd5f5;
  line-height: 1.7;
}

.pxb-route-card h2,
.pxb-format-card h2 {
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

/* About */
.pxb-about-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.pxb-about-col h2 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.pxb-about-col p,
.pxb-about-col li {
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.8;
}

/* UL generic */
.pxb-list {
  margin-left: 18px;
  margin-top: 4px;
  list-style: disc;
  color: #cbd5f5;
}

/* Contact page layout */
.pxb-contact-layout {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1.1fr);
  gap: 16px;
}

.pxb-contact-panel form {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pxb-contact-panel label {
  font-size: 12px;
  color: #e5e7eb;
}

.pxb-contact-panel input,
.pxb-contact-panel textarea {
  font-size: 13px;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.9);
  background: #020617;
  color: #e5e7eb;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pxb-contact-panel textarea {
  resize: vertical;
  min-height: 110px;
}

.pxb-contact-panel input:focus,
.pxb-contact-panel textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.4);
  background: #020617;
}

/* Note box */
.pxb-note-box {
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.95);
  padding: 11px 12px 13px;
  font-size: 13px;
  color: #cbd5f5;
}

/* Policy pages */
.pxb-page-simple {
  flex-direction: column;
}

.pxb-main-simple {
  padding: 22px 0 24px;
}

.pxb-policy-card {
  max-width: 820px;
  margin: 0 auto 18px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.98);
  padding: 14px 16px 16px;
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.8;
}

.pxb-policy-card h1 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.pxb-policy-card h2 {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.pxb-policy-card ul {
  margin-left: 18px;
}

/* Footer */
.pxb-footer {
  border-top: 1px solid rgba(30,64,175,0.7);
  background: #020617;
  padding: 10px 0 14px;
  font-size: 11px;
  color: #9ca3af;
}

.pxb-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pxb-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  margin-left: 10px;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  z-index: 120;
}

.cookie-box {
  background: #020617;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 10px 12px;
  font-size: 12px;
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15,23,42,0.8);
}

.cookie-box button {
  margin-top: 8px;
  width: 100%;
  padding: 7px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #020617;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Reveal on scroll */
.pxb-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.pxb-reveal.pxb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .pxb-nav {
    display: none;
  }
  .pxb-burger {
    display: block;
  }

  .pxb-hero {
    grid-template-columns: minmax(0,1fr);
  }

  .pxb-flow {
    grid-template-columns: minmax(0,1fr);
  }

  .pxb-flow-steps {
    grid-template-columns: minmax(0,1fr);
  }

  .pxb-mosaic {
    grid-template-columns: minmax(0,1fr);
  }

  .pxb-fit {
    grid-template-columns: minmax(0,1fr);
  }

  .pxb-fit-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .pxb-contact-split,
  .pxb-contact-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .pxb-contact-panel {
    order: 1;
  }
  .pxb-map-panel {
    order: 2;
  }

  .pxb-footer-inner {
    flex-direction: column;
    gap: 6px;
  }

  .pxb-routes-grid,
  .pxb-format-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .pxb-strip {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .pxb-container {
    width: 94%;
  }

  .pxb-hero {
    padding: 18px 14px;
  }

  .pxb-hero-left h1 {
    font-size: 24px;
  }

  .pxb-hero-text {
    font-size: 12px;
  }

  .pxb-strip,
  .pxb-routes-grid,
  .pxb-format-grid,
  .pxb-fit-grid,
  .pxb-about-grid {
    grid-template-columns: minmax(0,1fr);
  }

  #cookie-banner {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
