/* =============================================================================
   page-system.css — block primitives for hand-coded landing pages.
   Hero + section rhythm + typography are a direct port of the conventions used
   by /custom-solutions, /about-activation-king, /become-an-affiliate so every
   marketing page on the site reads as one template:

     • Hero: --color-dark-bg (#050210) + 3-layer radial-gradient nebula with a
       14-second orbital drift on ::before. Centered, max-width ~800px, padding
       clamp(120-160px) vertical. Title 900-weight, -0.04em tracking. Em uses
       coral→gold linear-gradient text. Sub at 50% white opacity.
     • Sections: light surface (white or var(--color-surface)). Section title
       900-weight, -0.03em tracking, dark text. Em uses coral→magenta→purple.
     • Animations: .pb-fade transitions in on a `.pb-fade-in` class flip (set
       by /js/page-system.js 100 ms after load). .pb-reveal flips to
       `.pb-visible` on intersection.

   Global tokens (--color-*, --font-heading, --container-max) come from
   /wwwroot/css/theme-base.css; do not redefine them here.
   ========================================================================== */

/* ============================================================================
   Container + section rhythm
   ========================================================================== */
.pb-container {
    width: 100%;
    /* Header-eq width tokens so every section wrapper aligns to the header
       content edge (L80/R1360 @1440). Mobile narrows to --hdr-mobile-px. */
    max-width: var(--hdr-container-max, 1280px);
    margin-inline: auto;
    padding-inline: var(--hdr-px, 24px);
    box-sizing: border-box;
}

@media (max-width: 720px) {
    .pb-container { padding-inline: var(--hdr-mobile-px, 16px); }
}

/* Section spacing + typography tuned to industry leaders (Stripe / Linear /
   Vercel): generous vertical breathing room, slightly larger section titles,
   tighter mobile padding so heroes don't push content too far down. */
.pb-section {
    /* Aurora section rhythm token (= clamp(80px, 9vw, 128px)) — identical
       top+bottom breathing room across all landing-style surfaces. */
    padding: var(--section-pad-lg, clamp(80px, 9vw, 128px)) 0;
}

