/*
|--------------------------------------------------------------------------
| Horizon Maintenance - Public Landing Page
|--------------------------------------------------------------------------
| Global Premium Light Design
| متوافق مع public_landing_index.php الإصدار الحالي
|--------------------------------------------------------------------------
*/

:root {
    --pl-bg: #f5f9ff;
    --pl-bg-2: #edf5ff;
    --pl-surface: rgba(255, 255, 255, 0.92);
    --pl-surface-soft: rgba(255, 255, 255, 0.74);
    --pl-surface-strong: #ffffff;

    --pl-primary: #5264f2;
    --pl-primary-dark: #3f50d8;
    --pl-primary-soft: rgba(82, 100, 242, 0.11);

    --pl-secondary: #16b8d4;
    --pl-secondary-dark: #078ba9;
    --pl-secondary-soft: rgba(22, 184, 212, 0.11);

    --pl-accent: #e5ad3d;
    --pl-accent-soft: rgba(229, 173, 61, 0.13);

    --pl-heading: #17345f;
    --pl-text: #34506f;
    --pl-muted: #647991;
    --pl-white: #ffffff;

    --pl-border: rgba(64, 96, 145, 0.12);
    --pl-border-strong: rgba(82, 100, 242, 0.22);

    --pl-radius-sm: 16px;
    --pl-radius-md: 22px;
    --pl-radius-lg: 30px;
    --pl-radius-xl: 38px;

    --pl-shadow-sm: 0 10px 28px rgba(55, 91, 139, 0.08);
    --pl-shadow-md: 0 22px 55px rgba(55, 91, 139, 0.11);
    --pl-shadow-lg: 0 34px 85px rgba(55, 91, 139, 0.16);

    --pl-transition: 0.28s cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   Reset
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    background: var(--pl-bg);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif;
    color: var(--pl-text);
    background:
        radial-gradient(circle at 8% 7%, rgba(82, 100, 242, 0.12), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(22, 184, 212, 0.14), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(229, 173, 61, 0.08), transparent 34%),
        linear-gradient(145deg, #ffffff 0%, #f8fbff 45%, var(--pl-bg-2) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(82, 100, 242, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 100, 242, 0.025) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.12));
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

section {
    scroll-margin-top: 120px;
}

/* =========================================================
   Shell
   ========================================================= */

.pl-site-shell {
    position: relative;
    z-index: 2;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 54px;
}

.pl-page {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================================
   Header
   ========================================================= */

.pl-topbar {
    position: sticky;
    top: 12px;
    z-index: 50;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;

    min-height: 78px;
    padding: 12px 16px;

    border: 1px solid var(--pl-border);
    border-radius: 26px;

    background:
        radial-gradient(circle at top right, rgba(22, 184, 212, 0.11), transparent 34%),
        radial-gradient(circle at bottom left, rgba(82, 100, 242, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(18px);
    box-shadow: var(--pl-shadow-md);
}

.pl-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    text-decoration: none;
}

.pl-logo-wrap {
    flex: 0 0 auto;
    width: 90px;
    height: 50px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--pl-border);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f2f7ff);
    box-shadow: 0 8px 20px rgba(55, 91, 139, 0.08);
}

.pl-logo-wrap img {
    width: 78px;
    max-height: 42px;
    object-fit: contain;
}

.pl-brand-copy {
    min-width: 0;
}

.pl-brand strong {
    display: block;
    color: var(--pl-heading);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.pl-brand small {
    display: block;
    margin-top: 4px;
    color: var(--pl-muted);
    font-size: 10.5px;
    font-weight: 800;
}

.pl-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(82, 100, 242, 0.08);
    border-radius: 19px;
    background: rgba(245, 249, 255, 0.78);
}

.pl-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 14px;
    color: #45617f;
    text-decoration: none;
    white-space: nowrap;
    font-size: 11.5px;
    font-weight: 900;
    transition: var(--pl-transition);
}

.pl-nav a:hover,
.pl-nav a.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pl-primary), var(--pl-secondary));
    box-shadow: 0 10px 25px rgba(82, 100, 242, 0.20);
    transform: translateY(-1px);
}

