:root,
[data-theme="dark"] {
    --primary: #1f7cff;
    --primary-2: #1157ff;
    --cyan: #33d2ff;
    --dark: #040b1d;
    --dark-2: #09142e;
    --surface: rgba(11, 21, 45, 0.82);
    --surface-2: rgba(12, 24, 56, 0.92);
    --card: rgba(15, 27, 58, 0.74);
    --text: #f7fbff;
    --muted: #98a9cb;
    --border: rgba(110, 149, 255, 0.18);
    --shadow: 0 24px 64px rgba(0, 5, 20, 0.46);
    --success: #1cd48f;
    --danger: #ff657a;
    --warning: #ffbc42;
    --body-bg: radial-gradient(circle at top center, rgba(35, 92, 255, 0.16), transparent 28%), linear-gradient(180deg, #040818 0%, #09142a 52%, #eff4fb 52%, #f7faff 100%);
    --surface-solid: #09142d;
    --surface-light: #f8fbff;
    --surface-light-2: #eef5ff;
    --text-dark: #0f1d3c;
    --muted-dark: #617196;
    --white: #ffffff;
}

[data-theme="light"] {
    --primary: #1875ff;
    --primary-2: #0f58d8;
    --cyan: #18c5f4;
    --dark: #edf4ff;
    --dark-2: #f7fbff;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-2: rgba(248, 251, 255, 0.98);
    --card: rgba(255, 255, 255, 0.96);
    --text: #101f40;
    --muted: #6c7c9f;
    --border: rgba(24, 85, 196, 0.14);
    --shadow: 0 20px 60px rgba(34, 56, 105, 0.14);
    --success: #0da875;
    --danger: #d9475f;
    --warning: #d89c26;
    --body-bg: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
    --surface-solid: #ffffff;
    --surface-light: #ffffff;
    --surface-light-2: #f4f8ff;
    --text-dark: #101f40;
    --muted-dark: #6a7898;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.paygate-public,
body.auth-shell,
body.docs-shell,
body.payment-shell,
body.admin-auth-shell {
    margin: 0;
    font-family: "Cairo", sans-serif;
    color: var(--text);
    background: var(--body-bg);
    min-height: 100vh;
    transition: background-color 0.35s ease, color 0.35s ease;
}

body.paygate-public {
    overflow-x: hidden;
}

html,
body {
    min-height: 100%;
}

body.auth-shell,
body.admin-auth-shell,
body.payment-shell {
    background: #020817;
}

body.docs-shell {
    background: #f3f5f8;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.paygate-public .container-fluid,
.paygate-public .container,
.auth-shell .container,
.docs-shell .container,
.payment-shell .container {
    position: relative;
    z-index: 2;
}

.pg-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(27, 115, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(64, 145, 255, 0.18);
    font-size: 0.84rem;
    font-weight: 700;
}

.pg-theme-toggle {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pg-theme-toggle:hover {
    transform: translateY(-2px);
    background: rgba(39, 126, 255, 0.12);
    border-color: rgba(71, 158, 255, 0.28);
}

.paygate-public .landing-shell {
    position: relative;
}

.paygate-public .landing-shell::before,
.paygate-public .landing-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.paygate-public .landing-shell::before {
    background:
        radial-gradient(circle at 15% 18%, rgba(62, 145, 255, 0.16), transparent 23%),
        radial-gradient(circle at 85% 28%, rgba(45, 211, 255, 0.14), transparent 20%);
}

.paygate-public .landing-shell::after {
    background-image: radial-gradient(circle, rgba(88, 152, 255, 0.28) 1px, transparent 1px);
    background-size: 180px 180px;
    background-position: 0 0;
    opacity: 0.08;
}

.pg-navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 1320px);
    z-index: 9999;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    transition: top 0.22s ease, width 0.22s ease;
}

.pg-navbar.is-scrolled {
    top: 10px;
}

.pg-nav-shell {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(4, 12, 30, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    padding: 0.55rem 0.95rem;
    transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.pg-navbar.is-scrolled .pg-nav-shell {
    background: rgba(6, 16, 39, 0.88);
    border-color: rgba(0, 130, 255, 0.22);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
}

.pg-navbar.on-light .pg-nav-shell {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(15, 35, 75, 0.1);
    box-shadow: 0 18px 45px rgba(15, 35, 75, 0.12);
}

.pg-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 900;
}

.pg-brand-logo {
    display: block;
    width: 172px;
    max-width: min(42vw, 172px);
    height: auto;
}

.pg-brand-logo-stack {
    position: relative;
    display: inline-block;
    width: 172px;
    max-width: min(42vw, 172px);
}

.pg-brand-logo-stack .pg-brand-logo {
    width: 100%;
    max-width: 100%;
}

.pg-brand-logo-dark {
    display: none;
}

.pg-navbar.on-light .pg-brand-logo-light {
    display: none;
}

.pg-navbar.on-light .pg-brand-logo-dark {
    display: block;
}

.pg-brand-mark {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, rgba(38, 127, 255, 0.24), rgba(52, 210, 255, 0.18));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 0 30px rgba(38, 127, 255, 0.26);
}

.pg-nav-links .nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 0.7rem;
}

.pg-nav-links .nav-link.active,
.pg-nav-links .nav-link:hover {
    color: #ffffff;
}

.pg-navbar.on-light .pg-brand,
.pg-navbar.on-light .pg-nav-links .nav-link,
.pg-navbar.on-light .pg-btn-outline {
    color: #102044;
}

.pg-navbar.on-light .pg-nav-links .nav-link.active,
.pg-navbar.on-light .pg-nav-links .nav-link:hover {
    color: #081731;
}

.pg-btn,
.pg-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 0.97rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pg-btn {
    padding: 0.82rem 1.28rem;
    color: var(--white);
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 18px 45px rgba(16, 93, 255, 0.28);
}

.pg-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(16, 93, 255, 0.34);
}