.pb-section--surface {
    background: var(--color-surface, #F9FAFB);
}

.pb-section-head {
    max-width: 760px;
    margin: 0 auto clamp(48px, 5vw, 72px);
    text-align: center;
}

.pb-eyebrow {
    display: inline-block;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hue-accent, var(--color-primary, #7F56D9));
    margin-bottom: 12px;
}

.pb-section-title {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--color-text, #101828);
    margin: 0;
}

.pb-section-title em {
    font-style: normal;
    background: linear-gradient(135deg, #F43F5E, #D946EF, #7F56D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-section-sub {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(16px, 1.2vw, 19px);
    color: var(--color-text-light, #667085);
    line-height: 1.6;
    margin: 16px auto 0;
    max-width: 660px;
}

@media (max-width: 720px) {
    /* .pb-section padding stays on --section-pad-lg (clamp floors at 80px on
       mobile) so the Aurora rhythm is uniform; only the head margin tightens. */
    .pb-section-head { margin-bottom: 32px; }
}

/* ============================================================================
   Buttons (.pb-btn)
   Pill style matching the reference pages' button treatment.
   ========================================================================== */
.pb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s cubic-bezier(.16,1,.3,1),
                box-shadow .25s cubic-bezier(.16,1,.3,1),
                background-color .2s ease,
                border-color .2s ease,
                color .2s ease;
}

.pb-btn:hover:not([disabled]) {
    transform: translateY(-1px);
}

.pb-btn-primary {
    /* Single coral conversion anchor (Aurora token, Booking/Stripe/Shopify) */
    background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C) 0%, var(--c-cta-to, #F43F5E) 100%);
    color: #fff;
    box-shadow: 0 12px 24px -10px rgba(244, 63, 94, 0.42);
}
.pb-btn-primary:hover:not([disabled]) {
    background: linear-gradient(135deg, #F76A4D 0%, #E0334C 100%);
    box-shadow: 0 12px 24px -10px rgba(244, 63, 94, 0.55);
}

.pb-btn-secondary {
    background: var(--color-primary, #7F56D9);
    color: #fff;
}
.pb-btn-secondary:hover:not([disabled]) { background: var(--color-secondary, #6941C6); }

.pb-btn-outline {
    background: transparent;
    color: var(--color-text, #101828);
    border-color: rgba(16, 24, 40, 0.18);
}
.pb-btn-outline:hover:not([disabled]) {
    background: var(--color-text, #101828);
    color: #fff;
    border-color: var(--color-text, #101828);
}

/* On dark backgrounds (hero) outline reverses */
.pb-hero .pb-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}
.pb-hero .pb-btn-outline:hover:not([disabled]) {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.pb-btn-sm { padding: 10px 18px; font-size: 13px; }
.pb-btn-lg { padding: 16px 32px; font-size: 16px; }

/* ============================================================================
   Animations — match reference pages' transition + class-flip pattern
   ========================================================================== */
/* Motion standard (Aurora 2026-05-21): tighter timing per Stripe/Linear/
   Vercel norms. Hero fade is page-load triggered (.pb-fade-in), section
   reveal is IntersectionObserver triggered (.pb-visible). Stagger is 80ms
   apart, not 120ms — keeps the cascade quick instead of popcorn-y. */
.pb-fade {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .48s cubic-bezier(.16, 1, .3, 1),
                transform .48s cubic-bezier(.16, 1, .3, 1);
}
.pb-fade.pb-fade-in {
    opacity: 1;
    transform: translateY(0);
}
.pb-fade-2 { transition-delay: .08s; }
.pb-fade-3 { transition-delay: .16s; }
.pb-fade-4 { transition-delay: .24s; }

.pb-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .42s cubic-bezier(.16, 1, .3, 1),
                transform .42s cubic-bezier(.16, 1, .3, 1);
}
.pb-reveal.pb-visible {
    opacity: 1;
    transform: translateY(0);
}
.pb-reveal-d1 { transition-delay: .08s; }
.pb-reveal-d2 { transition-delay: .16s; }
.pb-reveal-d3 { transition-delay: .24s; }
.pb-reveal-d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    .pb-fade,
    .pb-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================================
   Block: Hero — direct port of .scs-hero / .abt-hero / .aff-hero
   Dark background with radial nebula and 14s orbital drift. The decoration
   <svg> a page passes in sits at z-index 1, content at z-index 2.
   ========================================================================== */
.pb-hero {
    position: relative;
    overflow: hidden;
    /* Hue-driven: each .page-* class on <body> sets --hue-* so hero color
       rotates per page (purple AIPB / emerald AIDS / cyan PMW / …). Literal
       fallback only fires when no PageClass is set. */
    background: var(--hue-base, var(--color-dark-bg, #050210));
}

.pb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Per-page nebula tint via hue radials (mirrors .s01-bg recipe). Opacity
       baked into the color-mix percentages so the radials read as a tint. */
    background:
        radial-gradient(ellipse at 50% 30%, color-mix(in srgb, var(--hue-radial-a, #7F56D9) 40%, transparent) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, color-mix(in srgb, var(--hue-radial-b, #C864B4) 25%, transparent) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, color-mix(in srgb, var(--hue-radial-c, #7331E0) 16%, transparent) 0%, transparent 45%);
    pointer-events: none;
    animation: pbOrbDrift 14s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes pbOrbDrift {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 3%); }
}

.pb-hero-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 900px);
    aspect-ratio: 2 / 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.55;
    z-index: 1;
}

.pb-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pb-hero-w {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(112px, 11vw, 144px) 24px clamp(64px, 6.5vw, 92px);
    text-align: center;
}

/* ============================================================================
   LISTING-PAGE HERO BAND (.page-listing) — blog / contact / use-cases.
   Makes the shared .pb-hero render as the compact, LEFT-aligned dark aurora
   band used by /shop (.shp-collhead) and /support/{category}
   (.sup-category-hero) so content/listing pages read consistently. Marketing
   landings (software/photo-booths) keep the big centered .pb-hero.
   ========================================================================== */
body.page-listing .pb-hero-w {
    max-width: var(--hdr-container-max, 1280px);
    text-align: left;
    padding: clamp(104px, 11vw, 132px) var(--hdr-px, 24px) clamp(44px, 5vw, 56px);
}
/* Higher specificity + !important to beat aurora-typography's
   `body.has-hero .pb-hero-t { font-size: clamp(40,5.2vw,64)!important }`. */
body.has-hero.page-listing .pb-hero-t {
    font-size: clamp(34px, 4.2vw, 52px) !important;
    text-align: left;
    letter-spacing: -.022em !important;
    line-height: 1.08 !important;
    margin-bottom: 12px !important;
}
body.page-listing .pb-hero-sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 64ch;
    text-align: left;
}
/* The big centered decor SVG + particle field belong to marketing heroes;
   the compact band uses only the ::before nebula tint. */
body.page-listing .pb-hero-decor,
body.page-listing .pb-particles { display: none; }

.pb-hero-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(38px, 5.6vw, 64px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 18px;
}

.pb-hero-t em {
    font-style: normal;
    background: linear-gradient(135deg, #FF6B81, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-hero-sub {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0 auto 24px;
    max-width: 600px;
}

.pb-hero-ctas {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

.pb-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.pb-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pb-hero-trust svg {
    color: var(--color-success-light, #12B76A);
}

/* SVG decoration animations — orbital rings, diagonal blades, pulsing dots,
   glowing corner accents. Ported from the original /photo-booths page. */
.pb-ring { transform-origin: 400px 200px; }
.pb-ring-1 { animation: pbRingSpinCW 60s linear infinite; }
.pb-ring-2 { animation: pbRingSpinCCW 50s linear infinite; }
.pb-ring-3 { animation: pbRingSpinCW 40s linear infinite; }
@keyframes pbRingSpinCW  { to { transform: rotate(360deg); } }
@keyframes pbRingSpinCCW { to { transform: rotate(-360deg); } }

.pb-blade { animation: pbBladeFade 6s ease-in-out infinite; }
.pb-blade-2 { animation-delay: -1.5s; }
.pb-blade-3 { animation-delay: -3s; }
.pb-blade-4 { animation-delay: -4.5s; }
@keyframes pbBladeFade {
    0%, 100% { opacity: 1; }
    50%      { opacity: .4; }
}

.pb-dot { animation: pbDotPulse 3s ease-in-out infinite; }
.pb-dot-2 { animation-delay: -.5s; }
.pb-dot-3 { animation-delay: -1s; }
.pb-dot-4 { animation-delay: -1.5s; }
.pb-dot-5 { animation-delay: -2s; }
.pb-dot-6 { animation-delay: -2.5s; }
@keyframes pbDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); transform-origin: center; }
    50%      { opacity: .55; transform: scale(1.3); transform-origin: center; }
}

.pb-orb-glow { animation: pbOrbGlowPulse 3s ease-in-out infinite; }
.pb-orb-glow-2 { animation-delay: -.7s; }
.pb-orb-glow-3 { animation-delay: -1.4s; }
@keyframes pbOrbGlowPulse {
    0%, 100% { r: 10; opacity: 1; }
    50%      { r: 16; opacity: .45; }
}

/* ============================================================================
   Block: Feature grid (.pb-features)
   ========================================================================== */
.pb-features-grid {
    display: grid;
    gap: clamp(20px, 2vw, 28px);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pb-features-grid[data-cols="2"] { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.pb-features-grid[data-cols="4"] { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.pb-feature {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform .3s cubic-bezier(.16,1,.3,1),
                box-shadow .3s cubic-bezier(.16,1,.3,1),
                border-color .3s ease;
}

.pb-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(16, 24, 40, 0.08);
    border-color: rgba(127, 86, 217, 0.25);
}

.pb-feature-num {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #F43F5E, #7F56D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.pb-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.08), rgba(127, 86, 217, 0.08));
    color: var(--color-primary, #7F56D9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pb-feature-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--color-text, #101828);
    margin: 0 0 8px;
}

.pb-feature-text {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text-light, #667085);
    margin: 0;
}

/* ============================================================================
   Block: About split (.pb-about) — 2-col text + visual.
   Ports .scs-about / .abt-story typography: title 900 weight clamp(26-40px)
   -0.03em, body copy 1.7 line-height, em gradient on title.
   ========================================================================== */
.pb-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}

.pb-about-grid--flip .pb-about-copy { order: 2; }
.pb-about-grid--flip .pb-about-visual { order: 1; }

.pb-about-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-text, #101828);
    margin: 0 0 20px;
}

.pb-about-t em {
    font-style: normal;
    background: linear-gradient(135deg, #F43F5E, #D946EF, #7F56D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-about-desc {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(15px, 1.1vw, 17px);
    color: var(--color-text-light, #667085);
    line-height: 1.7;
    margin-bottom: 32px;
}

.pb-about-desc p { margin: 0 0 16px; }
.pb-about-desc p:last-child { margin-bottom: 0; }

.pb-about-desc a {
    color: var(--color-primary, #7F56D9);
    text-decoration: underline;
    font-weight: 600;
}
.pb-about-desc a:hover { color: var(--color-secondary, #6941C6); }

.pb-about-desc strong {
    color: var(--color-text, #101828);
    font-weight: 700;
}

.pb-about-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.pb-about-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.08), rgba(244, 63, 94, 0.08));
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.08);
}

.pb-about-visual img,
.pb-about-visual svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 880px) {
    .pb-about-grid { grid-template-columns: 1fr; gap: 32px; }
    .pb-about-grid--flip .pb-about-copy,
    .pb-about-grid--flip .pb-about-visual { order: unset; }
    .pb-about-visual { aspect-ratio: 16 / 10; }
}

/* ============================================================================
   Block: Hero logos (.pb-hero-logos) — embedded inside .pb-hero so the
   backdrop-blur sits over the hero's nebula + decor SVG. Mirrors the
   s01-logos pattern on /ai-photo-booth-software.
   ========================================================================== */
.pb-hero--with-logos .pb-hero-w {
    padding-bottom: clamp(140px, 14vw, 200px); /* leave room for the logo band */
}

.pb-hero-logos {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    z-index: 3;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Legacy external strip (kept for backward compat — unused now) */
.pb-logos {
    position: relative;
    z-index: 2;
    height: 90px;
    margin-top: -60px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.pb-marquee {
    height: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.pb-marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    height: 100%;
    width: max-content;
    opacity: 0.6;
    animation: pbMarqueeScroll 40s linear infinite;
}

.pb-marquee-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.pb-marquee-track:hover { animation-play-state: paused; }

@media (max-width: 960px) {
    .pb-logos { margin-top: 0; height: 70px; }
}

@media (max-width: 720px) {
    .pb-logos { height: 60px; }
    .pb-marquee-track { gap: 50px; }
    .pb-marquee-track img { height: 28px; }
}

.pb-marquee-track:hover img,
.pb-marquee:hover .pb-marquee-track img { animation-play-state: paused; }

.pb-logos:hover .pb-marquee-track { animation-play-state: paused; }

@keyframes pbMarqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 720px) {
    .pb-marquee { height: 40px; }
    .pb-marquee-track { gap: 36px; }
    .pb-marquee-track img { height: 28px; max-width: 110px; }
}

/* ============================================================================
   Block: Media placeholder (.pb-media-ph) — dashed asset slot
   ========================================================================== */
.pb-media-ph {
    width: 100%;
    border: 2px dashed rgba(127, 86, 217, 0.3);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(127, 86, 217, 0.04), rgba(244, 63, 94, 0.04)),
        repeating-linear-gradient(45deg, rgba(127, 86, 217, 0.02) 0 12px, transparent 12px 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light, #667085);
    overflow: hidden;
}

.pb-media-ph-inner {
    text-align: center;
    padding: 20px;
}

.pb-media-ph-inner svg { color: var(--color-primary, #7F56D9); opacity: 0.5; margin-bottom: 10px; }

.pb-media-ph-label {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text, #101828);
    margin-bottom: 4px;
}

.pb-media-ph-dim {
    font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 12px;
    color: var(--color-primary, #7F56D9);
    font-weight: 600;
}

.pb-media-ph-note {
    font-size: 12px;
    color: var(--color-text-light, #667085);
    margin-top: 8px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

.pb-media-ph--hero {
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.12);
}

/* ============================================================================
   Block: Demo CTA (.pb-democta) — pre-footer mini-CTA card
   ========================================================================== */
.pb-democta-wrap {
    padding: clamp(48px, 6vw, 80px) 0;
    background: var(--color-surface, #F9FAFB);
}

.pb-democta {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 20px;
    padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.05);
    position: relative;
    overflow: hidden;
}

.pb-democta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #F43F5E, #D946EF, #7F56D9);
}

.pb-democta-copy { flex: 1; min-width: 0; }

.pb-democta-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--color-text, #101828);
    margin: 0 0 8px;
}

.pb-democta-t em {
    font-style: normal;
    background: linear-gradient(135deg, #F43F5E, #D946EF, #7F56D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-democta-d {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.55;
    color: var(--color-text-light, #667085);
    margin: 0;
    max-width: 60ch;
}

@media (max-width: 720px) {
    .pb-democta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .pb-democta .pb-btn { width: 100%; }
}

/* ============================================================================
   Block: Blog index — category pills + post card grid + pagination
   ========================================================================== */
.pb-blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: clamp(32px, 4vw, 48px);
}

.pb-jump-pill.is-active {
    background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C), var(--c-cta-to, #F43F5E));
    border-color: transparent;
    color: #fff;
}

.pb-jump-pill-count {
    margin-left: 6px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(16, 24, 40, 0.06);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-light, #667085);
}

.pb-jump-pill.is-active .pb-jump-pill-count {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.pb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 28px);
}

@media (max-width: 1080px) { .pb-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pb-blog-grid { grid-template-columns: 1fr; } }

/* Inside the blog body the grid shares the row with the 280px sidebar, so 2-up
   reads better than a cramped 3-up. */
.shop-main .pb-blog-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .shop-main .pb-blog-grid { grid-template-columns: 1fr; } }
.pb-blog-resultnote { font-size: 14px; color: var(--color-text-light, #667085); margin: 0 0 20px; }

.pb-blog-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .25s cubic-bezier(.16,1,.3,1),
                box-shadow .25s cubic-bezier(.16,1,.3,1),
                border-color .25s ease;
}

.pb-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(16, 24, 40, 0.08);
    border-color: rgba(127, 86, 217, 0.25);
}

.pb-blog-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.08), rgba(244, 63, 94, 0.08));
}

.pb-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.pb-blog-card:hover .pb-blog-card-img img { transform: scale(1.04); }

.pb-blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #7F56D9);
    opacity: 0.4;
}

.pb-blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pb-blog-card-cat {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary, #7F56D9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pb-blog-card-title {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    color: var(--color-text, #101828);
    margin: 0;
}

.pb-blog-card-excerpt {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--color-text-light, #667085);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-blog-card-meta {
    margin-top: auto;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 12.5px;
    color: var(--color-text-light, #667085);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pb-blog-card-readtime {
    position: relative;
    padding-left: 11px;
}
.pb-blog-card-readtime::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}

/* Empty state — shown when there are no published posts yet. */
.pb-blog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    max-width: 480px;
    margin: clamp(40px, 6vw, 72px) auto;
    padding: clamp(32px, 5vw, 56px) 28px;
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.05), rgba(244, 63, 94, 0.05));
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 20px;
}

.pb-blog-empty-icon {
    color: var(--color-primary, #7F56D9);
    opacity: 0.45;
    margin-bottom: 2px;
}

.pb-blog-empty-title {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--color-text, #101828);
    margin: 0;
}

.pb-blog-empty-sub {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light, #667085);
    margin: 0 0 6px;
}

.pb-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: clamp(48px, 6vw, 72px);
    flex-wrap: wrap;
}

.pb-pagination-btn,
.pb-pagination-num {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.1);
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text, #101828);
    text-decoration: none;
    transition: all .15s ease;
    min-width: 40px;
    justify-content: center;
}

.pb-pagination-btn:hover,
.pb-pagination-num:hover {
    border-color: rgba(127, 86, 217, 0.3);
    color: var(--color-primary, #7F56D9);
}

.pb-pagination-num.is-active {
    background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C), var(--c-cta-to, #F43F5E));
    border-color: transparent;
    color: #fff;
}

/* ============================================================================
   Block: Legal pages — compact hero variant + readable prose container.
   ========================================================================== */
.pb-hero--legal .pb-hero-w {
    padding: clamp(72px, 8vw, 110px) 24px clamp(56px, 6vw, 80px);
    max-width: 880px;
}

.pb-hero--legal .pb-hero-t {
    font-size: clamp(32px, 4.2vw, 52px);
}

.pb-hero--legal .pb-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.pb-legal-prose {
    background: #fff;
}

.pb-legal-w {
    max-width: 760px;
}

.pb-legal-w h1,
.pb-legal-w h2,
.pb-legal-w h3,
.pb-legal-w h4 {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    color: var(--color-text, #101828);
    letter-spacing: -0.025em;
    margin: 2em 0 0.6em;
    line-height: 1.25;
}

.pb-legal-w h1 { font-size: 28px; font-weight: 900; }
.pb-legal-w h2 { font-size: 22px; font-weight: 800; margin-top: 2.4em; }
.pb-legal-w h3 { font-size: 18px; font-weight: 700; }
.pb-legal-w h4 { font-size: 16px; font-weight: 700; }

.pb-legal-w p,
.pb-legal-w li {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text, #101828);
}

.pb-legal-w p { margin: 0 0 1.2em; }
.pb-legal-w ul,
.pb-legal-w ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.pb-legal-w li { margin-bottom: 0.5em; }

.pb-legal-w a {
    color: var(--color-primary, #7F56D9);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.pb-legal-w a:hover { color: var(--color-secondary, #6941C6); }

.pb-legal-w strong { color: var(--color-text, #101828); font-weight: 700; }

.pb-legal-w hr {
    border: 0;
    height: 1px;
    background: rgba(16, 24, 40, 0.08);
    margin: 2.4em 0;
}

.pb-legal-w table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: 14.5px;
}

.pb-legal-w th,
.pb-legal-w td {
    border: 1px solid rgba(16, 24, 40, 0.08);
    padding: 12px 14px;
    text-align: left;
}

.pb-legal-w th {
    background: var(--color-surface, #F9FAFB);
    font-weight: 700;
}

@media (max-width: 720px) {
    .pb-legal-w { padding-left: 4px; padding-right: 4px; }
    .pb-legal-w h1 { font-size: 24px; }
    .pb-legal-w h2 { font-size: 20px; }
    .pb-legal-w p,
    .pb-legal-w li { font-size: 15.5px; }
}

/* ============================================================================
   Block: Hero search (.pb-hero-search) — embedded in /support hero
   ========================================================================== */
.pb-hero-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
}

.pb-hero-search input {
    width: 100%;
    padding: 16px 110px 16px 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: #fff;
    outline: none;
    transition: all 0.2s ease;
}

.pb-hero-search input::placeholder { color: rgba(255, 255, 255, 0.5); }
.pb-hero-search input:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.pb-hero-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.pb-hero-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    min-height: 44px;
    padding: 12px 20px;
    border: 0;
    border-radius: 10px;
    /* Single coral conversion anchor (Aurora token) */
    background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C) 0%, var(--c-cta-to, #F43F5E) 100%);
    color: #fff;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pb-hero-search-btn:hover {
    background: linear-gradient(135deg, #F76A4D 0%, #E0334C 100%);
    box-shadow: 0 12px 24px -10px rgba(244, 63, 94, 0.55);
}

.pb-hero-suggest {
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pb-hero-suggest > span { font-weight: 600; }

.pb-hero-suggest a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.15s, border-color 0.15s;
    display: inline-flex;
    align-items: center;
}

.pb-hero-suggest a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

/* ============================================================================
   Block: Support cards (.pb-sup-card)
   Category + article + contact cards reused across the /support index.
   ========================================================================== */
.pb-sup-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 2vw, 28px);
}

.pb-sup-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 18px;
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: transform .25s cubic-bezier(.16,1,.3,1),
                box-shadow .25s cubic-bezier(.16,1,.3,1),
                border-color .25s ease;
}

.pb-sup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #F43F5E, #D946EF, #7F56D9);
    opacity: 0;
    transition: opacity .25s ease;
}

.pb-sup-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.08);
    border-color: rgba(127, 86, 217, 0.25);
}

.pb-sup-card:hover::before { opacity: 1; }

.pb-sup-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.1), rgba(244, 63, 94, 0.1));
    color: var(--color-primary, #7F56D9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Per-section accent: software guides = purple gradient, industry/grow =
   coral gradient. Adds visual rhythm so the 3 stacked grids don't read flat. */
.pb-section--surface .pb-sup-card-icon {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.14), rgba(217, 70, 239, 0.14));
    color: #E11D48;
}

.pb-sup-card-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text, #101828);
    margin: 0 0 6px;
}

