:root {
    --pp-bg: #07090b;
    --pp-bg-soft: #0b0e11;
    --pp-sidebar: #050607;
    --pp-card: #0d1013;
    --pp-card-hover: #111519;
    --pp-border: #20252b;
    --pp-border-soft: #171b20;
    --pp-text: #f4f4f4;
    --pp-text-muted: #9298a1;
    --pp-orange: #ff6400;
    --pp-orange-light: #ff7a1a;
    --pp-orange-dark: #d95100;
    --pp-success: #28a745;
    --pp-danger: #dc3545;
    --pp-warning: #f0ad4e;
    --pp-sidebar-width: 245px;
    --pp-topbar-height: 68px;
}

html {
    font-size: 15px;
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient( circle at 85% 5%, rgba(255, 100, 0, 0.035), transparent 24rem ), var(--pp-bg);
    color: var(--pp-text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ------------------------------
   APP SHELL
------------------------------ */

.app-shell {
    min-height: 100vh;
    display: flex;
}

.app-sidebar {
    width: var(--pp-sidebar-width);
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient( 180deg, #050607 0%, #07090a 100% );
    border-right: 1px solid var(--pp-border-soft);
    z-index: 1000;
}

.app-content {
    margin-left: var(--pp-sidebar-width);
    min-height: 100vh;
    width: calc(100% - var(--pp-sidebar-width));
}

.app-topbar {
    height: var(--pp-topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-bottom: 1px solid var(--pp-border-soft);
    background: rgba(7, 9, 11, 0.92);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 900;
}

.app-main {
    padding: 32px;
    max-width: 1500px;
    margin: 0 auto;
}

/* ------------------------------
   BRAND
------------------------------ */

.brand {
    height: 84px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    text-decoration: none;
    border-bottom: 1px solid var(--pp-border-soft);
}

    .brand:hover {
        text-decoration: none;
    }

.brand-mark {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1;
    color: var(--pp-orange);
    letter-spacing: -5px;
    width: 44px;
}

.brand-name {
    font-family: "Playfair Display", serif;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.1;
}

.brand-subtitle {
    color: #80868f;
    font-size: 10px;
    margin-top: 3px;
}

/* ------------------------------
   SIDEBAR
------------------------------ */

.sidebar-nav {
    padding: 22px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 45px;
    padding: 0 14px;
    color: #c4c8cd;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .sidebar-link:hover {
        color: #ffffff;
        background: #101419;
    }

    .sidebar-link.active {
        color: var(--pp-orange);
        background: #111419;
    }

        .sidebar-link.active::before {
            content: "";
            position: absolute;
            left: -12px;
            top: 0;
            bottom: 0;
            width: 3px;
            border-radius: 0 3px 3px 0;
            background: var(--pp-orange);
        }

.sidebar-icon {
    width: 20px;
    color: inherit;
    text-align: center;
    font-size: 17px;
}

.sidebar-bottom {
    margin-top: auto;
    padding: 15px 12px 18px;
    border-top: 1px solid var(--pp-border-soft);
}

/* ------------------------------
   TOPBAR
------------------------------ */

.topbar-title {
    font-size: 14px;
    color: var(--pp-text-muted);
}

.topbar-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pp-orange);
    box-shadow: 0 0 0 4px rgba(255, 100, 0, 0.12);
}

/* ------------------------------
   TYPOGRAPHY
------------------------------ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    font-weight: 600;
}

h1 {
    font-size: 30px;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 23px;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 19px;
}

.text-muted {
    color: var(--pp-text-muted) !important;
}

a {
    color: var(--pp-orange);
}

    a:hover {
        color: var(--pp-orange-light);
    }

/* ------------------------------
   CARDS
------------------------------ */

.card {
    background: linear-gradient( 145deg, #0e1114, #0b0e11 );
    color: var(--pp-text);
    border: 1px solid var(--pp-border);
    border-radius: 10px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: rgba(255, 255, 255, 0.015);
    border-bottom: 1px solid var(--pp-border);
    color: #ffffff;
    padding: 16px 18px;
}

.card-body {
    padding: 20px;
}

/* ------------------------------
   BUTTONS
------------------------------ */

.btn {
    border-radius: 6px;
    font-weight: 600;
    padding: 9px 16px;
    transition: transform 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: var(--pp-orange);
    border-color: var(--pp-orange);
    color: #ffffff;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background: var(--pp-orange-light);
        border-color: var(--pp-orange-light);
    }

.btn-outline-primary {
    color: var(--pp-orange);
    border-color: var(--pp-orange);
}

    .btn-outline-primary:hover {
        background: var(--pp-orange);
        border-color: var(--pp-orange);
        color: #ffffff;
    }

.btn-secondary {
    background: #1a1e23;
    border-color: #272c32;
}

.btn-outline-secondary {
    color: #c5c9ce;
    border-color: #343a40;
}

    .btn-outline-secondary:hover {
        color: white;
        background: #252a30;
        border-color: #3a4149;
    }

.btn-warning {
    color: #ffffff;
    background: var(--pp-orange);
    border-color: var(--pp-orange);
}

    .btn-warning:hover {
        color: #ffffff;
        background: var(--pp-orange-light);
        border-color: var(--pp-orange-light);
    }

/* ------------------------------
   FORMS
------------------------------ */

.form-control,
.form-select {
    color: var(--pp-text);
    background-color: #0a0d10;
    border: 1px solid #292f35;
    border-radius: 6px;
    min-height: 43px;
}

    .form-control:focus,
    .form-select:focus {
        color: #ffffff;
        background: #0c1013;
        border-color: var(--pp-orange);
        box-shadow: 0 0 0 3px rgba(255, 100, 0, 0.12);
    }

    .form-control::placeholder {
        color: #646b73;
    }

.form-label {
    color: #d5d8dc;
    font-size: 13px;
    font-weight: 500;
}

.form-check-input {
    background-color: #101317;
    border-color: #454b52;
}

    .form-check-input:checked {
        background-color: var(--pp-orange);
        border-color: var(--pp-orange);
    }

    .form-check-input:focus {
        border-color: var(--pp-orange);
        box-shadow: 0 0 0 3px rgba(255, 100, 0, 0.12);
    }

/* ------------------------------
   TABLES
------------------------------ */

.table {
    --bs-table-bg: transparent;
    --bs-table-color: #d9dce0;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.018);
    --bs-table-striped-color: #d9dce0;
    --bs-table-hover-bg: rgba(255, 100, 0, 0.035);
    --bs-table-border-color: var(--pp-border);
    margin-bottom: 0;
}

    .table thead th {
        color: #8f969e;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        border-bottom-width: 1px;
    }

    .table td {
        padding-top: 13px;
        padding-bottom: 13px;
    }

/* ------------------------------
   BADGES
------------------------------ */

.badge {
    font-weight: 600;
    border-radius: 5px;
}

.bg-primary {
    background-color: var(--pp-orange) !important;
}

.bg-light {
    background-color: #181c20 !important;
}

.text-dark {
    color: #e7e9ec !important;
}

/* ------------------------------
   ALERTS
------------------------------ */

.alert {
    border-radius: 8px;
    border: 1px solid var(--pp-border);
    background: #0f1215;
    color: #d9dce0;
}

.alert-info {
    background: rgba(20, 100, 160, 0.08);
    border-color: rgba(70, 140, 190, 0.3);
}

.alert-warning {
    background: rgba(255, 100, 0, 0.07);
    border-color: rgba(255, 100, 0, 0.28);
    color: #f2d4bd;
}

.alert-success {
    background: rgba(40, 167, 69, 0.08);
    border-color: rgba(40, 167, 69, 0.3);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.3);
}

/* ------------------------------
   PROGRESS BAR
------------------------------ */

.progress {
    height: 7px;
    background: #24292e;
    border-radius: 20px;
}

.progress-bar {
    background: linear-gradient( 90deg, var(--pp-orange), var(--pp-orange-light) );
    border-radius: 20px;
}

/* ------------------------------
   USER CARD
------------------------------ */

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--pp-border);
    border-radius: 8px;
    background: #0c0f12;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #20252b;
    color: #ffffff;
    font-weight: 700;
}

.user-info {
    min-width: 0;
    flex: 1;
}

.user-name {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-role {
    color: #737b84;
    font-size: 10px;
}

.logout-button {
    border: 0;
    background: transparent;
    color: #777f88;
    padding: 0;
    font-size: 12px;
}

    .logout-button:hover {
        color: var(--pp-orange);
    }

/* ------------------------------
   EMPTY/UTILITY
------------------------------ */

.border {
    border-color: var(--pp-border) !important;
}

.border-bottom {
    border-bottom-color: var(--pp-border) !important;
}

hr {
    border-color: var(--pp-border);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 991px) {

    :root {
        --pp-sidebar-width: 78px;
    }

    .brand-text,
    .sidebar-link span:not(.sidebar-icon),
    .user-info,
    .logout-label {
        display: none;
    }

    .brand {
        justify-content: center;
        padding: 0;
    }

    .brand-mark {
        width: auto;
        font-size: 28px;
    }

    .sidebar-link {
        justify-content: center;
        padding: 0;
    }

    .sidebar-icon {
        width: auto;
    }

    .app-main {
        padding: 22px;
    }
}

@media (max-width: 576px) {

    :root {
        --pp-sidebar-width: 64px;
    }

    .app-main {
        padding: 16px;
    }

    .app-topbar {
        padding: 0 18px;
    
    }
}

/* =========================================================
   AUTH PAGES
   ========================================================= */

.auth-body {
    margin: 0;
    min-height: 100vh;
    background: #050708;
}

.auth-page {
    min-height: 100vh;
    width: 100%;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    background: radial-gradient( circle at 18% 85%, rgba(255, 100, 0, 0.07), transparent 30rem ), #050708;
}

.auth-brand-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 70px;
    overflow: hidden;
}

