/* =========================
   FAQ GRID (tight spacing)
========================= */

.pkg-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================
   FAQ ITEM (compact design)
========================= */

.pkg-faq-item {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 10px 12px;   /* 🔥 reduced whitespace */
    background: #fff;
    transition: all 0.2s ease;
}

/* hover */
.pkg-faq-item:hover {
    border-color: #cfcfcf;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* =========================
   QUESTION (SEO anchor)
========================= */

.pkg-faq-q {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    line-height: 1.5;
    margin-bottom: 4px;
}

.pkg-faq-q:hover {
    color: #0a66c2;
    text-decoration: underline;
}

/* =========================
   ANSWER (compact)
========================= */

.pkg-faq-a {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* =========================
   ACTIVE STATE (SEO jump focus)
========================= */

.pkg-faq-item.is-active {
    border-color: #0a66c2;
    background: #f4f9ff;
}

/* flash animation (AI style attention) */
.pkg-faq-item.flash {
    animation: faqFlash 1.2s ease;
}

@keyframes faqFlash {
    0% { background: #eaf4ff; }
    50% { background: #d9ecff; }
    100% { background: #f4f9ff; }
}

/* smooth scroll offset */
.pkg-faq-item {
    scroll-margin-top: 100px;
}

/* =========================
   MOBILE (VERY IMPORTANT)
========================= */

@media (max-width: 768px) {

    .pkg-faq-item {
        padding: 8px 10px; /* 🔥 even tighter */
        border-radius: 8px;
    }

    .pkg-faq-q {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .pkg-faq-a {
        font-size: 12.5px;
        line-height: 1.5;
    }
}