/* Pathway — وب‌اپ موبایل‌اول (Harvard CS50) */
:root {
    --pll-crimson: #a51c30;
    --pll-crimson-dark: #8b1628;
    --pll-ink: #1e1e1e;
    --pll-muted: #5c5c5c;
    --pll-bg: #f5f5f7;
    --pll-white: #ffffff;
    --pll-heading: 'Dana', system-ui, sans-serif;
    --pll-app-max: 430px;
    --pll-tabbar-h: 3.75rem;
    --pll-safe-bottom: env(safe-area-inset-bottom, 0px);
}

body.pll-landing.pll-webapp {
    margin: 0;
    font-family: var(--pll-heading);
    color: var(--pll-ink);
    background: var(--pll-white);
    -webkit-tap-highlight-color: transparent;
}

/* موبایل: هدر/فوتر سایت مخفی */
.pll-site-chrome {
    display: none;
}

body.pll-landing .mobile-bottom-nav {
    display: none !important;
}

/* پیش‌فرض دسکتاپ: اسکرول عادی صفحه */
.pll-app-shell.mobile-app-shell {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    min-height: 0;
    background: transparent;
}

.pll-app-main {
    display: block;
    overflow: visible;
    height: auto;
    min-height: 0;
    padding-bottom: 0;
}

.pll-site-chrome {
    display: block;
}

/* دسکتاپ: نوار اپ مخفی */
.pll-appbar,
.pll-tabbar {
    display: none !important;
}

/* دسکتاپ */
@media (min-width: 768px) {
    body.pll-landing.pll-webapp {
        background: var(--pll-white);
    }

    .pll-hero {
        min-height: 380px;
        border-radius: 0;
        overflow: hidden;
        margin-top: 0;
    }

    .pll-hero__title {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
    }

    .pll-hero__content {
        padding: 2.5rem 2rem;
    }

    .pll-section {
        padding: 2.5rem clamp(1.25rem, 4vw, 3.5rem);
        margin-bottom: 0;
        max-width: none;
        width: 100%;
    }

    .pll-section--steps,
    .pll-section--courses {
        padding-inline: clamp(1.25rem, 4vw, 3.5rem);
    }

    .pll-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
        margin: 0;
        padding: 0;
        scroll-snap-type: none;
        gap: 1.25rem;
    }

    .pll-step {
        flex: unset;
        scroll-snap-align: unset;
    }

    .pll-course-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .pll-band--role {
        margin-top: 3rem;
        padding: 0 clamp(1.5rem, 5vw, 4rem) 3rem;
    }

    .pll-band--role .pll-band__inner--role {
        max-width: 880px;
        margin-inline: auto;
        padding: 1.75rem 2rem;
    }

    .pll-band--role .pll-band__title {
        font-size: 1.25rem;
    }

    .pll-band--role .pll-band__text {
        font-size: 0.95rem;
    }

    .pll-band__icon-wrap {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.5rem;
        border-radius: 14px;
    }

    .pll-notice {
        max-width: none;
        margin-inline: clamp(1.25rem, 4vw, 3.5rem);
    }

    .pll-site-chrome--foot .site-footer {
        margin-top: 2rem;
    }

    .pll-legal {
        padding-inline: clamp(1.25rem, 4vw, 3.5rem);
    }
}

/* موبایل: قاب وب‌اپ — اسکرول کل صفحه (بدون تله overflow) */
@media (max-width: 767px) {
    html:has(body.pll-landing.pll-webapp) {
        height: auto;
        overflow-x: hidden;
    }

    body.pll-landing.pll-webapp {
        background: #d8d8dc;
        min-height: 100dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(var(--pll-tabbar-h) + var(--pll-safe-bottom));
    }

    .pll-site-chrome {
        display: none;
    }

    .pll-appbar {
        display: grid !important;
        position: sticky;
        top: 0;
        z-index: 40;
    }

    .pll-tabbar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        inset-inline: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        transform: none;
        box-sizing: border-box;
        min-height: calc(var(--pll-tabbar-h) + var(--pll-safe-bottom));
        padding-bottom: max(0.35rem, var(--pll-safe-bottom));
    }

    .pll-app-shell.mobile-app-shell {
        display: block;
        max-width: var(--pll-app-max);
        min-height: 0;
        height: auto;
        overflow: visible;
        background: var(--pll-bg);
        position: relative;
        margin: 0 auto;
        padding-bottom: 0;
    }

    .pll-app-main {
        display: block;
        flex: none;
        height: auto;
        min-height: 0;
        overflow: visible;
        padding-bottom: 0;
        -webkit-overflow-scrolling: touch;
    }
}