.pb-sup-card-d {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--color-text-light, #667085);
    margin: 0 0 14px;
}

.pb-sup-card-count {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary, #7F56D9);
}

/* Popular-article cards */
.pb-sup-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pb-sup-popular-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 14px;
    padding: 22px 22px 20px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.pb-sup-popular-card:hover {
    border-color: rgba(127, 86, 217, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.pb-sup-popular-cat {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary, #7F56D9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.pb-sup-popular-title {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 17px;
    font-weight: 800;
    color: var(--color-text, #101828);
    margin-bottom: 8px;
    line-height: 1.35;
}

.pb-sup-popular-excerpt {
    font-size: 14px;
    color: var(--color-text-light, #667085);
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-sup-popular-read {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary, #7F56D9);
}

/* Dark contact section + cards */
.pb-section--dark {
    background: var(--color-dark-bg, #050210);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pb-section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(127, 86, 217, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(244, 63, 94, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.pb-section--dark > .pb-container { position: relative; z-index: 2; }
.pb-section--dark .pb-section-title { color: #fff; }
.pb-section--dark .pb-section-sub { color: rgba(255, 255, 255, 0.55); }

.pb-sup-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pb-sup-contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    transition: background .25s, border-color .25s, transform .25s;
    display: block;
    width: 100%;
}

.pb-sup-contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(127, 86, 217, 0.4);
    transform: translateY(-3px);
    color: #fff;
}

.pb-sup-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.3), rgba(244, 63, 94, 0.22));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
}

.pb-sup-contact-t {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
}

.pb-sup-contact-d {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 14px;
}

.pb-sup-contact-cta {
    font-size: 13px;
    font-weight: 700;
    color: #FCD34D;
}

/* ============================================================================
   Block: Use-case category section (.pb-uc-section)
   Per-industry block with header chip + cards grid.
   ========================================================================== */
.pb-uc-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: clamp(28px, 3vw, 40px);
}

.pb-uc-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pb-uc-info { flex: 1; min-width: 0; }

.pb-uc-cat-title {
    font-family: var(--font-display, 'Inter', system-ui, sans-serif);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text, #101828);
    margin: 0 0 4px;
}

.pb-uc-cat-desc {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14.5px;
    color: var(--color-text-light, #667085);
    margin: 0;
}

.pb-uc-cat-count {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light, #667085);
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--color-surface, #F9FAFB);
    border: 1px solid rgba(16, 24, 40, 0.08);
    white-space: nowrap;
}

.pb-uc-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2vw, 28px);
}

@media (max-width: 1080px) { .pb-uc-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .pb-uc-cards { grid-template-columns: repeat(2, 1fr); } }
/* Phones: horizontal scroll rail (matches the homepage collages) instead of a
   tall 1-col stack. Negative inline margin = full-bleed; padding keeps the card
   hover/shadow from being clipped. */
@media (max-width: 600px) {
    .pb-uc-cards {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 14px;
        margin-inline: calc(-1 * var(--hdr-mobile-px, 16px));
        padding: 6px var(--hdr-mobile-px, 16px) 18px;
    }
    .pb-uc-cards::-webkit-scrollbar { display: none; }
    .pb-uc-cards > .pb-uc-card { flex: 0 0 78%; scroll-snap-align: start; }
}

.pb-uc-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .3s cubic-bezier(.16,1,.3,1),
                box-shadow .3s cubic-bezier(.16,1,.3,1),
                border-color .3s ease;
}

