:root {
    --pm-primary: #4f46e5;
    --pm-primary-dark: #3730a3;
    --pm-primary-soft: #eef2ff;
    --pm-success: #10b981;
    --pm-warning: #f59e0b;
    --pm-danger: #ef4444;
    --pm-info: #06b6d4;
    --pm-dark: #0f172a;
    --pm-slate: #475569;
    --pm-muted: #64748b;
    --pm-border: #e2e8f0;
    --pm-bg: #f8fafc;
    --pm-card: #ffffff;
    --pm-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    --pm-shadow-sm: 0 8px 24px rgba(15, 23, 42, .06);
    --pm-radius: 22px;
    --pm-radius-sm: 14px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--pm-dark);
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, .12), transparent 34rem),
        radial-gradient(circle at top right, rgba(16, 185, 129, .10), transparent 30rem),
        var(--pm-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
}

.pm-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.pm-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(248, 250, 252, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, .78);
}

.pm-navbar {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 70px;
    padding: 12px 16px;
    border: 1px solid rgba(226, 232, 240, .85);
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--pm-shadow-sm);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.pm-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.pm-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pm-primary), #7c3aed);
    color: #fff;
    box-shadow: 0 14px 28px rgba(79, 70, 229, .26);
}

.pm-brand strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    line-height: 1.1;
}

.pm-brand small {
    display: block;
    color: var(--pm-muted);
    font-size: .76rem;
    margin-top: 2px;
}

.pm-nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pm-nav-link {
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--pm-slate);
    font-weight: 700;
    font-size: .92rem;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pm-nav-link:hover,
.pm-nav-link.active {
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
}

.pm-nav-toggle {
    display: none;
    border: 0;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    width: 44px;
    height: 44px;
    border-radius: 14px;
}

.pm-btn {
    border: 0;
    outline: 0;
    border-radius: 16px;
    padding: 12px 18px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .2s ease;
    cursor: pointer;
    text-decoration: none;
}

.pm-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pm-primary), #2563eb);
    box-shadow: 0 14px 30px rgba(79, 70, 229, .28);
}

.pm-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 18px 34px rgba(79, 70, 229, .34);
}

.pm-btn-light {
    color: var(--pm-primary);
    background: #fff;
    border: 1px solid var(--pm-border);
    box-shadow: var(--pm-shadow-sm);
}

.pm-btn-light:hover {
    transform: translateY(-2px);
    color: var(--pm-primary);
}

.pm-btn-success {
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
}

.pm-hero {
    padding: 80px 0 58px;
}

.pm-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.pm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    font-weight: 800;
    font-size: .86rem;
    margin-bottom: 18px;
}

.pm-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    letter-spacing: -0.055em;
    line-height: .98;
    font-weight: 800;
    margin: 0 0 22px;
}

.pm-title .gradient {
    background: linear-gradient(135deg, var(--pm-primary), #0ea5e9, #10b981);
    -webkit-background-clip: text;
    color: transparent;
}

.pm-lead {
    font-size: 1.12rem;
    line-height: 1.9;
    color: var(--pm-slate);
    max-width: 720px;
    margin-bottom: 26px;
}

.pm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.pm-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.pm-stat-card,
.pm-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: var(--pm-radius);
    box-shadow: var(--pm-shadow-sm);
}

.pm-stat-card {
    padding: 20px;
}

.pm-stat-card strong {
    font-size: 1.4rem;
    display: block;
    font-weight: 900;
}

.pm-stat-card span {
    color: var(--pm-muted);
    font-weight: 600;
}

.pm-hero-panel {
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82));
    border: 1px solid rgba(226, 232, 240, .92);
    box-shadow: var(--pm-shadow);
}

.pm-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.pm-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #047857;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
}

.pm-mini-dashboard {
    display: grid;
    gap: 14px;
}

.pm-mini-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--pm-border);
    align-items: flex-start;
}

.pm-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

.pm-mini-card h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 900;
}

.pm-mini-card p {
    margin: 0;
    color: var(--pm-muted);
    line-height: 1.6;
}

.pm-section {
    padding: 66px 0;
}

.pm-section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 34px;
}

.pm-section-head h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    letter-spacing: -.04em;
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 12px;
}

.pm-section-head p {
    color: var(--pm-muted);
    line-height: 1.8;
}

.pm-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pm-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pm-feature-card {
    padding: 24px;
}

.pm-feature-card i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pm-primary-soft);
    color: var(--pm-primary);
    margin-bottom: 18px;
}

.pm-feature-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pm-feature-card p {
    color: var(--pm-muted);
    line-height: 1.72;
    margin: 0;
}

.pm-pricing-card {
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.pm-pricing-card.popular {
    border: 2px solid rgba(79, 70, 229, .34);
    transform: translateY(-6px);
}

.pm-plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--pm-primary);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
    font-size: .74rem;
}

.pm-price {
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 12px 0;
}

.pm-price small {
    color: var(--pm-muted);
    font-size: .9rem;
}