/* نوار بالای اپ */
.pll-appbar {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 2.75rem 1fr 2.75rem;
    align-items: center;
    gap: 0.25rem;
    padding: calc(0.5rem + env(safe-area-inset-top, 0px)) 0.65rem 0.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 40;
}

.pll-appbar__back,
.pll-appbar__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--pll-crimson);
    text-decoration: none;
    border-radius: 12px;
    position: relative;
}

.pll-appbar__back:active,
.pll-appbar__action:active {
    background: rgba(165, 28, 48, 0.08);
}

.pll-appbar__back i,
.pll-appbar__action i {
    font-size: 1.35rem;
}

.pll-appbar__title-wrap {
    text-align: center;
    min-width: 0;
}

.pll-appbar__eyebrow {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--pll-crimson);
    letter-spacing: 0.04em;
}

.pll-appbar__title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pll-appbar__slot {
    width: 2.75rem;
}

.pll-appbar__cart-badge {
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.25rem;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
    color: #fff;
    background: var(--pll-crimson);
    border-radius: 999px;
}

.pll-app-main--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.25rem;
    text-align: center;
}

/* نوار پایین اپ */
.pll-tabbar {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 100;
    display: none;
    align-items: stretch;
    justify-content: space-around;
    box-sizing: border-box;
    min-height: var(--pll-tabbar-h);
    padding: 0.35rem 0.25rem;
    padding-bottom: max(0.35rem, var(--pll-safe-bottom));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pll-tabbar__item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 0.2rem 0.15rem;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--pll-muted);
    text-decoration: none;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.pll-tabbar__item i {
    font-size: 1.25rem;
}

.pll-tabbar__item.is-active {
    color: var(--pll-crimson);
}

.pll-tabbar__badge {
    position: absolute;
    top: 0.1rem;
    inset-inline-start: 55%;
    min-width: 0.95rem;
    height: 0.95rem;
    padding: 0 0.2rem;
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 0.95rem;
    text-align: center;
    color: #fff;
    background: var(--pll-crimson);
    border-radius: 999px;
}

.pll-partner {
    margin: 0.75rem 1rem 0.25rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
}

.pll-partner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    max-width: 220px;
    margin: 0 auto;
}

.pll-partner__label {
    margin: 0;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--pll-muted);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.pll-partner__logo {
    display: block;
    width: auto;
    max-width: 130px;
    max-height: 28px;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.92;
}

@media (min-width: 768px) {
    .pll-partner {
        margin: 1rem auto 0.5rem;
        padding: 0.4rem 0;
    }

    .pll-partner__inner {
        flex-direction: row;
        gap: 0.5rem;
        max-width: none;
    }

    .pll-partner__label {
        font-size: 0.68rem;
        white-space: nowrap;
    }

    .pll-partner__logo {
        max-width: 150px;
        max-height: 32px;
    }
}

.pll-legal {
    margin: 0;
    padding: 1rem 1rem 0.5rem;
    font-size: 0.68rem;
    line-height: 1.55;
    color: var(--pll-muted);
    text-align: center;
}

.pll-btn--crimson {
    background: var(--pll-crimson);
    color: #fff;
    border-color: var(--pll-crimson);
}

.pll-container {
    max-width: 100%;
    padding: 0 1rem;
}

/* Hero */
.pll-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pll-crimson-dark) center / cover no-repeat;
    background-image: var(--pll-hero-image);
}