.auth-brand-content {
    width: 100%;
    max-width: 520px;
}

.auth-large-mark {
    font-family: "Playfair Display", serif;
    font-size: 78px;
    line-height: 0.9;
    letter-spacing: -12px;
    color: var(--pp-orange);
    margin-bottom: 18px;
}

.auth-brand-title {
    font-family: "Playfair Display", serif;
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 3px;
}

.auth-brand-subtitle {
    color: #a1a6ad;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    margin-bottom: 55px;
}

.auth-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-feature {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 14px;
    align-items: start;
}

.auth-feature-icon {
    color: var(--pp-orange);
    font-size: 22px;
    line-height: 1;
}

.auth-feature-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
}

.auth-feature-description {
    color: #7d848c;
    font-size: 13px;
    line-height: 1.5;
}

.auth-quote {
    margin-top: 55px;
    color: #666d75;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 14px;
    max-width: 400px;
}

.auth-decoration {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
    opacity: 0.55;
    pointer-events: none;
}

    .auth-decoration::before,
    .auth-decoration::after {
        content: "";
        position: absolute;
        width: 650px;
        height: 200px;
        left: 50%;
        bottom: -145px;
        border: 1px solid rgba(255, 100, 0, 0.35);
        border-radius: 50%;
        transform: translateX(-50%) rotate(-8deg);
    }

    .auth-decoration::after {
        bottom: -165px;
        width: 750px;
        transform: translateX(-50%) rotate(9deg);
        border-color: rgba(255, 100, 0, 0.18);
    }

.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0.008), rgba(255, 255, 255, 0.025) );
    border-left: 1px solid #161b20;
}

.auth-card {
    width: 100%;
    max-width: 390px;
    padding: 36px;
    background: linear-gradient( 145deg, #101316, #0c0f12 );
    border: 1px solid #252b31;
    border-radius: 11px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

    .auth-card h1 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        margin-bottom: 8px;
    }

.auth-card-subtitle {
    color: #9298a0;
    font-size: 13px;
    margin-bottom: 28px;
}

.auth-card .form-control {
    min-height: 48px;
    background: #0b0e11;
    color: #ffffff;
    border-color: #30363d;
}

    .auth-card .form-control:focus {
        border-color: var(--pp-orange);
        box-shadow: 0 0 0 3px rgba(255, 100, 0, 0.10);
    }

.auth-card .form-floating > label {
    color: #747b83;
}

.auth-card .btn-primary {
    min-height: 48px;
    font-size: 14px;
    background: linear-gradient( 90deg, #ff5c00, #ff7600 );
    border: none;
}

.auth-link {
    color: var(--pp-orange);
    text-decoration: none;
    font-size: 12px;
}

    .auth-link:hover {
        color: #ff8a3c;
    }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0;
    color: #686f77;
    font-size: 11px;
}

    .auth-divider::before,
    .auth-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #252a2f;
    }

.auth-bottom-text {
    color: #969ca3;
    font-size: 12px;
    text-align: center;
    margin-top: 26px;
}


/* Responsive auth */

@media (max-width: 900px) {

    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-brand-panel {
        display: none;
    }

    .auth-form-panel {
        min-height: 100vh;
        border-left: 0;
        padding: 24px;
    }
}

/* ============================================================
   PRO-PERFORMANTA LOGIN
   ============================================================ */

.pp-login-page {
    min-height: 100vh;
    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(560px, 1.05fr)
        minmax(500px, 0.95fr);

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(13, 35, 46, 0.42),
            transparent 42rem
        ),
        radial-gradient(
            circle at 80% 35%,
            rgba(20, 28, 34, 0.30),
            transparent 40rem
        ),
        linear-gradient(
            135deg,
            #050809 0%,
            #071014 50%,
            #06090b 100%
        );

    overflow: hidden;
}

/* LEFT SIDE */

.pp-login-brand {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 75px;
    overflow: hidden;
    background: transparent;
}
.pp-login-brand-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 590px;
}


/* LOGO */

.pp-login-logo {
    margin-bottom: 54px;
}

.pp-login-logo-mark {
    position: relative;
    width: 120px;
    height: 115px;
    margin-bottom: 18px;
    font-family: "Playfair Display", Georgia, serif;
}

.pp-logo-p1,
.pp-logo-p2 {
    position: absolute;
    top: 0;
    font-size: 96px;
    line-height: 1;
    font-weight: 500;
    color: #ff6500;
}

.pp-logo-p1 {
    left: 0;
}

.pp-logo-p2 {
    left: 30px;
    top: 13px;
}

.pp-login-brand-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #f5f3ef;
}

.pp-login-brand-tagline {
    margin-top: 2px;
    color: #c0c0bf;
    font-size: 16px;
}


/* BENEFITS */

.pp-login-benefits {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.pp-login-benefit {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 16px;
    align-items: center;
}

.pp-benefit-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6500;
    border: 1px solid rgba(255, 101, 0, 0.55);
    border-radius: 7px;
    font-size: 18px;
    font-weight: 600;
}

.pp-benefit-title {
    color: #f2f1ef;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.pp-benefit-description {
    color: #8f959a;
    font-size: 12px;
    line-height: 1.5;
}


/* QUOTE */

.pp-login-quote {
    margin-top: 54px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px;
    font-style: italic;
    color: #7e8182;
    line-height: 1.65;
}


/* DECORATIVE ORANGE LINES */

.pp-login-lines {
    position: absolute;
    left: -70px;
    right: -70px;
    bottom: -140px;
    height: 310px;
    transform: rotate(-6deg);
    pointer-events: none;
}

    .pp-login-lines .line {
        position: absolute;
        left: 0;
        right: 0;
        height: 190px;
        border-top: 1px solid rgba(255, 101, 0, 0.75);
        border-radius: 50%;
    }

    .pp-login-lines .line-1 {
        bottom: 8px;
    }

    .pp-login-lines .line-2 {
        bottom: 22px;
        opacity: 0.65;
    }

    .pp-login-lines .line-3 {
        bottom: 38px;
        opacity: 0.38;
    }

    .pp-login-lines .line-4 {
        bottom: 56px;
        opacity: 0.20;
    }


/* RIGHT SIDE */

.pp-login-form-side {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 55px;
    background: transparent;
}


/* CARD */

.pp-login-card {
    width: 100%;
    max-width: 560px;
    padding: 52px 52px 46px;
    background: linear-gradient( 145deg, rgba(19, 22, 25, 0.96), rgba(13, 16, 19, 0.96) );
    border: 1px solid #2b3035;
    border-radius: 14px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.pp-login-card-header {
    margin-bottom: 33px;
}

    .pp-login-card-header h1 {
        margin: 0 0 8px;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 36px;
        font-weight: 500;
        color: #f7f4ef;
        letter-spacing: -0.02em;
    }

    .pp-login-card-header p {
        margin: 0;
        color: #b4b5b6;
        font-size: 14px;
    }


/* FIELDS */

.pp-field {
    margin-bottom: 23px;
}

    .pp-field > label,
    .pp-password-label label {
        display: block;
        margin-bottom: 9px;
        color: #dedddd;
        font-size: 13px;
        font-weight: 500;
    }

.pp-login-card .form-control {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    color: #f7f7f7;
    background: #0d1012;
    border: 1px solid #30353a;
    border-radius: 7px;
    font-size: 15px;
}

    .pp-login-card .form-control::placeholder {
        color: #686d72;
    }

    .pp-login-card .form-control:focus {
        color: white;
        background: #0e1114;
        border-color: #ff6500;
        box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.10);
    }

.pp-password-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pp-forgot-link {
    margin-bottom: 9px;
    color: #ff6500;
    font-size: 12px;
    text-decoration: none;
}

    .pp-forgot-link:hover {
        color: #ff8439;
    }

.pp-password-wrapper {
    position: relative;
}

    .pp-password-wrapper .form-control {
        padding-right: 52px;
    }

.pp-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #8e9499;
    font-size: 18px;
    cursor: pointer;
}

    .pp-password-toggle:hover {
        color: #ffffff;
    }


/* REMEMBER */

.pp-remember-row {
    margin-top: -3px;
    margin-bottom: 25px;
}

.pp-check-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #bfc2c4;
    font-size: 12px;
    cursor: pointer;
}

    .pp-check-label .form-check-input {
        margin: 0;
        width: 17px;
        height: 17px;
        border-color: #555b61;
        background-color: #111417;
    }

        .pp-check-label .form-check-input:checked {
            background-color: #ff6500;
            border-color: #ff6500;
        }