.pb-uc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.08);
    border-color: rgba(127, 86, 217, 0.25);
}

.pb-uc-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.06), rgba(244, 63, 94, 0.06));
}

.pb-uc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.pb-uc-card:hover .pb-uc-card-img img { transform: scale(1.04); }

.pb-uc-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-uc-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pb-uc-card-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text, #101828);
    margin: 0;
    line-height: 1.3;
}

.pb-uc-card-d {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14.5px;
    color: var(--color-text-light, #667085);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.pb-uc-card-link {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary, #7F56D9);
    margin-top: 4px;
}

/* Quick-jump pill nav between hero and category sections */
.pb-jump {
    background: var(--color-surface, #F9FAFB);
    padding: 24px 0;
    border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.pb-jump-inner {
    max-width: var(--hdr-container-max, 1280px);
    margin: 0 auto;
    padding: 0 var(--hdr-px, 24px);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 720px) {
    .pb-jump-inner { padding: 0 var(--hdr-mobile-px, 16px); }
}

.pb-jump-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text, #101828);
    text-decoration: none;
    transition: all .2s ease;
}

.pb-jump-pill:hover {
    border-color: rgba(127, 86, 217, 0.35);
    color: var(--color-primary, #7F56D9);
    transform: translateY(-1px);
}

@media (max-width: 720px) {
    .pb-uc-header { flex-wrap: wrap; gap: 12px; }
    .pb-uc-cat-count { order: 3; }
}

/* ============================================================================
   Block: Stats (.pb-stats)
   ========================================================================== */
.pb-stats-row {
    display: grid;
    gap: clamp(28px, 3vw, 48px);
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
}

.pb-stat-num {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #F43F5E, #D946EF, #7F56D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.pb-stat-label {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    color: var(--color-text-light, #667085);
    margin-top: 8px;
}

/* ============================================================================
   Block: How it works (.pb-how)
   ========================================================================== */
.pb-how-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    counter-reset: pb-step;
}

.pb-how-step {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    counter-increment: pb-step;
}

.pb-how-step::before {
    content: counter(pb-step, decimal-leading-zero);
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #F43F5E, #7F56D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
}

.pb-how-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text, #101828);
    margin: 0 0 8px;
}

.pb-how-text {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text-light, #667085);
    margin: 0;
}

/* ============================================================================
   Block: FAQ (.pb-faq)
   ========================================================================== */
.pb-faq-list {
    /* 2-column layout to mirror the AI Photo Booth Pro landing (.hx-faq).
       Items flow left-to-right into two equal columns on desktop, collapse to
       one column on mobile. align-items:start so an open item only grows its own
       cell, not the whole row. */
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 12px 20px;
}

@media (max-width: 720px) {
    .pb-faq-list { grid-template-columns: 1fr; max-width: 760px; }
}

.pb-faq-item {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s ease;
}

.pb-faq-item[open] { border-color: rgba(127, 86, 217, 0.4); }

.pb-faq-item summary {
    cursor: pointer;
    padding: 20px 22px;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text, #101828);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pb-faq-item summary::-webkit-details-marker { display: none; }

.pb-faq-item summary::after {
    content: '';
    /* 20px circle chevron (canonical FAQ marker). min/max-width + flex:0 0 20
       defeat the global button/interactive min-width:44 that would stretch it
       into an ellipse. Rotates 180deg when [open]. */
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    background-color: var(--gray-100, #F2F4F7);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .25s ease;
}

.pb-faq-item[open] summary::after { transform: rotate(180deg); }

.pb-faq-item p {
    padding: 0 22px 20px;
    margin: 0;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light, #667085);
}


/* ============================================================================
   Block: Product rows (.pb-prows) — alternating large-image rows
   ========================================================================== */
.pb-prows-list {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 96px);
}

.pb-prow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}

.pb-prow--flip .pb-prow-copy { order: 2; }
.pb-prow--flip .pb-prow-visual { order: 1; }

.pb-prow-title {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--color-text, #101828);
    margin: 0 0 16px;
}

.pb-prow-title em {
    font-style: normal;
    background: linear-gradient(135deg, #F43F5E, #D946EF, #7F56D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pb-prow-desc {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.7;
    color: var(--color-text-light, #667085);
    margin: 0 0 24px;
    max-width: 52ch;
}

.pb-prow-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.pb-prow-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14.5px;
    line-height: 1.45;
    color: var(--color-text, #101828);
}

.pb-prow-features svg {
    flex-shrink: 0;
    color: var(--color-success-light, #12B76A);
    margin-top: 2px;
}

.pb-prow-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pb-prow-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.08), rgba(244, 63, 94, 0.08));
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.08);
}