.pll-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 10, 14, 0.55) 0%, rgba(165, 28, 48, 0.75) 100%);
}

.pll-hero__content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 1.75rem 1.15rem;
    text-align: center;
    color: #fff;
}

.pll-hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.9;
}

.pll-hero__title {
    margin: 0 0 0.65rem;
    font-family: var(--pll-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.pll-hero__lead {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.pll-hero__tagline {
    margin: 0 0 1.75rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.pll-hero__actions {
    display: none;
}

/* Buttons */
.pll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
}

.pll-btn--light {
    background: #fff;
    color: var(--pll-crimson);
    border-color: #fff;
}

.pll-btn--light:hover {
    background: #f5f5f5;
}

.pll-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.pll-btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.pll-btn--lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

/* Crimson bands */
.pll-band {
    padding: 2.5rem 1.25rem;
}

.pll-band--compact {
    padding: 1.1rem 1rem;
}

.pll-band--compact .pll-band__inner {
    max-width: 100%;
}

.pll-band--crimson {
    background: var(--pll-crimson);
    color: #fff;
}

/* باکس نقش لرنیتا */
.pll-band--role {
    padding: 1.25rem 1rem 1.5rem;
    background: transparent;
    color: var(--pll-ink);
}

.pll-band__inner--role {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.15rem;
    background: linear-gradient(135deg, #fff 0%, #fdf8f9 100%);
    border: 1px solid rgba(165, 28, 48, 0.12);
    border-right: 4px solid var(--pll-crimson);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(165, 28, 48, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pll-band__icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    background: var(--pll-crimson);
    color: #fff;
    font-size: 1.35rem;
}

.pll-band__content {
    flex: 1;
    min-width: 0;
}

.pll-band--role .pll-band__title {
    font-size: 1.1rem;
    color: var(--pll-crimson);
    margin-bottom: 0.55rem;
}

.pll-band--role .pll-band__text {
    color: var(--pll-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 1;
}

.pll-band__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pll-band__inner--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pll-band__icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pll-band__title {
    margin: 0 0 0.5rem;
    font-family: var(--pll-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.pll-band__title--lg {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.pll-band__text {
    margin: 0;
    line-height: 1.75;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Sections */
.pll-section {
    padding: 1.15rem 1rem;
    background: var(--pll-white);
    margin-bottom: 0.5rem;
}

.pll-section--steps {
    background: var(--pll-white);
}

.pll-section--courses {
    background: var(--pll-bg);
}

.pll-section__head {
    margin-bottom: 2rem;
}

.pll-section__title {
    margin: 0 0 0.5rem;
    font-family: var(--pll-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--pll-ink);
}

.pll-section__title--sm {
    font-size: 1.25rem;
}

.pll-section__sub {
    margin: 0;
    color: var(--pll-muted);
    font-size: 0.9rem;
}

/* Steps — موبایل: اسلاید افقی یک‌سطره | دسکتاپ: سه ستون */
.pll-section--steps .pll-section__title {
    margin-bottom: 1.25rem;
}

.pll-steps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 0.5rem;
    margin: 0 -1rem;
    padding-inline: 1rem;
}

.pll-steps::-webkit-scrollbar {
    display: none;
}

.pll-step {
    flex: 0 0 min(88vw, 300px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: var(--pll-white);
    padding: 1.5rem;
    border: 1px solid #e8e8e8;
    border-top: 4px solid var(--pll-crimson);
    min-height: 100%;
}

/* در وب‌اپ همیشه اسلاید افقی یک‌سطره */

.pll-step__num {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    background: var(--pll-crimson);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.pll-step h3 {
    margin: 0 0 0.5rem;
    font-family: var(--pll-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.pll-step p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--pll-muted);
    line-height: 1.65;
}

/* Course grid — موبایل: ۲ ستون | دسکتاپ: ۴ */
.pll-course-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .pll-course-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.pll-course-card {
    display: flex;
    flex-direction: column;
    background: var(--pll-white);
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.2s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.pll-course-card__body,
.pll-course-card__title,
.pll-course-card__desc,
.pll-course-card__meta,
.pll-course-card__label,
.pll-course-card__price,
.pll-course-card__cart {
    font-feature-settings: 'kern' 1;
    letter-spacing: 0.01em;
}

.pll-course-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.pll-course-card__thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #2a2a2a;
}

.pll-course-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pll-course-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: var(--pll-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--pll-crimson) 0%, #2d5a87 100%);
}

.pll-course-card__step {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--pll-crimson);
    color: #fff;
}

@media (max-width: 639px) {
    .pll-course-card__body {
        padding: 0.6rem 0.55rem 0.7rem;
    }

    .pll-course-card__label {
        font-size: 0.58rem;
        letter-spacing: 0.02em;
    }

    .pll-course-card__title {
        font-size: 0.78rem;
        margin: 0.15rem 0 0.3rem;
        line-height: 1.4;
        font-weight: 700;
    }

    .pll-course-card__desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        margin: 0 0 0.4rem;
        font-size: 0.68rem;
        line-height: 1.5;
        color: var(--pll-muted);
    }

    .pll-course-card__meta {
        font-size: 0.62rem;
        line-height: 1.45;
        margin-bottom: 0.45rem;
    }

    .pll-course-card__price {
        font-size: 0.72rem;
        font-weight: 700;
        margin: 0 0 0.4rem;
    }

    .pll-course-card__cart {
        width: 100%;
        padding: 0.45rem;
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .pll-course-card__step {
        font-size: 0.62rem;
        top: 0.4rem;
        right: 0.4rem;
    }
}

.pll-course-card__body {
    padding: 1.1rem 1.15rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pll-course-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pll-crimson);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pll-course-card__title {
    margin: 0.35rem 0 0.5rem;
    font-family: var(--pll-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
}

.pll-course-card__title a {
    color: var(--pll-ink);
    text-decoration: none;
}

.pll-course-card__title a:hover {
    color: var(--pll-crimson);
}

.pll-course-card__desc {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    color: var(--pll-muted);
    line-height: 1.55;
    flex: 1;
}

@media (min-width: 640px) {
    .pll-course-card__title {
        font-size: 1rem;
    }

    .pll-course-card__desc {
        font-size: 0.75rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .pll-course-card__meta {
        font-size: 0.72rem;
    }

    .pll-course-card__label {
        font-size: 0.65rem;
    }
}

.pll-course-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    font-size: 0.75rem;
    color: var(--pll-muted);
    margin-bottom: 0.75rem;
}

.pll-course-card__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

.pll-course-card__price {
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: auto;
}

.pll-course-card__price small {
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--pll-muted);
}

.pll-course-card__link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pll-crimson);
    text-decoration: none;
}

.pll-course-card__link:hover {
    text-decoration: underline;
}

.pll-course-card__cart {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: var(--pll-crimson);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: auto;
}

.pll-course-card__price {
    margin: 0 0 0.35rem;
    font-weight: 700;
    font-size: 0.78rem;
}

.pll-course-card__cart:hover {
    background: var(--pll-crimson-dark);
}

/* Certificate notice */
.pll-section--notice {
    background: #fafafa;
}

.pll-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-right: 4px solid var(--pll-crimson);
    background: var(--pll-white);
}

.pll-notice .bi-shield-check {
    font-size: 1.75rem;
    color: var(--pll-crimson);
    flex-shrink: 0;
}

.pll-notice h2 {
    margin: 0 0 0.5rem;
    font-family: var(--pll-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.pll-notice p {
    margin: 0;
    line-height: 1.7;
    color: var(--pll-muted);
    font-size: 0.9rem;
}

/* Topic pills */
.pll-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pll-pill {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pll-crimson);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 999px;
}

.pll-section--topics {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

/* Footer */
.pll-footer {
    background: var(--pll-ink);
    color: #aaa;
    padding: 2rem 0;
    font-size: 0.8rem;
}

.pll-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pll-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.pll-404 {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}