/* LOGIN BUTTON */

.pp-login-submit {
    width: 100%;
    min-height: 58px;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient( 90deg, #ff5c00, #ff7620 );
    box-shadow: 0 8px 30px rgba(255, 101, 0, 0.11);
}

    .pp-login-submit:hover,
    .pp-login-submit:focus {
        color: white;
        background: linear-gradient( 90deg, #ff6b0a, #ff8330 );
    }


/* SOCIAL LOGIN */

.pp-auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 30px 0 22px;
    color: #85898d;
    font-size: 11px;
}

    .pp-auth-divider::before,
    .pp-auth-divider::after {
        content: "";
        height: 1px;
        flex: 1;
        background: #282d31;
    }

.pp-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pp-social-button {
    min-height: 47px;
    border: 1px solid #2d3237;
    border-radius: 6px;
    background: #101316;
    color: #e5e5e5;
    font-size: 13px;
    font-weight: 500;
}

    .pp-social-button:hover {
        background: #161a1e;
        border-color: #3c4248;
    }


/* REGISTER */

.pp-create-account {
    margin-top: 30px;
    text-align: center;
    color: #a4a7aa;
    font-size: 12px;
}

    .pp-create-account a {
        margin-left: 4px;
        color: #ff6500;
        font-weight: 600;
        text-decoration: none;
    }

        .pp-create-account a:hover {
            color: #ff8439;
        }

.pp-validation {
    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .pp-login-page {
        grid-template-columns: minmax(400px, 0.9fr) minmax(420px, 1.1fr);
    }

    .pp-login-brand {
        padding: 50px 45px;
    }

    .pp-login-form-side {
        padding: 40px;
    }
}

@media (max-width: 850px) {

    .pp-login-page {
        display: block;
    }

    .pp-login-brand {
        display: none;
    }

    .pp-login-form-side {
        min-height: 100vh;
        padding: 24px;
    }

    .pp-login-card {
        max-width: 460px;
        padding: 36px 28px;
    }
}

.pp-login-card input:-webkit-autofill,
.pp-login-card input:-webkit-autofill:hover,
.pp-login-card input:-webkit-autofill:focus,
.pp-login-card input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px #0d1012 inset !important;
    box-shadow: 0 0 0 1000px #0d1012 inset !important;
    transition: background-color 9999s ease-in-out 0s;
}


/* ============================================================
   PRO-PERFORMANTA REGISTER
   ============================================================ */

.pp-register-page {
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(480px, 0.88fr) minmax(620px, 1.12fr);
    background: radial-gradient( circle at 20% 20%, rgba(13, 35, 46, 0.42), transparent 42rem ), radial-gradient( circle at 80% 35%, rgba(20, 28, 34, 0.30), transparent 40rem ), linear-gradient( 135deg, #050809 0%, #071014 50%, #06090b 100% );
    overflow: hidden;
}


.pp-register-brand {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 65px;
    overflow: hidden;
    background: transparent;
}

.pp-register-brand-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 520px;
}


.pp-register-copy {
    margin-bottom: 42px;
}

    .pp-register-copy h2 {
        margin-bottom: 12px;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 29px;
        font-weight: 500;
        line-height: 1.25;
        color: #f4f1ec;
    }

    .pp-register-copy p {
        max-width: 440px;
        margin: 0;
        color: #92989e;
        font-size: 13px;
        line-height: 1.7;
    }


.pp-register-form-side {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 50px;
    background: transparent;
}


.pp-register-card {
    width: 100%;
    max-width: 680px;
    padding: 38px 44px;
    background: linear-gradient( 145deg, rgba(19, 22, 25, 0.97), rgba(13, 16, 19, 0.97) );
    border: 1px solid #2b3035;
    border-radius: 14px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}


.pp-register-card-header {
    margin-bottom: 27px;
}

    .pp-register-card-header h1 {
        margin: 0 0 7px;
        font-family: "Playfair Display", Georgia, serif;
        color: #f7f4ef;
        font-size: 30px;
        font-weight: 500;
    }

    .pp-register-card-header p {
        margin: 0;
        color: #a7acb0;
        font-size: 13px;
    }


.pp-register-card .pp-field {
    margin-bottom: 17px;
}

    .pp-register-card .pp-field > label {
        display: block;
        margin-bottom: 7px;
        color: #dedddd;
        font-size: 12px;
        font-weight: 500;
    }


.pp-register-card .form-control,
.pp-register-card .form-select {
    min-height: 47px;
    padding: 0 14px;
    color: #f7f7f7;
    background: #0d1012;
    border: 1px solid #30353a;
    border-radius: 7px;
    font-size: 13px;
}

    .pp-register-card .form-control:focus,
    .pp-register-card .form-select:focus {
        color: #ffffff;
        background: #0e1114;
        border-color: #ff6500;
        box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.10);
    }


.pp-register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* ROLE SELECTOR */

.pp-role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pp-role-option {
    cursor: pointer;
}

    .pp-role-option > input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.pp-role-card {
    min-height: 67px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #0d1012;
    border: 1px solid #30353a;
    border-radius: 8px;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.pp-role-option:hover .pp-role-card {
    border-color: #464d54;
    background: #111519;
}

.pp-role-option > input:checked + .pp-role-card {
    border-color: #ff6500;
    background: rgba(255, 101, 0, 0.07);
    box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.07);
}

.pp-role-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 7px;
    color: #ff6500;
    border: 1px solid rgba(255, 101, 0, 0.35);
}

.pp-role-card strong {
    display: block;
    margin-bottom: 2px;
    color: #eeeeee;
    font-size: 13px;
}

.pp-role-card small {
    display: block;
    color: #7e858c;
    font-size: 10px;
}


/* AUTOFILL */

.pp-register-card input:-webkit-autofill,
.pp-register-card input:-webkit-autofill:hover,
.pp-register-card input:-webkit-autofill:focus,
.pp-register-card input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px #0d1012 inset !important;
    box-shadow: 0 0 0 1000px #0d1012 inset !important;
    transition: background-color 9999s ease-in-out 0s;
}


@media (max-width: 1050px) {

    .pp-register-page {
        grid-template-columns: minmax(390px, 0.8fr) minmax(570px, 1.2fr);
    }

    .pp-register-brand {
        padding: 45px;
    }

    .pp-register-form-side {
        padding: 25px 35px;
    }
}


@media (max-width: 900px) {

    .pp-register-page {
        display: block;
    }

    .pp-register-brand {
        display: none;
    }

    .pp-register-form-side {
        min-height: 100vh;
        padding: 24px;
    }

    .pp-register-card {
        max-width: 680px;
        padding: 32px 26px;
    }
}


@media (max-width: 600px) {

    .pp-register-grid,
    .pp-role-selector {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   PRO-PERFORMANTA APPLICATION LAYOUT
   ============================================================ */

html,
body {
    min-height: 100%;
}

.pp-app-body {
    margin: 0;
    background: radial-gradient( circle at 90% 0%, rgba(255, 101, 0, 0.035), transparent 32rem ), #0a0d0f;
    color: #e9e9e9;
}


/* ============================================================
   APP SHELL
   ============================================================ */

.pp-app-shell {
    min-height: 100vh;
    display: flex;
}


/* ============================================================
   SIDEBAR
   ============================================================ */

.pp-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 270px;
    display: flex;
    flex-direction: column;
    background: linear-gradient( 180deg, #0d1114 0%, #090c0e 100% );
    border-right: 1px solid #202529;
    box-shadow: 14px 0 45px rgba(0, 0, 0, 0.16);
}


/* SIDEBAR BRAND */

.pp-sidebar-header {
    padding: 27px 24px 25px;
    border-bottom: 1px solid #1c2125;
}

.pp-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: inherit;
    text-decoration: none;
}

    .pp-sidebar-brand:hover {
        color: inherit;
    }


.pp-sidebar-logo {
    position: relative;
    width: 48px;
    height: 45px;
    flex: 0 0 48px;
    font-family: "Playfair Display", Georgia, serif;
}

.pp-sidebar-logo-p1,
.pp-sidebar-logo-p2 {
    position: absolute;
    top: -5px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
    color: #ff6500;
}

.pp-sidebar-logo-p1 {
    left: 0;
}

.pp-sidebar-logo-p2 {
    left: 14px;
}


.pp-sidebar-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .pp-sidebar-brand-text strong {
        color: #f1efeb;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 17px;
        font-weight: 500;
        white-space: nowrap;
    }

    .pp-sidebar-brand-text span {
        margin-top: 2px;
        color: #757d83;
        font-size: 9px;
        letter-spacing: 0.02em;
    }


/* NAV */

.pp-sidebar-nav {
    flex: 1;
    padding: 22px 15px;
    overflow-y: auto;
}

.pp-sidebar-section-label {
    margin: 0 11px 10px;
    color: #555e65;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}


.pp-sidebar-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 47px;
    margin-bottom: 5px;
    padding: 10px 12px;
    color: #939ba1;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 7px;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

    .pp-sidebar-link:hover {
        color: #ededed;
        background: #12171a;
        border-color: #20272b;
    }

    .pp-sidebar-link.active {
        color: #ffffff;
        background: linear-gradient( 90deg, rgba(255, 101, 0, 0.14), rgba(255, 101, 0, 0.035) );
        border-color: rgba(255, 101, 0, 0.28);
    }

        .pp-sidebar-link.active::before {
            content: "";
            position: absolute;
            left: -16px;
            top: 10px;
            bottom: 10px;
            width: 3px;
            border-radius: 0 3px 3px 0;
            background: #ff6500;
        }


.pp-sidebar-icon {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 29px;
    color: #a8afb4;
    font-size: 16px;
    border-radius: 6px;
}

.pp-sidebar-link.active
.pp-sidebar-icon {
    color: #ff6b12;
}


/* SIDEBAR FOOTER */

.pp-sidebar-footer {
    padding: 14px 15px 19px;
    border-top: 1px solid #1c2125;
}


/* ============================================================
   MAIN AREA
   ============================================================ */

.pp-app-main {
    width: calc(100% - 270px);
    min-height: 100vh;
    margin-left: 270px;
}


/* ============================================================
   TOPBAR
   ============================================================ */

.pp-topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 0 34px;
    background: rgba(10, 13, 15, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #202529;
}


.pp-topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pp-topbar-page-title {
    color: #e9e7e3;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 500;
}


.pp-topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}


.pp-topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pp-topbar-avatar {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ff7729;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 101, 0, 0.08);
    border: 1px solid rgba(255, 101, 0, 0.34);
}


.pp-topbar-user-data {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.pp-topbar-user-email {
    color: #d9dbdc;
    font-size: 12px;
    font-weight: 500;
}

.pp-topbar-user-role {
    color: #697178;
    font-size: 10px;
}


.pp-topbar-logout {
    min-height: 34px;
    padding: 0 13px;
    color: #9ca3a8;
    background: transparent;
    border: 1px solid #2a3034;
    border-radius: 6px;
    font-size: 11px;
    transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

    .pp-topbar-logout:hover {
        color: #f0f0f0;
        border-color: #41484d;
        background: #111619;
    }


/* ============================================================
   CONTENT
   ============================================================ */

.pp-page-content {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 38px 42px 55px;
}


/* ============================================================
   COMMON PAGE COMPONENTS
   ============================================================ */

.pp-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 30px;
}

.pp-page-heading {
    margin: 0 0 7px;
    color: #f2f0ec;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 500;
}

.pp-page-subtitle {
    margin: 0;
    color: #777f85;
    font-size: 13px;
}


/* COMMON CARD */

.pp-card {
    background: linear-gradient( 145deg, #111518, #0e1214 );
    border: 1px solid #252b2f;
    border-radius: 10px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}


/* ORANGE BUTTON */

.pp-btn-primary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 17px;
    color: #ffffff;
    background: linear-gradient( 90deg, #ff5e00, #ff7827 );
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.10);
}

    .pp-btn-primary:hover {
        color: #ffffff;
        filter: brightness(1.04);
    }


/* ============================================================
   MOBILE
   ============================================================ */

.pp-sidebar-mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #d9d9d9;
    background: #111619;
    border: 1px solid #282f33;
    border-radius: 6px;
}


@media (max-width: 1000px) {

    .pp-sidebar {
        transform: translateX(-100%);
        transition: transform 0.2s ease;
    }

        .pp-sidebar.pp-sidebar-open {
            transform: translateX(0);
        }

    .pp-app-main {
        width: 100%;
        margin-left: 0;
    }

    .pp-sidebar-mobile-toggle {
        display: block;
    }
}


@media (max-width: 700px) {

    .pp-topbar {
        padding: 0 18px;
    }

    .pp-topbar-user-data {
        display: none;
    }

    .pp-page-content {
        padding: 25px 18px 40px;
    }

    .pp-page-heading {
        font-size: 27px;
    }
}



.pp-sidebar-section-gap {
    margin-top: 28px;
}

.pp-sidebar-footer form {
    margin: 0;
}

.pp-sidebar-logout {
    width: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    color: #858d93;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 12px;
    text-align: left;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

    .pp-sidebar-logout:hover {
        color: #ededed;
        background: #12171a;
        border-color: #20272b;
    }

/* ============================================================
   PUBLIC LAYOUT
   ============================================================ */

.pp-public-body {
    min-height: 100vh;
    margin: 0;
    color: #f3f1ed;
    background: radial-gradient( circle at 15% 10%, rgba(18, 42, 51, 0.32), transparent 38rem ), linear-gradient( 135deg, #050809 0%, #081014 55%, #06090b 100% );
}


.pp-public-header {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 55px;
    border-bottom: 1px solid #202529;
    background: rgba(7, 10, 12, 0.82);
    backdrop-filter: blur(14px);
}


/* BRAND */

.pp-public-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

    .pp-public-brand:hover {
        color: inherit;
    }


.pp-public-logo {
    position: relative;
    width: 51px;
    height: 49px;
    flex: 0 0 51px;
    font-family: "Playfair Display", Georgia, serif;
}


.pp-public-logo-p1,
.pp-public-logo-p2 {
    position: absolute;
    top: -4px;
    color: #ff6500;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 51px;
    font-weight: 500;
    line-height: 1;
}

.pp-public-logo-p1 {
    left: 0;
}

.pp-public-logo-p2 {
    left: 15px;
}


.pp-public-brand-text {
    display: flex;
    flex-direction: column;
}

    .pp-public-brand-text strong {
        color: #f4f1ec;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 19px;
        font-weight: 500;
    }

    .pp-public-brand-text span {
        margin-top: 2px;
        color: #777f84;
        font-size: 10px;
    }


/* ACTIONS */

.pp-public-actions {
    display: flex;
    align-items: center;
    gap: 11px;
}


.pp-public-login,
.pp-public-register {
    min-height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}


.pp-public-login {
    color: #d3d5d6;
    background: transparent;
    border: 1px solid #30363a;
}

    .pp-public-login:hover {
        color: #ffffff;
        background: #111619;
        border-color: #464d51;
    }


.pp-public-register {
    color: #ffffff;
    background: linear-gradient( 90deg, #ff5e00, #ff7929 );
    border: 1px solid transparent;
}

    .pp-public-register:hover {
        color: #ffffff;
        filter: brightness(1.05);
    }


.pp-public-content {
    min-height: calc(100vh - 82px);
}


@media (max-width: 650px) {

    .pp-public-header {
        padding: 0 20px;
    }

    .pp-public-brand-text span {
        display: none;
    }
}


/* ============================================================
   PRO-PERFORMANTA PUBLIC HOME
   ============================================================ */

.pp-home {
    overflow: hidden;
}


/* ============================================================
   HERO
   ============================================================ */

.pp-home-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 80px 6vw 95px;
    background: radial-gradient( circle at 16% 22%, rgba(16, 44, 54, 0.28), transparent 34rem ), radial-gradient( circle at 86% 34%, rgba(255, 101, 0, 0.055), transparent 30rem );
}

.pp-home-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(480px, 1.05fr) minmax(470px, 0.95fr);
    gap: 85px;
    align-items: center;
}


.pp-home-eyebrow,
.pp-home-kicker {
    color: #ff6a10;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}


.pp-home-hero-copy h1 {
    max-width: 760px;
    margin: 20px 0 22px;
    color: #f4f1eb;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

    .pp-home-hero-copy h1 span {
        color: #ff6a10;
    }


.pp-home-lead {
    max-width: 690px;
    margin: 0;
    color: #949ca2;
    font-size: 16px;
    line-height: 1.8;
}


.pp-home-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}


.pp-home-primary-cta,
.pp-home-secondary-cta {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}


.pp-home-primary-cta {
    color: #ffffff;
    background: linear-gradient( 90deg, #ff5e00, #ff7a2b );
    box-shadow: 0 12px 35px rgba(255, 101, 0, 0.12);
}

    .pp-home-primary-cta:hover {
        color: #ffffff;
        filter: brightness(1.05);
    }


.pp-home-secondary-cta {
    color: #d8dadd;
    background: #101417;
    border: 1px solid #30363a;
}

    .pp-home-secondary-cta:hover {
        color: #ffffff;
        border-color: #474e53;
        background: #14191c;
    }


.pp-home-hero-meta {
    display: flex;
    gap: 45px;
    margin-top: 55px;
}

    .pp-home-hero-meta div {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .pp-home-hero-meta strong {
        color: #e8e7e4;
        font-size: 12px;
    }

    .pp-home-hero-meta span {
        color: #616a70;
        font-size: 10px;
    }


/* ============================================================
   CAROUSEL
   ============================================================ */

.pp-home-carousel {
    width: 100%;
}

    .pp-home-carousel .carousel {
        width: 100%;
    }

.pp-carousel-card {
    min-height: 550px;
    padding: 46px 48px 58px;
    background: linear-gradient( 145deg, rgba(18, 22, 25, 0.98), rgba(11, 15, 17, 0.98) );
    border: 1px solid #2a3034;
    border-radius: 16px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}


.pp-carousel-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pp-carousel-badge {
    padding: 7px 10px;
    color: #ff7526;
    background: rgba(255, 101, 0, 0.065);
    border: 1px solid rgba(255, 101, 0, 0.25);
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.pp-carousel-step {
    color: #353d42;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
}


.pp-carousel-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
    color: #ff6a10;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
    background: rgba(255, 101, 0, 0.055);
    border: 1px solid rgba(255, 101, 0, 0.21);
    border-radius: 12px;
}


.pp-carousel-card h2 {
    max-width: 450px;
    margin: 28px 0 15px;
    color: #f2efea;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.15;
}


.pp-carousel-card > p {
    max-width: 470px;
    color: #899198;
    font-size: 13px;
    line-height: 1.75;
}


.pp-carousel-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 27px;
}

    .pp-carousel-mini-list div {
        display: flex;
        gap: 10px;
        color: #b7bcc0;
        font-size: 12px;
    }

    .pp-carousel-mini-list span {
        color: #ff6a10;
    }


.pp-home-carousel
.carousel-indicators {
    bottom: 18px;
}

    .pp-home-carousel
    .carousel-indicators button {
        width: 24px;
        height: 2px;
        margin: 0 4px;
        background-color: #757d82;
        border: none;
    }

    .pp-home-carousel
    .carousel-indicators .active {
        background-color: #ff6500;
    }


.pp-home-carousel
.carousel-control-prev,
.pp-home-carousel
.carousel-control-next {
    width: 9%;
}

.pp-home-carousel
.carousel-control-prev-icon,
.pp-home-carousel
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}


/* DECORATIVE LINES */

.pp-home-hero-lines {
    position: absolute;
    left: -3vw;
    right: 42%;
    bottom: 5px;
    height: 100px;
    opacity: 0.35;
    pointer-events: none;
}

    .pp-home-hero-lines span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 90px;
        border-top: 1px solid rgba(255, 101, 0, 0.65);
        border-radius: 50%;
    }

        .pp-home-hero-lines span:nth-child(1) {
            top: 0;
        }

        .pp-home-hero-lines span:nth-child(2) {
            top: 18px;
        }

        .pp-home-hero-lines span:nth-child(3) {
            top: 36px;
        }


/* ============================================================
   GENERIC SECTION
   ============================================================ */

.pp-home-section {
    padding: 110px 6vw;
    border-top: 1px solid #191e21;
}

.pp-home-section-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}


    .pp-home-section-header h2,
    .pp-home-feature-copy h2,
    .pp-home-final-cta h2 {
        margin: 14px 0 17px;
        color: #f2efea;
        font-family: "Playfair Display", Georgia, serif;
        font-size: clamp(35px, 4vw, 50px);
        font-weight: 500;
        line-height: 1.1;
    }


    .pp-home-section-header p,
    .pp-home-feature-copy > p,
    .pp-home-final-cta p {
        color: #838b91;
        font-size: 14px;
        line-height: 1.8;
    }


