/* === Info Pages (Support, FAQ, Guide) === */

body.info-page .site-header {
    background: rgba(15, 20, 25, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

/* Info content sections */
.info-section {
    padding: 60px 0;
    position: relative;
}

.info-section:last-child {
    border-bottom: none;
}

.info-open {
    background: rgba(15, 20, 25, 0.35);
}

.info-muted {
    background: rgba(15, 20, 25, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Hero for info pages */
.info-hero {
    padding: 84px 0 40px;
    min-height: 25vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.info-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.info-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary, #fff);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.info-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary, #aaa);
    line-height: 1.7;
}

/* Text content blocks */
.info-text {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text-secondary, #aaa);
    font-size: 1rem;
    line-height: 1.8;
}

.info-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin: 2rem 0 1rem;
}

.info-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary, #00D97E);
    margin: 1.5rem 0 0.75rem;
}

.info-text p {
    margin-bottom: 1rem;
}

.info-text strong {
    color: var(--text-primary, #fff);
}

.info-text a {
    color: var(--primary, #00D97E);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.info-text ul, .info-text ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.info-text li {
    padding: 0.3rem 0;
}

/* Contact cards grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: rgba(26, 31, 46, 0.7);
    border: 1px solid rgba(0, 217, 126, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(0, 217, 126, 0.4);
    box-shadow: 0 0 25px rgba(0, 217, 126, 0.12);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-secondary, #aaa);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-card a.btn {
    display: inline-block;
}

/* Steps for guide */
.guide-steps {
    max-width: 860px;
    margin: 0 auto;
    counter-reset: step;
}

.guide-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    counter-increment: step;
}

.guide-step-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--primary, #00D97E);
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-step-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary, #fff);
    margin-bottom: 0.5rem;
}

.guide-step-content p {
    color: var(--text-secondary, #aaa);
    line-height: 1.7;
    margin: 0;
}

/* FAQ styles (reuse from home) */
.info-page .faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.info-page .faq-item {
    background: rgba(26, 31, 46, 0.7);
    border: 1px solid rgba(0, 217, 126, 0.15);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.info-page .faq-question {
    padding: 1.25rem 1.5rem;
    color: var(--text-primary, #fff);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.info-page .faq-question:hover {
    color: var(--primary, #00D97E);
}

.info-page .faq-icon {
    font-size: 1.3rem;
    color: var(--primary, #00D97E);
    flex-shrink: 0;
    margin-left: 1rem;
}

.info-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary, #aaa);
    line-height: 1.7;
}

.info-page .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
