@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --pl-bg: #111926;
    --pl-fg: #f4f2ed;
    --pl-card: #151d2a;
    --pl-primary: #e0d2b7;
    --pl-primary-fg: #111926;
    --pl-muted: #1d2635;
    --pl-muted-fg: #b8bcc4;
    --pl-border: #273142;
    --pl-nav-h: 5rem;
    --pl-radius: 0.75rem;
    --pl-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body.pl-landing {
    margin: 0;
    background: var(--pl-bg);
    color: var(--pl-fg);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.pl-landing ::selection {
    background: rgb(224 210 183 / 0.4);
    color: #fff;
}

.pl-display { font-family: 'Bebas Neue', system-ui, sans-serif; letter-spacing: 0.02em; }

.pl-container { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }

.pl-text-gradient {
    background: linear-gradient(135deg, #f7f2e8, #e0d2b7 50%, #bca88a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pl-bg-grid {
    background-image:
        linear-gradient(rgb(224 210 183 / 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgb(224 210 183 / 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
}

.pl-bg-radial { background: radial-gradient(circle at 50% 0%, rgb(224 210 183 / 0.18), transparent 60%); }

.pl-glow { box-shadow: 0 0 60px -10px rgb(224 210 183 / 0.5); }

.pl-muted { color: var(--pl-muted-fg); }

/* Scrollbar */
body.pl-landing::-webkit-scrollbar { width: 8px; }
body.pl-landing::-webkit-scrollbar-track { background: var(--pl-bg); }
body.pl-landing::-webkit-scrollbar-thumb { background: rgb(224 210 183 / 0.5); border-radius: 4px; }

/* Navbar */
.pl-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--pl-nav-h);
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
    border-bottom: 1px solid transparent;
}

.pl-nav.is-scrolled {
    background: rgb(17 25 38 / 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgb(224 210 183 / 0.2);
}

.pl-nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pl-nav__logo img { height: 2rem; width: auto; }

.pl-nav__links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pl-nav__links { display: flex; }
}

.pl-nav__links a {
    color: var(--pl-muted-fg);
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    transition: color 0.2s;
}

.pl-nav__links a:hover { color: var(--pl-fg); }

.pl-nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 1px;
    background: var(--pl-primary);
    transition: width 0.3s;
}

.pl-nav__links a:hover::after { width: 100%; }

.pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s, background 0.2s, border-color 0.2s;
}

.pl-btn--primary {
    background: var(--pl-primary);
    color: var(--pl-primary-fg);
    box-shadow: 0 0 40px -12px rgb(224 210 183 / 0.7);
}

.pl-btn--primary:hover { transform: scale(1.03); }

.pl-btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

.pl-btn__loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pl-btn__spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgb(17 25 38 / 0.2);
    border-top-color: var(--pl-primary-fg);
    border-radius: 50%;
    animation: pl-spin 0.7s linear infinite;
}

@keyframes pl-spin {
    to { transform: rotate(360deg); }
}

.pl-btn--primary-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.pl-btn--outline {
    background: rgb(17 25 38 / 0.2);
    color: var(--pl-fg);
    border: 1px solid rgb(224 210 183 / 0.35);
    backdrop-filter: blur(8px);
}

.pl-btn--outline:hover {
    border-color: rgb(224 210 183 / 0.7);
    background: rgb(224 210 183 / 0.1);
}

.pl-btn--ghost {
    background: transparent;
    color: var(--pl-fg);
    border: 1px solid var(--pl-border);
}

.pl-btn--ghost:hover { border-color: rgb(224 210 183 / 0.6); }

.pl-nav__toggle {
    display: flex;
    background: none;
    border: none;
    color: var(--pl-fg);
    padding: 0.5rem;
    cursor: pointer;
}

.pl-nav__cta-sm { display: inline-flex; }
.pl-nav__cta-desktop { display: none; }

@media (min-width: 768px) {
    .pl-nav__toggle { display: none; }
    .pl-nav__cta-sm { display: none; }
    .pl-nav__cta-desktop { display: inline-flex; }
}

.pl-mobile-menu {
    display: none;
    position: fixed;
    top: var(--pl-nav-h);
    inset-inline: 0;
    background: rgb(17 25 38 / 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--pl-border);
    padding: 1rem 1.5rem 1.5rem;
    z-index: 99;
}