/* ============================================================
   PROCESS
   ============================================================ */

.pp-process-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pp-process-card {
    min-height: 260px;
    padding: 30px;
    background: linear-gradient( 145deg, #111518, #0d1113 );
    border: 1px solid #242a2e;
    border-radius: 11px;
}


.pp-process-number {
    color: #ff6a10;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
}


.pp-process-card h3 {
    margin: 58px 0 12px;
    color: #ededeb;
    font-size: 18px;
}

.pp-process-card p {
    margin: 0;
    color: #747d83;
    font-size: 12px;
    line-height: 1.75;
}


/* ============================================================
   FEATURE SECTIONS
   ============================================================ */

.pp-home-feature-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 120px 6vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}

    .pp-home-feature-section +
    .pp-home-feature-section {
        border-top: 1px solid #191e21;
    }


.pp-home-feature-copy {
    max-width: 590px;
}


.pp-home-feature-list {
    display: grid;
    gap: 24px;
    margin-top: 38px;
}


    .pp-home-feature-list > div {
        display: flex;
        gap: 18px;
    }

        .pp-home-feature-list > div > span {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 35px;
            color: #ff6a10;
            background: rgba(255, 101, 0, 0.055);
            border: 1px solid rgba(255, 101, 0, 0.22);
            border-radius: 7px;
            font-size: 10px;
        }


    .pp-home-feature-list strong {
        color: #e3e4e3;
        font-size: 13px;
    }


    .pp-home-feature-list p {
        margin: 4px 0 0;
        color: #747c82;
        font-size: 11px;
        line-height: 1.6;
    }


/* ============================================================
   DASHBOARD PREVIEW
   ============================================================ */

.pp-dashboard-preview,
.pp-teacher-preview {
    padding: 35px;
    background: linear-gradient( 145deg, #111619, #0d1113 );
    border: 1px solid #282e32;
    border-radius: 14px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
}


.pp-dashboard-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #242a2e;
}

    .pp-dashboard-preview-header div:first-child {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .pp-dashboard-preview-header small {
        color: #ff6a10;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.15em;
    }

    .pp-dashboard-preview-header strong {
        color: #eeeeec;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 23px;
    }


.pp-preview-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7422;
    background: rgba(255, 101, 0, 0.07);
    border: 1px solid rgba(255, 101, 0, 0.28);
    border-radius: 50%;
    font-size: 12px;
}


.pp-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

    .pp-preview-stats div {
        min-height: 100px;
        padding: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #0b0f11;
        border: 1px solid #23292d;
        border-radius: 8px;
    }

    .pp-preview-stats span {
        color: #697178;
        font-size: 9px;
    }

    .pp-preview-stats strong {
        color: #f0eeeb;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 25px;
    }


.pp-preview-progress {
    margin-top: 23px;
    padding: 20px;
    background: #0b0f11;
    border: 1px solid #23292d;
    border-radius: 8px;
}

.pp-preview-progress-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #9ca2a6;
    font-size: 10px;
}

    .pp-preview-progress-title strong {
        color: #ff7321;
    }

.pp-preview-progress-track {
    height: 6px;
    overflow: hidden;
    background: #202629;
    border-radius: 999px;
}

    .pp-preview-progress-track div {
        height: 100%;
        background: linear-gradient( 90deg, #ff5c00, #ff7928 );
        border-radius: inherit;
    }


.pp-preview-tests {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

    .pp-preview-tests div {
        min-height: 47px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        color: #979ea3;
        background: #0b0f11;
        border: 1px solid #202629;
        border-radius: 7px;
        font-size: 10px;
    }

    .pp-preview-tests strong {
        color: #e9e8e5;
    }


/* ============================================================
   TEACHER PREVIEW
   ============================================================ */

.pp-teacher-preview-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #242a2e;
}

    .pp-teacher-preview-header span {
        display: block;
        margin-bottom: 8px;
        color: #ff6a10;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.15em;
    }

    .pp-teacher-preview-header strong {
        color: #eeeeec;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 24px;
    }


.pp-teacher-preview-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #1d2225;
    font-size: 10px;
}

    .pp-teacher-preview-row span {
        color: #737c82;
    }

    .pp-teacher-preview-row strong {
        color: #cdd0d2;
    }


.pp-teacher-preview-problems {
    display: grid;
    gap: 9px;
    margin-top: 22px;
}

    .pp-teacher-preview-problems div {
        min-height: 48px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 14px;
        color: #a0a6aa;
        background: #0b0f11;
        border: 1px solid #22282c;
        border-radius: 7px;
        font-size: 10px;
    }

    .pp-teacher-preview-problems span {
        width: 27px;
        height: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff7020;
        background: rgba(255, 101, 0, 0.05);
        border: 1px solid rgba(255, 101, 0, 0.17);
        border-radius: 5px;
    }


.pp-teacher-preview-button {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 23px;
    color: #fff;
    background: linear-gradient( 90deg, #ff5f00, #ff7828 );
    border-radius: 7px;
    font-size: 11px;
    font-weight: 650;
}


/* ============================================================
   STANDARD TESTS BAND
   ============================================================ */

.pp-home-dark-band {
    padding: 110px 6vw;
    background: linear-gradient( 180deg, #0b1012, #090d0f );
    border-top: 1px solid #1e2327;
    border-bottom: 1px solid #1e2327;
}


.pp-standard-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}


.pp-standard-card {
    min-height: 220px;
    padding: 25px;
    background: #0d1214;
    border: 1px solid #242a2e;
    border-radius: 10px;
}


.pp-standard-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.055);
    border: 1px solid rgba(255, 101, 0, 0.2);
    border-radius: 8px;
    font-size: 15px;
}


.pp-standard-card h3 {
    margin: 38px 0 9px;
    color: #e6e5e2;
    font-size: 15px;
}

.pp-standard-card p {
    margin: 0;
    color: #70797f;
    font-size: 11px;
    line-height: 1.65;
}


/* ============================================================
   PRICING
   ============================================================ */

.pp-pricing-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 20px;
}


.pp-pricing-card,
.pp-pricing-note {
    padding: 37px;
    border-radius: 13px;
}


