/* ==========================================================================
   ProBer landing page — vanilla CSS
   ========================================================================== */

:root {
  --pb-orange: #FF6B00;
  --pb-orange-light: #FFF3EB;
  --pb-orange-light-2: #FFE4D1;
  --pb-blue: #1E3A8A;
  --pb-blue-light: #EEF2FB;
  --pb-blue-light-2: #D5DEF6;
  --pb-black: #111111;
  --pb-white: #FFFFFF;
  --pb-gray: #8A8A8A;
  --pb-gray-light: #B0B0B0;
  --pb-green: #16A34A;
  --pb-red: #EF4444;

  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.08);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--pb-black);
  background: var(--pb-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pb-orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--pb-gray);
  max-width: 560px;
  line-height: 1.6;
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pb-orange);
  color: var(--pb-white);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 107, 0, 0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--pb-white);
}
.btn-outline:hover { border-color: var(--pb-white); transform: translateY(-2px); }
.btn-dark {
  background: var(--pb-black);
  color: var(--pb-white);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(17, 17, 17, 0.3); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--pb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
}

.brand-mark svg { width: 20px; height: 20px; }

.brand-word {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--pb-white);
}
.brand-word .dot { color: var(--pb-orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--pb-white); }

.header-actions { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--pb-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(17, 17, 17, 0.97);
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .header-actions .btn-primary { padding: 10px 16px; font-size: 13.5px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .header-actions .btn-primary { padding: 9px 12px; font-size: 12.5px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: radial-gradient(120% 100% at 50% -10%, #1a2550 0%, var(--pb-black) 55%),
              linear-gradient(160deg, var(--pb-black) 0%, var(--pb-blue) 130%);
  color: var(--pb-white);
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 40px;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.hero-content { text-align: left; }

.hero-headline {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 22px;
}
.hero-headline .accent { color: var(--pb-orange); }

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-apps-tag {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-apps-tag .app-link { font-weight: 700; }
.hero-apps-tag .app-link.client { color: var(--pb-orange); }
.hero-apps-tag .app-link.provider { color: #6E8CE8; }
.hero-apps-tag .sep { color: rgba(255, 255, 255, 0.3); }

.hero-visual { position: relative; }

/* ==========================================================================
   Phone stage
   ========================================================================== */

.phone-stage {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-captions {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 18px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}
.phone-caption { flex: 1; max-width: 232px; }
.phone-caption--client { text-align: left; }
.phone-caption--provider { text-align: right; }

.phone-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}
.phone-glow--orange { background: rgba(255, 107, 0, 0.35); left: 6%; top: 18%; }
.phone-glow--blue { background: rgba(30, 58, 138, 0.55); right: 4%; bottom: 10%; }

.phone-mock {
  position: absolute;
  width: 232px;
  --tilt: 0deg;
  animation-name: floatPhone;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.phone-mock--client {
  --tilt: -8deg;
  left: 50%;
  z-index: 1;
  animation-duration: 4.5s;
}
.phone-mock--provider {
  --tilt: 6deg;
  left: 50%;
  z-index: 2;
  animation-duration: 5.5s;
  animation-delay: -1.6s;
}

@keyframes floatPhone {
  0%, 100% { transform: translateX(var(--tx)) rotate(var(--tilt)) translateY(0); }
  50% { transform: translateX(var(--tx)) rotate(var(--tilt)) translateY(-10px); }
}
.phone-mock--client { --tx: -211px; }
.phone-mock--provider { --tx: -21px; }

.phone-frame {
  width: 232px;
  height: 472px;
  background: var(--pb-black);
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}
.phone-mock--client .phone-frame { box-shadow: 0 30px 60px rgba(255, 107, 0, 0.28); }
.phone-mock--provider .phone-frame { box-shadow: 0 30px 60px rgba(30, 58, 138, 0.4); }

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: var(--pb-black);
  border-radius: 0 0 12px 12px;
  z-index: 5;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--pb-white);
  border-radius: 24px;
  overflow: hidden;
}

.phone-slide {
  position: absolute;
  inset: 0;
  padding: 26px 14px 14px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.phone-slide.is-active { opacity: 1; pointer-events: auto; }

.phone-dots {
  display: flex;
  gap: 6px;
}
.phone-caption--client .phone-dots { justify-content: flex-start; }
.phone-caption--provider .phone-dots { justify-content: flex-end; }
.phone-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.phone-dots .dot.is-active { background: var(--pb-white); transform: scale(1.3); }

.phone-label {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}
.phone-label strong {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.phone-caption--client .phone-label strong { color: var(--pb-orange); }
.phone-caption--provider .phone-label strong { color: #6E8CE8; }
.phone-label span { color: rgba(255, 255, 255, 0.55); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; }
  .hero-content { text-align: center; }
  .hero-headline { max-width: 640px; margin-left: auto; margin-right: auto; }
  .hero-sub { max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero-cta { align-items: center; }
  .hero-apps-tag { justify-content: center; }
  .hero-visual { margin-top: 56px; }
}

@media (max-width: 640px) {
  .phone-mock--client { --tilt: -4deg; --tx: -173px; }
  .phone-mock--provider { --tilt: 3deg; --tx: -17px; }
  .phone-stage { max-width: 340px; height: 430px; }
  .phone-frame, .phone-mock { width: 190px; }
  .phone-frame { height: 386px; }
  .phone-captions { max-width: 340px; padding: 0 4px; }
  .phone-label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .phone-mock { animation: none; transform: translateX(var(--tx)) rotate(var(--tilt)); }
  #particle-canvas { display: none; }
}

/* ==========================================================================
   Illustrated phone screens
   ========================================================================== */

.scr-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.scr-logo-dot { width: 20px; height: 20px; border-radius: 6px; background: var(--pb-orange); }
.scr-logo-dot.blue { background: var(--pb-blue); }
.scr-badge-pill { flex: 1; height: 14px; max-width: 70px; border-radius: 999px; background: var(--pb-blue-light); }
.scr-bell { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; background: rgba(17,17,17,0.06); }
.scr-topbar .scr-bell:only-child,
.scr-topbar .scr-logo-dot + .scr-bell { margin-left: auto; }

.scr-location-line { width: 90px; height: 6px; border-radius: 3px; background: rgba(17,17,17,0.08); margin: 0 0 12px; }

.scr-search-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--pb-white); border: 1px solid rgba(17,17,17,0.08);
  border-radius: 999px; padding: 9px 12px; box-shadow: 0 4px 10px rgba(17,17,17,0.05);
  margin-bottom: 14px;
}
.scr-search-pill.small { padding: 7px 10px; margin-bottom: 12px; }
.scr-pin { width: 8px; height: 8px; border-radius: 50%; background: var(--pb-orange); flex-shrink: 0; }
.scr-search-text { flex: 1; height: 6px; border-radius: 3px; background: rgba(17,17,17,0.12); }

.scr-promo-banner {
  height: 62px; border-radius: 16px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--pb-blue) 0%, #16204f 100%);
}

.scr-chip-row { display: flex; justify-content: space-between; gap: 6px; }
.scr-chip { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.scr-chip-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--pb-orange-light); }
.scr-chip-label { width: 22px; height: 5px; border-radius: 3px; background: rgba(17,17,17,0.1); }

.scr-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.scr-cat-card {
  background: var(--pb-white); border: 1px solid rgba(17,17,17,0.07); border-radius: 14px;
  padding: 14px 8px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: 0 4px 10px rgba(17,17,17,0.04);
}
.scr-cat-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--pb-orange-light); }
.scr-cat-icon.small { width: 22px; height: 22px; }
.scr-cat-icon.blue { background: var(--pb-blue-light); }
.scr-cat-label { width: 34px; height: 5px; border-radius: 3px; background: rgba(17,17,17,0.12); }

.scr-summary-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(17,17,17,0.03); border-radius: 14px; padding: 12px; margin-bottom: 20px;
}
.scr-summary-icon { width: 30px; height: 30px; border-radius: 10px; background: var(--pb-orange-light); flex-shrink: 0; }
.scr-summary-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.scr-summary-lines span { height: 6px; border-radius: 3px; background: rgba(17,17,17,0.12); }
.scr-summary-lines span:last-child { width: 60%; }
.scr-summary-price { font-size: 12px; font-weight: 800; color: var(--pb-orange); }

.scr-stepper { position: relative; padding-left: 24px; }
.scr-stepper::before { content: ''; position: absolute; left: 7px; top: 4px; bottom: 18px; width: 2px; background: rgba(17,17,17,0.08); }
.scr-step { position: relative; margin-bottom: 20px; }
.scr-step-dot {
  position: absolute; left: -24px; top: 0; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(17,17,17,0.1); border: 3px solid var(--pb-white);
}
.scr-step.is-done .scr-step-dot { background: var(--pb-orange); }
.scr-step.is-current .scr-step-dot { background: var(--pb-orange); box-shadow: 0 0 0 4px var(--pb-orange-light); }
.scr-step-label { display: block; width: 70px; height: 7px; border-radius: 3px; background: rgba(17,17,17,0.14); margin-bottom: 5px; }
.scr-step-sub { font-size: 10px; font-weight: 700; color: var(--pb-orange); }

.scr-toggle-wrap { display: flex; flex-direction: column; align-items: center; margin: 18px 0 22px; }
.scr-toggle-ring {
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pb-blue-light);
  position: relative;
}
.scr-toggle-ring::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(30, 58, 138, 0.35);
  animation: pulseRing 2.2s ease-out infinite;
}
.scr-toggle-circle { width: 78px; height: 78px; border-radius: 50%; background: var(--pb-blue); box-shadow: 0 8px 20px rgba(30,58,138,0.4); }
.scr-toggle-label { margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--pb-blue); }
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.scr-stats-row { display: flex; align-items: center; justify-content: center; gap: 20px; background: rgba(17,17,17,0.03); border-radius: 14px; padding: 14px 10px; }
.scr-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.scr-stat strong { font-size: 15px; font-weight: 800; color: var(--pb-black); }
.scr-stat span { font-size: 9.5px; color: var(--pb-gray); }
.scr-stat-divider { width: 1px; height: 30px; background: rgba(17,17,17,0.1); }