.pl-mobile-menu.is-open { display: block; }

.pl-mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--pl-fg);
    text-decoration: none;
    border-bottom: 1px solid rgb(39 49 66 / 0.5);
}

.pl-mobile-menu a:last-child { border-bottom: none; margin-top: 0.5rem; }

/* Hero */
.pl-hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
}

.pl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}

.pl-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    filter: saturate(1.15) contrast(1.1) brightness(0.78) hue-rotate(8deg);
}

.pl-hero__bg-blur {
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 50% 40%, transparent 0%, transparent 24%, black 58%, black 100%);
    mask-image: radial-gradient(circle at 50% 40%, transparent 0%, transparent 24%, black 58%, black 100%);
}

.pl-hero__bg-blur img {
    transform: scale(1.05);
    filter: blur(12px) hue-rotate(8deg) saturate(1.2);
}

.pl-hero__overlay-color {
    position: absolute;
    inset: 0;
    background: rgb(28 63 117 / 0.34);
    mix-blend-mode: color;
}

.pl-hero__overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgb(11 31 63 / 0.74), rgb(16 45 91 / 0.42), rgb(19 39 69 / 0.72));
}

.pl-hero__overlay-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 52% 42%, rgb(224 210 183 / 0.08) 0%, rgb(17 25 38 / 0.16) 38%, rgb(17 25 38 / 0.6) 100%);
}

.pl-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
}

.pl-hero__orb {
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: rgb(224 210 183 / 0.12);
    filter: blur(80px);
    pointer-events: none;
}

.pl-hero__content {
    position: relative;
    z-index: 10;
    padding-top: calc(var(--pl-nav-h) + 6rem);
    padding-bottom: 6rem;
    will-change: transform, opacity;
}

.pl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgb(224 210 183 / 0.4);
    background: rgb(224 210 183 / 0.1);
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pl-primary);
    margin-bottom: 2rem;
}

.pl-badge__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--pl-primary);
    animation: pl-pulse 2s ease-in-out infinite;
}

@keyframes pl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.pl-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 11vw, 11rem);
    line-height: 0.85;
    margin: 0;
}

.pl-hero__title span { display: block; }

.pl-hero__lead {
    margin-top: 2.5rem;
    max-width: 36rem;
    font-size: 1.125rem;
    color: var(--pl-muted-fg);
    line-height: 1.6;
}

.pl-hero__actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pl-hero__social {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pl-hero__avatars {
    display: flex;
}

.pl-hero__avatars img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--pl-primary);
    margin-left: -0.75rem;
    object-fit: cover;
}

.pl-hero__avatars img:first-child { margin-left: 0; }

.pl-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pl-muted-fg);
    z-index: 10;
}

.pl-scroll-cue__line {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, var(--pl-primary), transparent);
    animation: pl-scroll-bounce 2s ease-in-out infinite;
}

@keyframes pl-scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

/* Reveal animations */
.pl-reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.7s var(--pl-ease), transform 0.7s var(--pl-ease);
}

.pl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pl-reveal-delay-1 { transition-delay: 0.1s; }
.pl-reveal-delay-2 { transition-delay: 0.2s; }
.pl-reveal-delay-3 { transition-delay: 0.3s; }
.pl-reveal-delay-4 { transition-delay: 0.4s; }

/* Marquee */
.pl-marquee {
    overflow: hidden;
    border-block: 1px solid var(--pl-border);
    background: rgb(21 29 42 / 0.3);
    padding: 2rem 0;
}

.pl-marquee__track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.pl-marquee__item {
    margin-inline: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: rgb(244 242 237 / 0.6);
}

.pl-marquee__item.is-star { color: var(--pl-primary); }

/* CMW → Sticky: faixa contínua com glow avermelhado */
.pl-cmw-flow {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.pl-cmw-flow__ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 95% 70% at 16% 22%, rgb(220 38 38 / 0.18), transparent 58%),
        radial-gradient(ellipse 80% 55% at 84% 18%, rgb(224 210 183 / 0.08), transparent 52%),
        radial-gradient(ellipse 120% 65% at 42% 48%, rgb(153 27 27 / 0.09), transparent 62%),
        radial-gradient(ellipse 90% 50% at 28% 72%, rgb(220 38 38 / 0.07), transparent 58%),
        linear-gradient(180deg, rgb(69 10 10 / 0.06) 0%, rgb(17 25 38 / 0) 42%, rgb(17 25 38 / 0.55) 78%, var(--pl-bg) 100%);
}

