/* --- Application Help Styles --- */

/* Page Hero - Global Standard */
.page-hero {
    background: radial-gradient(circle at center, #002699 0%, #000000 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e0f2fe;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Base Sections */
.block-layout {
    padding: 6rem 0;
}

.block-layout.alt-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    color: #1e293b;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: #475569;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Timeline (Steps) */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    position: relative;
    padding: 1rem 0;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0066FF;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.step-card h3 {
    margin: 0 0 1rem 0;
    color: #1e293b;
    font-size: 1.25rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Accordion Troubleshooting */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header .icon {
    font-weight: 400;
    font-size: 1.5rem;
    color: #64748b;
    transition: transform 0.3s;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    background: #f8fafc;
    border-top: 1px solid transparent;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* Arbitrary large height */
    padding: 1.5rem;
    border-top-color: #e2e8f0;
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #475569;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #0066FF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #1e293b;
}

.tip-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Two Col & Guidance */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.col-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.status-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-top: 2rem;
}

.status-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.status-box li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #475569;
}

.disclaimer-box {
    background: #fff4f4;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fee2e2;
}

.disclaimer-box h3 {
    color: #991b1b;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.disclaimer-box ul {
    padding-left: 1.5rem;
}

.disclaimer-box li {
    margin-bottom: 1rem;
    color: #7f1d1d;
    line-height: 1.6;
}

/* CTA Buttons */
.center-cta {
    text-align: center;
}

.center-cta h3 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-small,
.btn-secondary-small,
.btn-outline-small {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary-small {
    background: #0066FF;
    color: #fff;
}

.btn-primary-small:hover {
    background: #004080;
    transform: translateY(-2px);
}

.btn-secondary-small {
    background: #fff;
    color: #0066FF;
    border: 2px solid #0066FF;
}

.btn-secondary-small:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 900px) {
    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary-small,
    .btn-secondary-small {
        width: 100%;
        text-align: center;
    }
}