:root {
    --bg:#f5f7fb;
    --card:#ffffff;
    --text:#0f172a;
    --muted:#64748b;
    --primary:#2563eb;
    --border:#e5e7eb;
    --shadow:0 18px 40px rgba(15,23,42,0.08);
}

/* Layout */
.exec-wrap {
    background: radial-gradient(circle at top,#eef2ff,#f8fafc);
    padding: 80px 0;
}

.exec-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
}

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

/* Profile Card */
.profile-card {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.profile-photo {
    width:100%;
    height:380px;
    object-fit:cover;
}

.profile-body {
    padding: 22px;
}

.profile-name {
    font-size: 26px;
    font-weight: 700;
}

.profile-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.profile-list {
    margin-top: 18px;
    font-size: 14px;
}

.profile-list div {
    display:flex;
    justify-content:space-between;
    padding:6px 0;
    border-bottom:1px dashed var(--border);
}

/* Content */
.exec-title {
    font-size: 46px;
    font-weight: 800;
    letter-spacing:-0.03em;
}

.exec-subtitle {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.exec-text {
    margin-top: 22px;
    font-size: 17px;
    line-height:1.8;
    color: var(--text);
}

/* Badges */
.badge-industry {
    background:#e0e7ff;
    color:#1e3a8a;
    padding:6px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:500;
    margin:4px;
    display:inline-block;
}

/* Metrics */
.metrics {
    margin-top: 40px;
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.metric-box {
    background: var(--card);
    padding: 26px;
    border-radius: 18px;
    text-align:center;
    box-shadow: var(--shadow);
}

.metric-box strong {
    font-size: 28px;
    color: var(--primary);
}

/* Button */

.btn-exec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(120deg,#2563eb,#6366f1);;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-exec i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-exec:hover {
    color: #fff;
    background: #6366f1;
    transform: translateY(-2px);
}

.btn-exec:hover i {
    transform: translateX(4px);
}

.hero {
    background: linear-gradient(120deg,#0f172a,#1e293b);
    color: #fff;
    padding: 100px 0;
}

.hero-img {
    max-width: 300px;
    border: 6px solid #fff;
}

.timeline-item {
    border-left: 3px solid #0d6efd;
    padding-left: 20px;
    margin-bottom: 30px;
}

.timeline-year {
    font-weight: bold;
    color: #0d6efd;
}
.timeline-description {
    font-size: 16px;
    color: #333;
}

.footer-bottom {
    background: #0d0d0d;
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left p {
    margin: 0;
    color: #bdbdbd;
    font-size: 14px;
}

.footer-left a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.footer-left a:hover {
    color: #0d6efd;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.footer-social li a {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social li a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 767px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