.pl-cmw-flow > .pl-cmw,
.pl-cmw-flow > .pl-sticky-section,
.pl-cmw-flow > .pl-guide-strip {
    position: relative;
    z-index: 1;
}

/* CMW Promo */
.pl-cmw {
    position: relative;
    padding: 5rem 0 2rem;
    background: transparent;
}

.pl-cmw__grid {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pl-cmw__grid { grid-template-columns: 1fr 1fr; }
}

.pl-section-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pl-primary);
    margin-bottom: 1rem;
}

.pl-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 0 0 1.5rem;
}

.pl-cmw-card {
    background: rgb(21 29 42 / 0.85);
    border: 1px solid var(--pl-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

.pl-cmw-card__banner {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background: rgb(224 210 183 / 0.08);
    border: 1px solid rgb(224 210 183 / 0.2);
    font-size: 0.75rem;
    color: var(--pl-muted-fg);
}

.pl-cmw-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgb(39 49 66 / 0.5);
    font-size: 0.875rem;
}

.pl-cmw-line:last-of-type { border-bottom: none; }

.pl-cmw-pill {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgb(224 210 183 / 0.15);
    color: var(--pl-primary);
}

.pl-cmw-pill--pix {
    background: rgb(34 197 94 / 0.15);
    color: #86efac;
}

/* Sticky section */
.pl-sticky-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

.pl-sticky-section__intro {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.pl-sticky-section__body {
    display: grid;
    gap: 4rem;
}

@media (min-width: 768px) {
    .pl-sticky-section__body {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: stretch;
    }
}

.pl-sticky-steps {
    padding-block: 20vh;
    display: flex;
    flex-direction: column;
    gap: 40vh;
}

@media (max-width: 767px) {
    .pl-sticky-steps {
        padding-block: 2rem;
        gap: 2rem;
        order: 2;
    }

    .pl-sticky-visual-wrap {
        order: 1;
        margin-bottom: 1rem;
    }

    .pl-sticky-step {
        opacity: 1 !important;
    }
}

.pl-sticky-step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.pl-sticky-step.is-active { opacity: 1; }

.pl-sticky-step__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: var(--pl-primary);
    line-height: 1;
}

.pl-sticky-step__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0.5rem 0;
}

.pl-sticky-visual-wrap {
    display: block;
    width: 100%;
    position: relative;
    align-self: stretch;
}

.pl-sticky-visual {
    width: 100%;
    height: clamp(260px, 50vw, 420px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--pl-border);
    background: var(--pl-card);
}

@media (min-width: 768px) {
    .pl-sticky-visual {
        height: 70vh;
        min-height: 420px;
    }
}

.pl-sticky-visual.is-pinned {
    z-index: 5;
    pointer-events: none;
}

.pl-sticky-visual__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.pl-sticky-visual__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.45s ease, transform 0.5s var(--pl-ease);
    pointer-events: none;
}

.pl-sticky-visual__slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.pl-sticky-visual__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-sticky-visual__caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
}

.pl-sticky-visual__caption small {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--pl-primary);
    letter-spacing: 0.15em;
    font-size: 0.875rem;
}

.pl-sticky-visual__caption h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    margin: 0.25rem 0 0;
    color: var(--pl-fg);
}

.pl-sticky-visual__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgb(17 25 38 / 0.8), transparent 50%);
}

/* Map — presença nacional */
.pl-map-section {
    position: relative;
    padding: 6.5rem 0 7.5rem;
    overflow: hidden;
}

.pl-map-section__intro {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3.5rem;
}

.pl-map-section__subtitle {
    margin: 0.75rem 0 0;
    line-height: 1.6;
}

.pl-map-section__grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .pl-map-section__grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
        gap: 2.5rem;
    }
}

.pl-map-section__chart-wrap {
    position: relative;
    border: 1px solid var(--pl-border);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgb(21 29 42 / 0.95), rgb(17 25 38 / 0.98));
    overflow: hidden;
    min-height: 420px;
    padding: 1.25rem 1.25rem 1.5rem;
}

