/* BookUno Web — Customer landing extras (stats, how it works, testimonials,
   one-tap rebook demo, trending chips, mini phone mockups). Loaded after
   web-styles.css + biz-sales.css. */

/* ─── Stats band — dark, sits below hero ─────────────────── */
.web .cust-stats {
  background: linear-gradient(180deg, #1A0E4A 0%, #2B1373 100%);
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.web .cust-stats::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 20% 20%, rgba(255,143,203,.18) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 90%, rgba(168,216,255,.16) 0%, transparent 60%);
  pointer-events: none;
}
.web .cust-stats .container { position: relative; z-index: 1; }
.web .cust-stats-head {
  font-size: clamp(28px, 4.4cqi, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 720px;
  margin-top: 8px;
  margin-bottom: 40px;
}
.web .cust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.web .cust-stats-grid .stat-item { padding-top: 20px; }
.web .cust-stats-grid .stat-num {
  font-size: clamp(32px, 4.4cqi, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(135deg, #FFCFE5 0%, #C8B8FF 60%, #A8D8FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.web .cust-stats-grid .stat-label {
  font-size: 13px; opacity: 0.78; margin-top: 10px; line-height: 1.4;
}
@container web (max-width: 900px) {
  .web .cust-stats { padding: 56px 0 48px; }
  .web .cust-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@container web (max-width: 480px) {
  .web .cust-stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ─── How it works (customer) ────────────────────────────── */
.web .cust-hiw { background: #fff; padding: 88px 0; }
.web .cust-hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.web .cust-hiw-step {
  background: var(--bg);
  border-radius: 24px;
  padding: 28px 26px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 12px 32px -22px rgba(28,27,80,.18);
  border: 1px solid var(--line);
  height: 100%;
}
.web .cust-hiw-step::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri-50), transparent 70%);
  pointer-events: none;
}
.web .cust-hiw-num {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--pri);
  position: relative;
}
.web .cust-hiw-mock {
  margin: 18px auto 20px;
  display: flex;
  justify-content: center;
  position: relative;
}
.web .cust-hiw-step h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 6px;
}
.web .cust-hiw-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
@container web (max-width: 980px) {
  .web .cust-hiw-grid { grid-template-columns: 1fr; gap: 18px; }
  .web .cust-hiw { padding: 56px 0; }
}

/* ─── Mini phone (used inside HIW cards) ──────────────────── */
.web .mini-phone {
  display: inline-block;
  position: relative;
}
.web .mini-phone-bezel {
  width: 180px;
  height: 260px;
  border-radius: 28px;
  background: #1a1727;
  padding: 6px;
  box-shadow: 0 20px 40px -16px rgba(20,15,40,.55), 0 0 0 1px rgba(255,255,255,.06) inset;
  position: relative;
}
.web .mini-phone-bezel::before {
  content: ''; position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 58px; height: 16px; border-radius: 10px; background: #000;
  z-index: 4;
}
.web .mini-phone-screen {
  width: 100%; height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #FAF8FF;
  position: relative;
  color: var(--ink);
}
.web .mini-phone-label {
  margin-top: 10px;
  font: 600 11px/1 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

/* Typing cursor for the mini phone search field */
.web .typing-mini {
  display: inline-block;
  position: relative;
}
.web .typing-mini::after {
  content: '|';
  margin-left: 2px;
  color: var(--pri);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ─── Customer testimonials ──────────────────────────────── */
.web .cust-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@container web (max-width: 980px) {
  .web .cust-testi-grid { grid-template-columns: 1fr 1fr; }
}
@container web (max-width: 640px) {
  .web .cust-testi-grid { grid-template-columns: 1fr; }
}

/* ─── Rebook demo ────────────────────────────────────────── */
.web .cust-rebook {
  background: var(--bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.web .rebook-stage {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.web .rebook-phone {
  position: relative;
  width: 360px;
  height: 720px;
  border-radius: 54px;
  background: #1a1727;
  padding: 9px;
  box-shadow:
    0 48px 100px -30px rgba(20,15,40,.6),
    0 0 0 1.5px rgba(255,255,255,.06) inset,
    0 0 0 2px rgba(28,27,24,0.16);
}
.web .rebook-phone-bezel {
  width: 100%; height: 100%;
  background: #FAF8FF;
  border-radius: 46px;
  overflow: hidden;
  position: relative;
}
.web .rebook-phone::before {
  content: ''; position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 32px; border-radius: 18px; background: #000;
  z-index: 4;
}
.web .rebook-phone::after {
  content: ''; position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 140px; height: 5px; border-radius: 99px;
  background: rgba(0,0,0,0.3);
  z-index: 4;
}
.web .rebook-phone-screen {
  width: 100%; height: 100%;
  position: relative;
}

.web .rebook-status {
  height: 56px;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 18px 28px 0;
  font-size: 13px; font-weight: 800;
  color: #15111F;
}
.web .rebook-body {
  padding: 12px 18px 22px;
}
.web .rebook-greeting { margin-bottom: 14px; }
.web .rebook-eyebrow {
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.web .rebook-title {
  font-size: 22px; font-weight: 800; letter-spacing: -0.025em;
  margin-top: 4px;
}
.web .rebook-rows { display: grid; gap: 10px; }

.web .rebook-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(40,30,80,0.07);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}
.web .rebook-row.tapped { background: var(--pri-50); transform: scale(0.985); }
.web .rebook-row.confirmed {
  background: linear-gradient(135deg, var(--pri-50), #fff);
  box-shadow: 0 0 0 2px var(--pri), 0 16px 32px var(--pri-glow);
}
.web .rebook-img {
  width: 52px; height: 52px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.web .rebook-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.web .rebook-info { flex: 1; min-width: 0; }
.web .rebook-name { font-size: 14.5px; font-weight: 800; letter-spacing: -0.015em; }
.web .rebook-svc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.web .rebook-when { font-size: 10.5px; color: var(--muted-2); margin-top: 3px; font-style: italic; }

.web .rebook-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pri);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 6px 14px var(--pri-glow);
  flex-shrink: 0;
}
.web .rebook-row.confirmed .rebook-btn {
  background: var(--green, #10B981);
  box-shadow: 0 6px 14px rgba(16,185,129,.35);
}

.web .rebook-tap {
  position: absolute;
  top: 188px; right: 42px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(123, 91, 255, 0);
  pointer-events: none;
  z-index: 5;
}
.web .rebook-tap.on { animation: tapPulse 0.6s ease-out; }
@keyframes tapPulse {
  0%   { transform: scale(0.4); background: rgba(123, 91, 255, 0.45); }
  100% { transform: scale(1.8); background: rgba(123, 91, 255, 0); }
}

.web .rebook-toast {
  position: absolute;
  top: 110px; right: -50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pri-700), var(--pri));
  color: #fff;
  box-shadow: 0 24px 48px var(--pri-glow);
  font-weight: 600;
  opacity: 0;
  transform: translateY(-8px) translateX(20px);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
  z-index: 6;
}
.web .rebook-toast.on {
  opacity: 1;
  transform: none;
}
.web .rebook-toast > svg {
  width: 30px; height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  padding: 7px;
  flex-shrink: 0;
}

@container web (max-width: 1080px) {
  .web .rebook-toast { right: 10px; top: 60px; }
}
@container web (max-width: 720px) {
  .web .cust-rebook { padding: 64px 0; }
  .web .rebook-phone { width: 320px; height: 640px; border-radius: 48px; }
  .web .rebook-phone::before { width: 96px; height: 28px; top: 16px; }
  .web .rebook-phone-bezel { border-radius: 40px; }
  .web .rebook-stage { min-height: 640px; }
  .web .rebook-toast { right: 8px; top: 30px; }
}
@container web (max-width: 480px) {
  .web .rebook-phone { width: 280px; height: 560px; border-radius: 42px; }
  .web .rebook-phone::before { width: 80px; height: 24px; top: 14px; }
  .web .rebook-phone-bezel { border-radius: 34px; }
  .web .rebook-stage { min-height: 560px; }
  .web .rebook-status { padding: 14px 20px 0; height: 48px; }
  .web .rebook-body { padding: 8px 14px 18px; }
}

/* ─── App download phone (animated mini-phone) ───────────── */
.web .adp-stage {
  position: relative;
  height: 540px;
  display: grid;
  place-items: center;
}
.web .adp-phone {
  position: relative;
  width: 270px;
  height: 540px;
  border-radius: 44px;
  background: #1a1727;
  padding: 8px;
  box-shadow:
    0 50px 80px rgba(0,0,0,0.4),
    0 0 0 1.5px rgba(255,255,255,0.08) inset;
  transform: rotate(-6deg);
}
.web .adp-bezel {
  width: 100%; height: 100%;
  position: relative;
}
.web .adp-phone::before {
  content: ''; position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 26px;
  border-radius: 16px;
  background: #000;
  z-index: 8;
}
.web .adp-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, #1A0E4A 0%, #2B1373 50%, #6B57FF 100%);
  position: relative;
  color: #fff;
}
.web .adp-home-ind {
  position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,0.35);
  z-index: 6;
}

.web .adp-status {
  height: 46px;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px 24px 0;
  font-size: 12px; font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 3;
}

.web .adp-home {
  padding: 4px 16px 18px;
}
.web .adp-greeting { margin-top: 8px; }
.web .adp-gr-eyebrow {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.web .adp-gr-h {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 4px;
}

.web .adp-up-eyebrow,
.web .adp-fav-eyebrow {
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}

.web .adp-up-card {
  margin-top: 8px;
  background: rgba(255,255,255,0.14);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  padding: 4px 12px;
}
.web .adp-up-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.web .adp-up-row:last-child { border-bottom: 0; }
.web .adp-up-date {
  text-align: center;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(255,255,255,0.16);
  min-width: 38px;
  flex-shrink: 0;
}
.web .adp-up-dow { font-size: 8.5px; font-weight: 700; opacity: 0.85; }
.web .adp-up-num { font-size: 14px; font-weight: 800; letter-spacing: -0.015em; }
.web .adp-up-info { flex: 1; min-width: 0; }
.web .adp-up-svc { font-size: 12.5px; font-weight: 800; }
.web .adp-up-loc { font-size: 10px; opacity: 0.75; margin-top: 1px; }

.web .adp-favs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  margin-top: 8px;
}
.web .adp-fav {
  position: relative;
  height: 44px;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(255,255,255,0.18);
}
.web .adp-fav img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Push notification banner */
.web .adp-notif {
  position: absolute;
  top: 50px;
  left: 10px; right: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(20, 16, 36, 0.78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; gap: 10px;
  z-index: 4;
  opacity: 0;
  transform: translateY(-20px) scale(0.96);
  transition: opacity 0.4s, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.web .adp-notif.on {
  opacity: 1;
  transform: none;
}
.web .adp-notif.tapped {
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
}
.web .adp-notif-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--pri);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.web .adp-notif-h { font-size: 9.5px; font-weight: 800; opacity: 0.7; letter-spacing: 0.04em; text-transform: uppercase; }
.web .adp-notif-t { font-size: 12px; font-weight: 600; margin-top: 1px; }

/* Detail card (fades up over the home screen on phase 2) */
.web .adp-detail {
  position: absolute;
  top: 110px;
  left: 14px; right: 14px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  z-index: 5;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.45s, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.web .adp-detail.on { opacity: 1; transform: none; }
.web .adp-detail-cover {
  position: relative;
  height: 110px;
  overflow: hidden;
  color: #fff;
}
.web .adp-detail-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.web .adp-detail-cover-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}
.web .adp-detail-cover-meta {
  position: absolute; bottom: 10px; left: 14px; right: 14px;
}
.web .adp-detail-name {
  font-size: 16px; font-weight: 800; letter-spacing: -0.02em;
}
.web .adp-detail-sub { font-size: 11px; opacity: 0.9; margin-top: 2px; }
.web .adp-detail-body { padding: 12px 14px 14px; }
.web .adp-detail-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-2);
}
.web .adp-detail-row > svg {
  width: 22px; height: 22px;
  background: var(--pri);
  border-radius: 7px;
  padding: 4px;
  flex-shrink: 0;
}
.web .adp-detail-actions {
  display: flex; gap: 6px; margin-top: 12px;
}
.web .adp-detail-btn {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--chip);
  color: var(--ink);
  font-size: 11.5px; font-weight: 800;
}
.web .adp-detail-btn.primary {
  background: var(--pri);
  color: #fff;
}

@container web (max-width: 720px) {
  .web .adp-stage { display: none; }
}

/* ─── Trending chips ─────────────────────────────────────── */
.web .trend-chips {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.web .trend-label {
  font: 700 11px/1 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-right: 4px;
}
.web .trend-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s, transform 0.12s, border-color 0.15s;
  cursor: pointer;
}
.web .trend-chip:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
@container web (max-width: 560px) {
  .web .trend-chips { gap: 6px; margin-top: 18px; }
  .web .trend-chip { padding: 6px 10px; font-size: 12px; }
  .web .trend-label { width: 100%; margin-bottom: 4px; }
}

/* ─── Hero Search v2 — single big input + chips below ──────
   Replaces the old four-field row that was cramped at narrow widths. */
.web .hero-search-v2 {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}
.web .hsv2-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.97);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(15,14,30,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.web .hsv2-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  min-width: 0;
  height: 60px;
}
.web .hsv2-input > svg {
  width: 22px; height: 22px;
  color: var(--muted);
  flex-shrink: 0;
}
.web .hsv2-input input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-overflow: ellipsis;
}
.web .hsv2-input input::placeholder { color: var(--muted-2); font-weight: 500; }
.web .hsv2-submit {
  height: 60px;
  padding: 0 28px;
  border-radius: 16px;
  background: var(--pri);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  box-shadow: 0 12px 24px var(--pri-glow);
  flex-shrink: 0;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}