.scr-sheet-bg { position: absolute; inset: 0; padding: 30px 14px 0; background: var(--pb-white); }
.scr-sheet-bg .scr-toggle-wrap { margin: 6px 0 0; transform: scale(0.85); }
.scr-sheet-backdrop { position: absolute; inset: 0; background: rgba(17,17,17,0.4); backdrop-filter: blur(1px); }
.scr-sheet {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--pb-white); border-radius: 20px 20px 0 0;
  padding: 12px 16px 16px; box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}
.scr-sheet-handle { width: 32px; height: 4px; border-radius: 2px; background: rgba(17,17,17,0.15); margin: 0 auto 12px; }
.scr-sheet-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.scr-sheet-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.scr-sheet-lines span { height: 6px; border-radius: 3px; background: rgba(17,17,17,0.12); }
.scr-sheet-lines span:last-child { width: 50%; }
.scr-countdown-ring {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--pb-orange) 0deg 260deg, rgba(17,17,17,0.08) 260deg 360deg);
}
.scr-sheet-price {
  background: rgba(17,17,17,0.04); border-radius: 10px; padding: 8px 12px;
  font-size: 15px; font-weight: 800; color: var(--pb-black); margin-bottom: 12px; text-align: center;
}
.scr-sheet-actions { display: flex; gap: 8px; }
.scr-btn-outline, .scr-btn-solid-blue { flex: 1; height: 30px; border-radius: 999px; }
.scr-btn-outline { border: 1.5px solid rgba(17,17,17,0.15); }
.scr-btn-solid-blue { background: var(--pb-blue); }