.pl-map-section__logo-mask {
    position: absolute;
    left: 1.25rem;
    bottom: 1.5rem;
    z-index: 5;
    width: 72px;
    height: 36px;
    pointer-events: none;
    background: linear-gradient(135deg, rgb(17 25 38 / 0.98) 55%, transparent);
}

.pl-map-section__chart {
    width: 100%;
    height: clamp(320px, 46vh, 460px);
}

#plRegionalMap a[href*="amcharts.com"],
.pl-map-section__chart-wrap a[href*="amcharts.com"],
.pl-map-section__chart-wrap [class*="Logo"],
.pl-map-section__chart-wrap [class*="logo"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.pl-map-section__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid var(--pl-border);
    border-radius: 1.25rem;
    background: var(--pl-card);
    padding: 1.75rem;
    min-height: 100%;
}

.pl-map-section__states {
    flex: 1;
}

.pl-map-section__total-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 4rem);
    line-height: 1;
}

.pl-map-section__total-label {
    color: var(--pl-muted-fg);
    font-size: 0.95rem;
    margin-top: 0.35rem;
}

.pl-map-section__states-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--pl-primary);
    margin-bottom: 0.75rem;
}

.pl-map-section__state-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pl-map-state-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--pl-border);
    border-radius: 999px;
    background: rgb(29 38 53 / 0.65);
    color: var(--pl-fg);
    padding: 0.35rem 0.7rem;
    font-size: 0.82rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.pl-map-state-chip strong {
    color: var(--pl-primary);
    font-weight: 700;
}

.pl-map-state-chip:hover,
.pl-map-state-chip.is-active {
    border-color: rgb(224 210 183 / 0.55);
    background: rgb(224 210 183 / 0.12);
}

.pl-map-section__cta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(39 49 66 / 0.85);
}

.pl-map-section__cta-text {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--pl-muted-fg);
}

.pl-map-section__cta-btn {
    width: 100%;
    justify-content: center;
}

.pl-map-section__cta-link {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.88rem;
    color: var(--pl-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pl-map-section__cta-link:hover {
    opacity: 0.8;
}

.pl-map-section__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow: auto;
}

.pl-map-section__list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0.65rem;
    margin: 0 -0.65rem;
    border-bottom: 1px solid rgb(39 49 66 / 0.65);
    border-radius: 0.5rem;
    font-size: 0.92rem;
    transition: background 0.2s ease;
}

.pl-map-section__list li.is-active {
    background: rgb(224 210 183 / 0.1);
}

.pl-map-section__list-name {
    color: var(--pl-fg);
}

.pl-map-section__list-uf {
    color: var(--pl-primary);
    font-weight: 600;
    flex-shrink: 0;
}

.pl-map-section__more {
    margin-top: 0.75rem;
    color: var(--pl-muted-fg);
    font-size: 0.85rem;
}

.pl-map-section__empty {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About */
.pl-about {
    padding: 5rem 0;
}

.pl-about__intro {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto 3rem;
}

.pl-about__headline {
    margin-bottom: 1.25rem;
}

.pl-about__headline-line {
    display: block;
    white-space: nowrap;
}

.pl-about__subtitle {
    font-size: 1.125rem;
    margin: 0;
}

@media (max-width: 640px) {
    .pl-about__headline {
        font-size: clamp(1.65rem, 7.5vw, 2.25rem);
    }
}

.pl-about__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pl-about__grid { grid-template-columns: 1fr 1fr; }
}

.pl-about__image-stage {
    position: relative;
}

.pl-about__image-stage::before {
    content: '';
    position: absolute;
    inset: -10% -6%;
    z-index: 0;
    background:
        radial-gradient(ellipse 75% 65% at 28% 38%, rgb(224 210 183 / 0.42), transparent 62%),
        radial-gradient(ellipse 55% 45% at 82% 72%, rgb(220 38 38 / 0.18), transparent 58%);
    filter: blur(34px);
    opacity: 0.85;
    animation: plAboutGlowPulse 7s ease-in-out infinite;
    pointer-events: none;
}

