/* ============================================
   Exit Readiness Guide Page Styles
   ============================================ */

/* ------------------------------------------
   1. Exit Hero Section
   ------------------------------------------ */
.exit-hero {
    padding: 160px 0 90px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        var(--navy-900);
    position: relative;
    overflow: hidden;
}

.exit-hero h1 {
    font-family: var(--font);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.exit-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exit-hero p {
    font-size: 1.2rem;
    color: var(--slate-300);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ------------------------------------------
   2. Why Plan Section (Stat Highlights)
   ------------------------------------------ */
.why-plan-section {
    padding: 90px 0;
    background: var(--navy-850);
}

.why-plan-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-plan-section .section-subtitle {
    margin-bottom: 48px;
}

.stat-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-highlight {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background: var(--navy-800);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.stat-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(6, 182, 212, 0.5));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stat-highlight .stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-highlight .stat-label {
    font-size: 1rem;
    color: var(--slate-300);
    line-height: 1.5;
}

/* ------------------------------------------
   3. Checklist Section
   ------------------------------------------ */
.checklist-section {
    padding: 90px 0;
    background: var(--navy-900);
}

.checklist-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 50px;
}

.checklist-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checklist-category {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    transition: border-color 0.3s ease;
}

.checklist-category:last-of-type {
    margin-bottom: 0;
}

.checklist-category:hover {
    border-color: var(--navy-500);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--navy-600);
}

.category-header .category-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: var(--accent-blue);
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-circle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    border: 2px solid var(--accent-indigo);
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.check-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.3s ease;
}

.checklist-item:hover .check-circle {
    border-color: var(--accent-blue);
    background: rgba(6, 182, 212, 0.12);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
}

.checklist-item:hover .check-circle::after {
    background: var(--gradient-primary);
}

.checklist-item-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--slate-200);
    margin: 0 0 4px;
    line-height: 1.4;
}

.checklist-item-content p {
    font-size: 0.95rem;
    color: var(--slate-400);
    margin: 0;
    line-height: 1.6;
}

/* ------------------------------------------
   4. Timeline Section
   ------------------------------------------ */
.timeline-section {
    padding: 90px 0;
    background: var(--navy-850);
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
}

.exit-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 50px;
}

/* Vertical gradient line */
.exit-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline dot */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -43px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
    z-index: 1;
}

/* Outer glow ring */
.timeline-item::after {
    content: '';
    position: absolute;
    left: -47px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.25);
    z-index: 0;
}

.timeline-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: inline-block;
}

.timeline-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.timeline-card:hover {
    border-color: var(--navy-500);
    transform: translateX(4px);
}

.timeline-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--slate-400);
    margin: 0;
    line-height: 1.6;
}

/* ------------------------------------------
   5. Exit CTA Section
   ------------------------------------------ */
.exit-cta {
    padding: 90px 0;
    background: var(--navy-900);
    text-align: center;
}

.exit-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.exit-cta p {
    font-size: 1.1rem;
    color: var(--slate-300);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.exit-cta .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exit-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
}

/* ------------------------------------------
   Responsive - 768px
   ------------------------------------------ */
@media (max-width: 768px) {
    .exit-hero {
        padding: 130px 0 70px;
    }

    .exit-hero h1 {
        font-size: 2.4rem;
    }

    .exit-hero p {
        font-size: 1.05rem;
    }

    .stat-highlights {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }

    .stat-highlight {
        padding: 30px 24px;
    }

    .stat-highlight .stat-value {
        font-size: 2.2rem;
    }

    .checklist-category {
        padding: 28px 24px;
    }

    .category-header h3 {
        font-size: 1.2rem;
    }

    .exit-timeline {
        padding-left: 40px;
    }

    .exit-timeline::before {
        left: 10px;
    }

    .timeline-item::before {
        left: -36px;
        width: 14px;
        height: 14px;
    }

    .timeline-item::after {
        left: -40px;
        top: 4px;
        width: 22px;
        height: 22px;
    }

    .timeline-card {
        padding: 20px 22px;
    }

    .timeline-section h2,
    .checklist-section h2,
    .why-plan-section h2,
    .exit-cta h2 {
        font-size: 1.8rem;
    }
}

/* ------------------------------------------
   Responsive - 480px
   ------------------------------------------ */
@media (max-width: 480px) {
    .exit-hero {
        padding: 110px 0 60px;
    }

    .exit-hero h1 {
        font-size: 1.9rem;
    }

    .exit-hero p {
        font-size: 0.95rem;
    }

    .why-plan-section,
    .checklist-section,
    .timeline-section,
    .exit-cta {
        padding: 60px 0;
    }

    .stat-highlight .stat-value {
        font-size: 1.9rem;
    }

    .checklist-category {
        padding: 22px 18px;
    }

    .category-header {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 14px;
    }

    .category-header .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .category-header h3 {
        font-size: 1.1rem;
    }

    .checklist-item {
        gap: 12px;
    }

    .check-circle {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .checklist-item-content h4 {
        font-size: 0.95rem;
    }

    .checklist-item-content p {
        font-size: 0.88rem;
    }

    .exit-timeline {
        padding-left: 34px;
    }

    .exit-timeline::before {
        left: 8px;
    }

    .timeline-item::before {
        left: -31px;
        width: 12px;
        height: 12px;
    }

    .timeline-item::after {
        left: -35px;
        width: 20px;
        height: 20px;
    }

    .timeline-item {
        margin-bottom: 36px;
    }

    .timeline-card {
        padding: 18px;
    }

    .timeline-card h4 {
        font-size: 1.05rem;
    }

    .timeline-section h2,
    .checklist-section h2,
    .why-plan-section h2,
    .exit-cta h2 {
        font-size: 1.5rem;
    }

    .exit-cta p {
        font-size: 1rem;
    }

    .exit-cta .btn-primary {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}