.pp-pricing-card {
    background: linear-gradient( 145deg, #121719, #0d1113 );
    border: 1px solid rgba(255, 101, 0, 0.29);
}


.pp-pricing-label {
    color: #ff6a10;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}


.pp-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 18px;
}

    .pp-pricing-price strong {
        color: #f1efeb;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 60px;
        font-weight: 500;
    }

    .pp-pricing-price span {
        color: #858d92;
        font-size: 12px;
    }


.pp-pricing-description {
    margin: 8px 0 26px;
    color: #7e868b;
    font-size: 12px;
}


.pp-pricing-features {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

    .pp-pricing-features div {
        display: flex;
        gap: 10px;
        color: #a7adb1;
        font-size: 11px;
    }

    .pp-pricing-features span {
        color: #ff6a10;
    }


.pp-pricing-button {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient( 90deg, #ff5e00, #ff7929 );
    border-radius: 7px;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

    .pp-pricing-button:hover {
        color: #fff;
        filter: brightness(1.04);
    }


.pp-pricing-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0d1113;
    border: 1px solid #252b2f;
}


.pp-pricing-note-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: #ff6a10;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    background: rgba(255, 101, 0, 0.05);
    border: 1px solid rgba(255, 101, 0, 0.2);
    border-radius: 8px;
}


.pp-pricing-note h3 {
    color: #eae8e4;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
}

.pp-pricing-note p {
    color: #7c858a;
    font-size: 11px;
    line-height: 1.7;
}

.pp-pricing-note a {
    margin-top: 12px;
    color: #ff6a10;
    font-size: 11px;
    text-decoration: none;
}


/* ============================================================
   FINAL CTA
   ============================================================ */

.pp-home-final-cta {
    padding: 120px 6vw;
    text-align: center;
    background: radial-gradient( circle at 50% 50%, rgba(255, 101, 0, 0.06), transparent 32rem ), #090d0f;
    border-top: 1px solid #1d2225;
}


    .pp-home-final-cta > div {
        max-width: 760px;
        margin: 0 auto;
    }

.pp-home-final-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}


/* ============================================================
   FOOTER
   ============================================================ */

.pp-home-footer {
    min-height: 115px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
    padding: 0 6vw;
    background: #06090b;
    border-top: 1px solid #1c2124;
}


.pp-home-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .pp-home-footer-brand strong {
        color: #eae7e2;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 16px;
    }

    .pp-home-footer-brand span {
        color: #596167;
        font-size: 9px;
    }


.pp-home-footer-links {
    display: flex;
    gap: 24px;
}

    .pp-home-footer-links a {
        color: #737b80;
        font-size: 10px;
        text-decoration: none;
    }

        .pp-home-footer-links a:hover {
            color: #ff6a10;
        }


.pp-home-footer-copy {
    justify-self: end;
    color: #4d555a;
    font-size: 9px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .pp-home-hero-inner,
    .pp-home-feature-section {
        gap: 55px;
    }

    .pp-standard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 900px) {

    .pp-home-hero {
        padding-top: 60px;
    }

    .pp-home-hero-inner,
    .pp-home-feature-section,
    .pp-pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .pp-home-feature-reverse
    .pp-home-showcase {
        order: 2;
    }

    .pp-home-feature-reverse
    .pp-home-feature-copy {
        order: 1;
    }

    .pp-home-carousel {
        max-width: 650px;
    }

    .pp-process-grid {
        grid-template-columns: 1fr;
    }

    .pp-home-hero-meta {
        flex-wrap: wrap;
    }

    .pp-home-footer {
        grid-template-columns: 1fr;
        padding: 30px 6vw;
        text-align: center;
    }

    .pp-home-footer-brand {
        align-items: center;
    }

    .pp-home-footer-copy {
        justify-self: center;
    }
}


@media (max-width: 600px) {

    .pp-home-hero,
    .pp-home-section,
    .pp-home-feature-section,
    .pp-home-dark-band,
    .pp-home-final-cta {
        padding-left: 22px;
        padding-right: 22px;
    }

    .pp-home-hero-copy h1 {
        font-size: 46px;
    }

    .pp-home-hero-actions,
    .pp-home-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pp-home-primary-cta,
    .pp-home-secondary-cta {
        width: 100%;
    }

    .pp-home-hero-meta {
        gap: 22px;
    }

    .pp-carousel-card {
        min-height: 520px;
        padding: 35px 30px 55px;
    }

        .pp-carousel-card h2 {
            font-size: 30px;
        }

    .pp-standard-grid,
    .pp-preview-stats {
        grid-template-columns: 1fr;
    }

    .pp-home-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================================
   STUDENT DASHBOARD
   ============================================================ */

.pp-student-dashboard {
    width: 100%;
}


/* HERO */

.pp-student-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    margin-bottom: 28px;
    padding: 30px 32px;
    background: linear-gradient( 135deg, #111619, #0d1214 );
    border: 1px solid #252b2f;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


.pp-student-eyebrow,
.pp-student-panel-kicker,
.pp-student-stat-label {
    color: #ff6a10;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}


.pp-student-hero h1 {
    margin: 9px 0 8px;
    color: #f1efeb;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

    .pp-student-hero h1 span {
        color: #ff7020;
    }


.pp-student-hero p {
    max-width: 680px;
    margin: 0;
    color: #7e878d;
    font-size: 12px;
    line-height: 1.7;
}


.pp-student-hero-grade {
    min-width: 180px;
    padding-left: 30px;
    border-left: 1px solid #262c30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


    .pp-student-hero-grade span {
        color: #687178;
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 0.09em;
    }

    .pp-student-hero-grade strong {
        margin: 5px 0 8px;
        color: #f0eeea;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 29px;
        font-weight: 500;
    }

    .pp-student-hero-grade a {
        color: #ff6a10;
        font-size: 10px;
        text-decoration: none;
    }


/* STATS */

.pp-student-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}


.pp-student-stat-card {
    min-height: 190px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: linear-gradient( 145deg, #111518, #0d1113 );
    border: 1px solid #242a2e;
    border-radius: 10px;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

    .pp-student-stat-card:hover {
        transform: translateY(-2px);
        border-color: #363e43;
    }


.pp-student-stat-highlight {
    border-color: rgba(255, 101, 0, 0.25);
    background: linear-gradient( 145deg, rgba(255, 101, 0, 0.055), #0d1113 55% );
}


.pp-student-stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.pp-student-stat-icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.05);
    border: 1px solid rgba(255, 101, 0, 0.16);
    border-radius: 6px;
    font-size: 14px;
}


.pp-student-stat-card > strong {
    margin-top: 24px;
    color: #f0eeeb;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 31px;
    font-weight: 500;
}


.pp-student-stat-card > p {
    margin: 4px 0 14px;
    color: #70797f;
    font-size: 10px;
    line-height: 1.55;
}


.pp-student-stat-card > a {
    margin-top: auto;
    color: #9ca3a8;
    font-size: 10px;
    text-decoration: none;
}

    .pp-student-stat-card > a:hover {
        color: #ff6a10;
    }


.pp-student-stat-card
.pp-status-active {
    color: #f0eeeb;
}

.pp-student-stat-card
.pp-status-inactive {
    color: #7d858a;
}


/* MAIN GRID */

.pp-student-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}


.pp-student-panel {
    padding: 24px;
    background: linear-gradient( 145deg, #111518, #0e1214 );
    border: 1px solid #252b2f;
    border-radius: 10px;
}


.pp-student-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}


    .pp-student-panel-header h2 {
        margin: 6px 0 0;
        color: #eceae6;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 22px;
        font-weight: 500;
    }


.pp-student-panel-action {
    color: #858e94;
    font-size: 10px;
    text-decoration: none;
}

    .pp-student-panel-action:hover {
        color: #ff6a10;
    }


/* SCHOOL PROFILE */

.pp-school-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


.pp-school-profile-item {
    min-height: 86px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0b0f11;
    border: 1px solid #202629;
    border-radius: 7px;
}


    .pp-school-profile-item span {
        color: #616a70;
        font-size: 9px;
    }

    .pp-school-profile-item strong {
        color: #d9dbda;
        font-size: 12px;
        font-weight: 550;
        line-height: 1.35;
    }


/* QUICK ACTIONS */

.pp-student-quick-actions {
    display: grid;
    gap: 9px;
}


.pp-student-quick-action {
    min-height: 64px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    color: inherit;
    background: #0b0f11;
    border: 1px solid #202629;
    border-radius: 7px;
    text-decoration: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

    .pp-student-quick-action:hover {
        color: inherit;
        background: #0e1315;
        border-color: rgba(255, 101, 0, 0.25);
    }


.pp-student-quick-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.045);
    border: 1px solid rgba(255, 101, 0, 0.15);
    border-radius: 6px;
}


.pp-student-quick-action div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pp-student-quick-action strong {
    color: #d9dcdb;
    font-size: 11px;
}

.pp-student-quick-action small {
    color: #626b71;
    font-size: 9px;
}


.pp-student-arrow {
    color: #525b61;
    font-size: 15px;
    transition: color 0.15s ease, transform 0.15s ease;
}

.pp-student-quick-action:hover
.pp-student-arrow {
    color: #ff6a10;
    transform: translateX(2px);
}


/* HISTORY */

.pp-student-history {
    margin-bottom: 20px;
}


.pp-school-history-list {
    display: grid;
}


.pp-school-history-row {
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 25px;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #202629;
}

    .pp-school-history-row:first-child {
        border-top: none;
    }


    .pp-school-history-row > div {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .pp-school-history-row span {
        color: #60696f;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .pp-school-history-row strong {
        color: #d6d8d7;
        font-size: 11px;
        font-weight: 550;
    }


.pp-school-history-status {
    padding: 6px 9px;
    color: #ff7220;
    background: rgba(255, 101, 0, 0.05);
    border: 1px solid rgba(255, 101, 0, 0.15);
    border-radius: 5px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* EMPTY */

.pp-student-empty-state {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6d757b;
}

    .pp-student-empty-state > span {
        margin-bottom: 10px;
        color: #ff6a10;
        font-size: 22px;
    }

    .pp-student-empty-state strong {
        color: #cfd1d0;
        font-size: 12px;
    }

    .pp-student-empty-state p {
        max-width: 430px;
        margin: 5px 0 0;
        font-size: 10px;
        line-height: 1.6;
    }


/* RESPONSIVE */

@media (max-width: 1150px) {

    .pp-student-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {

    .pp-student-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .pp-student-hero-grade {
        width: 100%;
        align-items: flex-start;
        padding: 20px 0 0;
        border-left: 0;
        border-top: 1px solid #262c30;
    }

    .pp-student-main-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 560px) {

    .pp-student-stats,
    .pp-school-profile-grid {
        grid-template-columns: 1fr;
    }

    .pp-school-history-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 10px;
    }
}

/* ============================================================
   STUDENT PROFILE
   ============================================================ */

.pp-profile-page {
    width: 100%;
    max-width: 1050px;
}


/* HEADER */

.pp-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 26px;
}

.pp-profile-eyebrow,
.pp-profile-section-kicker {
    color: #ff6a10;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.pp-profile-header h1 {
    margin: 7px 0 6px;
    color: #f1efeb;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

.pp-profile-header p {
    margin: 0;
    color: #798188;
    font-size: 12px;
    line-height: 1.6;
}

.pp-profile-back {
    flex: 0 0 auto;
    color: #858d93;
    font-size: 10px;
    text-decoration: none;
}

    .pp-profile-back:hover {
        color: #ff6a10;
    }


/* SUCCESS */

.pp-profile-success {
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 0 15px;
    color: #cfd5d1;
    background: rgba(74, 160, 102, 0.07);
    border: 1px solid rgba(74, 160, 102, 0.22);
    border-radius: 7px;
    font-size: 11px;
}

    .pp-profile-success span {
        color: #67b87e;
    }


/* FORM */

.pp-profile-form {
    width: 100%;
}

.pp-profile-validation {
    margin-bottom: 15px;
}


/* CARD */

.pp-profile-card {
    margin-bottom: 18px;
    padding: 28px;
    background: linear-gradient( 145deg, #111518, #0e1214 );
    border: 1px solid #252b2f;
    border-radius: 11px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.09);
}


.pp-profile-card-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 27px;
    padding-bottom: 21px;
    border-bottom: 1px solid #22282c;
}

    .pp-profile-card-header h2 {
        margin: 6px 0 6px;
        color: #eae8e4;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 22px;
        font-weight: 500;
    }

    .pp-profile-card-header p {
        max-width: 560px;
        margin: 0;
        color: #6e777d;
        font-size: 10px;
        line-height: 1.6;
    }

.pp-profile-card-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.05);
    border: 1px solid rgba(255, 101, 0, 0.17);
    border-radius: 7px;
}


/* GRID */

.pp-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.pp-profile-field-full {
    grid-column: 1 / -1;
}


/* FIELD */

.pp-profile-field {
    margin-bottom: 17px;
}

    .pp-profile-field:last-child {
        margin-bottom: 0;
    }

    .pp-profile-field > label {
        display: block;
        margin-bottom: 7px;
        color: #90989e;
        font-size: 10px;
        font-weight: 600;
    }

    .pp-profile-field .form-control,
    .pp-profile-field .form-select {
        width: 100%;
        min-height: 48px;
        padding: 0 14px;
        color: #e9eae8;
        background: #0b0f11;
        border: 1px solid #252b2f;
        border-radius: 7px;
        font-size: 12px;
        transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    }

        .pp-profile-field .form-control:focus,
        .pp-profile-field .form-select:focus {
            color: #ffffff;
            background: #0d1113;
            border-color: #ff6500;
            box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.07);
        }

        .pp-profile-field .form-control::placeholder {
            color: #484f54;
        }

        .pp-profile-field .form-select option {
            color: #e8e9e7;
            background: #101416;
        }


    /* AUTOFILL */

    .pp-profile-field
    input:-webkit-autofill,
    .pp-profile-field
    input:-webkit-autofill:hover,
    .pp-profile-field
    input:-webkit-autofill:focus,
    .pp-profile-field
    input:-webkit-autofill:active {
        -webkit-text-fill-color: #ffffff !important;
        -webkit-box-shadow: 0 0 0 1000px #0b0f11 inset !important;
        box-shadow: 0 0 0 1000px #0b0f11 inset !important;
        transition: background-color 9999s ease-in-out 0s;
    }


    /* VALIDATION */

    .pp-profile-field .text-danger {
        display: block;
        margin-top: 5px;
        color: #df765f !important;
        font-size: 9px;
    }


/* ACTIONS */

.pp-profile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 3px;
}

.pp-profile-save,
.pp-profile-cancel {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
}

.pp-profile-save {
    color: #ffffff;
    background: linear-gradient( 90deg, #ff5e00, #ff7928 );
    border: none;
    box-shadow: 0 9px 28px rgba(255, 101, 0, 0.10);
}

    .pp-profile-save:hover {
        filter: brightness(1.05);
    }

.pp-profile-cancel {
    color: #939a9f;
    background: #0e1214;
    border: 1px solid #2b3135;
    text-decoration: none;
}

    .pp-profile-cancel:hover {
        color: #ffffff;
        background: #121719;
        border-color: #40474c;
    }


/* RESPONSIVE */

@media (max-width: 720px) {

    .pp-profile-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .pp-profile-grid {
        grid-template-columns: 1fr;
    }

    .pp-profile-field-full {
        grid-column: auto;
    }

    .pp-profile-card {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {

    .pp-profile-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .pp-profile-save,
    .pp-profile-cancel {
        width: 100%;
    }
}

/* ============================================================
   TEACHER DASHBOARD
   ============================================================ */

.pp-teacher-dashboard {
    width: 100%;
}


/* HERO */

.pp-teacher-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    margin-bottom: 28px;
    padding: 30px 32px;
    background: linear-gradient( 135deg, #111619, #0d1214 );
    border: 1px solid #252b2f;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


.pp-teacher-eyebrow,
.pp-teacher-panel-kicker,
.pp-teacher-stat-label {
    color: #ff6a10;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}


.pp-teacher-hero h1 {
    margin: 9px 0 8px;
    color: #f1efeb;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

    .pp-teacher-hero h1 span {
        color: #ff7020;
    }


.pp-teacher-hero p {
    max-width: 680px;
    margin: 0;
    color: #7e878d;
    font-size: 12px;
    line-height: 1.7;
}


.pp-teacher-hero-profile {
    min-width: 200px;
    padding-left: 30px;
    border-left: 1px solid #262c30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}


    .pp-teacher-hero-profile span {
        color: #687178;
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 0.09em;
    }

    .pp-teacher-hero-profile strong {
        max-width: 220px;
        margin: 6px 0 8px;
        color: #f0eeea;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 22px;
        font-weight: 500;
    }

    .pp-teacher-hero-profile a {
        color: #ff6a10;
        font-size: 10px;
        text-decoration: none;
    }


/* STATS */

.pp-teacher-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}


.pp-teacher-stat-card {
    min-height: 190px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: linear-gradient( 145deg, #111518, #0d1113 );
    border: 1px solid #242a2e;
    border-radius: 10px;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

    .pp-teacher-stat-card:hover {
        transform: translateY(-2px);
        border-color: #363e43;
    }


.pp-teacher-stat-highlight {
    border-color: rgba(255, 101, 0, 0.25);
    background: linear-gradient( 145deg, rgba(255, 101, 0, 0.055), #0d1113 55% );
}


.pp-teacher-stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.pp-teacher-stat-icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.05);
    border: 1px solid rgba(255, 101, 0, 0.16);
    border-radius: 6px;
    font-size: 14px;
}


.pp-teacher-stat-card > strong {
    margin-top: 24px;
    color: #f0eeeb;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 31px;
    font-weight: 500;
}


.pp-teacher-stat-card > p {
    margin: 4px 0 14px;
    color: #70797f;
    font-size: 10px;
    line-height: 1.55;
}


.pp-teacher-stat-card > a {
    margin-top: auto;
    color: #9ca3a8;
    font-size: 10px;
    text-decoration: none;
}

    .pp-teacher-stat-card > a:hover {
        color: #ff6a10;
    }


/* MAIN GRID */

.pp-teacher-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}


.pp-teacher-panel {
    padding: 24px;
    background: linear-gradient( 145deg, #111518, #0e1214 );
    border: 1px solid #252b2f;
    border-radius: 10px;
}


.pp-teacher-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}


    .pp-teacher-panel-header h2 {
        margin: 6px 0 0;
        color: #eceae6;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 22px;
        font-weight: 500;
    }


.pp-teacher-panel-action {
    color: #858e94;
    font-size: 10px;
    text-decoration: none;
}

    .pp-teacher-panel-action:hover {
        color: #ff6a10;
    }


/* PROFILE */

.pp-teacher-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


.pp-teacher-profile-item {
    min-height: 86px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #0b0f11;
    border: 1px solid #202629;
    border-radius: 7px;
}

.pp-teacher-profile-item-full {
    grid-column: 1 / -1;
}


.pp-teacher-profile-item span {
    color: #616a70;
    font-size: 9px;
}

.pp-teacher-profile-item strong {
    color: #d9dbda;
    font-size: 12px;
    font-weight: 550;
    line-height: 1.35;
}


/* QUICK ACTIONS */

.pp-teacher-quick-actions {
    display: grid;
    gap: 9px;
}


.pp-teacher-quick-action {
    min-height: 64px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    color: inherit;
    background: #0b0f11;
    border: 1px solid #202629;
    border-radius: 7px;
    text-decoration: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

    .pp-teacher-quick-action:hover {
        color: inherit;
        background: #0e1315;
        border-color: rgba(255, 101, 0, 0.25);
    }


.pp-teacher-quick-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.045);
    border: 1px solid rgba(255, 101, 0, 0.15);
    border-radius: 6px;
}


.pp-teacher-quick-action div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pp-teacher-quick-action strong {
    color: #d9dcdb;
    font-size: 11px;
}

.pp-teacher-quick-action small {
    color: #626b71;
    font-size: 9px;
}


.pp-teacher-arrow {
    color: #525b61;
    font-size: 15px;
    transition: color 0.15s ease, transform 0.15s ease;
}

.pp-teacher-quick-action:hover
.pp-teacher-arrow {
    color: #ff6a10;
    transform: translateX(2px);
}


/* STUDENTS */

.pp-teacher-students-panel {
    margin-bottom: 20px;
}


.pp-teacher-students-list {
    display: grid;
}


.pp-teacher-student-row {
    min-height: 73px;
    display: grid;
    grid-template-columns: 40px 1fr 180px;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-top: 1px solid #202629;
}

    .pp-teacher-student-row:first-child {
        border-top: none;
    }


.pp-teacher-student-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7020;
    background: rgba(255, 101, 0, 0.055);
    border: 1px solid rgba(255, 101, 0, 0.18);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 650;
}


.pp-teacher-student-main,
.pp-teacher-student-grade {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


    .pp-teacher-student-main strong {
        color: #d9dcda;
        font-size: 11px;
    }

    .pp-teacher-student-main span {
        color: #616a70;
        font-size: 9px;
    }


.pp-teacher-student-grade {
    align-items: flex-end;
}

    .pp-teacher-student-grade span {
        color: #60696f;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .pp-teacher-student-grade strong {
        color: #d6d8d7;
        font-size: 11px;
        font-weight: 550;
    }


/* EMPTY */

.pp-teacher-empty-state {
    min-height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6d757b;
}

    .pp-teacher-empty-state > span {
        margin-bottom: 10px;
        color: #ff6a10;
        font-size: 22px;
    }

    .pp-teacher-empty-state strong {
        color: #cfd1d0;
        font-size: 12px;
    }

    .pp-teacher-empty-state p {
        max-width: 430px;
        margin: 5px 0 0;
        font-size: 10px;
        line-height: 1.6;
    }


/* RESPONSIVE */

@media (max-width: 1150px) {

    .pp-teacher-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {

    .pp-teacher-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .pp-teacher-hero-profile {
        width: 100%;
        align-items: flex-start;
        padding: 20px 0 0;
        border-left: 0;
        border-top: 1px solid #262c30;
        text-align: left;
    }

    .pp-teacher-main-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .pp-teacher-stats,
    .pp-teacher-profile-grid {
        grid-template-columns: 1fr;
    }

    .pp-teacher-profile-item-full {
        grid-column: auto;
    }

    .pp-teacher-student-row {
        grid-template-columns: 38px 1fr;
    }

    .pp-teacher-student-grade {
        grid-column: 2;
        align-items: flex-start;
    }
}

/* ============================================================
   ADMIN DASHBOARD
   ============================================================ */

.pp-admin-dashboard {
    width: 100%;
}


/* HERO */

.pp-admin-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    margin-bottom: 28px;
    padding: 30px 32px;
    background: linear-gradient( 135deg, #111619, #0d1214 );
    border: 1px solid #252b2f;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


.pp-admin-eyebrow,
.pp-admin-panel-kicker,
.pp-admin-action-label {
    color: #ff6a10;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}


.pp-admin-hero h1 {
    margin: 9px 0 8px;
    color: #f1efeb;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}


.pp-admin-hero p {
    max-width: 700px;
    margin: 0;
    color: #7e878d;
    font-size: 12px;
    line-height: 1.7;
}


.pp-admin-hero-badge {
    min-width: 190px;
    padding-left: 30px;
    border-left: 1px solid #262c30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


    .pp-admin-hero-badge span {
        color: #687178;
        font-size: 9px;
        letter-spacing: 0.1em;
    }


    .pp-admin-hero-badge strong {
        margin-top: 5px;
        color: #ff7020;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 22px;
        font-weight: 500;
    }


/* ACTION CARDS */

.pp-admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}


.pp-admin-action-card {
    min-height: 235px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    color: inherit;
    background: linear-gradient( 145deg, #111518, #0d1113 );
    border: 1px solid #242a2e;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}


    .pp-admin-action-card:hover {
        color: inherit;
        transform: translateY(-2px);
        border-color: #3a4247;
    }


.pp-admin-action-highlight {
    border-color: rgba(255, 101, 0, 0.28);
    background: linear-gradient( 145deg, rgba(255, 101, 0, 0.055), #0d1113 55% );
}


.pp-admin-action-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.pp-admin-action-icon {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.05);
    border: 1px solid rgba(255, 101, 0, 0.16);
    border-radius: 6px;
    font-size: 14px;
}


.pp-admin-action-card h2 {
    margin: 37px 0 9px;
    color: #ebe9e5;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
    font-weight: 500;
}


.pp-admin-action-card p {
    margin: 0 0 18px;
    color: #70797f;
    font-size: 10px;
    line-height: 1.65;
}


.pp-admin-action-link {
    margin-top: auto;
    color: #929a9f;
    font-size: 10px;
}


.pp-admin-action-card:hover
.pp-admin-action-link {
    color: #ff6a10;
}


/* MAIN GRID */

.pp-admin-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.pp-admin-panel {
    padding: 24px;
    background: linear-gradient( 145deg, #111518, #0e1214 );
    border: 1px solid #252b2f;
    border-radius: 10px;
}


.pp-admin-panel-header {
    margin-bottom: 22px;
}


    .pp-admin-panel-header h2 {
        margin: 6px 0 0;
        color: #eceae6;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 22px;
        font-weight: 500;
    }


/* FLOW */

.pp-admin-flow {
    display: grid;
    gap: 10px;
}


.pp-admin-flow-item {
    min-height: 82px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: #0b0f11;
    border: 1px solid #202629;
    border-radius: 7px;
}


.pp-admin-flow-number {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.045);
    border: 1px solid rgba(255, 101, 0, 0.15);
    border-radius: 6px;
    font-size: 9px;
}


.pp-admin-flow-item strong {
    color: #d9dcda;
    font-size: 11px;
}


.pp-admin-flow-item p {
    margin: 3px 0 0;
    color: #626b71;
    font-size: 9px;
    line-height: 1.5;
}


/* QUICK ACTIONS */

.pp-admin-quick-actions {
    display: grid;
    gap: 9px;
}


.pp-admin-quick-action {
    min-height: 64px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    color: inherit;
    background: #0b0f11;
    border: 1px solid #202629;
    border-radius: 7px;
    text-decoration: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}


    .pp-admin-quick-action:hover {
        color: inherit;
        background: #0e1315;
        border-color: rgba(255, 101, 0, 0.25);
    }


.pp-admin-quick-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a10;
    background: rgba(255, 101, 0, 0.045);
    border: 1px solid rgba(255, 101, 0, 0.15);
    border-radius: 6px;
}


.pp-admin-quick-action div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.pp-admin-quick-action strong {
    color: #d9dcdb;
    font-size: 11px;
}


.pp-admin-quick-action small {
    color: #626b71;
    font-size: 9px;
}


.pp-admin-arrow {
    color: #525b61;
    font-size: 15px;
    transition: color 0.15s ease, transform 0.15s ease;
}


.pp-admin-quick-action:hover
.pp-admin-arrow {
    color: #ff6a10;
    transform: translateX(2px);
}


/* RESPONSIVE */

@media (max-width: 1200px) {

    .pp-admin-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {

    .pp-admin-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .pp-admin-hero-badge {
        width: 100%;
        align-items: flex-start;
        padding: 20px 0 0;
        border-left: 0;
        border-top: 1px solid #262c30;
    }

    .pp-admin-main-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 560px) {

    .pp-admin-actions-grid {
        grid-template-columns: 1fr;
    }
}