.pl-about__image-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgb(224 210 183 / 0.22);
    box-shadow:
        0 0 70px -12px rgb(224 210 183 / 0.55),
        0 0 120px -30px rgb(220 38 38 / 0.2),
        0 25px 50px -12px rgb(0 0 0 / 0.55);
}

.pl-about__image {
    display: block;
    width: 100%;
    height: auto;
}

.pl-about__image-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        115deg,
        transparent 38%,
        rgb(255 255 255 / 0.06) 46%,
        rgb(224 210 183 / 0.24) 50%,
        rgb(255 255 255 / 0.05) 54%,
        transparent 62%
    );
    background-size: 260% 100%;
    animation: plAboutShine 8s ease-in-out infinite;
    pointer-events: none;
}

.pl-about__image-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(to top, rgb(17 25 38 / 0.5), transparent 38%),
        radial-gradient(ellipse 95% 85% at 50% 50%, transparent 52%, rgb(17 25 38 / 0.22) 100%);
    pointer-events: none;
}

@keyframes plAboutGlowPulse {
    0%, 100% { opacity: 0.65; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.03); }
}

@keyframes plAboutShine {
    0%, 100% { background-position: 180% 0; }
    50% { background-position: -80% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .pl-about__image-stage::before,
    .pl-about__image-shine {
        animation: none;
    }
}

.pl-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pl-values h5 { margin: 0 0 0.25rem; font-size: 0.95rem; }
.pl-values p { margin: 0; font-size: 0.875rem; color: var(--pl-muted-fg); }

/* Features */
.pl-features {
    padding: 5rem 0;
}

.pl-features__grid {
    display: grid;
    gap: 1px;
    background: var(--pl-border);
    border-radius: 1.5rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .pl-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .pl-features__grid { grid-template-columns: repeat(3, 1fr); }
}

.pl-feature-card {
    position: relative;
    background: var(--pl-card);
    padding: 2.5rem;
    transition: background 0.3s;
}

.pl-feature-card:hover { background: rgb(21 29 42 / 0.6); }

.pl-feature-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--pl-primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.pl-feature-card:hover .pl-feature-card__icon {
    transform: scale(1.1) rotate(-6deg);
}

.pl-feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.pl-feature-card p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--pl-muted-fg);
    line-height: 1.6;
}

.pl-feature-card__line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(to right, var(--pl-primary), transparent);
    transition: width 0.5s;
}

.pl-feature-card:hover .pl-feature-card__line { width: 100%; }

/* Stats */
.pl-stats {
    position: relative;
    padding: 5rem 0;
    background: rgb(21 29 42 / 0.3);
    border-block: 1px solid var(--pl-border);
    overflow: hidden;
}

.pl-stats__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (min-width: 1024px) {
    .pl-stats__grid { grid-template-columns: repeat(4, 1fr); }
}

.pl-stat {
    text-align: center;
}

.pl-stat__value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
}

.pl-stat__label {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pl-muted-fg);
}

/* Pricing */
.pl-pricing {
    padding: 5rem 0;
}

.pl-pricing__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3.5rem;
}

.pl-pricing__title {
    margin-bottom: 1rem;
}

.pl-pricing__lead {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.6;
}

.pl-pricing__sublead {
    font-size: 1rem;
    margin: 0.75rem 0 0;
    opacity: 0.85;
}

.pl-pricing-plans {
    display: grid;
    gap: 1.5rem;
    margin: 0 0 2.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .pl-pricing-plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }
}

.pl-pricing-plans .pl-price-card {
    width: 100%;
    max-width: none;
}

.pl-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--pl-card);
    border: 1px solid var(--pl-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: transform 0.35s var(--pl-ease), border-color 0.35s, box-shadow 0.35s;
}

.pl-price-card:hover {
    transform: translateY(-6px);
    border-color: rgb(224 210 183 / 0.25);
}

.pl-price-card--featured {
    border-color: rgb(224 210 183 / 0.55);
    background: linear-gradient(to bottom, rgb(224 210 183 / 0.12), var(--pl-card));
    box-shadow: 0 0 60px -10px rgb(224 210 183 / 0.45);
}

.pl-price-card--featured:hover {
    border-color: rgb(224 210 183 / 0.75);
    box-shadow: 0 0 70px -8px rgb(224 210 183 / 0.55);
}

