﻿/* =============================
       POD MANAGEMENT LANDING
    ============================= */
.pm {
    --pm-bg: #080E1A;
    --pm-bg-alt: #0B1422;
    --pm-card: #101B2E;
    --pm-border: #1F2A44;
    --pm-text: #fff;
    --pm-text-soft: #9FB0D0;
    --pm-cyan: #0EA5E9;
    font-family: 'Montserrat',sans-serif;
    background: var(--pm-bg);
    color: var(--pm-text);
}

/* layout */
.pm-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.pm-section {
    padding: 90px 0;
}

.pm-bg-alt {
    background: var(--pm-bg-alt);
}

/* heading */
.pm-gradient-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #E8F4FF, #0EA5E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* text */
.pm-subheadline {
    color: var(--pm-text-soft);
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.pm-subtitle {
    color: var(--pm-text-soft);
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 16px;
}


.pm-text {
    color: var(--pm-text-soft);
    max-width: 700px;
    margin: auto;
}

/* buttons */
.pm-cta-group {
    margin: 25px 0;
}

.pm-btn-primary {
    background: linear-gradient(135deg,#0EA5E9,#0284C7);
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 10px;
}

.pm-btn-outline {
    border: 1px solid var(--pm-cyan);
    color: var(--pm-cyan);
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
}


/*.pm-icon-list {
            list-style: none;
            max-width: 650px;
            margin: 40px auto 0;
            padding: 0;
        }

            .pm-icon-list li {
                position: relative;
                padding: 16px 20px 16px 55px;
                margin: 14px 0;
                border-radius: 10px;
                background: var(--pm-card);
                border: 1px solid var(--pm-border);
                color: var(--pm-text-soft);
            }

                .pm-icon-list li::before {
                    content: "✓";
                    position: absolute;
                    left: 18px;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 28px;
                    height: 28px;
                    border-radius: 50%;
                    background: linear-gradient(135deg,#0EA5E9,#0284C7);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #fff;
                }*/

/* ================= ICON LIST ================= */

.pm-icon-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 15px;
    margin-top: 40px;
}

    /* list item */
    .pm-icon-list li {
        position: relative;
        background: var(--pm-bg-alt);
        border: 1px solid var(--pm-border);
        padding: 18px 20px 18px 55px; /* space for check icon */
        border-radius: 12px;
        color: var(--pm-text-soft);
        transition: .3s;
    }

        /* hover animation */
        .pm-icon-list li:hover {
            transform: translateY(-5px);
            border-color: var(--pm-cyan);
        }

        /* ✅ checkmark icon aligned with first line */
        .pm-icon-list li::before {
            content: "✓";
            position: absolute;
            left: 18px;
            top: 20px; /* FIXED alignment */
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg,#0EA5E9,#0284C7);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }

/* grid */
/*.pm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
            gap: 24px;
        }

        .pm-card {
            background: var(--pm-card);
            border: 1px solid var(--pm-border);
            padding: 28px;
            border-radius: 14px;
            transition: .3s;
        }

            .pm-card:hover {
                transform: translateY(-6px);
                border-color: var(--pm-cyan);
            }

            .pm-card i {
                color: var(--pm-cyan);
                margin-right: 8px;
            }*/

/* =====================================
       PM FEATURE CARDS
    ===================================== */

/* grid layout */
.pm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* card */
.pm-card {
    background: var(--pm-card);
    border: 1px solid var(--pm-border);
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    transition: .3s;
}

    /* hover effect */
    .pm-card:hover {
        transform: translateY(-6px);
        border-color: var(--pm-cyan);
    }

    /* icon on top */
    .pm-card i {
        font-size: 28px;
        color: var(--pm-cyan);
        margin-bottom: 15px;
        display: block;
    }

    /* heading */
    .pm-card h3 {
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 600;
    }

    /* text */
    .pm-card p {
        color: var(--pm-text-soft);
        margin-bottom: 15px;
    }

    /* link */
    .pm-card a {
        color: var(--pm-cyan);
        text-decoration: none;
        font-weight: 500;
    }

        .pm-card a:hover {
            text-decoration: underline;
        }

/* responsive */
@media(max-width: 900px) {
    .pm-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.pm-faq {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.pm-faq-item {
    border: 1px solid var(--pm-border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--pm-card);
}

.pm-faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.pm-faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: var(--pm-text-soft);
    transition: .4s;
}

.pm-faq-item.active .pm-faq-a {
    max-height: 200px;
    padding: 0 18px 18px;
}

.pm-faq-item.active span {
    transform: rotate(45deg);
}

/* =====================================================
   POD MANAGEMENT PAGE — MOBILE RESPONSIVE (PM)
   Scoped Mobile CSS (SAFE)
===================================================== */

@media screen and (max-width: 768px) {

    /* ---------- Container ---------- */
    .pm-container {
        width: 100%;
        padding: 20px 15px;
        margin: 0 auto;
    }

    /* ---------- Sections ---------- */
    .pm-section {
        padding: 28px 15px;
    }

    .pm-hero {
        padding-top: 40px;
        padding-bottom: 35px;
    }

    /* ---------- Headings ---------- */
    .pm-gradient-heading {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .pm-subheadline,
    .pm-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .pm-trust-line {
        font-size: 0.9rem;
        margin-top: 14px;
    }

    /* ---------- CTA Buttons ---------- */
    .pm-cta-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .pm-btn-primary,
    .pm-btn-outline {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 0.95rem;
    }

    /* ---------- Lists ---------- */
    .pm-icon-list {
        list-style: none;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .pm-icon-list li {
            font-size: 0.95rem;
            line-height: 1.5;
            word-break: break-word;
        }

        .pm-icon-list a {
            display: inline-block;
            word-break: break-word;
        }

    /* ---------- Feature Grid ---------- */
    /*.pm-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .pm-card {
        padding: 16px;
        text-align: left;
        border-radius: 10px;
    }

        .pm-card h3 {
            font-size: 1.05rem;
            line-height: 1.4;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pm-card p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin-top: 6px;
        }

        .pm-card i {
            font-size: 1.3rem;
        }*/



    .pm-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 20px !important;
        justify-items: center !important; /* center cards horizontally */
        text-align: center !important;
    }

    .pm-card {
        padding: 16px !important;
        text-align: center !important;
        border-radius: 10px !important;
        margin: 0 auto !important;
    }

        .pm-card h3 {
            font-size: 1.05rem !important;
            line-height: 1.4 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important; /* center icon + text */
            gap: 8px !important;
            text-align: center !important;
        }

        .pm-card p {
            font-size: 0.95rem !important;
            line-height: 1.5 !important;
            margin-top: 6px !important;
            text-align: center !important;
        }

        .pm-card i {
            font-size: 1.7rem !important;
        }

    /* ---------- FAQ ---------- */
    /*.pm-faq {
        margin-top: 15px;
    }

    .pm-faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
    }

    .pm-faq-q {
        width: 100%;
        padding: 14px 12px;
        font-size: 1rem;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .pm-faq-q span {
            font-size: 1.2rem;
        }

    .pm-faq-a {
        padding: 10px 12px 15px;
        font-size: 0.95rem;
        line-height: 1.5;
    }*/


    /* =====================================================
   PM FAQ ACCORDION FIX (Scoped)
   ===================================================== */

    .pm-faq {
        margin-top: 15px;
    }

    /* FAQ item */
    .pm-faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
    }

    /* QUESTION */
    .pm-faq-q {
        width: 100%;
        padding: 14px 12px;
        font-size: 1rem;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        background: transparent;
        border: none;
    }

        /* plus icon */
        .pm-faq-q span {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

    /* ANSWER (hidden by default) */
    .pm-faq-a {
        max-height: 0; /* hide content */
        overflow: hidden; /* prevents visible line */
        opacity: 0;
        padding: 0 12px; /* remove vertical padding initially */
        font-size: 0.95rem;
        line-height: 1.5;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    }

    /* ACTIVE STATE */
    .pm-faq-item.active .pm-faq-a {
        max-height: 300px;
        opacity: 1;
        padding: 10px 12px 15px;
    }

    /* icon rotate */
    .pm-faq-item.active .pm-faq-q span {
        transform: rotate(45deg);
    }

    /* ---------- Background sections spacing ---------- */
    .pm-bg-alt {
        padding: 28px 15px;
    }
}


/* =====================================================
   EXTRA SMALL DEVICES (Phones <480px)
===================================================== */

@media screen and (max-width: 480px) {

    .pm-gradient-heading {
        font-size: 1.4rem;
    }

    .pm-subheadline,
    .pm-text {
        font-size: 0.9rem;
    }

    .pm-card h3 {
        font-size: 1rem;
    }

    .pm-card p {
        font-size: 0.9rem;
    }

    .pm-btn-primary,
    .pm-btn-outline {
        font-size: 0.9rem;
        padding: 11px 0;
    }

    .pm-icon-list li {
        font-size: 0.9rem;
    }
}