.pm-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: grid;
    gap: 10px;
}

.pm-list li {
    color: var(--pm-slate);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pm-list i {
    color: var(--pm-success);
    margin-top: 4px;
}

.pm-auth-wrap {
    min-height: calc(100vh - 110px);
    display: grid;
    place-items: center;
    padding: 44px 16px;
}

.pm-auth-card {
    width: min(500px, 100%);
    background: rgba(255,255,255,.95);
    border: 1px solid var(--pm-border);
    border-radius: 28px;
    box-shadow: var(--pm-shadow);
    padding: 32px;
}

.pm-auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pm-auth-card h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 8px;
}

.pm-form-group {
    margin-bottom: 16px;
}

.pm-label {
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--pm-dark);
}

.pm-input,
.pm-select,
.pm-textarea {
    width: 100%;
    border: 1px solid var(--pm-border);
    background: #fff;
    border-radius: 16px;
    padding: 13px 15px;
    outline: 0;
    transition: .2s ease;
    color: var(--pm-dark);
}

.pm-input:focus,
.pm-select:focus,
.pm-textarea:focus {
    border-color: rgba(79, 70, 229, .55);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, .11);
}

.pm-alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    font-weight: 700;
}

.pm-alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.pm-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #bbf7d0;
}

.pm-dashboard {
    min-height: 100vh;
    background: #f8fafc;
}

.pm-dash-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.pm-sidebar {
    background: #0f172a;
    color: #cbd5e1;
    padding: 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.pm-sidebar .pm-brand {
    color: #fff;
    padding: 8px 6px 22px;
}

.pm-sidebar-nav {
    display: grid;
    gap: 6px;
}

.pm-sidebar-title {
    color: #64748b;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 18px 8px 8px;
}

.pm-sidebar-link {
    color: #cbd5e1;
    padding: 12px 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
}

.pm-sidebar-link:hover,
.pm-sidebar-link.active {
    background: rgba(79, 70, 229, .18);
    color: #fff;
}

.pm-dash-main {
    padding: 22px;
    overflow: hidden;
}

.pm-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.pm-dash-title h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    letter-spacing: -.04em;
    margin: 0;
}

.pm-dash-title p {
    color: var(--pm-muted);
    margin: 6px 0 0;
}

.pm-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}

.pm-kpi-card {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--pm-border);
    border-radius: 22px;
    box-shadow: var(--pm-shadow-sm);
}

.pm-kpi-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-primary);
    background: var(--pm-primary-soft);
    margin-bottom: 14px;
}

.pm-kpi-card strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 950;
}

.pm-kpi-card span {
    color: var(--pm-muted);
    font-weight: 700;
}

.pm-dash-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
}

.pm-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.pm-table th {
    color: var(--pm-muted);
    font-size: .84rem;
    padding: 8px 12px;
}

.pm-table td {
    background: #fff;
    padding: 14px 12px;
    border-top: 1px solid var(--pm-border);
    border-bottom: 1px solid var(--pm-border);
}

.pm-table td:first-child {
    border-left: 1px solid var(--pm-border);
    border-radius: 14px 0 0 14px;
}

.pm-table td:last-child {
    border-right: 1px solid var(--pm-border);
    border-radius: 0 14px 14px 0;
}

.pm-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
    font-size: .76rem;
}

.pm-badge-success { background: #dcfce7; color: #047857; }
.pm-badge-warning { background: #fef3c7; color: #92400e; }
.pm-badge-danger { background: #fee2e2; color: #991b1b; }
.pm-badge-info { background: #e0f2fe; color: #075985; }
.pm-badge-dark { background: #e2e8f0; color: #334155; }

.pm-footer {
    padding: 50px 0 24px;
    background: #0f172a;
    color: #cbd5e1;
    margin-top: 66px;
}

.pm-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .9fr .7fr;
    gap: 24px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(148, 163, 184, .25);
}

.pm-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 14px;
}

.pm-footer h6 {
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px;
}

.pm-footer a,
.pm-footer span {
    display: block;
    color: #cbd5e1;
    margin-bottom: 9px;
}

.pm-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: #94a3b8;
    padding-top: 20px;
    font-size: .9rem;
}

.pm-muted {
    color: var(--pm-muted);
}

.urdu-text {
    font-family: "Noto Nastaliq Urdu", serif;
}

@media (max-width: 1050px) {
    .pm-hero-grid,
    .pm-dash-grid {
        grid-template-columns: 1fr;
    }

    .pm-grid-4,
    .pm-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pm-dash-shell {
        grid-template-columns: 1fr;
    }

    .pm-sidebar {
        position: relative;
        height: auto;
    }
}

@media (max-width: 860px) {
    .pm-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .pm-navbar {
        flex-wrap: wrap;
    }

    .pm-nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 10px;
    }

    .pm-nav-menu.show {
        display: flex;
    }

    .pm-nav-link,
    .pm-nav-cta {
        justify-content: center;
    }

    .pm-hero {
        padding-top: 46px;
    }

    .pm-grid-3,
    .pm-grid-4,
    .pm-stat-row,
    .pm-kpi-grid,
    .pm-footer-grid {
        grid-template-columns: 1fr;
    }

    .pm-pricing-card.popular {
        transform: none;
    }

    .pm-auth-card {
        padding: 24px;
    }
}

/* Step 4.2 — Brand slogan above navbar */
.pm-slogan-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 10px;
}