.scr-earn-total { text-align: center; margin-bottom: 18px; }
.scr-earn-num { display: block; font-size: 22px; font-weight: 800; color: var(--pb-black); }
.scr-earn-label { font-size: 10px; color: var(--pb-gray); }
.scr-bar-chart { display: flex; align-items: flex-end; justify-content: space-between; height: 130px; gap: 6px; padding: 0 4px; }
.scr-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 6px; }
.scr-bar { width: 100%; border-radius: 5px 5px 0 0; background: var(--pb-blue-light-2); }
.scr-bar-col.is-today .scr-bar { background: var(--pb-blue); }
.scr-bar-col span { font-size: 9px; color: var(--pb-gray); }

/* ==========================================================================
   Scroll reveal (shared)
   ========================================================================== */

/* [data-reveal] elements stay visible by default — JS opts them into the
   hidden-until-scrolled state via .reveal-init so a JS failure never hides
   content permanently. */
[data-reveal].reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].reveal-init.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  background: var(--pb-white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(255, 107, 0, 0.16);
  border-color: rgba(255, 107, 0, 0.35);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--pb-orange-light);
  color: var(--pb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; }

.service-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-tagline {
  font-size: 13.5px;
  color: var(--pb-gray);
  line-height: 1.5;
}

.service-card.is-soon {
  background: #FAFAFA;
  border-style: dashed;
}
.service-card.is-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(17, 17, 17, 0.14);
}
.service-card.is-soon .service-icon {
  background: rgba(17, 17, 17, 0.06);
  color: var(--pb-gray-light);
}
.service-card.is-soon .service-name,
.service-card.is-soon .service-tagline { color: var(--pb-gray-light); }

