/* --- Income-Based Eligibility Page 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: 5rem 0;
}

.block-layout.alt-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sub-heading {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Definition Card */
.highlight-card {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 38, 153, 0.08);
    /* Blue Tint */
    border: 1px solid #dbeafe;
    border-top: 5px solid #0066FF;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.highlight-card h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-card p {
    color: #334155;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Income Table */
.table-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.income-table {
    width: 100%;
    border-collapse: collapse;
}

.income-table th {
    background: #0066FF;
    color: #fff;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.income-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 1.05rem;
}

.income-table tr:last-child td {
    border-bottom: none;
    font-weight: 600;
    background: #f8fafc;
}

.income-table tr:hover td {
    background: #f0f7ff;
}

.table-note {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #64748b;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-style: italic;
    margin: 0;
}


/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 35px rgba(0, 38, 153, 0.05);
    text-align: center;
    border: 1px solid #dbeafe;
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 38, 153, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #0066FF 0%, #004080 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.35rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Rows & Layouts */
.row-layout {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.content-margin-top {
    margin-top: 5rem;
}

.text-column,
.visual-column {
    flex: 1;
}

/* Visual Card (Tips) */
.visual-card {
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid #bfdbfe;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.card-icon-small {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.visual-card h3 {
    color: #0066FF;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.visual-card p {
    color: #475569;
    line-height: 1.6;
}

.separator {
    height: 1px;
    background: #cbd5e1;
    margin: 1.5rem 0;
    opacity: 0.5;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066FF;
    font-weight: 800;
}

/* Buttons */
.center-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-small {
    background: var(--color-primary-blue);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    box-shadow: 0 4px 6px rgba(0, 102, 255, 0.2);
    display: inline-block;
}

.btn-primary-small:hover {
    background: var(--color-primary-dark);
}

.btn-primary-large {
    background: linear-gradient(135deg, #0066FF 0%, #004080 100%);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 102, 255, 0.4);
}

.btn-secondary-large {
    background: #fff;
    color: #0066FF;
    border: 2px solid #0066FF;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary-large:hover {
    background: #f0f7ff;
}

/* Animations */
.fade-in-up,
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-up {
    transform: translateY(30px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.visible.slide-in-left {
    opacity: 1;
    transform: translateX(0);
}

.visible.slide-in-right {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .row-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .slide-in-left,
    .slide-in-right {
        transform: translateY(30px);
    }

    .visible.slide-in-left,
    .visible.slide-in-right {
        transform: translateY(0);
    }
}