/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion { display: flex; flex-direction: column; gap: var(--space-sm); }

.faq-item {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--dur-fast);
}

.faq-item.open { border-color: rgba(0,229,255,0.25); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-white);
    text-align: left;
    gap: var(--space-md);
    transition: color var(--dur-fast);
}

.faq-question:hover { color: var(--clr-accent); }

.faq-icon {
    font-size: 1.25rem;
    color: var(--clr-accent);
    flex-shrink: 0;
    line-height: 1;
    transition: transform var(--dur-mid) var(--ease);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-mid) var(--ease);
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-md);
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
#sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(8,12,20,0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--clr-border);
    padding: 12px var(--space-md);
    display: none;
    gap: var(--space-sm);
    z-index: 900;
    transform: translateY(100%);
    transition: transform var(--dur-mid) var(--ease);
}

#sticky-cta.visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    #sticky-cta { display: flex; }
    #sticky-cta .btn { flex: 1; justify-content: center; font-size: .875rem; padding: 12px; }
}

/* ============================================================
   PRICING CARD HOVER STATES
   ============================================================ */
.pricing-card:hover {
    border-color: rgba(0,229,255,0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.pricing-card--featured:hover {
    border-color: rgba(0,229,255,0.5);
    box-shadow: var(--shadow-card), 0 0 60px rgba(0,229,255,0.12);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.page-numbers {
    display: inline-flex;
    gap: 8px;
    list-style: none;
}

.page-numbers li a,
.page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    color: var(--clr-off-white);
    font-size: .875rem;
    font-weight: 500;
    transition: all var(--dur-fast);
}

.page-numbers li a:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.page-numbers li .current {
    background: var(--grad-brand);
    border-color: transparent;
    color: #000;
    font-weight: 700;
}

/* ============================================================
   SEARCH FORM
   ============================================================ */
.search-form {
    display: flex;
    gap: 8px;
}

.search-field {
    flex: 1;
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--clr-white);
}

.search-field:focus {
    outline: none;
    border-color: var(--clr-accent);
}

.search-submit {
    background: var(--grad-brand);
    color: #000;
    border: none;
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px; height: 44px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-off-white);
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--dur-mid) var(--ease);
    z-index: 800;
    font-size: .875rem;
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

@media (max-width: 768px) {
    #back-to-top { bottom: 80px; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(13,19,32,0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--clr-border);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--dur-mid) var(--ease);
}

#cookie-banner.show { transform: translateY(0); }

#cookie-banner p {
    font-size: .875rem;
    color: var(--clr-muted);
    margin: 0;
    max-width: 60ch;
}

#cookie-banner a { color: var(--clr-accent); }

.cookie-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }
