:root {
    --bg: #0f172a;
    --bg-soft: #111827;
    --card: #1f2937;
    --text: #f9fafb;
    --muted: #9ca3af;
    --accent: #f59e0b;
    --accent-dark: #b45309;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(160deg, #0f172a 0%, #0b1222 60%, #0a0f1b 100%);
    color: var(--text);
}

[x-cloak] {
    display: none !important;
}

.pfc-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.75);
    padding: 20px;
}

.pfc-modal-card {
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 18px;
    padding: 20px;
    max-width: 380px;
    width: 100%;
    display: grid;
    gap: 12px;
}

.pfc-modal-card--wide {
    max-width: 900px;
    width: min(95vw, 900px);
}

.pfc-modal-iframe {
    width: 100%;
    height: min(80vh, 720px);
    border: 0;
    border-radius: 14px;
    background: #0b1220;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.pfc-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.pfc-section {
    padding: 56px 0;
}

.pfc-form-field {
    display: grid;
    gap: 6px;
}

.pfc-form-field label {
    font-size: 14px;
    color: var(--muted);
}

.pfc-input,
.pfc-textarea {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    font: inherit;
}

.pfc-textarea {
    resize: vertical;
}

.site-main select,
.site-main select option {
    background-color: rgba(15, 23, 42, 0.95);
    color: #e2e8f0;
}

.pfc-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pfc-profile-card {
    display: grid;
    gap: 16px;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.pfc-profile-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.pfc-profile-card__desc {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--muted);
}

.pfc-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.pfc-profile-item {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.55);
}

.pfc-profile-item .label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
}

.pfc-profile-item .value {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #f8fafc;
    font-weight: 600;
}

.pfc-form-card {
    display: grid;
    gap: 16px;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.45));
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.pfc-form-card__header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    padding-bottom: 12px;
}

.pfc-form-card__head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pfc-form-card__head h3 {
    margin: 0;
}

.pfc-form-card__head p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.pfc-form-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pfc-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px dashed rgba(148, 163, 184, 0.2);
}

.pfc-slider {
    position: relative;
    overflow: hidden !important;
    width: 100%;
    height: auto;
    max-height: none;
    background: #0f172a;
}

.pfc-swiper {
    position: relative;
    width: 100%;
    height: clamp(320px, 60vh, 760px);
    background: #0f172a;
    overflow: hidden;
}

.pfc-swiper .swiper-wrapper,
.pfc-swiper .swiper-slide,
.pfc-swiper-slide {
    height: 100%;
}

.pfc-swiper-slide {
    position: relative;
    display: grid;
    place-items: center;
}

.pfc-swiper__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pfc-swiper__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pfc-swiper__content {
    padding: 24px;
    max-width: 560px;
    margin: 0 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    text-align: center;
    color: #fff;
}

.pfc-swiper .swiper-button-next,
.pfc-swiper .swiper-button-prev {
    color: #f8fafc;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.pfc-swiper .swiper-button-next:hover,
.pfc-swiper .swiper-button-prev:hover {
    opacity: 1;
}

.pfc-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.pfc-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}

.pfc-slider__track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
    height: auto !important;
}

.pfc-slide {
    position: relative;
    flex: 0 0 100%;
    height: auto !important;
    overflow: hidden !important;
    color: #fff;
    background: #0f172a;
}

.pfc-slider__img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    max-height: none;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center;
    display: block;
    background: #0f172a;
}

.pfc-slide__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pfc-slide__content {
    padding: 24px;
    max-width: 560px;
    margin: 0 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    text-align: center;
}

.pfc-slide__content h3 {
    margin: 0 0 8px;
    font-size: 28px;
}

.pfc-slide__content p {
    margin: 0 0 16px;
    opacity: 0.9;
}

.pfc-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    font-size: 24px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}

.pfc-slider__arrow.prev { left: 16px; }
.pfc-slider__arrow.next { right: 16px; }

.pfc-slider__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.pfc-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50px !important;
    border: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.pfc-slider__dot.active {
    background: #f59e0b;
}

.pfc-slider[data-show-dots="0"] .pfc-slider__dots {
    display: none;
}

.pfc-slider[data-show-arrows="0"] .pfc-slider__arrow {
    display: none;
}

@media (max-width: 768px) {
    .pfc-slider__arrow {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    .pfc-slide__content {
        margin: 0 16px;
        max-width: none;
    }
}

.pfc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px !important;
    font-weight: 600;
    background: var(--accent);
    color: #111827;
}

.pfc-btn.outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pfc-btn.pay {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #0f172a;
    border: none;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.25);
}

.pfc-btn.pay:hover {
    background: linear-gradient(135deg, #34d399, #22c55e);
    transform: translateY(-1px);
}

.pfc-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 10px;
    font-size: 18px;
}

.pfc-accordion {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.pfc-accordion summary {
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 6px;
}

.pfc-tabs {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.pfc-tabs__nav {
    display: flex;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.pfc-tabs__nav button {
    border: 0;
    background: transparent;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
}

.pfc-tabs__nav button.active {
    background: var(--accent);
    color: #111827;
}

.pfc-tabs__content {
    padding: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nav {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
}

.nav .menu,
.footer-links .menu {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.menu-item {
    position: relative;
}

.menu-item > ul.menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f172a;
    padding: 12px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:hover > ul.menu {
    display: flex;
}

.custom-header, .custom-footer {
    background: transparent;
}

.btn {
    background: var(--accent);
    color: #111827;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-main {
    padding: 0;
}

.site-main.full-page {
    padding: 0;
}

body.is-full-page {
    background: var(--bg);
}

.hero {
    padding: 48px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.2em;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.05;
    margin: 12px 0;
}

.lead {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-card {
    background: var(--card);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.features {
    padding: 40px 0 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature h4 {
    margin: 0 0 8px;
}

.feature p {
    color: var(--muted);
    margin: 0;
}

.page-content {
    width: 100%;
    max-width: none;
    margin: 0;
}


.site-footer {
    padding: 32px 0 48px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.pfc-header {
    position: relative;
    z-index: 10;
    padding: 18px 0;
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(12px);
}

.pfc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-right: 150px;
}

.pfc-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pfc-nav-header {
    display: none;
}

.pfc-nav-close {
    display: none;
}

.pfc-nav-separator {
    display: none;
}

.pfc-nav-actions {
    display: none;
}

.pfc-nav-social {
    display: none;
}

.pfc-nav-social-source {
    display: none;
}

.pfc-nav-toggle span {
    position: relative;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    display: block;
}

.pfc-nav-toggle span::before,
.pfc-nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.pfc-nav-toggle span::before {
    top: -6px;
}

.pfc-nav-toggle span::after {
    top: 6px;
}

.pfc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pfc-brand .pfc-site-logo {
    width: 52px;
    height: auto;
}

.pfc-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pfc-brand-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pfc-brand-tag {
    font-size: 12px;
    color: var(--muted);
}

.pfc-nav .menu {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
    align-items: center;
}

.pfc-nav .menu-item a {
    font-size: 14px;
    color: #e2e8f0;
    padding: 6px 8px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.pfc-nav .menu-item a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.pfc-footer {
    padding: 50px 0 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.9);
}

.pfc-footer-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pfc-footer h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.pfc-footer p {
    margin: 0 0 8px;
    color: var(--muted);
}

.pfc-footer .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.pfc-footer .menu-item a {
    color: var(--muted);
    font-size: 14px;
}

.pfc-footer .menu-item a:hover {
    color: #fff;
}

.pfc-footer-bottom {
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.4;
    text-align: center;
    flex-direction: column;
}

.pfc-footer-bottom,
.pfc-footer-bottom p,
.pfc-footer-bottom span {
    text-align: center;
}

.pfc-iyzico-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.pfc-iyzico-badge img {
    height: 26px;
    width: auto;
    display: block;
}

.pfc-footer-iyzico {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.pfc-footer-iyzico img {
    height: 28px;
    width: auto;
    opacity: 0.9;
}

.pfc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #e2e8f0;
}

.pfc-table th,
.pfc-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    text-align: left;
}

.pfc-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(226, 232, 240, 0.7);
}

.member-menu {
    position: relative;
    display: inline-flex;
}

.member-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.7);
    color: #f8fafc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.member-trigger span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    letter-spacing: 0.06em;
}

.member-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 8px;
    min-width: 180px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 50;
}

.member-menu:hover .member-dropdown,
.member-menu:focus-within .member-dropdown {
    display: flex;
}

.member-dropdown a,
.member-dropdown button {
    text-align: left;
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px;
    color: #e2e8f0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.member-dropdown a:hover,
.member-dropdown button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .pfc-header-inner {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding-right: 0;
        position: relative;
    }

    .pfc-nav .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pfc-nav-toggle {
        display: inline-flex;
    }

    .pfc-header-actions {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: min(92%, 520px);
        margin: 0 auto;
        background: rgba(15, 23, 42, 0.85);
        border: 0;
        border-radius: 999px;
        padding: 6px 10px;
        backdrop-filter: blur(10px);
        z-index: 20;
    }

    .pfc-header-separator {
        width: min(92%, 520px);
        height: 1px;
        background: rgba(148, 163, 184, 0.2);
        margin: 8px auto 12px;
    }

    .pfc-header-actions .membership-actions,
    .pfc-header-actions .membership-actions-left {
        position: static;
        transform: none;
        padding: 0;
        background: transparent;
        border: 0;
        z-index: auto;
    }

    .custom-header .membership-actions,
    .custom-header .membership-actions-left {
        position: static !important;
        transform: none !important;
    }

    .pfc-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(86vw, 320px);
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        border-right: 1px solid rgba(148, 163, 184, 0.2);
        padding: 24px 20px;
        z-index: 2140;
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        overflow-y: auto;
        pointer-events: none;
    }

    .pfc-nav.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .pfc-nav-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 20px;
        position: relative;
    }

    .pfc-mobile-nav-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .pfc-mobile-nav-brand img {
        width: 120px;
        height: auto;
    }

    .pfc-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(2, 6, 23, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 2130;
    }

    .pfc-nav-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .pfc-nav-close {
        display: inline-flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .pfc-nav-separator {
        display: block;
        height: 1px;
        background: rgba(148, 163, 184, 0.2);
        margin: 20px 0;
    }

    .pfc-nav-separator.header,
    .pfc-nav-separator.menu {
        height: 1px;
        background: rgba(148, 163, 184, 0.2);
        margin: 20px 0;
    }

    .pfc-nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 0;
    }

    .pfc-nav-actions .membership-btn {
        width: auto;
        height: auto;
        padding: 10px 16px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .pfc-nav-actions .membership-btn .btn-text {
        display: inline;
    }

    .pfc-nav-actions .membership-btn .btn-icon {
        display: none;
    }

    .pfc-nav-actions .member-menu .member-dropdown {
        position: static;
        margin-top: 10px;
    }

    .pfc-nav-social {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 14px;
    }

    .pfc-nav-social .pfc-social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .pfc-header {
        position: sticky;
        top: 0;
    }

    .pfc-brand .pfc-site-logo {
        width: 42px;
    }

    body.nav-open .custom-header,
    body.nav-open .pfc-header {
        z-index: 2135;
    }
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .membership-actions,
body.nav-open .membership-actions-left {
    opacity: 0;
    pointer-events: none;
}

.pfc-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pfc-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.pfc-section-head p {
    max-width: 520px;
    color: var(--muted);
    margin: 0;
}

.pfc-grid {
    display: grid;
    gap: 24px;
}

.pfc-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pfc-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pfc-section--soft {
    background: rgba(255, 255, 255, 0.03);
}

.pfc-section--glow {
    background: radial-gradient(circle at top, rgba(30, 41, 59, 0.6), transparent 60%), rgba(15, 23, 42, 0.9);
}

.pfc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pfc-lesson-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .pfc-lesson-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pfc-lesson-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.pfc-lessons-wrap {
    display: grid;
    gap: 16px;
}

.pfc-lesson-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.pfc-lesson-filter {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.75);
    color: #e2e8f0;
    padding: 0 12px;
    border-radius: 50px !important;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.35);
    backdrop-filter: blur(8px);
    text-align: center;
    flex: 1 1 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .pfc-lesson-filters {
        justify-content: center;
    }

    .pfc-lesson-filter {
        flex: 0 0 calc(33.333% - 12px);
        max-width: calc(33.333% - 12px);
        border-radius: 20px !important;
    }
}

@media (max-width: 640px) {
    .pfc-lesson-filters {
        gap: 12px;
    }

    .pfc-lesson-filter {
        flex: 0 0 calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
        border-radius: 20px !important;
    }
}

.pfc-lesson-filter.is-active {
    background: var(--accent);
    color: #111827;
    border-color: transparent;
    border-radius: 50px !important;
}

.pfc-lessons-wrap[data-mode="select"] .pfc-lesson-grid {
    display: none;
}

.pfc-lessons-wrap[data-mode="select"].is-active .pfc-lesson-grid {
    display: grid;
}


.pfc-lesson-card {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    padding: 20px;
    display: grid;
    gap: 10px;
}

.pfc-lesson-warning {
    margin-top: 6px;
    font-size: 12px;
    color: #fca5a5;
}

.pfc-lesson-card h3 {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 18px;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.35);
    margin: 12px 0 14px;
}

