/* ==================================================
   Portable Bathrooms — Lusion-inspired, white/blue/orange theme
   Sticky-stack scroll effect + custom cursor + magnetic buttons + reveals
   ================================================== */
:root {
    --pb-bg: #ffffff;
    --pb-bg-alt: #f2f6ff;
    --pb-navy: #0a1a3c;
    --pb-navy-light: #11295e;
    --pb-charcoal: #1a1a1a;
    --pb-blue: #2f6fed;
    --pb-blue-light: #6fa1ff;
    --pb-orange: #ff5e14;
    --pb-orange-light: #ff7c3d;
    --pb-ink: #0d1220;
    --pb-ink-dim: #5b6472;
    --pb-line: rgba(13, 18, 32, 0.1);
}

/* The shared theme-default.css sets overflow-x:hidden on BOTH html and body.
   Per the CSS overflow spec, that implicitly forces overflow-y:auto on both too,
   creating two independent scroll containers -- which breaks position:sticky
   (it ends up sticking relative to body, which itself never scrolls, instead of
   the real viewport). Scoped to this page only via :has(), so no other page's
   layout is touched; html still clips horizontal overflow site-wide. */
body:has(#pb-page) {
    /* Both axes must be visible -- per spec, leaving overflow-x:hidden while only
       overflow-y is set to visible still forces overflow-y back to auto. */
    overflow: visible;
}

#pb-page {
    background: var(--pb-bg);
    color: var(--pb-ink);
    cursor: none;
}

#pb-page a,
#pb-page button {
    cursor: none;
}

@media (hover: none), (pointer: coarse) {
    #pb-page, #pb-page a, #pb-page button { cursor: auto; }
}

/* ---------- Custom cursor ---------- */
.pb-cursor-dot,
.pb-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.pb-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--pb-orange);
}

.pb-cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(13, 18, 32, 0.3);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.pb-cursor-ring.pb-cursor-hover {
    width: 54px;
    height: 54px;
    border-color: var(--pb-blue);
}

@media (hover: none), (pointer: coarse) {
    .pb-cursor-dot, .pb-cursor-ring { display: none; }
}

/* ---------- Sticky stack sections ---------- */
.pb-stack {
    position: relative;
    position: sticky;
    top: 0;
    min-height: 100vh;
    /* Top padding clears the floating navbar; content then centers in what's left. */
    padding: 140px 0 40px;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    background: var(--pb-bg);
    /* Extra flow height below each pinned section = how long it "holds"
       before the next section starts sliding over it. Same value for every
       section = constant, predictable pacing. */
    margin-bottom: 38vh;
}

.pb-stack:last-of-type {
    margin-bottom: 0;
}

/* Pacing is handled uniformly by .pb-stack's margin-bottom (38vh of "hold"
   for every section). All sections share min-height: 100vh so content
   always centers the same way relative to the navbar — per-section height
   overrides made some sections sit too low or get cut at the fold. */

.pb-stack-inner {
    width: 100%;
    will-change: transform, opacity;
    transition: transform 0.1s linear, opacity 0.1s linear;
}

.pb-stack:nth-of-type(1) { z-index: 1; }
.pb-stack:nth-of-type(2) { z-index: 2; }
.pb-stack:nth-of-type(3) { z-index: 3; }
.pb-stack:nth-of-type(4) { z-index: 4; }
.pb-stack:nth-of-type(5) { z-index: 5; }
.pb-stack:nth-of-type(6) { z-index: 6; }
.pb-stack:nth-of-type(7) { z-index: 7; }
.pb-stack:nth-of-type(8) { z-index: 8; }
.pb-stack:nth-of-type(9) { z-index: 9; }
.pb-stack:nth-of-type(10) { z-index: 10; }
.pb-stack:nth-of-type(11) { z-index: 11; }
.pb-stack:nth-of-type(12) { z-index: 12; }

/* ---------- Fullscreen media expand moment ---------- */
.pb-media-expand {
    position: relative;
    height: 260vh;
}

.pb-media-expand-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--pb-bg);
}