.pb-prow-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.pb-prow:hover .pb-prow-visual img { transform: scale(1.04); }

.pb-prow-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #F43F5E, #E11D48);
    color: #fff;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(244, 63, 94, 0.3);
}

@media (max-width: 880px) {
    .pb-prow { grid-template-columns: 1fr; gap: 24px; }
    .pb-prow--flip .pb-prow-copy,
    .pb-prow--flip .pb-prow-visual { order: unset; }
    .pb-prow-visual { aspect-ratio: 4 / 3; }
}

/* ============================================================================
   Block: Quotes
   ========================================================================== */
.pb-quotes-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.pb-quote {
    max-width: 320px;
    text-align: center;
}

.pb-quote-text {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text, #101828);
    font-style: italic;
    margin: 0 0 8px;
}

.pb-quote-author {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 13px;
    color: var(--color-text-light, #667085);
    font-weight: 600;
}

/* ============================================================================
   Block: Products grid — shop-catalog 3-col layout.
   Image-forward cards with category chip + name + "starting at" price +
   dual CTAs. Fotomaster pattern adapted to the Activation King palette.
   ========================================================================== */
.pb-products {
    padding-top: clamp(56px, 6vw, 80px);
    padding-bottom: clamp(72px, 8vw, 112px);
}

.pb-products-grid {
    display: grid;
    gap: clamp(20px, 2vw, 32px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pb-product {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.16,1,.3,1),
                box-shadow .3s cubic-bezier(.16,1,.3,1),
                border-color .3s ease;
}

.pb-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(16, 24, 40, 0.1);
    border-color: rgba(127, 86, 217, 0.25);
}

.pb-product-media {
    display: block;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(127, 86, 217, 0.06), rgba(244, 63, 94, 0.06));
    overflow: hidden;
}