.pl-login-mini {
    min-height: 44px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 0;
    border-radius: 17px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pl-primary), var(--pl-secondary));
    box-shadow: 0 14px 30px rgba(82, 100, 242, 0.20);
    transition: var(--pl-transition);
}

.pl-login-mini:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(82, 100, 242, 0.27);
}

/* =========================================================
   Hero
   ========================================================= */

.pl-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 420px);
    align-items: center;
    gap: 38px;

    min-height: 610px;
    padding: 46px 0 26px;
}

.pl-hero-copy {
    min-width: 0;
}

.pl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 15px;
    padding: 8px 13px;

    border: 1px solid rgba(82, 100, 242, 0.14);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.78);
    color: var(--primary, var(--pl-primary));

    box-shadow: var(--pl-shadow-sm);

    font-size: 12px;
    font-weight: 900;
}

.pl-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pl-accent);
    box-shadow: 0 0 0 5px var(--pl-accent-soft);
}

.pl-hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--pl-heading);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.8px;
}

.pl-hero p {
    max-width: 690px;
    margin: 20px 0 0;
    color: var(--pl-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.95;
}

.pl-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.pl-btn {
    min-height: 50px;
    padding: 13px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 1px solid transparent;
    border-radius: 17px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 900;

    cursor: pointer;
    transition: var(--pl-transition);
}

.pl-btn:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

.pl-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pl-primary), var(--pl-secondary));
    box-shadow: 0 16px 38px rgba(82, 100, 242, 0.20);
}

.pl-btn-primary:hover {
    color: #ffffff;
    box-shadow: 0 24px 50px rgba(82, 100, 242, 0.28);
}

.pl-btn-light {
    color: #31567c;
    border-color: var(--pl-border);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--pl-shadow-sm);
}

.pl-btn-light:hover {
    color: var(--pl-primary);
    border-color: var(--pl-border-strong);
}

.pl-btn-ghost {
    color: var(--pl-secondary-dark);
    border-color: rgba(22, 184, 212, 0.16);
    background: var(--pl-secondary-soft);
}

.pl-btn-ghost:hover {
    color: var(--pl-secondary-dark);
    border-color: rgba(22, 184, 212, 0.28);
}

/* =========================================================
   Hero Panel
   ========================================================= */

.pl-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 22px;

    border: 1px solid var(--pl-border);
    border-radius: 30px;

    background:
        radial-gradient(circle at top right, rgba(22, 184, 212, 0.10), transparent 35%),
        radial-gradient(circle at bottom left, rgba(82, 100, 242, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.92);

    box-shadow: var(--pl-shadow-lg);
}

.pl-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--pl-muted);
    font-size: 12px;
    font-weight: 900;
}

.pl-panel-header strong {
    color: var(--pl-primary);
    letter-spacing: 0.8px;
}

.pl-monitor {
    position: relative;
    overflow: hidden;
    min-height: 286px;
    padding: 22px;

    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(145deg, #6371f3 0%, #2d87ce 52%, #16b8d4 100%);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(49, 107, 172, 0.22);
}

.pl-monitor::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,.12), transparent);
    transform: translateX(-120%);
    animation: plShine 7s infinite;
}

.pl-monitor-line {
    position: relative;
    z-index: 1;
    width: 58%;
    height: 11px;
    margin-bottom: 19px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.42), rgba(255,255,255,.12));
}

.pl-monitor-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pl-monitor-grid span {
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.10);
}

.pl-monitor-grid span:nth-child(1) { background: rgba(255,255,255,.20); }
.pl-monitor-grid span:nth-child(2) { background: rgba(229,173,61,.22); }
.pl-monitor-grid span:nth-child(3) { background: rgba(255,255,255,.12); }
.pl-monitor-grid span:nth-child(4) { background: rgba(82,100,242,.25); }

