.page-subtitle{
    color:#d9d9d9;
    font-size:1.05rem;
    max-width:700px;
    margin:0 auto;
}

.bg-light-soft{
    background:#f8fafc;
}

.section-kicker{
    display:inline-block;
    font-size:.85rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#00263A;
    font-weight:700;
    margin-bottom:12px;
}

.section-heading{
    font-size:2.2rem;
    line-height:1.2;
    margin-bottom:20px;
}

.about-profile-image{
    width:100%;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.lead-text{
    font-size:1.06rem;
    color:#5f6773;
    line-height:1.9;
    margin-bottom:28px;
}

.profile-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:28px;
}

.highlight-card,
.summary-card,
.experience-card,
.skill-group-card,
.timeline-content,
.achievement-feature{
    background:#fff;
    border-radius:16px;
    padding:24px;
    box-shadow:0 10px 30px rgba(17,24,39,.06);
    border:1px solid #eef1f5;
}

.summary-card i{
    font-size:2rem;
    color:#00263A;
    margin-bottom:16px;
    display:inline-block;
}

.timeline{
    position:relative;
    max-width:950px;
    margin:0 auto;
}

.timeline:before{
    content:"";
    position:absolute;
    left:120px;
    top:0;
    bottom:0;
    width:2px;
    background:#e5e7eb;
}

.timeline-item{
    display:grid;
    grid-template-columns:100px 1fr;
    gap:32px;
    position:relative;
    margin-bottom:30px;
}

.timeline-year{
    font-weight:700;
    color:#00263A;
    padding-top:14px;
}

.timeline-content{
    position:relative;
}

.timeline-content:before{
    content:"";
    position:absolute;
    left:-38px;
    top:24px;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#00263A;
    box-shadow:0 0 0 6px rgba(108,99,255,.12);
}

.timeline-place,
.exp-org{
    color:#6b7280;
    font-weight:600;
    margin-bottom:10px;
}

.exp-date{
    display:inline-block;
    font-size:.85rem;
    font-weight:700;
    color:#00263A;
    margin-bottom:10px;
}

.achievement-feature{
    display:flex;
    align-items:center;
    gap:22px;
}

.achievement-icon{
    width:74px;
    height:74px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f3f1ff;
    color:#00263A;
    font-size:1.8rem;
    flex-shrink:0;
}

.skill-group-card ul{
    padding-left:18px;
    margin:0;
}

.skill-group-card li{
    margin-bottom:10px;
    color:#4b5563;
}

.btn-outline-main{
    display:inline-block;
    padding:14px 32px;
    border:1px solid #00263A;
    color:#00263A;
    border-radius:6px;
    font-weight:600;
    transition:all .3s ease;
}

.btn-outline-main:hover{
    background:#00263A;
    color:#fff;
}

@media (max-width: 768px){
    .profile-highlights{
        grid-template-columns:1fr;
    }

    .timeline:before{
        display:none;
    }

    .timeline-item{
        grid-template-columns:1fr;
        gap:10px;
    }

    .timeline-content:before{
        display:none;
    }

    .achievement-feature{
        flex-direction:column;
        text-align:center;
    }
}

.about-rich-text p {
    margin-bottom: 1rem;
}

.about-rich-text ul,
.about-rich-text ol {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.about-rich-text li {
    margin-bottom: .4rem;
}

.about-rich-text h1,
.about-rich-text h2,
.about-rich-text h3,
.about-rich-text h4,
.about-rich-text h5,
.about-rich-text h6 {
    margin-top: 1rem;
    margin-bottom: .75rem;
}

.about-rich-text a {
    color: #00263A;
    text-decoration: underline;
}

.cv-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.cv-modal.active {
    opacity: 1;
    visibility: visible;
}

.cv-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.cv-modal-dialog {
    position: relative;
    width: min(1100px, 92vw);
    height: min(85vh, 900px);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,.28);
    transform: translateY(20px) scale(.98);
    transition: transform .35s ease;
    z-index: 2;
}

.cv-modal.active .cv-modal-dialog {
    transform: translateY(0) scale(1);
}

.cv-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 5;
    background: rgba(0,0,0,.7);
    color: #fff;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cv-modal-body {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
}

.cv-modal-body iframe {
    width: 100%;
    height: 100%;
    display: block;
}

body.cv-modal-open {
    overflow: hidden;
}