.pl-price-card__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background: var(--pl-primary);
    color: var(--pl-primary-fg);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.pl-price-card__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin: 0 0 0.35rem;
}

.pl-price-card__tagline {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--pl-muted-fg);
}

.pl-price-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.pl-price-card__price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    line-height: 1;
    color: var(--pl-fg);
}

.pl-price-card--featured .pl-price-card__price {
    background: linear-gradient(135deg, #f7f2e8, #e0d2b7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pl-price-card__suffix {
    font-size: 0.95rem;
    color: var(--pl-muted-fg);
}

.pl-price-card__note {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    color: rgb(184 188 196 / 0.75);
}

.pl-price-card__extra {
    margin: 0 0 1.25rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.65rem;
    background: rgb(224 210 183 / 0.1);
    border: 1px solid rgb(224 210 183 / 0.22);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pl-primary);
    line-height: 1.35;
}

.pl-price-card__extra span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgb(184 188 196 / 0.8);
}

.pl-price-card__features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pl-price-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: rgb(244 242 237 / 0.9);
}

.pl-price-card__features i {
    color: var(--pl-primary);
    font-size: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pl-price-card__cta {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.pl-price-card__cta:hover {
    transform: scale(1.02);
}

.pl-price-card__cta--primary {
    background: var(--pl-primary);
    color: var(--pl-primary-fg);
    box-shadow: 0 0 30px -8px rgb(224 210 183 / 0.7);
}

.pl-price-card__cta--ghost {
    background: transparent;
    color: var(--pl-fg);
    border: 1px solid var(--pl-border);
}

.pl-price-card__cta--ghost:hover {
    border-color: rgb(224 210 183 / 0.55);
    background: rgb(224 210 183 / 0.06);
}

.pl-pricing-panel {
    background: linear-gradient(135deg, rgb(21 29 42 / 0.95), rgb(17 25 38 / 0.98));
    border: 1px solid var(--pl-border);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pl-pricing-panel { padding: 2.5rem; }
}

.pl-pricing-panel__head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pl-pricing-panel__head h3 {
    font-size: 1.75rem;
    margin: 0 0 0.35rem;
}

.pl-pricing-panel__head p {
    margin: 0;
    font-size: 0.95rem;
}

.pl-pricing-examples {
    background: rgb(17 25 38 / 0.55);
    border: 1px solid rgb(39 49 66 / 0.5);
    border-radius: 1rem;
    padding: 0.5rem 1.25rem;
}

.pl-pricing-example {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(39 49 66 / 0.55);
}

.pl-pricing-example:last-child { border-bottom: none; }

.pl-pricing-example__title {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.pl-pricing-example__desc {
    font-size: 0.875rem;
}

.pl-pricing-example__meta {
    font-size: 0.75rem;
    color: rgb(184 188 196 / 0.65);
    margin-top: 0.25rem;
}

.pl-pricing-example__value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    white-space: nowrap;
    color: var(--pl-fg);
}

.pl-pricing-example__value.is-free {
    color: #4ade80;
}

.pl-whitelabel {
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgb(224 210 183 / 0.35);
    background:
        linear-gradient(135deg, rgb(224 210 183 / 0.14), rgb(224 210 183 / 0.04)),
        var(--pl-card);
}

.pl-whitelabel__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.pl-whitelabel__icon {
    display: block;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pl-whitelabel__content h3 {
    font-size: 1.65rem;
    margin: 0 0 0.35rem;
}

.pl-whitelabel__content p {
    margin: 0;
    color: var(--pl-muted-fg);
    max-width: 28rem;
    line-height: 1.55;
}

.pl-whitelabel__pricing {
    text-align: center;
    min-width: 10rem;
}

.pl-whitelabel__label {
    display: block;
    font-size: 0.8rem;
    color: var(--pl-muted-fg);
}

.pl-whitelabel__highlight {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.75rem;
    line-height: 1.1;
    color: var(--pl-primary);
    margin: 0.15rem 0;
}

.pl-whitelabel__free {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #86efac;
}

.pl-whitelabel__alt {
    display: block;
    font-size: 0.75rem;
    color: var(--pl-muted-fg);
    margin-top: 0.35rem;
}

.pl-pricing-included {
    margin-bottom: 2.5rem;
}

.pl-pricing-included__title {
    text-align: center;
    font-size: 1.75rem;
    margin: 0 0 1.5rem;
}

.pl-pricing-footer {
    text-align: center;
}

.pl-pricing-footer p {
    margin: 0 0 0.5rem;
}

.pl-pricing-footer .pl-btn {
    margin-top: 1.25rem;
}

.pl-included-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .pl-included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .pl-included-grid { grid-template-columns: repeat(3, 1fr); }
}

.pl-included-item {
    background: var(--pl-card);
    border: 1px solid var(--pl-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.pl-included-item:hover {
    transform: translateY(-4px);
    border-color: rgb(224 210 183 / 0.3);
}

.pl-included-item__icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pl-included-item h4 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.pl-included-item p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* App download */
.pl-app {
    padding: 5rem 0;
    background: rgb(21 29 42 / 0.3);
    border-block: 1px solid var(--pl-border);
}

.pl-app__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pl-app__grid { grid-template-columns: 1fr 1fr; }
}

.pl-app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.pl-app-badges img { height: 44px; width: auto; }

.pl-app__device {
    display: flex;
    justify-content: center;
}

.pl-app__image {
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

/* Contact */
.pl-contact {
    padding: 5rem 0;
}

.pl-contact__grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .pl-contact__grid { grid-template-columns: 1fr 1fr; }
}

.pl-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pl-contact-info__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pl-contact-info__icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgb(224 210 183 / 0.35);
    display: grid;
    place-items: center;
    color: var(--pl-primary);
}

.pl-form {
    background: var(--pl-card);
    border: 1px solid var(--pl-border);
    border-radius: 1rem;
    padding: 2rem;
}

.pl-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(244 242 237 / 0.9);
}

.pl-form input,
.pl-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgb(29 38 53);
    border: 1px solid var(--pl-border);
    border-radius: 0.5rem;
    color: var(--pl-fg);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pl-form input:focus,
.pl-form textarea:focus {
    outline: none;
    border-color: var(--pl-primary);
    box-shadow: 0 0 0 3px rgb(224 210 183 / 0.15);
}

.pl-slide-captcha {
    margin-bottom: 1.25rem;
    padding: 1rem 1.125rem;
    border-radius: 0.75rem;
    border: 1px dashed rgb(224 210 183 / 0.35);
    background: rgb(224 210 183 / 0.06);
}

.pl-slide-captcha__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.875rem !important;
    color: rgb(244 242 237 / 0.92);
}