.pl-monitor-chart {
    position: relative;
    z-index: 1;

    height: 120px;
    display: flex;
    align-items: end;
    gap: 10px;

    margin-top: 20px;
    padding: 15px 15px 8px;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
}

.pl-monitor-chart i {
    flex: 1;
    min-height: 18px;
    border-radius: 8px 8px 4px 4px;
}

.pl-monitor-chart i:nth-child(1) { background: linear-gradient(180deg, #ffffff, #cdd9eb); }
.pl-monitor-chart i:nth-child(2) { background: linear-gradient(180deg, #fde9a7, #e5ad3d); }
.pl-monitor-chart i:nth-child(3) { background: linear-gradient(180deg, #bcefff, #16b8d4); }
.pl-monitor-chart i:nth-child(4) { background: linear-gradient(180deg, #c8ceff, #5264f2); }
.pl-monitor-chart i:nth-child(5) { background: linear-gradient(180deg, #c9f7ee, #22b99f); }

/* =========================================================
   Sections
   ========================================================= */

.pl-section,
.pl-app-download {
    position: relative;
    overflow: hidden;

    margin-top: 26px;
    padding: 32px 34px;

    border: 1px solid var(--pl-border);
    border-radius: 28px;

    background:
        radial-gradient(circle at top right, rgba(22, 184, 212, 0.06), transparent 33%),
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,250,255,.90));

    box-shadow: var(--pl-shadow-md);
}

.pl-section::before,
.pl-app-download::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    left: -100px;
    top: -105px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82,100,242,.08), transparent 70%);
    pointer-events: none;
}

.pl-section-head {
    position: relative;
    z-index: 1;
    max-width: 790px;
    margin-bottom: 22px;
}

.pl-section-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--pl-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.pl-section-head span::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pl-primary), var(--pl-secondary));
}

.pl-section-head h2 {
    margin: 0;
    color: var(--pl-heading);
    font-size: clamp(27px, 3vw, 39px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.45px;
}

.pl-section-head p,
.pl-text {
    color: var(--pl-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
}

/* =========================================================
   Cards
   ========================================================= */

.pl-feature-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pl-feature-card {
    position: relative;
    overflow: hidden;

    min-width: 0;
    min-height: 188px;
    padding: 22px;

    border: 1px solid rgba(82, 100, 242, 0.10);
    border-radius: 22px;

    background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,255,.94));
    box-shadow: var(--pl-shadow-sm);

    transition: var(--pl-transition);
}

.pl-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(82,100,242,.05), rgba(22,184,212,.04));
    transition: var(--pl-transition);
}

.pl-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(82, 100, 242, 0.22);
    box-shadow: var(--pl-shadow-md);
}

.pl-feature-card:hover::before {
    opacity: 1;
}

.pl-feature-card > * {
    position: relative;
    z-index: 1;
}

.pl-feature-card i {
    width: auto;
    min-width: 52px;
    height: 52px;
    padding: 0 10px;

    display: inline-grid;
    place-items: center;

    margin-bottom: 14px;

    border-radius: 16px;
    background: linear-gradient(135deg, var(--pl-primary-soft), var(--pl-secondary-soft));
    color: var(--pl-primary);

    font-style: normal;
    font-size: 22px;
    font-weight: 900;
}

.pl-feature-card h3 {
    margin: 0 0 9px;
    color: #23466f;
    font-size: 17px;
    font-weight: 900;
}