.web .hsv2-submit:hover { background: var(--pri-600); transform: translateY(-1px); }
.web .hsv2-submit:active { transform: scale(0.98); }
.web .hsv2-submit > svg { width: 18px; height: 18px; }

.web .hsv2-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-left: 4px;
}
.web .hsv2-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  transition: background 0.15s, transform 0.12s, border-color 0.15s;
  cursor: pointer;
}
.web .hsv2-chip > svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.85; }
.web .hsv2-chip-strong { font-weight: 700; color: #fff; }
.web .hsv2-chip-dim { opacity: 0.55; font-size: 11.5px; }
.web .hsv2-chip:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
@container web (max-width: 560px) {
  .web .hero-search-v2 { gap: 10px; margin-top: 24px; }
  .web .hsv2-input { padding: 0 14px; height: 52px; }
  .web .hsv2-input input { font-size: 15.5px; }
  .web .hsv2-input > svg { width: 18px; height: 18px; }
  .web .hsv2-submit { height: 52px; padding: 0 16px; min-width: 52px; }
  .web .hsv2-submit span { display: none; }
  .web .hsv2-submit > svg { width: 20px; height: 20px; }
  .web .hsv2-row { border-radius: 18px; padding: 6px; }
  .web .hsv2-meta { gap: 6px; }
  .web .hsv2-chip { padding: 8px 12px; font-size: 12.5px; }
}

/* ─── Customer Journey Phone (hero) ───────────────────────
   Single big iPhone-realistic device with 5-scene loop. Replaces the
   dual phone on the customer landing. */
.web .cjp-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 700px;
  perspective: 1400px;
}
.web .cjp-phone {
  position: absolute;
  left: 50%; top: 8px;
  transform: translateX(-50%);
  z-index: 3;
}
.web .cjp-bezel {
  width: 312px;
  height: 636px;
  border-radius: 48px;
  background: #1a1727;
  padding: 8px;
  box-shadow:
    0 48px 100px rgba(10,5,40,0.5),
    0 0 0 1.5px rgba(255,255,255,0.06) inset,
    0 0 0 2px rgba(28,27,24,0.16);
  position: relative;
}
.web .cjp-bezel::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 30px;
  border-radius: 18px;
  background: #000;
  z-index: 60;
}
.web .cjp-bezel::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 132px; height: 5px;
  border-radius: 99px;
  background: rgba(0,0,0,0.32);
  z-index: 60;
}
.web .cjp-screen {
  width: 100%; height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: #FAF8FF;
  position: relative;
  color: #0F0E1A;
}