.pl-slide-captcha__board-wrap {
    position: relative;
    width: min(100%, 300px);
    margin: 0 auto 0.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--pl-border);
    background: rgb(15 20 28);
}

.pl-slide-captcha__canvas {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
    border-radius: 0.5rem;
}

.pl-slide-captcha__refresh {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 3;
    width: 2rem;
    height: 2rem;
    border-radius: 0.4rem;
    border: 1px solid rgb(255 255 255 / 0.2);
    background: rgb(0 0 0 / 0.45);
    color: var(--pl-primary);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.pl-slide-captcha__refresh:hover {
    border-color: var(--pl-primary);
    background: rgb(0 0 0 / 0.65);
}

.pl-slide-captcha__bar {
    position: relative;
    height: 42px;
    width: min(100%, 300px);
    margin: 0 auto;
    background: rgb(29 38 53);
    border-radius: 0.5rem;
    border: 1px solid var(--pl-border);
    overflow: hidden;
    user-select: none;
    touch-action: none;
}

.pl-slide-captcha__bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgb(224 210 183 / 0.14);
    pointer-events: none;
    transition: width 0.05s linear;
}

.pl-slide-captcha__hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2.5rem;
    font-size: 0.8rem;
    color: rgb(244 242 237 / 0.42);
    pointer-events: none;
}

.pl-slide-captcha__handle {
    position: absolute;
    left: 0;
    top: 3px;
    width: 36px;
    height: calc(100% - 6px);
    border-radius: 0.4rem;
    background: var(--pl-primary);
    color: rgb(29 38 53);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 2;
    font-size: 0.95rem;
    touch-action: none;
    transition: background 0.2s, color 0.2s;
}

.pl-slide-captcha__handle:active {
    cursor: grabbing;
}