.pfc-lesson-branch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    padding: 10px 16px;
    border-radius: 50px !important;
    background: rgba(59, 130, 246, 0.2);
    color: #e2e8f0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(59, 130, 246, 0.35);
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.2);
    margin: 6px 0 10px;
}

.pfc-lesson-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.pfc-lesson-branch {
    text-transform: uppercase;
}

.pfc-lesson-status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
}

.pfc-lesson-status.is-full {
    background: rgba(244, 63, 94, 0.2);
    color: #fecdd3;
}

.pfc-lesson-age {
    font-size: 12px;
    font-weight: 600;
    color: #f8fafc;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.18);
}

.pfc-lesson-instructor {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.pfc-lesson-times {
    display: grid;
    gap: 6px;
    color: #e2e8f0;
    font-size: 14px;
}

.pfc-lesson-times div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.6);
}

.pfc-lesson-times strong {
    color: #f8fafc;
}

.pfc-lesson-footer {
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
}

.pfc-lesson-actions {
    margin-top: 8px;
}

.pfc-btn.disabled,
.pfc-btn[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.55;
    background: rgba(148, 163, 184, 0.25);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.pfc-instructor-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.pfc-instructor-card {
    padding: 14px;
    display: grid;
    gap: 12px;
}

.pfc-instructor-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.pfc-instructor-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: #f8fafc;
}

.pfc-instructor-branches {
    font-size: 13px;
    color: var(--accent);
    margin: 0;
}

.pfc-instructor-bio {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.pfc-map-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.6);
}

.pfc-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.pfc-empty {
    padding: 16px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px dashed rgba(148, 163, 184, 0.25);
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .pfc-section-head {
        align-items: flex-start;
    }
    .pfc-lesson-times div {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 1280px) {
    .pfc-instructor-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