.pg-btn-outline {
    padding: 0.78rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.pg-btn-outline:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.pg-navbar.on-light .pg-btn-outline {
    background: rgba(16, 32, 68, 0.04);
    border-color: rgba(15, 35, 75, 0.12);
}

.pg-navbar.on-light .pg-btn-outline:hover {
    background: rgba(16, 32, 68, 0.08);
    color: #102044;
}

.pg-hero {
    position: relative;
    padding: 7.2rem 0 6.2rem;
    background:
        radial-gradient(circle at 72% 52%, rgba(18, 106, 255, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(5, 10, 28, 0.98) 0%, rgba(6, 14, 38, 0.94) 70%, rgba(8, 16, 39, 0.82) 100%);
    overflow: hidden;
}

[data-theme="light"] .pg-hero {
    background: linear-gradient(180deg, rgba(243, 248, 255, 0.98) 0%, rgba(238, 245, 255, 0.95) 100%);
}

.pg-hero-grid {
    display: flex;
    align-items: center;
    direction: ltr;
    justify-content: flex-start;
    min-height: 690px;
}

.pg-hero-copy {
    width: min(100%, 560px);
    max-width: 560px;
    direction: rtl;
    text-align: right;
    position: relative;
    z-index: 3;
}

.pg-hero h1 {
    margin: 1.35rem 0 1rem;
    font-size: clamp(2.85rem, 5vw, 4.7rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--white);
}

[data-theme="light"] .pg-hero h1 {
    color: var(--text-dark);
}

.pg-hero h1 .accent {
    color: var(--primary);
    text-shadow: 0 0 26px rgba(34, 123, 255, 0.28);
}

.pg-hero p {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 2;
    margin-bottom: 1.75rem;
}

.pg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-bottom: 1.5rem;
}

.pg-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.pg-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    background: rgba(17, 32, 70, 0.72);
    border: 1px solid rgba(80, 138, 255, 0.14);
    padding: 0.78rem 1rem;
    border-radius: 1rem;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .pg-trust-pill {
    background: rgba(255, 255, 255, 0.94);
}

.pg-hero-visual-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(5, 10, 28, 0.88) 0%, rgba(5, 10, 28, 0.72) 26%, rgba(5, 10, 28, 0.38) 42%, rgba(5, 10, 28, 0.08) 56%, rgba(5, 10, 28, 0.02) 100%),
        radial-gradient(circle at 68% 50%, rgba(26, 126, 255, 0.24), transparent 26%),
        radial-gradient(circle at 84% 74%, rgba(45, 208, 255, 0.18), transparent 18%),
        url("/assets/landing/hero-bg.png");
    background-size: cover, auto, auto, cover;
    background-position: center, 68% 50%, 84% 74%, center right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

[data-theme="light"] .pg-hero-visual-bg {
    opacity: 0.94;
}

.pg-stats-strip {
    position: relative;
    margin-top: -4.2rem;
    z-index: 4;
}

.pg-stats-card {
    border-radius: 1.7rem;
    border: 1px solid rgba(80, 135, 255, 0.14);
    background: linear-gradient(180deg, rgba(11, 23, 54, 0.94), rgba(14, 28, 65, 0.88));
    box-shadow: 0 18px 45px rgba(7, 15, 35, 0.22);
    padding: 1rem 1.2rem;
}

[data-theme="light"] .pg-stats-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
}

.pg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.pg-stat-item {
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.pg-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(100, 136, 218, 0.18);
}

.pg-stat-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
    background: rgba(32, 122, 255, 0.1);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.pg-stat-value {
    display: block;
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
}

[data-theme="light"] .pg-stat-value {
    color: var(--text-dark);
}