.pl-feature-card p {
    margin: 0;
    color: var(--pl-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   Download
   ========================================================= */

.pl-app-download-intro {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 22px;
}

.pl-app-download-icon {
    width: 84px;
    height: 84px;
    min-width: 84px;

    display: grid;
    place-items: center;
    overflow: hidden;

    border: 1px solid var(--pl-border);
    border-radius: 22px;

    background: linear-gradient(180deg, #ffffff, #f0f6ff);
    box-shadow: var(--pl-shadow-sm);
}

.pl-app-download-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-app-download-intro h2 {
    margin: 6px 0 8px;
    color: var(--pl-heading);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.3;
}

.pl-app-download-intro p {
    max-width: 720px;
    margin: 0;
    color: var(--pl-muted);
    font-size: 15px;
    line-height: 1.9;
}

.pl-app-download-options {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pl-app-download-card {
    min-width: 0;
    padding: 22px;

    border: 1px solid rgba(82, 100, 242, 0.10);
    border-radius: 22px;

    background: rgba(255,255,255,.94);
    box-shadow: var(--pl-shadow-sm);

    transition: var(--pl-transition);
}

.pl-app-download-card:hover {
    transform: translateY(-4px);
    border-color: rgba(82, 100, 242, 0.22);
    box-shadow: var(--pl-shadow-md);
}

.pl-app-download-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.pl-app-download-platform {
    color: var(--pl-primary);
    font-size: 13px;
    font-weight: 900;
}

.pl-app-download-badge {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--pl-secondary-dark);
    background: linear-gradient(135deg, var(--pl-primary-soft), var(--pl-secondary-soft));
    font-size: 11px;
    font-weight: 900;
}

.pl-app-download-card h3 {
    margin: 0 0 9px;
    color: #23466f;
    font-size: 19px;
    font-weight: 900;
}

.pl-app-download-card p,
.pl-app-download-card small,
.pl-app-download-steps {
    color: var(--pl-muted);
    font-size: 14px;
    line-height: 1.8;
}

.pl-app-download-card p {
    min-height: 74px;
    margin: 0 0 15px;
}

.pl-app-download-card small {
    display: block;
    margin-top: 11px;
    font-size: 12px;
}

.pl-app-download-steps {
    min-height: 74px;
    margin: 0 0 15px;
    padding-right: 20px;
}

.pl-app-download-steps li + li {
    margin-top: 3px;
}

.pl-app-download-btn {
    width: 100%;
    text-align: center;
}

/* =========================================================
   Future
   ========================================================= */

.pl-future-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pl-future-btn {
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--pl-border);
    border-radius: 999px;
    color: var(--pl-muted);
    background: rgba(255,255,255,.88);
    font: 900 13px Tahoma, Arial, sans-serif;
}

.pl-future-btn.is-active {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--pl-primary), var(--pl-secondary));
}

.pl-future-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

/* =========================================================
   Contact
   ========================================================= */

.pl-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pl-contact h2 {
    margin: 5px 0 0;
    color: var(--pl-heading);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 900;
}

.pl-contact p {
    max-width: 700px;
    margin-bottom: 0;
    color: var(--pl-muted);
    font-size: 15px;
    line-height: 1.9;
}

.pl-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pl-contact-actions .pl-btn {
    min-width: 160px;
}

/* =========================================================
   Footer
   ========================================================= */

.pl-footer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;

    margin-top: 22px;
    padding: 20px 24px;

    border: 1px solid var(--pl-border);
    border-radius: 24px;

    background:
        radial-gradient(circle at top right, rgba(22,184,212,.09), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,247,255,.93));

    box-shadow: var(--pl-shadow-md);
}

.pl-footer-brand strong {
    display: block;
    color: var(--pl-heading);
    font-size: 15px;
    font-weight: 900;
}

.pl-footer-brand span {
    display: block;
    margin-top: 4px;
    color: var(--pl-muted);
    font-size: 11px;
    font-weight: 700;
}

.pl-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.pl-footer-links a {
    padding: 7px 10px;
    border-radius: 12px;
    color: #49647f;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 800;
    transition: var(--pl-transition);
}

.pl-footer-links a:hover {
    color: var(--pl-primary);
    background: var(--pl-primary-soft);
}

.pl-footer p {
    margin: 0;
    color: var(--pl-muted);
    font-size: 11.5px;
    line-height: 1.7;
    text-align: left;
}

