/* Pika Campaign Manager Page Styles */
.camp-faq-details {
    border: 1px solid #e2e8db;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.camp-faq-details[open] {
    border-color: #23413b;
    box-shadow: 0 4px 12px rgba(35, 65, 59, 0.05);
}

.camp-faq-summary {
    padding: 18px 20px;
    font-weight: 600;
    color: #23413b;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.camp-faq-summary::-webkit-details-marker {
    display: none;
}

.camp-faq-summary i {
    transition: transform 0.2s ease;
    font-size: 1.2rem;
    color: #62746d;
}

.camp-faq-details[open] .camp-faq-summary i {
    transform: rotate(180deg);
    color: #23413b;
}

.camp-faq-body {
    padding: 0 20px 20px 20px;
    color: #4a5d55;
    font-size: 0.95rem;
    line-height: 1.65;
}

.camp-cockpit-flow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

@media (max-width: 991px) {
    .camp-cockpit-flow {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .camp-cockpit-flow {
        grid-template-columns: 1fr;
    }
}

.camp-cockpit-step {
    background: #f8faf4;
    border: 1px solid #dce5d2;
    border-radius: 8px;
    padding: 20px 14px;
    text-align: center;
}

.camp-cockpit-step i {
    font-size: 22px;
    color: #7c984c;
    display: block;
    margin-bottom: 8px;
}

.camp-cockpit-step span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #23413b;
    display: block;
}

/* Added Animations for Inner Pages */
.inner-scene-window {
    animation: inner-subtle-float 8s ease-in-out infinite;
}

@keyframes inner-subtle-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
    .inner-scene-window {
        animation: none;
    }
}