.pm-slogan-inner {
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(79, 70, 229, .10), rgba(16, 185, 129, .10)),
        rgba(255, 255, 255, .88);
    border: 1px solid rgba(226, 232, 240, .95);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.pm-slogan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--pm-primary);
    font-family: "Poppins", sans-serif;
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: -.015em;
}

.pm-slogan-badge i {
    color: #f59e0b;
}

.pm-slogan-subtext {
    color: var(--pm-muted);
    font-size: .86rem;
    font-weight: 700;
}

@media (max-width: 860px) {
    .pm-slogan-inner {
        border-radius: 20px;
        flex-direction: column;
        gap: 4px;
        padding: 10px 14px;
    }

    .pm-slogan-badge {
        font-size: .88rem;
        line-height: 1.4;
    }

    .pm-slogan-subtext {
        font-size: .78rem;
        line-height: 1.4;
    }
}

/* Step 4.3 — Professional Footer Upgrade */
.pm-footer {
    position: relative;
    overflow: hidden;
    padding: 0 0 26px;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, .22), transparent 30rem),
        radial-gradient(circle at top right, rgba(16, 185, 129, .16), transparent 28rem),
        #0f172a;
    color: #cbd5e1;
    margin-top: 76px;
}

.pm-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    opacity: .5;
}

.pm-footer > .pm-container {
    position: relative;
    z-index: 1;
}

.pm-footer-cta {
    transform: translateY(-38px);
    margin-bottom: 4px;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(79, 70, 229, .96), rgba(37, 99, 235, .94)),
        #4f46e5;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
    display: grid;
    grid-template-columns: 1.3fr auto;
    align-items: center;
    gap: 24px;
    color: #fff;
}

.pm-footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 900;
    font-size: .82rem;
    margin-bottom: 12px;
}

.pm-footer-kicker i {
    color: #facc15;
}

.pm-footer-cta h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    letter-spacing: -.04em;
    font-weight: 900;
    margin: 0 0 8px;
}

.pm-footer-cta p {
    color: rgba(255,255,255,.84);
    margin: 0;
    line-height: 1.7;
}

.pm-footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pm-btn-footer-light {
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
}

.pm-btn-footer-light:hover {
    color: #fff;
    background: rgba(255,255,255,.22);
    transform: translateY(-2px);
}

.pm-footer-grid-pro {
    display: grid;
    grid-template-columns: 1.55fr .78fr .86fr .72fr 1.05fr .9fr;
    gap: 26px;
    padding: 18px 0 28px;
    border-bottom: 1px solid rgba(148, 163, 184, .22);
}

.pm-footer-about p {
    color: #cbd5e1;
    line-height: 1.75;
    margin: 14px 0;
}

.pm-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    margin-bottom: 12px;
}

.pm-footer-brand strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
}

.pm-footer-brand small {
    color: #94a3b8;
    font-weight: 700;
}

.pm-footer-leadership {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.pm-footer-leadership span {
    color: #94a3b8;
    line-height: 1.5;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.pm-footer-leadership i {
    color: #818cf8;
    margin-top: 3px;
}

.pm-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.pm-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #e2e8f0;
    margin: 0;
    transition: .2s ease;
}

.pm-footer-social a:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    color: #fff;
    transform: translateY(-2px);
}

.pm-footer h6 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: .98rem;
    font-weight: 900;
    margin: 0 0 16px;
}

.pm-footer h6::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, #818cf8, #10b981);
    margin-top: 8px;
}

.pm-footer a,
.pm-footer span {
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    line-height: 1.45;
    transition: .2s ease;
}

.pm-footer a i,
.pm-footer span i {
    width: 17px;
    color: #818cf8;
    margin-top: 3px;
}

.pm-footer a:hover {
    color: #fff;
    transform: translateX(3px);
}

.pm-footer-bottom-pro {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: .9rem;
}

@media (max-width: 1180px) {
    .pm-footer-grid-pro {
        grid-template-columns: repeat(3, 1fr);
    }

    .pm-footer-about {
        grid-column: span 3;
    }
}

@media (max-width: 860px) {
    .pm-footer-cta {
        grid-template-columns: 1fr;
        text-align: center;
        transform: translateY(-26px);
    }

    .pm-footer-cta-actions {
        justify-content: center;
    }

    .pm-footer-grid-pro {
        grid-template-columns: 1fr;
    }

    .pm-footer-about {
        grid-column: span 1;
    }

    .pm-footer-bottom-pro {
        text-align: center;
        justify-content: center;
    }
}