.pb-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.pb-product:hover .pb-product-media img { transform: scale(1.04); }

.pb-product-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pb-product-cat {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light, #667085);
}

.pb-product-name {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--color-text, #101828);
    margin: 0;
}

.pb-product-name a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}
.pb-product-name a:hover { color: var(--color-primary, #7F56D9); }

.pb-product-price {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-light, #667085);
}

.pb-product-cta {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.pb-product-cta .pb-btn { flex: 1; padding-left: 12px; padding-right: 12px; }

/* ============================================================================
   Utilities
   ========================================================================== */
.pb-text-center { text-align: center; }

/* ============================================================================
   Block: Contact form + offices (.pb-contact-*) for /contact
   ========================================================================== */
/* Quick contact-method cards (chat / email / response time) above the form. */
.pb-contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 1.6vw, 20px);
    margin-top: clamp(-40px, -4vw, -24px);
    position: relative;
    z-index: 3;
}
.pb-cm-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--gray-200, #EAECF0);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 18px 36px -20px rgba(16,24,40,.18);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    transition: transform .16s ease, box-shadow .18s ease, border-color .16s ease;
}
.pb-cm-card--static { cursor: default; }
a.pb-cm-card:hover, button.pb-cm-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--hue-accent, #7F56D9) 40%, #EAECF0);
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 24px 44px -20px rgba(16,24,40,.26);
}
.pb-cm-ic {
    flex: 0 0 46px;
    width: 46px; height: 46px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--c-from, #7F56D9), var(--c-to, #F43F5E));
}
.pb-cm-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pb-cm-t { font-family: var(--font-display, 'Inter', sans-serif); font-size: 15.5px; font-weight: 700; color: var(--color-text, #101828); }
.pb-cm-d { font-size: 13px; color: var(--color-text-light, #667085); }
@media (max-width: 760px) {
    .pb-contact-methods { grid-template-columns: 1fr; margin-top: 0; gap: 12px; }
}

.pb-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}
@media (max-width: 900px) {
    .pb-contact-grid { grid-template-columns: 1fr; }
}

.pb-contact-card {
    /* Subtle lavender tint so the form area reads as a distinct surface
       (not white-on-white) — matches the conversion-focused footer form. */
    background: linear-gradient(180deg, #FAF7FF 0%, #FFFFFF 60%);
    border: 1px solid rgba(127, 86, 217, .14);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 20px 40px -20px rgba(127,86,217,.16);
}

.pb-contact-card-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    color: var(--color-text, #101828);
    letter-spacing: -.02em;
    margin: 0 0 24px;
}

.pb-contact-form { display: flex; flex-direction: column; gap: 18px; }
.pb-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .pb-contact-row { grid-template-columns: 1fr; } }

.pb-contact-field { display: flex; flex-direction: column; gap: 8px; }
.pb-contact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text, #101828);
}

.pb-contact-field input,
.pb-contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    border: 1px solid var(--gray-200, #EAECF0);
    border-radius: 11px;
    font: inherit;
    font-size: 15px;
    color: var(--color-text, #101828);
    background: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.pb-contact-field input:focus,
.pb-contact-field textarea:focus {
    border-color: var(--color-primary, #7F56D9);
    box-shadow: 0 0 0 4px rgba(127,86,217,.12);
}
.pb-contact-field textarea { resize: vertical; min-height: 120px; }

.pb-contact-submit {
    margin-top: 4px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 28px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C), var(--c-cta-to, #F43F5E));
    color: #fff;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform .14s, box-shadow .14s, filter .14s;
}
.pb-contact-submit:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(244,63,94,.45); }
.pb-contact-submit:disabled { opacity: .65; cursor: progress; transform: none; box-shadow: none; }

.pb-contact-error {
    margin: 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(244,63,94,.08);
    color: #B42318;
    font-size: 14px;
}

.pb-contact-success {
    text-align: center;
    padding: 36px 16px;
}
.pb-contact-success svg { display: block; margin: 0 auto 12px; }
.pb-contact-success h3 {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--color-text, #101828);
}
.pb-contact-success p { margin: 0; color: var(--color-text-light, #667085); font-size: 15px; }

.pb-contact-offices {
    background: linear-gradient(180deg, rgba(127,86,217,.03), rgba(244,63,94,.02));
    border: 1px solid var(--gray-200, #EAECF0);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px);
}

.pb-contact-offices-sub {
    margin: 0 0 20px;
    color: var(--color-text-light, #667085);
    font-size: 14px;
    line-height: 1.5;
}

/* Offices — typographic, no flag emoji. A brand-gradient accent rail carries
   the visual interest (Stripe pattern: type + colour, not decoration). */
.pb-contact-office {
    padding: 18px 0;
    border-top: 1px solid var(--gray-200, #EAECF0);
}
.pb-contact-office:first-of-type { border-top: 0; padding-top: 0; }
.pb-contact-office-region {
    display: block;
    font-family: var(--font-display, 'Inter', system-ui, sans-serif);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--color-primary, #7F56D9);
    margin: 0 0 5px;
}
.pb-contact-office-company { margin: 0 0 3px; font-size: 15px; font-weight: 700; color: var(--color-text, #101828); letter-spacing: -.01em; }
.pb-contact-office-addr { margin: 0; font-size: 13.5px; color: var(--color-text-light, #667085); line-height: 1.55; }

.pb-contact-social { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-200, #EAECF0); }
.pb-contact-social-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--color-text, #101828);
}
.pb-contact-social-links { display: flex; gap: 10px; }
.pb-contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--gray-200, #EAECF0);
    color: var(--color-text-light, #667085);
    transition: color .15s, border-color .15s, transform .15s;
}
.pb-contact-social-links a:hover { color: var(--color-primary, #7F56D9); border-color: var(--color-primary, #7F56D9); transform: translateY(-2px); }

/* ============================================================================
   Block: Support product guides (.pb-sup-product*) — Stripe/Linear-grade
   horizontal cards with brand-tinted mark + arrow CTA on hover.
   ========================================================================== */
.pb-sup-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.pb-sup-product {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.07);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform .2s cubic-bezier(.16,1,.3,1),
                box-shadow .2s cubic-bezier(.16,1,.3,1),
                border-color .2s ease;
}

.pb-sup-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(16, 24, 40, 0.08);
    border-color: rgba(127, 86, 217, 0.22);
}

.pb-sup-product-mark {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.02em;
    box-shadow: 0 8px 18px -8px rgba(16,24,40,.32);
}

.pb-sup-product-body { flex: 1; min-width: 0; }

.pb-sup-product-t {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: clamp(17px, 1.3vw, 19px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--color-text, #101828);
    margin: 0 0 6px;
}

.pb-sup-product-d {
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--color-text-light, #667085);
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pb-sup-product-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-light, #667085);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pb-sup-product-count {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-primary, #7F56D9);
    letter-spacing: 0;
    text-transform: none;
}

.pb-sup-product-arrow {
    color: var(--color-text-light, #667085);
    margin-left: 6px;
    transition: transform .2s, color .2s;
}

.pb-sup-product:hover .pb-sup-product-arrow {
    color: var(--color-primary, #7F56D9);
    transform: translateX(3px);
}

/* Contact form additions (FAZ 1b) */
.pb-contact-microcopy {
    margin: 0 0 24px;
    font-size: 14px;
    color: var(--c-text-muted, #667085);
}
.pb-contact-select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--c-border, #EAECF0);
    border-radius: 12px;
    font: inherit;
    font-size: 15px;
    color: var(--c-text, #101828);
    background: #fff;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-size: 16px;
    background-position: right 14px center;
    background-repeat: no-repeat;
    padding-right: 40px;
}
.pb-contact-select:focus {
    outline: none;
    border-color: var(--c-primary, #7F56D9);
    box-shadow: 0 0 0 4px rgba(127,86,217,.12);
}

/* Hero CTA buttons (FAZ 2) — matches reference-page hero pattern */
.pb-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.pb-hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* Hero CTA spec: 56px tall, 16px/32px padding, 16/700 — single coral token */
    min-height: 56px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--c-cta-from, #FF7A5C) 0%, var(--c-cta-to, #F43F5E) 100%);
    color: #fff;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    border: 0;
    text-decoration: none;
    transition: transform .14s, box-shadow .14s, background-color .2s ease;
}
.pb-hero-cta-primary:hover {
    background: linear-gradient(135deg, #F76A4D 0%, #E0334C 100%);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -10px rgba(244, 63, 94, 0.55);
}
.pb-hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 32px;
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .14s, border-color .14s;
}
.pb-hero-cta-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.36);
}
@media (max-width: 480px) {
    .pb-hero-cta { flex-direction: column; align-items: stretch; padding: 0 24px; gap: 10px; }
}

/* ===== Legal page layout with TOC sidebar (FAZ 7) ===================== */
.pb-legal-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 880px) {
    .pb-legal-grid { grid-template-columns: 1fr; gap: 24px; }
}

.pb-legal-toc {
    position: sticky;
    top: 96px;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
}
@media (max-width: 880px) {
    .pb-legal-toc { position: relative; top: 0; }
}

.pb-legal-toc-details {
    background: var(--c-bg-soft, #FAFAFB);
    border: 1px solid var(--c-border, #EAECF0);
    border-radius: 12px;
    padding: 8px;
}
.pb-legal-toc-details summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-text-muted, #667085);
    min-height: 40px;
    display: flex;
    align-items: center;
}
.pb-legal-toc-details summary::-webkit-details-marker { display: none; }
@media (max-width: 880px) {
    .pb-legal-toc-details summary::after {
        content: '';
        margin-left: auto;
        width: 16px; height: 16px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
        background-size: contain;
        transition: transform .14s;
    }
    .pb-legal-toc-details[open] summary::after { transform: rotate(180deg); }
}
@media (min-width: 881px) {
    .pb-legal-toc-details { padding: 16px; }
    .pb-legal-toc-details summary::after { display: none; }
}

.pb-legal-toc-details nav ol {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.pb-legal-toc-details li { margin: 0; }
.pb-legal-toc-details li.lvl-2 { margin-left: 12px; }
.pb-legal-toc-details a {
    display: block;
    padding: 8px 12px;
    color: var(--c-text-muted, #667085);
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.4;
    border-radius: 6px;
    transition: background .14s, color .14s;
    min-height: 36px;
    display: flex;
    align-items: center;
}
.pb-legal-toc-details a:hover {
    color: var(--c-text, #101828);
    background: var(--c-bg, #fff);
}
.pb-legal-toc-details a.active {
    color: var(--c-primary, #7F56D9);
    background: var(--c-primary-bg, rgba(127,86,217,.06));
    font-weight: 700;
}

/* Print styles for legal pages */
@media print {
    .ak-header, .ak-footer, .pb-hero, .pb-legal-toc, [class*="cookie"i] { display: none !important; }
    .pb-legal-grid { grid-template-columns: 1fr; }
    .pb-legal-prose { font-size: 11pt; }
    .pb-legal-prose h1, .pb-legal-prose h2 { break-after: avoid; }
    a { color: #000 !important; text-decoration: underline !important; }
}