.pb-media-expand-box {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: scale(0.72);
    border-radius: 32px;
    will-change: transform, border-radius;
    background: linear-gradient(160deg, var(--pb-bg-alt), #dfe9ff);
}

.pb-media-expand-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pb-media-expand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-media-expand-placeholder i {
    font-size: 64px;
    color: var(--pb-blue);
    opacity: 0.5;
}

.pb-media-expand-caption {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pb-ink-dim);
    opacity: 0;
}

@media (max-width: 992px) {
    .pb-media-expand { height: auto; }
    .pb-media-expand-sticky { position: relative; height: 60vh; padding: 40px 20px; }
    .pb-media-expand-box { position: relative; transform: none !important; border-radius: 20px !important; opacity: 1 !important; height: 100%; }
    .pb-media-expand-caption { opacity: 1 !important; }
}

/* Sections with more content than fits one screen scroll normally
   instead of joining the sticky stack (which only suits single-screen panels). */
.pb-normal-section {
    position: relative;
    padding: 130px 0;
}

.pb-bg-alt { background: var(--pb-bg-alt); }
.pb-bg-dark {
    background: linear-gradient(120deg, var(--pb-navy) 0%, var(--pb-navy-light) 100%);
    color: #fff;
}
.pb-bg-blue {
    background: linear-gradient(120deg, var(--pb-blue) 0%, #1d4fc4 100%);
    color: #fff;
}
.pb-bg-orange {
    background: linear-gradient(120deg, var(--pb-orange) 0%, var(--pb-orange-light) 100%);
    color: #fff;
}

/* ---------- Scroll reveal ---------- */
.pb-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.pb-reveal.pb-in-view {
    opacity: 1;
    transform: translateY(0);
}

.pb-line-mask { overflow: hidden; display: block; }

.pb-line-mask > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.pb-line-mask.pb-in-view > span { transform: translateY(0); }

/* ---------- Section index labels ---------- */
.pb-index {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pb-ink-dim);
    padding: 0 15px;
    z-index: 2;
}

.pb-bg-dark .pb-index,
.pb-bg-blue .pb-index,
.pb-bg-orange .pb-index { color: rgba(255, 255, 255, 0.6); }

.pb-index span:last-child { color: var(--pb-orange); }
.pb-bg-dark .pb-index span:last-child,
.pb-bg-blue .pb-index span:last-child { color: #fff; }

/* ---------- Hero ---------- */
.pb-hero {
    min-height: 100vh;
    padding: 150px 0 60px;
    background:
        radial-gradient(45% 45% at 85% 15%, rgba(255, 94, 20, 0.1), transparent 60%),
        radial-gradient(45% 45% at 10% 85%, rgba(47, 111, 237, 0.1), transparent 60%),
        var(--pb-bg);
}

.pb-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Decorative line that draws itself in on scroll, echoing the hero ribbon */
.pb-draw-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    max-width: 700px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.pb-draw-line path {
    transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 992px) {
    .pb-draw-line { width: 90%; height: 40%; }
}

.pb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--pb-line);
    color: var(--pb-ink-dim);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.pb-eyebrow i { color: var(--pb-orange); }

.pb-hero h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5.6vw, 78px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--pb-ink);
    margin-bottom: 26px;
}

.pb-hero h1 .pb-thin {
    font-weight: 300;
    color: var(--pb-blue);
    display: block;
}

.pb-hero h1 .pb-accent { color: var(--pb-orange); }

.pb-hero p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--pb-ink-dim);
    max-width: 480px;
    margin-bottom: 40px;
}