/* =========================================================
   Animations
   ========================================================= */

@keyframes plShine {
    0%, 50% {
        transform: translateX(-120%);
    }

    72%, 100% {
        transform: translateX(120%);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .pl-feature-card,
    .pl-app-download-card {
        animation: plCardIn .55s ease both;
    }

    @keyframes plCardIn {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
    .pl-topbar {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .pl-login-mini {
        grid-column: 1 / -1;
        justify-self: end;
    }

    .pl-hero {
        grid-template-columns: minmax(0, 1fr) 370px;
        gap: 26px;
    }
}

@media (max-width: 920px) {
    .pl-topbar {
        position: relative;
        top: 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pl-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .pl-login-mini {
        grid-column: auto;
        width: fit-content;
        justify-self: stretch;
    }

    .pl-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 34px;
    }

    .pl-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pl-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pl-footer-links {
        justify-content: center;
    }

    .pl-footer p {
        text-align: center;
    }
}

@media (max-width: 700px) {
    .pl-site-shell {
        width: min(100% - 18px, 1220px);
        padding-top: 10px;
    }

    section {
        scroll-margin-top: 28px;
    }

    .pl-topbar {
        padding: 11px;
        border-radius: 21px;
    }

    .pl-logo-wrap {
        width: 76px;
        height: 44px;
    }

    .pl-logo-wrap img {
        width: 65px;
    }

    .pl-brand strong {
        font-size: 14px;
    }

    .pl-brand small {
        font-size: 10px;
    }

    .pl-login-mini {
        width: 100%;
    }

    .pl-hero {
        padding-top: 28px;
        gap: 22px;
    }

    .pl-hero h1 {
        font-size: 31px;
        line-height: 1.34;
    }

    .pl-hero p,
    .pl-section-head p,
    .pl-app-download-intro p,
    .pl-contact p {
        font-size: 14px;
    }

    .pl-actions,
    .pl-contact-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pl-btn,
    .pl-contact-actions .pl-btn {
        width: 100%;
        min-width: 0;
    }

    .pl-section,
    .pl-app-download,
    .pl-hero-panel {
        padding: 20px;
        border-radius: 23px;
    }

    .pl-feature-grid,
    .pl-app-download-options {
        grid-template-columns: 1fr;
    }

    .pl-feature-card {
        min-height: 0;
    }

    .pl-app-download-intro {
        align-items: flex-start;
    }

    .pl-app-download-icon {
        width: 68px;
        height: 68px;
        min-width: 68px;
        border-radius: 18px;
    }

    .pl-app-download-card p,
    .pl-app-download-steps {
        min-height: 0;
    }

    .pl-monitor {
        min-height: 248px;
        padding: 17px;
    }

    .pl-monitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pl-monitor-chart {
        height: 104px;
    }

    .pl-contact {
        display: grid;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pl-site-shell {
        width: min(100% - 14px, 1220px);
    }

    .pl-brand {
        align-items: flex-start;
    }

    .pl-hero h1 {
        font-size: 28px;
    }

    .pl-section-head h2,
    .pl-app-download-intro h2,
    .pl-contact h2 {
        font-size: 24px;
    }

    .pl-app-download-intro {
        display: block;
    }

    .pl-app-download-icon {
        margin-bottom: 13px;
    }

    .pl-nav a {
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
    body {
        background: #ffffff !important;
    }

    body::before,
    .pl-topbar,
    .pl-actions,
    .pl-footer {
        display: none !important;
    }

    .pl-site-shell,
    .pl-page,
    .pl-section,
    .pl-app-download,
    .pl-hero-panel,
    .pl-feature-card,
    .pl-app-download-card {
        width: 100% !important;
        background: #ffffff !important;
        color: #000000 !important;
        box-shadow: none !important;
        border: 1px solid #dddddd !important;
    }

    .pl-hero {
        min-height: auto !important;
        display: block !important;
    }
}