.service-soon-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pb-gray);
  background: rgba(17, 17, 17, 0.06);
  padding: 4px 9px;
  border-radius: 999px;
}

/* ==========================================================================
   How It Works
   ========================================================================== */

.how-it-works-section { background: #FAFAFA; }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-item {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 18px;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% + 46px);
  right: calc(-50% + 46px);
  border-top: 2px dashed rgba(17, 17, 17, 0.16);
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pb-black);
  color: var(--pb-white);
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-item:nth-child(odd) .step-icon { background: var(--pb-orange); }

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--pb-gray);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .steps-row { flex-direction: column; gap: 32px; }
  .step-item:not(:last-child)::after { display: none; }
}

/* ==========================================================================
   Two Apps
   ========================================================================== */

.two-apps-section {
  background: linear-gradient(160deg, var(--pb-black) 0%, #1a2245 140%);
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.app-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.app-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.app-card-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--pb-orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.app-card-mark svg { width: 20px; height: 20px; }
.app-card-mark--provider { background: var(--pb-blue); }
.app-card-top h3 { color: var(--pb-white); font-size: 20px; font-weight: 800; }

.app-card-pitch {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.app-card-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.app-card-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255, 107, 0, 0.18);
  color: var(--pb-orange);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-card-checklist--blue .check-icon { background: rgba(110, 140, 232, 0.2); color: #6E8CE8; }

.app-card-shot { margin-top: auto; display: flex; justify-content: center; padding-top: 8px; }
.mini-phone {
  width: 150px;
  background: var(--pb-black);
  border-radius: 20px;
  padding: 7px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}
.mini-phone-screen {
  background: var(--pb-white);
  border-radius: 14px;
  padding: 14px 10px;
  min-height: 150px;
}

@media (max-width: 860px) {
  .apps-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Waitlist
   ========================================================================== */

.waitlist-section { background: var(--pb-orange-light); }

.waitlist-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-bell {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pb-white);
  color: var(--pb-orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.18);
}
.waitlist-bell svg { width: 26px; height: 26px; }

.waitlist-form-row {
  display: flex;
  gap: 10px;
  background: var(--pb-white);
  padding: 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.waitlist-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--pb-black);
  min-width: 0;
}

.waitlist-error {
  color: var(--pb-red);
  font-size: 13px;
  margin: 12px 0 0;
  min-height: 18px;
}

.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--pb-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.waitlist-success-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pb-green);
  color: var(--pb-white);
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.waitlist-success-msg { font-weight: 700; font-size: 15px; }

@media (max-width: 560px) {
  .waitlist-form-row { flex-direction: column; border-radius: 20px; }
  .waitlist-form-row .btn { width: 100%; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--pb-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-word { color: var(--pb-white); }
.footer-tagline { margin: 14px 0 20px; font-size: 14px; max-width: 260px; line-height: 1.6; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--pb-orange); color: var(--pb-white); }

.footer-col h4 {
  color: var(--pb-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col a {
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--pb-white); }

.footer-bottom {
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   Static / legal pages
   ========================================================================== */

.static-hero {
  background: radial-gradient(120% 100% at 50% -10%, #1a2550 0%, var(--pb-black) 55%),
              linear-gradient(160deg, var(--pb-black) 0%, var(--pb-blue) 130%);
  color: var(--pb-white);
  padding: 56px 0 44px;
  text-align: center;
}

.static-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 10px 0 0;
}

.static-hero-sub {
  margin: 14px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.static-page { padding: 64px 0 96px; background: var(--pb-white); }

.static-container { max-width: 820px; }

.legal-meta {
  font-size: 13.5px;
  color: var(--pb-gray);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.legal-content h2 {
  font-size: 21px;
  font-weight: 800;
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin: 0 0 16px;
}

.legal-content ul, .legal-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 8px;
}

.legal-content a { color: var(--pb-orange); font-weight: 600; text-decoration: underline; }
.legal-content a:hover { text-decoration: none; }

.legal-content strong { font-weight: 700; }

.legal-placeholder {
  background: var(--pb-orange-light);
  color: #9A4200;
  padding: 1px 6px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.95em;
  white-space: nowrap;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
}
.legal-content th { background: #FAFAFA; font-weight: 700; }

.legal-toc {
  background: #FAFAFA;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.legal-toc h2 { margin: 0 0 12px; font-size: 15px; }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; }
.legal-toc li { font-size: 13.5px; margin-bottom: 6px; }
.legal-toc a { color: var(--pb-black); font-weight: 500; text-decoration: none; }
.legal-toc a:hover { color: var(--pb-orange); }

@media (max-width: 640px) {
  .legal-toc ol { columns: 1; }
}

/* ==========================================================================
   Support page — FAQ + contact form
   ========================================================================== */

.support-section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 28px;
}

.faq-group { max-width: 720px; margin: 0 auto 36px; }
.faq-group-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pb-orange);
  margin: 0 0 14px;
}

.faq-item {
  background: var(--pb-white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  padding: 4px 20px;
  margin-bottom: 10px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 26px 16px 0;
  font-weight: 700;
  font-size: 15px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 20px;
  font-weight: 400;
  color: var(--pb-orange);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--pb-gray);
  margin: 0 0 18px;
}

.contact-box { max-width: 560px; margin: 0 auto; }

.contact-form { display: flex; flex-direction: column; gap: 4px; }

.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--pb-black);
}
.form-input, .form-textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--pb-black);
  background: var(--pb-white);
  transition: border-color 0.2s ease;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--pb-orange);
}
.form-textarea { resize: vertical; min-height: 110px; }

.contact-error { text-align: left; }

#support-contact-success { max-width: 560px; margin: 0 auto; }

@media (max-width: 560px) {
  .form-row { flex-direction: column; gap: 0; }
}