.pb-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.pb-btn-primary,
.pb-btn-ghost {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 34px;
    border-radius: 50px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pb-btn-primary { background: var(--pb-orange); color: #fff; }
.pb-btn-primary:hover { background: var(--pb-orange-light); color: #fff; text-decoration: none; }

.pb-btn-ghost { background: transparent; border: 1px solid var(--pb-line); color: var(--pb-ink); }
.pb-btn-ghost:hover { border-color: var(--pb-ink); color: var(--pb-ink); text-decoration: none; }

.pb-bg-dark .pb-btn-ghost,
.pb-bg-blue .pb-btn-ghost,
.pb-bg-orange .pb-btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.pb-bg-dark .pb-btn-ghost:hover,
.pb-bg-blue .pb-btn-ghost:hover,
.pb-bg-orange .pb-btn-ghost:hover { border-color: #fff; color: #fff; }

.pb-magnetic-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease-out;
}

.pb-hero-visual {
    position: relative;
    border-radius: 22px;
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, var(--pb-bg-alt), #eaf0ff);
    border: 1px solid var(--pb-line);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    will-change: transform;
    overflow: hidden;
}

.pb-hero-visual .pb-placeholder-inner { color: var(--pb-ink-dim); font-family: "Poppins", sans-serif; }
.pb-hero-visual .pb-placeholder-inner i { font-size: 42px; color: var(--pb-blue); margin-bottom: 14px; display: block; }
.pb-hero-visual .pb-placeholder-inner small { display: block; margin-top: 6px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--pb-ink-dim); opacity: 0.7; }

.pb-qr-chip {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--pb-line);
    box-shadow: 0 15px 40px rgba(10, 26, 60, 0.12);
    color: var(--pb-ink);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Poppins", sans-serif;
}

.pb-qr-chip i { font-size: 24px; color: var(--pb-orange); }
.pb-qr-chip strong { display: block; font-size: 13px; }
.pb-qr-chip span { font-size: 11px; color: var(--pb-ink-dim); }

.pb-scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pb-ink-dim);
}

.pb-scroll-cue-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--pb-orange), transparent);
    animation: pbScrollLine 1.8s ease-in-out infinite;
}

@keyframes pbScrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Generic section heading ---------- */
.pb-section-title { max-width: 760px; margin: 0 0 28px; }

.pb-section-title h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pb-orange);
    margin-bottom: 18px;
}

.pb-bg-dark .pb-section-title h4,
.pb-bg-blue .pb-section-title h4 { color: var(--pb-orange-light); }

.pb-section-title h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.1;
    color: var(--pb-ink);
}

.pb-section-title p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--pb-ink-dim);
}

.pb-bg-dark .pb-section-title p,
.pb-bg-blue .pb-section-title p,
.pb-bg-orange .pb-section-title p { color: rgba(255, 255, 255, 0.8); }

/* ---------- Perfect For - bento grid ---------- */
.pb-bento-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--pb-line);
    border: 1px solid var(--pb-line);
    border-radius: 18px;
    overflow: hidden;
}

.pb-bento-item {
    background: var(--pb-bg);
    padding: 20px 18px;
    transition: background 0.35s ease, transform 0.35s ease;
}

.pb-bento-item:hover { background: var(--pb-bg-alt); transform: translateY(-4px); }

.pb-bento-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(47, 111, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pb-blue);
    font-size: 15px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.pb-bento-item:hover .pb-bento-icon { transform: scale(1.08); }

.pb-bento-item h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--pb-ink);
    margin: 0;
    line-height: 1.5;
}

/* ---------- What's Inside - feature cards ---------- */
.pb-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pb-feature-card {
    position: relative;
    padding: 26px 22px;
    border-radius: 20px;
    background: var(--pb-bg);
    border: 1px solid var(--pb-line);
    box-shadow: 0 10px 30px rgba(10, 26, 60, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pb-feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(10, 26, 60, 0.1); }

.pb-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 94, 20, 0.1);
    color: var(--pb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

.pb-feature-card h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.3px;
    color: var(--pb-ink);
    margin-bottom: 6px;
}

.pb-feature-card p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--pb-ink-dim);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Photo + text showcase (NEW) ---------- */
.pb-showcase { display: flex; flex-direction: column; gap: 90px; }

.pb-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pb-showcase-row.pb-reverse .pb-showcase-media { order: 2; }
.pb-showcase-row.pb-reverse .pb-showcase-copy { order: 1; }

.pb-showcase-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, var(--pb-bg-alt), #eaf0ff);
    border: 1px solid var(--pb-line);
}

.pb-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pb-showcase-media .pb-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pb-ink-dim);
    font-family: "Poppins", sans-serif;
}

.pb-showcase-media .pb-placeholder-inner i { font-size: 38px; color: var(--pb-blue); margin-bottom: 12px; }

.pb-showcase-index {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--pb-orange);
    margin-bottom: 16px;
    display: block;
}

