/* ===========================
   Process Page — Timeline
   =========================== */

.process-timeline {
    position: relative;
    padding: 1.5rem 0;
    margin: 2rem 0 3rem;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    opacity: 0.3;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 2rem;
}

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

.timeline-marker {
    position: absolute;
    left: 0.75rem;
    top: 0.15rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-color);
    z-index: 1;
}

.timeline-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--text-link-color) !important;
}

.timeline-content p {
    margin: 0;
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   Report Preview
   =========================== */

.report-preview {
    margin: 2.5rem 0;
}

.report-section {
    background: var(--secondary-color);
    border-radius: 0.7rem;
    padding: 1.8rem 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.report-section h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.report-section p {
    margin-bottom: 0.8rem;
    line-height: 1.75;
    opacity: 0.9;
}

.report-section p:last-child {
    margin-bottom: 0;
}

.report-section ul,
.report-section ol {
    padding-left: 1.3rem;
    margin-bottom: 0.8rem;
}

.report-section li {
    margin-bottom: 0.4rem;
    line-height: 1.65;
    opacity: 0.9;
}

.report-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary-color);
    margin-bottom: 0.5rem;
}

.report-fade {
    position: relative;
    overflow: hidden;
    max-height: 12rem;
}

.report-fade::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background: linear-gradient(transparent, var(--secondary-color));
    pointer-events: none;
}

/* ===========================
   Session Summary Sample
   =========================== */

.session-summary {
    background: var(--secondary-color);
    border-radius: 0.7rem;
    padding: 2rem 2rem 1.8rem;
    margin: 2rem 0;
    border: 1px solid var(--primary-color);
    border-top: 3px solid var(--primary-color);
}

.session-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--background-color);
}

.session-summary-header h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--primary-color) !important;
    font-weight: 700;
}

.session-summary-header .session-meta {
    font-size: 0.85rem;
    opacity: 0.6;
}

.session-summary h5 {
    font-size: 0.95rem;
    color: var(--text-link-color) !important;
    margin-top: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.session-summary p {
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.session-summary ul {
    padding-left: 1.3rem;
    margin-bottom: 0.8rem;
}

.session-summary li {
    margin-bottom: 0.35rem;
    line-height: 1.65;
    opacity: 0.9;
}

/* ===========================
   CTA Button
   =========================== */

.process-cta {
    text-align: center;
    padding: 2rem 0;
}

.process-cta .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--text-link-color);
    color: var(--background-color) !important;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: opacity 0.2s ease;
    border: 2px solid var(--text-link-color);
}

.process-cta .btn:hover {
    background: transparent;
    color: var(--text-link-color) !important;
}

.process-cta .btn::after {
    display: none !important;
}

/* ===========================
   Standalone Download Link
   =========================== */

.btn-download {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--text-link-color);
    color: var(--background-color) !important;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    border: 2px solid var(--text-link-color);
    margin: 1rem 0;
}

.btn-download:hover {
    background: transparent;
    color: var(--text-link-color) !important;
}

.btn-download::after {
    display: none !important;
}

/* ===========================
   Report Card h3
   =========================== */

.report-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* ===========================
   AI Section Subheadings
   =========================== */

#single .page-content h3 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
    .process-timeline::before {
        left: 1.25rem;
    }

    .timeline-marker {
        left: 0;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.75rem;
    }

    .timeline-item {
        padding-left: 4rem;
    }

    .report-section {
        padding: 1.3rem 1.2rem;
    }

    .session-summary {
        padding: 1.3rem 1.2rem;
    }

    .session-summary-header {
        flex-direction: column;
        gap: 0.3rem;
    }
}