/* Phase dots beneath the phone */
.web .cjp-dots {
  position: absolute;
  bottom: -34px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; align-items: center;
}
.web .cjp-dot {
  width: 6px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.3);
  transition: all 0.4s;
}
.web .cjp-dot.on { width: 22px; background: #fff; }

/* iOS status bar */
.web .cjp-status {
  position: absolute; top: 0; left: 0; right: 0;
  height: 50px;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 16px 28px 0;
  z-index: 30;
  font-size: 13px; font-weight: 700;
  pointer-events: none;
}

/* Content container — sits below the notch */
.web .cjp-content {
  padding: 58px 18px 18px;
  height: 100%;
  overflow: hidden;
}
.web .cjp-eyebrow {
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.web .cjp-h {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-top: 4px;
}
.web .cjp-h-pri { color: var(--pri); }

/* Search field (Screen 0) */
.web .cjp-sf {
  margin-top: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 22px rgba(40,30,80,0.12);
  font-size: 13.5px; font-weight: 700; color: var(--ink);
}
.web .cjp-typing { display: inline-block; }
.web .cjp-typing::after {
  content: '|';
  margin-left: 2px;
  color: var(--pri);
  animation: blink 1s steps(1) infinite;
}

/* Category chips */
.web .cjp-cats {
  display: flex; gap: 6px; margin-top: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.web .cjp-cats::-webkit-scrollbar { display: none; }
.web .cjp-cat {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 11.5px; font-weight: 700;
  box-shadow: 0 2px 6px rgba(40,30,80,0.06);
  color: var(--ink);
}
.web .cjp-cat.on { background: var(--ink); color: #fff; box-shadow: none; }

/* Popular/Trending tiles 2x2 */
.web .cjp-trend-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 10px;
}
.web .cjp-trend {
  position: relative;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.web .cjp-trend img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.web .cjp-trend-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,14,30,0) 30%, rgba(15,14,30,0.7) 100%);
  z-index: 1;
}
.web .cjp-trend-meta { position: relative; z-index: 2; padding: 10px 11px; }
.web .cjp-trend-t { font-size: 13px; font-weight: 800; letter-spacing: -0.015em; }
.web .cjp-trend-c { font-size: 10.5px; opacity: 0.9; margin-top: 1px; }

/* Results screen */
.web .cjp-result-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
}
.web .cjp-mapbtn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700;
}
.web .cjp-filters {
  display: flex; gap: 6px; margin-top: 12px;
  overflow-x: auto; scrollbar-width: none;
}
.web .cjp-filters::-webkit-scrollbar { display: none; }
.web .cjp-chip {
  flex: 0 0 auto;
  padding: 5px 10px; border-radius: 999px;
  background: var(--chip);
  font-size: 10.5px; font-weight: 700;
  color: var(--ink);
}
.web .cjp-chip.on { background: var(--ink); color: #fff; }
.web .cjp-results {
  display: grid; gap: 10px; margin-top: 14px;
}
.web .cjp-result {
  display: flex; gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(40,30,80,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.web .cjp-result.sel {
  box-shadow: 0 0 0 2px var(--pri), 0 16px 32px var(--pri-glow);
  transform: scale(1.01);
}
.web .cjp-result-img {
  width: 64px; height: 64px;
  border-radius: 12px;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.web .cjp-result-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.web .cjp-result-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; justify-content: center; }
.web .cjp-result-name { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; }
.web .cjp-result-meta {
  display: flex; gap: 6px; align-items: center;
  font-size: 10.5px; color: var(--muted);
}
.web .cjp-result-slot {
  font-size: 10.5px; font-weight: 700;
  color: var(--pri-700);
  background: var(--pri-50);
  padding: 3px 8px; border-radius: 6px;
  align-self: flex-start;
  margin-top: 2px;
}

/* Storefront screen */
.web .cjp-cover {
  position: relative;
  height: 200px;
  overflow: hidden;
  color: #fff;
}
.web .cjp-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.web .cjp-cover-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 100%);
}
.web .cjp-cover-fav {
  position: absolute;
  top: 60px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  display: grid; place-items: center;
  z-index: 5;
}
.web .cjp-cover-meta {
  position: absolute;
  bottom: 14px; left: 18px; right: 18px;
  z-index: 2;
}
.web .cjp-cover-name {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.025em;
}
.web .cjp-cover-sub {
  display: flex; gap: 5px; flex-wrap: wrap; align-items: center;
  font-size: 11.5px; opacity: 0.95; margin-top: 4px;
  font-weight: 600;
}
.web .cjp-services { display: grid; gap: 8px; margin-top: 10px; }
.web .cjp-svc {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(40,30,80,0.06);
  transition: box-shadow 0.3s;
}
.web .cjp-svc.sel {
  box-shadow: 0 0 0 2px var(--pri), 0 8px 20px var(--pri-glow);
}
.web .cjp-svc-name { font-size: 13px; font-weight: 800; }
.web .cjp-svc-d { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.web .cjp-svc-p { font-size: 15px; font-weight: 800; letter-spacing: -0.015em; }
.web .cjp-cta {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: var(--pri); color: #fff;
  text-align: center;
  font-size: 14px; font-weight: 800;
  box-shadow: 0 12px 24px var(--pri-glow);
}

/* Time picker screen */
.web .cjp-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.web .cjp-days {
  display: flex; gap: 6px; margin-top: 10px;
  overflow-x: auto; scrollbar-width: none;
}
.web .cjp-days::-webkit-scrollbar { display: none; }
.web .cjp-day {
  flex: 0 0 44px;
  padding: 8px 4px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 6px rgba(40,30,80,0.06);
  transition: all 0.25s;
}
.web .cjp-day.sel { background: var(--ink); color: #fff; box-shadow: none; }
.web .cjp-day-dow { font-size: 9.5px; font-weight: 600; opacity: 0.55; }
.web .cjp-day.sel .cjp-day-dow { opacity: 0.7; }
.web .cjp-day-num { font-size: 16px; font-weight: 800; margin-top: 1px; }

.web .cjp-slots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-top: 10px;
}
.web .cjp-slot {
  height: 36px;
  border-radius: 10px;
  background: #fff;
  display: grid; place-items: center;
  font-size: 12.5px; font-weight: 700;
  box-shadow: 0 2px 6px rgba(40,30,80,0.06);
  transition: all 0.25s;
}
.web .cjp-slot.sel {
  background: var(--pri); color: #fff;
  box-shadow: 0 8px 20px var(--pri-glow);
  transform: scale(1.05);
}

.web .cjp-summary {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.web .cjp-summary-h { font-size: 13px; font-weight: 800; }
.web .cjp-summary-s { font-size: 11px; opacity: 0.75; margin-top: 2px; }
.web .cjp-summary-p { font-size: 17px; font-weight: 800; letter-spacing: -0.015em; }

/* Confirmed screen */
.web .cjp-screen-confirmed {
  background: linear-gradient(180deg, #1A0E4A 0%, #6B57FF 100%);
  color: #fff;
  overflow: hidden;
}
.web .cjp-confirmed-content {
  position: relative;
  padding: 70px 22px 22px;
  text-align: center;
  height: 100%;
}
.web .cjp-confirmed-check {
  width: 96px; height: 96px;
  margin: 22px auto 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid; place-items: center;
  position: relative;
}
.web .cjp-confirmed-check-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  animation: pulseDot 1.6s ease-in-out infinite;
}
.web .cjp-confirmed-h {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 20px;
}
.web .cjp-confirmed-s {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
}
.web .cjp-confirmed-card {
  margin-top: 22px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; gap: 14px;
  text-align: left;
}
.web .cjp-confirmed-date {
  text-align: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  min-width: 48px;
  flex-shrink: 0;
}
.web .cjp-confirmed-dow { font-size: 10px; font-weight: 800; opacity: 0.85; }
.web .cjp-confirmed-num { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; }
.web .cjp-confirmed-info { flex: 1; min-width: 0; }
.web .cjp-confirmed-svc { font-size: 13.5px; font-weight: 800; }
.web .cjp-confirmed-loc {
  font-size: 10.5px; opacity: 0.85; margin-top: 3px;
  display: inline-flex; align-items: center; gap: 4px;
}
.web .cjp-confirmed-actions {
  margin-top: 18px;
  display: flex; gap: 6px; justify-content: center;
  flex-wrap: wrap;
}
.web .cjp-confirmed-btn {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px; font-weight: 800;
}
.web .cjp-confirmed-btn.primary { background: #fff; color: var(--ink); }

/* Floating UI accents around the phone */
.web .cjp-acc {
  position: absolute;
  padding: 10px 14px 10px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
  color: #0F0E1A;
  display: flex; align-items: center; gap: 10px;
  max-width: 240px;
  opacity: 0;
  transform: translateY(8px) scale(0.94);
  transition: opacity 0.45s, transform 0.45s cubic-bezier(0.2,0.7,0.2,1);
  z-index: 5;
  pointer-events: none;
}
.web .cjp-acc.on {
  opacity: 1;
  transform: none;
}
.web .cjp-acc-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.web .cjp-acc-h { font-size: 12.5px; font-weight: 800; letter-spacing: -0.01em; }
.web .cjp-acc-s { font-size: 11px; color: var(--muted); margin-top: 2px; }

@container web (max-width: 1080px) {
  .web .cjp-stage { width: 100%; max-width: 460px; height: 660px; }
  .web .cjp-bezel { width: 290px; height: 590px; }
  .web .cjp-acc { max-width: 200px; }
}
@container web (max-width: 720px) {
  .web .cjp-stage { width: 100%; height: 600px; }
  .web .cjp-bezel { width: 264px; height: 540px; }
  .web .cjp-acc { display: none !important; }
}
@container web (max-width: 560px) {
  .web .cjp-stage { display: none; }
}

/* ─── Category cards with stock images ─────────────────────
   Full-bleed Unsplash photo with a dark gradient overlay so the
   text stays legible. The card's gradient `background` sits
   underneath so any failed image load still looks intentional. */
.web .cat-card-img {
  position: relative;
  overflow: hidden;
  color: #fff;
  aspect-ratio: 1 / 1.05;
  padding: 16px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}
.web .cat-card-img .cat-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.web .cat-card-img:hover .cat-card-bg { transform: scale(1.06); }
.web .cat-card-img .cat-card-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,30,0) 30%, rgba(15,14,30,0.78) 100%),
    linear-gradient(135deg, rgba(15,14,30,0.18) 0%, rgba(15,14,30,0) 60%);
  z-index: 1;
  pointer-events: none;
}
.web .cat-card-img .cat-card-top,
.web .cat-card-img .cat-card-meta {
  position: relative;
  z-index: 2;
}
.web .cat-card-img .cat-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.web .cat-card-img .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.web .cat-card-img .name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.web .cat-card-img .count {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  font-weight: 500;
}

/* ─── Bigger more iPhone-realistic mini phones (How It Works) ── */
.web .mini-phone-bezel {
  width: 248px;
  height: 506px;
  border-radius: 42px;
  background: #1a1727;
  padding: 7px;
  box-shadow:
    0 28px 60px -22px rgba(20,15,40,.6),
    0 0 0 1.5px rgba(255,255,255,.08) inset,
    0 0 0 2px rgba(28,27,24,.18);
  position: relative;
}
/* Dynamic island */
.web .mini-phone-bezel::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 26px; border-radius: 16px; background: #000;
  z-index: 4;
}
.web .mini-phone-screen {
  width: 100%; height: 100%;
  border-radius: 35px;
  overflow: hidden;
  background: #FAF8FF;
  position: relative;
  color: var(--ink);
}
/* Home indicator */
.web .mini-phone-bezel::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 4.5px; border-radius: 99px;
  background: rgba(0,0,0,0.3);
  z-index: 5;
}
@container web (max-width: 980px) {
  .web .mini-phone-bezel { width: 232px; height: 470px; }
}
@container web (max-width: 560px) {
  .web .mini-phone-bezel { width: 220px; height: 446px; border-radius: 38px; }
  .web .mini-phone-bezel::before { width: 78px; height: 22px; top: 12px; }
  .web .mini-phone-screen { border-radius: 31px; }
}