.pl-slide-captcha.is-solved .pl-slide-captcha__handle {
    background: #22c55e;
    color: #fff;
}

.pl-slide-captcha.is-solved .pl-slide-captcha__hint {
    color: #86efac;
    font-weight: 600;
}

.pl-slide-captcha.is-solved .pl-slide-captcha__bar-fill {
    background: rgb(34 197 94 / 0.2);
}

/* CTA parallax */
.pl-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--pl-bg);
}

.pl-cta__bg {
    position: absolute;
    inset: -15% 0;
    z-index: 0;
    will-change: transform;
}

.pl-cta__bg img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 130%;
    object-fit: cover;
    object-position: center;
}

.pl-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, var(--pl-bg) 0%, rgb(17 25 38 / 0.55) 28%, rgb(17 25 38 / 0.72) 55%, rgb(17 25 38 / 0.92) 82%, var(--pl-bg) 100%);
}

.pl-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1.5rem;
    max-width: 48rem;
    margin-inline: auto;
}

.pl-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.85;
    margin: 0;
}

/* FAQ */
.pl-faq {
    padding: 5rem 0;
    background: rgb(21 29 42 / 0.3);
    border-block: 1px solid var(--pl-border);
}

.pl-faq__list {
    max-width: 48rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pl-faq__item {
    background: var(--pl-card);
    border: 1px solid var(--pl-border);
    border-radius: 1rem;
    overflow: hidden;
}

.pl-faq__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--pl-fg);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

.pl-faq__toggle i { color: var(--pl-primary); transition: transform 0.3s; }
.pl-faq__item.is-open .pl-faq__toggle i { transform: rotate(180deg); }

.pl-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
    color: var(--pl-muted-fg);
    line-height: 1.6;
}

.pl-faq__item.is-open .pl-faq__answer {
    max-height: 20rem;
    padding: 0 1.5rem 1.25rem;
}

/* Footer */
.pl-footer {
    position: relative;
    z-index: 20;
    border-top: 1px solid var(--pl-border);
    background: rgb(21 29 42 / 0.3);
}

.pl-footer__grid {
    display: grid;
    gap: 2.5rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .pl-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.pl-footer__brand img { height: 2rem; margin-bottom: 1rem; }

.pl-footer__brand p {
    color: var(--pl-muted-fg);
    font-size: 0.875rem;
    max-width: 20rem;
    line-height: 1.6;
}

.pl-footer h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.pl-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pl-footer li { margin-bottom: 0.5rem; }

.pl-footer a {
    position: relative;
    z-index: 1;
    color: var(--pl-muted-fg);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.pl-footer a:hover { color: var(--pl-primary); }

.pl-footer__bottom {
    border-top: 1px solid var(--pl-border);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--pl-muted-fg);
}

/* Guide promo strip */
.pl-guide-strip {
    padding: 4rem 0;
    border-bottom: 1px solid var(--pl-border);
}

.pl-guide-strip__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgb(21 29 42), rgb(29 38 53));
    border: 1px solid var(--pl-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .pl-guide-strip__inner { grid-template-columns: 1fr auto; }
}

/* Back to top */
.pl-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--pl-primary);
    color: var(--pl-primary-fg);
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 90;
    pointer-events: none;
}

.pl-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Alert session */
.pl-alert {
    position: relative;
    z-index: 20;
    margin: 1rem auto;
    max-width: 48rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: rgb(220 38 38 / 0.15);
    border: 1px solid rgb(220 38 38 / 0.4);
    color: #fca5a5;
}

/* Modals (Tailwind compat) */
.hidden { display: none !important; }
.flex { display: flex !important; }

/* FAQ — página completa */
.pl-faq-page {
    padding: calc(var(--pl-nav-h) + 3rem) 0 4rem;
    min-height: 100vh;
}

.pl-faq-page__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

.pl-faq-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pl-muted-fg);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.pl-faq-page__back:hover {
    color: var(--pl-primary);
}

.pl-faq-page__group {
    margin-bottom: 2.5rem;
}

.pl-faq-page__category {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pl-primary);
    margin: 0 0 1rem;
    text-align: center;
}

.pl-faq-page__empty {
    text-align: center;
    padding: 4rem 0;
}