.pg-stat-label {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.pg-light-section {
    background: #f4f8ff;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

[data-theme="light"] .pg-light-section {
    background: #f4f8ff;
}

.pg-light-section .pg-section-title,
.pg-light-section .pg-section-subtitle,
.pg-light-section .pg-feature-card h3,
.pg-light-section .pg-feature-card p,
.pg-light-section .pg-developer-copy h2,
.pg-light-section .pg-developer-copy p,
.pg-light-section .pg-pricing-header h2,
.pg-light-section .pg-pricing-header p {
    color: inherit;
}

.pg-section-pad {
    padding: 6rem 0;
}

.pg-section-heading {
    max-width: 710px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pg-section-title {
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    line-height: 1.22;
    font-weight: 900;
    margin: 1rem 0 0.8rem;
}

.pg-section-subtitle {
    color: var(--muted-dark);
    font-size: 1.02rem;
    line-height: 1.9;
}

.pg-features-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
}

.pg-feature-card {
    border-radius: 1.6rem;
    padding: 1.8rem 1.2rem;
    background: #ffffff;
    border: 1px solid rgba(14, 76, 150, .08);
    box-shadow: 0 18px 45px rgba(15, 35, 75, .08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pg-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(31, 86, 191, 0.12);
    border-color: rgba(48, 125, 255, 0.2);
}

.pg-feature-icon {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1.35rem;
    margin: 0 auto 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: linear-gradient(180deg, rgba(38, 122, 255, 0.12), rgba(62, 212, 255, 0.08));
    font-size: 1.65rem;
}

.pg-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #0b1530;
}

.pg-feature-card p {
    color: #47597d;
    line-height: 1.8;
    font-size: 0.92rem;
    margin: 0;
}

.pg-dark-band {
    padding: 4.3rem 0;
    background: linear-gradient(180deg, rgba(5, 11, 29, 0.98), rgba(7, 15, 39, 0.95));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .pg-dark-band {
    background: linear-gradient(180deg, #0f1d3e, #10244d);
}

.pg-dark-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 50%, rgba(28, 115, 255, 0.16), transparent 25%);
    pointer-events: none;
}

.pg-methods-showcase {
    padding: 4.7rem 0;
}

.pg-methods-showcase::before {
    background:
        radial-gradient(circle at 16% 48%, rgba(25, 120, 255, 0.16), transparent 26%),
        radial-gradient(circle at 84% 32%, rgba(40, 211, 255, 0.11), transparent 22%);
}

.pg-methods-showcase-head {
    max-width: 780px;
    margin: 0 auto 2.7rem;
}

.pg-methods-showcase-head .pg-section-subtitle {
    line-height: 1.95;
}

.pg-methods-marquees {
    margin-top: 2.25rem;
}

.pg-methods-marquee {
    position: relative;
    overflow: hidden;
    direction: ltr;
}

.pg-methods-track {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: max-content;
    animation: pg-methods-marquee 38s linear infinite;
    will-change: transform;
    direction: ltr;
}

.pg-methods-group {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    flex: 0 0 auto;
}

.pg-method-card {
    flex: 0 0 auto;
    width: 248px;
    min-width: 248px;
    min-height: 94px;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(18, 28, 62, 0.96), rgba(12, 20, 47, 0.94));
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 0.95rem;
    text-align: right;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pg-method-card:hover {
    transform: translateY(-3px);
    border-color: rgba(115, 168, 255, 0.16);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pg-method-card-logo {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.7rem;
    box-shadow: 0 10px 20px rgba(5, 10, 28, 0.14);
}

.pg-method-card-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.pg-method-card--instapay .pg-method-card-logo {
    background: linear-gradient(135deg, #0a1734 0%, #153b6d 100%);
}

.pg-method-card--instapay .pg-method-card-logo img {
    filter: brightness(1.08);
}

.pg-method-card-fallback {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1157ff;
    font-size: 1.5rem;
}

.pg-method-card-copy {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    min-width: 0;
}

.pg-method-card-copy strong {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.2;
}

.pg-method-card-copy span {
    color: rgba(205, 218, 250, 0.74);
    font-size: 0.77rem;
    font-weight: 600;
    direction: ltr;
}

@keyframes pg-methods-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.pg-dev-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.2rem;
    align-items: center;
    direction: ltr;
}

.pg-developer-copy p {
    color: var(--muted-dark);
    line-height: 1.9;
    margin: 1rem 0 1.6rem;
    max-width: 480px;
}

.pg-developer-copy {
    direction: rtl;
    text-align: right;
}

.pg-code-card {
    position: relative;
    border-radius: 1.7rem;
    overflow: hidden;
    background: linear-gradient(180deg, #0b1532, #0f1c41);
    box-shadow: 0 20px 48px rgba(18, 40, 92, 0.16);
}

.pg-code-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(101, 139, 233, 0.14);
}

.pg-code-dots {
    display: flex;
    gap: 0.42rem;
}

.pg-code-dots span {
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    display: inline-block;
}

.pg-code-dots span:nth-child(1) { background: #ff605c; }
.pg-code-dots span:nth-child(2) { background: #ffbd44; }
.pg-code-dots span:nth-child(3) { background: #00ca4e; }

.pg-code-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pg-code-tab {
    color: rgba(220, 230, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.3rem 0.55rem;
    border-radius: 0.6rem;
}

.pg-code-tab.active {
    background: rgba(52, 120, 255, 0.18);
    color: #edf4ff;
}

.pg-code-body {
    position: relative;
    padding: 1.5rem 1.6rem 3.4rem;
}

.pg-code-body pre {
    margin: 0;
    direction: ltr;
    text-align: left;
    color: #bdd5ff;
    font-size: 0.9rem;
    line-height: 2;
    font-family: "Consolas", "SFMono-Regular", monospace;
    white-space: pre-wrap;
}

.pg-code-status {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    color: #d7efff;
    background: rgba(39, 122, 255, 0.18);
    border: 1px solid rgba(51, 210, 255, 0.22);
    font-size: 0.8rem;
    font-weight: 800;
}

.pg-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
    align-items: stretch;
}

.pg-pricing-card {
    border-radius: 1.7rem;
    padding: 1.55rem;
    border: 1px solid rgba(14, 76, 150, .08);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 35, 75, .08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pg-pricing-card:hover,
.pg-pricing-card.recommended {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(24, 91, 215, 0.14);
    border-color: rgba(30, 123, 255, 0.18);
}

.pg-recommend-badge {
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(31, 124, 255, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.pg-plan-name {
    color: #0b1530;
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
}

.pg-plan-duration {
    color: #60708f;
    margin-bottom: 1rem;
}

.pg-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    color: #0b1530;
    font-weight: 900;
    margin-bottom: 1.3rem;
}

.pg-plan-price strong {
    font-size: 2.7rem;
    line-height: 1;
}

.pg-plan-price span {
    font-size: 1rem;
    color: #60708f;
    padding-bottom: 0.32rem;
}

.pg-plan-caption {
    color: #60708f;
    font-size: 0.92rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pg-plan-list {
    list-style: none;
    margin: 0 0 1.45rem;
    padding: 0;
    display: grid;
    gap: 0.7rem;
    color: #0f1d3c;
}

.pg-plan-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.pg-plan-list i.success {
    color: var(--success);
}

.pg-plan-list i.muted {
    color: #9aa8c7;
}

.pg-pricing-card .pg-btn,
.pg-pricing-card .pg-btn-outline {
    margin-top: auto;
}

.pg-pricing-card .pg-btn-outline {
    background: #0b1a35;
    border-color: #0b1a35;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(8, 24, 52, 0.12);
}

.pg-pricing-card .pg-btn-outline:hover {
    background: #122347;
    border-color: #122347;
    color: #ffffff;
}

.pg-cta-band {
    padding-top: 1rem;
}

.pg-cta-banner {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    min-height: 246px;
    padding: 2.6rem 2.8rem;
    background: #061027;
    color: var(--white);
    box-shadow: 0 18px 42px rgba(2, 8, 20, 0.18);
    isolation: isolate;
}

.pg-cta-banner::before,
.pg-cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pg-cta-banner::before {
    background: url("/assets/landing/cta-bg.png") center right / contain no-repeat;
    z-index: -2;
}

.pg-cta-banner::after {
    background: linear-gradient(90deg, rgba(6, 12, 32, 0.94) 0%, rgba(7, 13, 35, 0.72) 48%, rgba(7, 14, 38, 0.18) 100%);
    z-index: -1;
}

.pg-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 1rem;
    align-items: center;
}

.pg-cta-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.7rem;
}

.pg-cta-copy p {
    color: rgba(235, 243, 255, 0.76);
    margin: 0;
    font-size: 1.04rem;
}

.pg-cta-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.pg-footer {
    padding: 4rem 0 1.5rem;
    background: #050d22;
    color: rgba(223, 232, 251, 0.8);
}

[data-theme="light"] .pg-footer {
    background: #09142d;
}

.pg-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 2rem;
}

.pg-footer-brand p {
    color: rgba(223, 232, 251, 0.72);
    line-height: 1.9;
    margin: 1rem 0 1.25rem;
}

.pg-footer-brand .pg-brand-logo {
    width: 184px;
    max-width: 100%;
}

.pg-footer-socials {
    display: flex;
    gap: 0.6rem;
}

.pg-footer-socials a {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid rgba(121, 153, 220, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dbe7ff;
}

.pg-footer-column h4 {
    color: #f7fbff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pg-footer-column a {
    display: block;
    color: rgba(223, 232, 251, 0.72);
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.pg-footer-bottom {
    margin-top: 2.6rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(100, 134, 197, 0.14);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: rgba(223, 232, 251, 0.62);
}

.docs-shell .pg-docs-hero,
.auth-shell .pg-auth-wrap,
.admin-auth-shell .pg-auth-wrap,
.payment-shell .pg-payment-wrap {
    position: relative;
    overflow: hidden;
}

.docs-shell .landing-shell::before,
.docs-shell .landing-shell::after {
    display: none;
}

.docs-shell .pg-navbar {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
}

.docs-shell .pg-nav-shell {
    min-height: 72px;
    padding: 0.85rem 0;
    border: 0;
    border-radius: 0;
    background: #1f1d2b;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.docs-shell .pg-navbar.is-scrolled {
    top: 0;
}

.docs-shell .pg-navbar .container {
    max-width: 1320px;
}

.docs-shell .pg-docs-hero {
    padding: 7.7rem 0 1.75rem;
}

.docs-shell .pg-docs-hero--dashboard {
    background: transparent;
}

.docs-shell .pg-docs-shell-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.25rem;
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
    padding: 1.45rem;
}

.docs-shell .pg-docs-shell-copy .pg-section-title,
.docs-shell .pg-doc-card h2,
.docs-shell .pg-doc-card h3,
.docs-shell .pg-doc-card .h3,
.docs-shell .pg-doc-card .h6,
.docs-shell .pg-payment-meta-item strong {
    color: #101828 !important;
}

.docs-shell .pg-docs-shell-copy .pg-section-subtitle,
.docs-shell .text-muted,
.docs-shell p.text-muted,
.docs-shell span.text-muted,
.docs-shell small.text-muted,
.docs-shell .pg-payment-meta-item p,
.docs-shell .pg-payment-step span {
    color: #667085 !important;
}

.docs-shell .pg-payment-step strong {
    color: #101828 !important;
}

.docs-shell .pg-docs-shell-meta {
    display: grid;
    gap: 0.85rem;
}

.docs-shell .pg-docs-meta-card {
    background: #f8fafc;
    border: 1px solid #e6ecf4;
    border-radius: 8px;
    padding: 1rem 1.05rem;
    display: grid;
    gap: 0.35rem;
}

.docs-shell .pg-docs-meta-card strong {
    color: #101828;
    font-size: 0.97rem;
    font-weight: 800;
}

.docs-shell .pg-docs-meta-card span {
    color: #667085;
    line-height: 1.8;
    font-size: 0.9rem;
}

.pg-docs-panel {
    border: 1px solid #dfe5ee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
    overflow: hidden;
}

.docs-shell .pg-docs-dashboard-wrap {
    background: #f3f5f8;
}

.docs-shell .pg-docs-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.75rem;
    padding: 0 0 3rem;
    direction: ltr;
}

.pg-docs-sidebar {
    position: sticky;
    top: 96px;
    height: fit-content;
    padding: 1rem;
    direction: rtl;
}

.pg-docs-sidebar-label {
    display: block;
    color: #98a2b3;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.pg-docs-sidebar a {
    display: block;
    padding: 0.72rem 0.82rem;
    border-radius: 6px;
    color: #475467;
    font-weight: 700;
    margin-bottom: 0.3rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.pg-docs-sidebar a:hover,
.pg-docs-sidebar a.active {
    background: #eef4fb;
    color: #101828;
}

.pg-docs-content {
    display: grid;
    gap: 1rem;
    direction: rtl;
}

.pg-doc-card {
    padding: 1.35rem;
}

.docs-shell .pg-payment-step {
    background: #ffffff;
    border-color: #e6ecf4;
}

.docs-shell .pg-payment-step-index {
    background: #eaf3ff;
    color: #0d7df2;
    border: 1px solid #d7e6fb;
}

.pg-endpoint {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: #eef6ff;
    color: #0d7df2;
    border: 1px solid #dbe8fb;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.95rem;
}

.pg-endpoint code,
.pg-auth-code,
.pg-pay-code {
    direction: ltr;
    text-align: left;
    display: block;
    white-space: pre-wrap;
    word-break: break-word;
    padding: 1rem 1.1rem;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e4eaf3;
    font-family: "Consolas", "SFMono-Regular", monospace;
    font-size: 0.84rem;
    line-height: 1.9;
}

.pg-auth-wrap,
.pg-payment-wrap {
    min-height: 100dvh;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(0,120,255,.2), transparent 30%), #020817;
}

.pg-auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 2rem;
    align-items: stretch;
}

.pg-auth-showcase {
    position: relative;
    min-height: 660px;
    border-radius: 2rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(4, 10, 27, 0.12), rgba(4, 10, 27, 0.58)),
        url("/assets/landing/hero-bg.png") center right / cover no-repeat;
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.pg-auth-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 16, 40, 0.88), rgba(10, 22, 54, 0.45));
}

.pg-auth-showcase-content {
    position: absolute;
    inset: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.pg-auth-showcase h1 {
    color: var(--white);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.16;
}

.pg-auth-showcase p {
    color: rgba(229, 238, 255, 0.76);
    line-height: 1.9;
    max-width: 510px;
}

.pg-auth-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.pg-auth-badge {
    padding: 0.78rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    color: #e8f1ff;
    border: 1px solid rgba(144, 179, 255, 0.16);
    font-weight: 700;
    font-size: 0.92rem;
}

.pg-auth-card,
.pg-payment-card {
    border-radius: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 16px 38px rgba(0, 8, 24, 0.16);
    padding: 2rem;
    backdrop-filter: blur(22px);
}

.pg-auth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.pg-auth-brand {
    color: var(--text);
}

.pg-auth-brand h2,
.pg-payment-heading h1 {
    margin: 0.4rem 0 0;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
}

.pg-auth-brand p,
.pg-payment-heading p {
    margin: 0.55rem 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.pg-form-grid {
    display: grid;
    gap: 1rem;
}

.pg-field {
    display: grid;
    gap: 0.5rem;
}

.pg-field label {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 800;
}

.pg-input-wrap {
    position: relative;
}

.pg-input-wrap i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.pg-input-wrap input,
.pg-input-wrap select,
.pg-input-wrap textarea {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--border);
    padding: 0.95rem 1rem 0.95rem 2.8rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

[data-theme="light"] .pg-input-wrap input,
[data-theme="light"] .pg-input-wrap select,
[data-theme="light"] .pg-input-wrap textarea {
    background: rgba(255, 255, 255, 0.94);
}

.pg-input-wrap input:focus,
.pg-input-wrap select:focus,
.pg-input-wrap textarea:focus {
    border-color: rgba(33, 121, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(31, 124, 255, 0.1);
}

.pg-form-help {
    color: var(--muted);
    font-size: 0.84rem;
}

.pg-form-error,
.text-danger {
    color: var(--danger) !important;
    font-size: 0.84rem;
    font-weight: 700;
}

.pg-auth-footer {
    margin-top: 1.4rem;
    text-align: center;
    color: var(--muted);
}

.pg-auth-footer a {
    color: var(--primary);
    font-weight: 800;
}

.pg-payment-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
    gap: 1.6rem;
    align-items: start;
}

.pg-payment-side {
    display: grid;
    gap: 1.2rem;
}

.pg-payment-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 1.45rem;
    font-weight: 900;
}

.pg-payment-meta,
.pg-payment-steps,
.pg-payment-badges {
    display: grid;
    gap: 0.85rem;
}

.pg-payment-meta-item,
.pg-payment-step,
.pg-payment-badge {
    border-radius: 1.2rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.1rem;
}

[data-theme="light"] .pg-payment-meta-item,
[data-theme="light"] .pg-payment-step,
[data-theme="light"] .pg-payment-badge {
    background: rgba(255, 255, 255, 0.94);
}

.pg-payment-step {
    display: flex;
    gap: 0.9rem;
}

.pg-payment-step-index {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border-radius: 50%;
    background: rgba(31, 124, 255, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.pg-wallet-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pg-wallet-chip {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(19, 203, 152, 0.2);
    background: rgba(17, 211, 152, 0.1);
    color: var(--success);
    font-weight: 800;
    cursor: pointer;
}

.pg-payment-form .pg-btn {
    width: 100%;
}

.pg-inline-alert .alert {
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid transparent;
    margin-bottom: 0;
}

.alert-success {
    background: rgba(28, 212, 143, 0.1);
    border-color: rgba(28, 212, 143, 0.22);
    color: var(--success);
}

.alert-danger {
    background: rgba(255, 101, 122, 0.1);
    border-color: rgba(255, 101, 122, 0.22);
    color: var(--danger);
}

.alert-warning {
    background: rgba(255, 188, 66, 0.12);
    border-color: rgba(255, 188, 66, 0.22);
    color: var(--warning);
}

.alert-primary {
    background: rgba(31, 124, 255, 0.1);
    border-color: rgba(31, 124, 255, 0.2);
    color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1199.98px) {
    .pg-features-grid,
    .pg-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pg-method-card {
        width: 236px;
        min-width: 236px;
    }
}

@media (max-width: 991.98px) {
    .pg-hero {
        padding-bottom: 5.5rem;
    }

    .pg-hero-grid,
    .pg-dev-grid,
    .pg-auth-grid,
    .pg-cta-grid,
    .docs-shell .pg-docs-grid,
    .pg-footer-grid {
        grid-template-columns: 1fr;
    }

    .pg-hero-copy,
    .pg-developer-copy p {
        max-width: 100%;
    }

    .pg-hero {
        padding-top: 2.2rem;
    }

    .pg-hero-visual-bg {
        inset: 0;
        background-size: cover, auto, auto, cover;
        background-position: center, 74% 36%, 90% 66%, 72% center;
    }

    .pg-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pg-stat-item:nth-child(2)::after,
    .pg-stat-item:nth-child(4)::after {
        display: none;
    }

    .pg-stat-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(100, 136, 218, 0.18);
    }

    .pg-nav-shell {
        padding: 0.85rem 1rem;
    }

    .pg-nav-links {
        padding-top: 1rem;
    }

    .pg-nav-links .nav-link {
        padding-right: 0;
        padding-left: 0;
    }

    .pg-auth-showcase {
        min-height: 460px;
    }

    .pg-docs-sidebar {
        position: static;
    }

    .pg-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .pg-navbar {
        top: 12px;
        width: calc(100% - 24px);
    }

    .pg-section-pad {
        padding: 4.6rem 0;
    }

    .pg-features-grid,
    .pg-pricing-grid,
    .pg-stats-grid {
        grid-template-columns: 1fr;
    }

    .pg-methods-showcase {
        padding: 4rem 0;
    }

    .pg-methods-showcase-head {
        margin-bottom: 2rem;
    }

    .pg-methods-track {
        animation-duration: 31s;
    }

    .pg-methods-group {
        gap: 0.75rem;
    }

    .pg-method-card {
        width: 224px;
        min-width: 224px;
        min-height: 86px;
        padding: 0.9rem;
        border-radius: 13px;
    }

    .pg-method-card-logo {
        width: 52px;
        height: 52px;
        border-radius: 11px;
        padding: 0.62rem;
    }

    .pg-method-card-copy strong {
        font-size: 0.95rem;
    }

    .pg-method-card-copy span {
        font-size: 0.74rem;
    }

    .pg-stat-item::after,
    .pg-stat-item:nth-child(-n+2) {
        border-bottom: none;
    }

    .pg-stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(100, 136, 218, 0.18);
    }

    .pg-stat-item:not(:last-child)::after {
        display: none;
    }

    .pg-auth-card,
    .pg-payment-card,
    .pg-doc-card {
        padding: 1.4rem;
    }

    .pg-hero h1 {
        font-size: clamp(2.65rem, 11vw, 3.6rem);
    }

    .pg-hero-actions,
    .pg-cta-actions {
        flex-direction: column;
    }

    .pg-trust-row {
        display: none;
    }

    .pg-btn,
    .pg-btn-outline {
        width: 100%;
    }

    .pg-nav-shell {
        background: rgba(4, 12, 30, 0.82);
        border-radius: 18px;
        padding: 0.65rem 0.85rem;
    }

    .docs-shell .pg-nav-shell {
        background: #1f1d2b;
        border-radius: 0;
        padding: 0.8rem 0;
    }

    .pg-navbar .navbar-collapse {
        background: rgba(4, 12, 30, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        padding: 16px;
        margin-top: 12px;
    }

    .docs-shell .pg-navbar .navbar-collapse {
        background: #1f1d2b;
        border: 0;
        border-radius: 8px;
        margin-top: 10px;
    }

    .docs-shell .pg-docs-shell-card,
    .docs-shell .pg-docs-grid {
        grid-template-columns: 1fr;
    }

    .docs-shell .pg-docs-shell-meta {
        grid-template-columns: 1fr 1fr;
    }

    .docs-shell .pg-docs-sidebar {
        position: static;
    }

    .pg-navbar .navbar-collapse .nav-link,
    .pg-navbar .navbar-collapse .pg-btn-outline,
    .pg-navbar .navbar-collapse .pg-brand {
        color: #ffffff !important;
    }
}

@media (max-width: 575.98px) {
    .pg-navbar {
        top: 12px;
    }

    .pg-brand-logo {
        width: 126px;
        max-width: 44vw;
    }

    .pg-brand-logo-stack {
        width: 126px;
        max-width: 44vw;
    }

    .pg-nav-shell {
        border-radius: 18px;
        padding: 0.65rem 0.85rem;
    }

    .docs-shell .pg-nav-shell {
        border-radius: 0;
        padding: 0.78rem 0;
    }

    .docs-shell .pg-docs-hero {
        padding-top: 6.45rem;
    }

    .docs-shell .pg-docs-shell-card {
        padding: 1rem;
        gap: 0.9rem;
        border-radius: 8px;
    }

    .docs-shell .pg-docs-shell-meta {
        grid-template-columns: 1fr;
    }

    .docs-shell .pg-docs-grid {
        gap: 1rem;
    }

    .docs-shell .pg-docs-sidebar,
    .docs-shell .pg-doc-card {
        padding: 0.95rem;
    }

    .pg-methods-track {
        animation-duration: 24s;
    }

    .pg-methods-group {
        gap: 0.65rem;
    }

    .pg-method-card {
        width: 182px;
        min-width: 182px;
        min-height: 74px;
        padding: 0.8rem 0.78rem;
        gap: 0.65rem;
        border-radius: 12px;
    }

    .pg-method-card-logo {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        padding: 0.5rem;
    }

    .pg-method-card-copy strong {
        font-size: 0.88rem;
    }

    .pg-method-card-copy span {
        font-size: 0.69rem;
    }

    .pg-hero {
        min-height: 860px;
        padding-top: 6.15rem;
        padding-bottom: 9.5rem;
        display: flex;
        align-items: flex-start;
    }

    .pg-hero h1 {
        font-size: clamp(1.72rem, 7.2vw, 2.2rem);
        color: var(--white);
        text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
        line-height: 1.05;
        margin: 0.9rem 0 0.9rem;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .pg-hero h1 .accent {
        color: var(--white);
        text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    }

    .pg-hero-grid {
        min-height: auto;
        align-items: flex-start;
        justify-content: center;
        padding-top: 0;
        direction: rtl;
    }

    .pg-hero-copy {
        text-align: center;
        max-width: 100%;
        width: 100%;
        padding-inline: 0.8rem;
        transform: none;
    }

    .pg-hero-copy .pg-section-label {
        margin-bottom: 0.4rem;
    }

    .pg-hero-visual-bg {
        inset: 0;
        background-size: cover, auto, auto, cover;
        background-image:
            linear-gradient(180deg, rgba(5, 10, 28, 0.22) 0%, rgba(5, 10, 28, 0.42) 40%, rgba(5, 10, 28, 0.74) 100%),
            radial-gradient(circle at 82% 30%, rgba(26, 126, 255, 0.14), transparent 18%),
            radial-gradient(circle at 92% 72%, rgba(45, 208, 255, 0.12), transparent 16%),
            url("/assets/landing/hero-mobile.png");
        background-position: center, 82% 30%, 92% 72%, center bottom;
        opacity: 0.92;
    }

    .pg-hero p,
    .pg-section-subtitle,
    .pg-cta-copy p {
        font-size: 0.94rem;
    }

    .pg-hero p {
        line-height: 1.85;
        max-width: 94%;
        margin: 1.15rem auto 0;
    }

    .pg-hero-actions {
        margin-top: 1.75rem;
    }

    .pg-stats-card,
    .pg-cta-banner {
        border-radius: 1.4rem;
        padding: 1.1rem;
    }

    .pg-cta-banner {
        min-height: 196px;
    }

    .pg-cta-banner::before {
        background-position: center right;
        background-size: contain;
    }

    .pg-cta-banner::after {
        background: linear-gradient(180deg, rgba(6, 12, 32, 0.78) 0%, rgba(7, 13, 35, 0.58) 36%, rgba(7, 14, 38, 0.82) 100%);
    }

    .pg-auth-showcase-content {
        padding: 1.6rem;
    }

    .pg-auth-showcase {
        min-height: 360px;
    }
}

/* Simple auth pages */
body.auth-shell,
body.admin-auth-shell {
    background: #f5f8fb !important;
    color: #181c32;
}

body.auth-shell *,
body.admin-auth-shell *,
body.auth-shell *::before,
body.auth-shell *::after,
body.admin-auth-shell *::before,
body.admin-auth-shell *::after {
    transition: none !important;
    animation: none !important;
}

body.auth-shell .pg-auth-wrap,
body.admin-auth-shell .pg-auth-wrap {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background: #f5f8fb;
}

body.auth-shell .pg-auth-wrap::before,
body.auth-shell .pg-auth-wrap::after,
body.admin-auth-shell .pg-auth-wrap::before,
body.admin-auth-shell .pg-auth-wrap::after {
    display: none !important;
}

body.auth-shell .pg-auth-grid,
body.admin-auth-shell .pg-auth-grid {
    max-width: 520px;
    margin: 0 auto;
    display: block;
}

body.auth-shell .pg-auth-showcase,
body.admin-auth-shell .pg-auth-showcase {
    display: none !important;
}

body.auth-shell .pg-auth-card,
body.admin-auth-shell .pg-auth-card {
    width: 100%;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e5ecf5;
    box-shadow: none;
    padding: 2rem;
}

body.auth-shell .pg-auth-brand,
body.admin-auth-shell .pg-auth-brand {
    text-align: center;
}

body.auth-shell .pg-auth-brand .pg-brand,
body.admin-auth-shell .pg-auth-brand .pg-brand {
    justify-content: center;
    margin-bottom: 1rem;
}

body.auth-shell .pg-brand-logo,
body.admin-auth-shell .pg-brand-logo {
    max-width: 150px;
}

body.auth-shell .pg-auth-brand h2,
body.admin-auth-shell .pg-auth-brand h2 {
    color: #181c32;
    font-size: 1.55rem;
    font-weight: 800;
}

body.auth-shell .pg-auth-brand p,
body.admin-auth-shell .pg-auth-brand p,
body.auth-shell .pg-auth-footer,
body.admin-auth-shell .pg-auth-footer {
    color: #7e8ba3;
}

body.auth-shell .pg-form-grid,
body.admin-auth-shell .pg-form-grid {
    display: grid;
    gap: 1rem;
}

body.auth-shell .pg-field label,
body.admin-auth-shell .pg-field label {
    color: #3f4b63;
    font-weight: 700;
}

body.auth-shell .pg-input-wrap input,
body.auth-shell .pg-input-wrap select,
body.auth-shell .pg-input-wrap textarea,
body.admin-auth-shell .pg-input-wrap input,
body.admin-auth-shell .pg-input-wrap select,
body.admin-auth-shell .pg-input-wrap textarea {
    min-height: 3rem;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #dfe7f2;
    color: #181c32;
    box-shadow: none;
}

body.auth-shell .pg-input-wrap input:focus,
body.admin-auth-shell .pg-input-wrap input:focus {
    border-color: #2878ff;
    box-shadow: 0 0 0 0.18rem rgba(40, 120, 255, 0.12);
}

body.auth-shell .pg-input-wrap i,
body.admin-auth-shell .pg-input-wrap i {
    color: #8b9ab0;
}

body.auth-shell .pg-btn,
body.admin-auth-shell .pg-btn {
    min-height: 3rem;
    border-radius: 10px;
    background: #2878ff;
    box-shadow: none;
}

body.auth-shell .pg-btn:hover,
body.admin-auth-shell .pg-btn:hover {
    transform: none;
    box-shadow: none;
    background: #1767ea;
}

body.auth-shell .alert,
body.admin-auth-shell .alert {
    border-radius: 10px;
}

@media (max-width: 575.98px) {
    body.auth-shell .pg-auth-card,
    body.admin-auth-shell .pg-auth-card {
        padding: 1.35rem;
        border-radius: 12px;
    }
}