/* ─── Mini-phone screen UI ─────────────────────────────────
   Inner layout pieces used across the three HIW steps. Sized for
   the larger 240–248 px bezel. */
.web .mp-body { padding: 50px 16px 16px; }
.web .mp-eyebrow {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.web .mp-h {
  font-size: 17px; font-weight: 800; letter-spacing: -0.025em;
  margin-top: 4px; line-height: 1.1;
}
.web .mp-search {
  margin-top: 14px;
  background: #fff; border-radius: 12px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 18px rgba(40,30,80,0.1);
  font-size: 12px; font-weight: 700; color: var(--ink);
}
.web .mp-chips {
  display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap;
}
.web .mp-chip {
  padding: 4px 9px; border-radius: 999px;
  background: #fff; font-size: 10.5px; font-weight: 700;
  box-shadow: 0 2px 5px rgba(40,30,80,0.06);
}
.web .mp-trend-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  margin-top: 8px;
}
.web .mp-trend-tile {
  height: 60px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 8px 10px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.web .mp-trend-label { font-size: 11px; font-weight: 800; letter-spacing: -0.01em; }
.web .mp-trend-meta { font-size: 9px; opacity: 0.85; margin-top: 2px; }

.web .mp-days {
  display: flex; gap: 5px; margin-top: 10px;
}
.web .mp-day {
  flex: 1;
  padding: 6px 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(40,30,80,0.06);
  text-align: center;
  transition: all 0.25s;
}
.web .mp-day.sel { background: var(--ink); color: #fff; box-shadow: none; }
.web .mp-day-dow { font-size: 8.5px; font-weight: 600; opacity: 0.55; }
.web .mp-day.sel .mp-day-dow { opacity: 0.7; }
.web .mp-day-num { font-size: 13px; font-weight: 800; margin-top: 1px; }

.web .mp-times {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
  margin-top: 8px;
}
.web .mp-time {
  height: 30px;
  border-radius: 8px;
  background: #fff;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(40,30,80,0.06);
  transition: all 0.25s;
}
.web .mp-time.sel {
  background: var(--pri); color: #fff;
  box-shadow: 0 6px 16px var(--pri-glow);
  transform: scale(1.04);
}

.web .mp-confirm {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--ink); color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
