/* Global Styles for Product Pages - Stepper, Advantages, FAQ, Eligibility, Types, TOC */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }


/* Base Card Reset */
.fcCard {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.fcCard, .fcCard p, .fcCard li, .fcCard a, .fcCard span {
    font-weight: 400;
}

.fcCard .fcH {
    font-weight: 800;
}

/* TOC Navigation */
.fcTOC--primary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
}

.fcTOC--primary .nav-link {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.fcTOC--primary .nav-link:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.fcTOC--primary .nav-link.active {
    background: #0102a2;
    color: #fff;
    border-color: #0102a2;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(1, 2, 162, 0.3);
}

/* Types Section */
.fcTypes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .fcTypes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .fcTypes {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fcType {
    background: #fff;
    border: 1px solid #eef;
    border-radius: 14px;
    padding: 12px;
    display: grid;
    gap: 6px;
    transition: .2s transform, .2s box-shadow;
}

.fcType:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.fcType .row1 {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fcType .ic {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #edf1ff;
    color: #0102a2;
    font-weight: 800;
    font-size: 14px;
}

.fcType h3 {
    margin: 0;
    color: #333;
    font-size: 15px;
    font-weight: 700;
}

.fcType p {
    margin: 0;
    color: #444;
    font-size: 13.5px;
    line-height: 1.55;
}

/* Eligibility Grid */
.fcEligGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .fcEligGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .fcEligGrid {
        grid-template-columns: 1fr;
    }
}

.fcEligItem {
    background: #f9fafb;
    border-radius: 14px;
    padding: 16px 18px 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fcEligHead {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.fcEligItem:hover {
    transform: translateY(-3px);
    border-color: #d1d5db;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.fcEligIcon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(1, 2, 162, 0.07);
    flex-shrink: 0;
}

.fcEligItem h3 {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.fcEligItem p {
    font-size: 13px;
    line-height: 1.45;
    color: #4b5563;
    margin: 0;
}

/* Stepper & Advantages */
.fcStepItem {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.fcStepItem:hover {
    border-color: #0102a2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fcStepNum {
    width: 32px;
    height: 32px;
    background: #0102a2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.fcStepItem h4 {
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 8px;
    color: #1e293b;
}

.fcStepItem p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.fcAdvList {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.fcAdvList li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

/* FAQ Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: #0102a2;
    box-shadow: none;
}

.accordion-button {
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 12px !important;
}

.accordion-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-body {
    padding: 30px 20px 24px;
    line-height: 1.6;
    color: #475569;
    font-size: 14.5px;
    background-color: #fff;
    border-top: 1px solid #f1f5f9;
}

/* Layout Helper for Logged-in State */
.fc-hero-logged-in {
    grid-template-columns: 1fr !important;
}

/* Desktop Extended Utility Helpers */
.fc-fs-13 { font-size: 13px !important; }
.fc-fs-14 { font-size: 14px !important; }
.fc-px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.fc-mb-0 { margin-bottom: 0 !important; }
.fc-fw-bold { font-weight: 700 !important; }
.fc-bg-soft { background: #f8f9fa !important; }
.fc-border-0 { border: none !important; }

/* Desktop Advanced Standard Components */
.fc-text-muted { color: #64748b !important; }
.fc-fw-600 { font-weight: 600 !important; }
.fc-border-b { border-bottom: 1px solid #dee2e6 !important; }
.fc-impact-box {
    padding: 16px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: #f0f7ff;
    border: 1px dashed #0102a2;
}
.fc-tip-box {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    background: #fff4e5;
    border-left: 4px solid #ff8c00;
}

.fc-fs-16 { font-size: 16px !important; }
.fc-fs-18 { font-size: 18px !important; }
.fc-mt-4 { margin-top: 4px !important; }
.fc-mb-15 { margin-bottom: 15px !important; }
.fc-italic { font-style: italic !important; }
.fc-blue-text { color: #0102a2 !important; }
.fc-step-num {
    background: #0102a2;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 800;
}

.fc-mt-20 { margin-top: 20px !important; }
.fc-mt-15 { margin-top: 15px !important; }
.fc-fs-14 { font-size: 14px !important; }

/* Advanced Callouts & Tables */
.fc-callout--success {
    background: #e6f4ea !important;
    border-left: 4px solid #2e7d32 !important;
    padding: 16px !important;
    border-radius: 8px !important;
}

.fc-text-success { color: #1b5e20 !important; }
.fc-text-warning { color: #663c00 !important; }

.fc-table-light {
    background: #f9fafb !important;
    font-size: 13.5px !important;
}

.fc-table-light thead {
    background: #0102a2 !important;
    color: #fff !important;
}

.fc-lh-1-7 { line-height: 1.7 !important; }
.fc-font-md { font-size: 15px !important; }
.fc-font-sm { font-size: 14px !important; }
.fc-font-xs { font-size: 12.5px !important; }
.fc-step-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    color: #1e293b !important;
}