.pb-showcase-copy h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 2.6vw, 32px);
    letter-spacing: -0.6px;
    color: var(--pb-ink);
    margin-bottom: 16px;
}

.pb-showcase-copy p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.9;
    color: var(--pb-ink-dim);
}

/* ---------- Independent or Connected ---------- */
.pb-mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.pb-mode-card {
    padding: 28px 30px;
    border-radius: 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pb-mode-card.pb-mode-standalone { background: linear-gradient(135deg, var(--pb-navy) 0%, var(--pb-navy-light) 100%); }
.pb-mode-card.pb-mode-connected { background: linear-gradient(135deg, var(--pb-charcoal) 0%, #2d2d2d 100%); }

.pb-mode-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.pb-mode-standalone .pb-mode-icon { color: var(--pb-blue-light); }
.pb-mode-connected .pb-mode-icon { color: var(--pb-orange-light); }

.pb-mode-card h5 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 21px; margin-bottom: 12px; color: #fff; }
.pb-mode-card p { font-family: "Poppins", sans-serif; font-size: 14px; color: rgba(255, 255, 255, 0.75); line-height: 1.8; }

.pb-mode-tag {
    display: inline-block;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ---------- Accessibility band (blue) ---------- */
.pb-access-band { text-align: center; }
.pb-access-band h2 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -1px; margin-bottom: 16px; color: #fff; }
.pb-access-band p { font-family: "Poppins", sans-serif; font-weight: 300; font-size: 15px; color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0 auto 32px; line-height: 1.8; }

.pb-access-badges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.pb-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 11px 22px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.pb-access-badge i { color: #fff; }

/* ---------- Pricing teaser ---------- */
.pb-pricing { text-align: center; }
.pb-pricing-card { max-width: 680px; margin: 0 auto; }
.pb-pricing-card h3 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.8px; color: var(--pb-ink); margin-bottom: 16px; }
.pb-pricing-card p { font-family: "Poppins", sans-serif; font-weight: 300; font-size: 15px; color: var(--pb-ink-dim); margin-bottom: 34px; line-height: 1.8; }

/* ---------- Final CTA (orange) ---------- */
.pb-final-cta { text-align: center; }

.pb-final-cta h3 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 46px); letter-spacing: -1.2px; color: #fff; margin-bottom: 16px; }

.pb-magnetic-text {
    cursor: none;
}

.pb-magnetic-word {
    display: inline-block;
    transition: transform 0.2s ease-out;
    will-change: transform;
}
.pb-final-cta p { font-family: "Poppins", sans-serif; font-weight: 300; font-size: 16px; color: rgba(255, 255, 255, 0.9); margin-bottom: 36px; }
.pb-final-cta .pb-btn-primary { background: #fff; color: var(--pb-orange); }
.pb-final-cta .pb-btn-primary:hover { background: var(--pb-navy); color: #fff; }

/* ==================================================
   Homepage teaser card (unchanged — homepage keeps its own look)
   ================================================== */
.pb-teaser-section { padding: 90px 0; background: #fff; }

.pb-teaser-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #0a1a3c 0%, #11295e 60%, #163a7a 100%);
    border-radius: 32px;
    padding: 55px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pb-teaser-card::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.25), transparent 70%);
    border-radius: 50%;
}

.pb-teaser-copy { position: relative; z-index: 1; }

.pb-teaser-copy .pb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 94, 20, 0.15);
    border: 1px solid rgba(255, 94, 20, 0.4);
    color: var(--pb-orange-light);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.pb-teaser-copy h2 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 32px; color: #fff; margin-bottom: 16px; }
.pb-teaser-copy p { font-family: "Poppins", sans-serif; font-size: 15px; color: rgba(255, 255, 255, 0.75); line-height: 1.8; margin-bottom: 26px; max-width: 460px; }

.pb-teaser-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; position: relative; z-index: 1; }

.pb-teaser-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.pb-teaser-chip i { color: #6fa1ff; }

.pb-teaser-copy .pb-btn-primary {
    position: static;
    cursor: pointer;
    background: var(--pb-orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.pb-teaser-copy .pb-btn-primary:hover { background: #e54d0f; color: #fff; text-decoration: none; transform: translateY(-3px); }

.pb-teaser-visual {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pb-teaser-visual i { font-size: 40px; color: #6fa1ff; margin-bottom: 10px; display: block; }
.pb-teaser-visual span { font-family: "Poppins", sans-serif; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }

/* ==================================================
   Responsive
   ================================================== */
@media (max-width: 992px) {
    .pb-stack { min-height: 0; padding: 90px 0; position: relative; top: auto; }
    .pb-hero { padding: 150px 0 70px; }
    .pb-hero-grid { grid-template-columns: 1fr; }
    .pb-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .pb-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .pb-mode-grid { grid-template-columns: 1fr; }
    .pb-showcase-row { grid-template-columns: 1fr; }
    .pb-showcase-row.pb-reverse .pb-showcase-media,
    .pb-showcase-row.pb-reverse .pb-showcase-copy { order: initial; }
    .pb-index { display: none; }
    .pb-teaser-card { grid-template-columns: 1fr; padding: 40px 30px; }
    .pb-teaser-visual { order: -1; }
}

@media (max-width: 576px) {
    .pb-bento-grid { grid-template-columns: 1fr; }
    .pb-feature-grid { grid-template-columns: 1fr; }
    .pb-qr-chip { position: static; margin-top: 20px; display: inline-flex; }
    .pb-section-title { margin-bottom: 40px; }
    .pb-showcase { gap: 60px; }
}

/* ==================================================
   v3 — admin-managed media slots, blue pricing, pacing polish
   ================================================== */

/* Uploaded media fills the hero panel / fullscreen box edge to edge */
.pb-hero-visual video,
.pb-hero-visual img,
.pb-media-expand-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video background for full-bleed band sections (accessibility / events) */
.pb-band-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Sections/cards with an admin-uploaded background (image or video) get a
   dark overlay so the white text stays readable on any footage */
.pb-access-band.pb-has-bg,
.pb-events-band.pb-has-bg {
    background-size: cover;
    background-position: center;
    color: #fff;
}

.pb-access-band.pb-has-bg::before,
.pb-events-band.pb-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, rgba(10, 26, 60, 0.82), rgba(29, 79, 196, 0.68));
}

.pb-events-band.pb-has-bg::before {
    background: linear-gradient(120deg, rgba(8, 12, 24, 0.82), rgba(10, 26, 60, 0.7));
}

.pb-access-band.pb-has-bg .pb-stack-inner,
.pb-events-band.pb-has-bg .pb-stack-inner {
    position: relative;
    z-index: 2;
}

/* Events band shares the accessibility band's centered layout */
.pb-events-band { text-align: center; }
.pb-events-band h2 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -1px; margin-bottom: 18px; color: #fff; }
.pb-events-band p { font-family: "Poppins", sans-serif; font-weight: 300; font-size: 15px; color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0 auto 32px; line-height: 1.8; }

.pb-has-bg .pb-index { color: rgba(255, 255, 255, 0.6); }
.pb-has-bg .pb-index span:last-child { color: #fff; }

.pb-mode-card.pb-has-bg {
    background-size: cover;
    background-position: center;
}

.pb-mode-card.pb-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.72);
    border-radius: inherit;
}

.pb-mode-card.pb-has-bg > * {
    position: relative;
    z-index: 1;
}

/* Pricing section on blue */
.pb-bg-blue .pb-pricing-card h3 { color: #fff; }
.pb-bg-blue .pb-pricing-card p { color: rgba(255, 255, 255, 0.85); }
.pb-bg-blue .pb-btn-primary { background: #fff; color: var(--pb-blue); }
.pb-bg-blue .pb-btn-primary:hover { background: var(--pb-navy); color: #fff; }

/* Paint-order insurance for the mixed sticky/normal sections */
.pb-media-expand { z-index: 3; }
.pb-normal-section { z-index: 5; }

/* Slightly tighter bento tiles so the grid clears the fold comfortably */
.pb-bento-item { padding: 24px 20px; }

/* Mobile: sticky stacking is off, so the dwell margins must go too */
@media (max-width: 992px) {
    .pb-stack { margin-bottom: 0; }
}
