/* ============================================================
   mentor-profile.css — /courses/mentor/{id} individual profile
   Clean white hero · split layout · sticky booking sidebar
   Depends on design-system.css for tokens.
   ============================================================ */

.mentor-profile-main { background: var(--surface-page); padding-bottom: 40px; }

/* ---------- HERO ---------- */
.mp-hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 32px 0 28px;
    position: relative;
}
.mp-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary);
}

.mp-hero-inner {
    display: grid;
    grid-template-columns: 128px 1fr auto;
    gap: 28px;
    align-items: flex-start;
}

.mp-avatar-wrap { position: relative; width: 128px; height: 128px; }
.mp-avatar {
    width: 128px; height: 128px; border-radius: 50%;
    object-fit: cover; border: 4px solid var(--white);
    box-shadow: 0 0 0 1px var(--border), var(--shadow-md);
}
.mp-avail-badge {
    position: absolute; bottom: 4px; right: 4px;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--success); color: var(--white);
    border: 3px solid var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px;
}

.mp-id h1 {
    font-size: 28px; font-weight: 700; color: var(--gray-900);
    line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 4px;
}
.mp-id .job-title {
    font-size: 15px; color: var(--gray-600); font-weight: 500; margin-bottom: 14px;
}
.mp-id .job-title .at { color: var(--gray-400); margin: 0 4px; }
.mp-id .job-title .company { color: var(--gray-800); font-weight: 600; }

.mp-stats {
    display: flex; gap: 28px; margin-bottom: 16px;
    padding: 14px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
    flex-wrap: wrap;
}
.mp-stat .num {
    font-size: 20px; font-weight: 700; color: var(--gray-900); line-height: 1;
    display: flex; align-items: center; gap: 6px; letter-spacing: -0.01em;
}
.mp-stat .num .star { color: var(--accent); font-size: 18px; }
.mp-stat .label { font-size: 11px; color: var(--gray-500); margin-top: 4px; font-weight: 500; }

.mp-hero-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.mp-tag {
    display: inline-flex; align-items: center; padding: 4px 10px;
    font-size: 11px; font-weight: 600; border-radius: var(--radius-full);
    background: var(--gray-100); color: var(--gray-700);
}
.mp-tag.tag-pm { background: var(--primary-lighter); color: var(--primary); }
.mp-tag.tag-ba { background: #F3E8FF; color: #2563EB; }
.mp-tag.tag-agile { background: var(--accent-lighter); color: var(--accent); }
.mp-tag.tag-data { background: #FDF2F8; color: #BE185D; }
.mp-tag.tag-lead { background: var(--success-light); color: var(--success); }
.mp-tag.tag-ux { background: #EEF2FF; color: #2563EB; }

.mp-meta {
    display: flex; gap: 16px; font-size: 12px; color: var(--gray-500); flex-wrap: wrap;
}
.mp-meta span { display: inline-flex; align-items: center; gap: 5px; }
.mp-meta i { color: var(--gray-400); font-size: 11px; }

.mp-hero-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.mp-hero-actions .btn-primary { padding: 12px 22px; font-size: 14px; }
.mp-hero-social { display: flex; gap: 4px; }
.mp-hero-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gray-100); color: var(--gray-600);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; transition: all 0.15s; text-decoration: none;
}
.mp-hero-social a:hover { background: var(--primary-lighter); color: var(--primary); }

/* ---------- 2-col body ---------- */
.mp-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    padding: 28px 0 60px;
    align-items: flex-start;
}
.mp-main-col { display: flex; flex-direction: column; gap: 16px; }

/* ---------- Section cards ---------- */
.mp-section {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 24px 28px;
}
.mp-section h2 {
    font-size: 16px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
    letter-spacing: -0.01em;
}
.mp-section h2 i { color: var(--gray-400); font-size: 14px; }
.mp-section h2 .muted { color: var(--gray-500); font-size: 12px; font-weight: 500; margin-left: 4px; }
.mp-section p { font-size: 14px; color: var(--gray-700); line-height: 1.65; }
.mp-section p + p { margin-top: 10px; }
.mp-section h3 {
    font-size: 13px; font-weight: 700; color: var(--gray-800);
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-top: 18px; margin-bottom: 8px;
}

/* Chips (skills) */
.mp-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.mp-chips .mp-tag { padding: 6px 12px; font-size: 12px; }

/* Education items */
.mp-edu-item { padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.mp-edu-item:last-child { border-bottom: none; }
.mp-edu-item strong { color: var(--gray-900); }
.mp-edu-item small { color: var(--gray-500); font-size: 12px; display: block; margin-top: 2px; }

/* ---------- Courses grid ---------- */
.mp-courses-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px; margin-top: 4px;
}
.mp-course-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
    overflow: hidden; transition: all 0.15s; text-decoration: none;
}
.mp-course-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.mp-course-thumb { height: 110px; background: var(--gray-200); position: relative; }
.mp-course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mp-course-students {
    position: absolute; top: 8px; right: 8px;
    background: rgba(17,24,39,0.75); color: var(--white);
    padding: 3px 8px; border-radius: var(--radius-sm);
    font-size: 11px; font-weight: 600;
}
.mp-course-body { padding: 12px 14px; }
.mp-course-title {
    font-size: 13px; font-weight: 600; color: var(--gray-900); line-height: 1.35; margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mp-course-meta { font-size: 11px; color: var(--gray-500); display: flex; gap: 10px; }

.mp-center-link { margin-top: 14px; text-align: center; }

/* ---------- Reviews ---------- */
.mp-reviews-summary {
    display: flex; gap: 24px; align-items: center;
    padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); margin-bottom: 16px;
}
.mp-big-rating { text-align: center; flex-shrink: 0; }
.mp-big-rating .score { font-size: 40px; font-weight: 700; color: var(--gray-900); line-height: 1; letter-spacing: -0.02em; }
.mp-big-rating .stars { color: var(--accent); font-size: 13px; margin-top: 4px; letter-spacing: 2px; }
.mp-big-rating .count { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

.mp-rating-bars { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mp-rating-bar { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--gray-600); }
.mp-rating-bar .label { width: 14px; text-align: right; }
.mp-rating-bar .track { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.mp-rating-bar .fill { height: 100%; background: var(--accent); }
.mp-rating-bar .pct { width: 34px; text-align: right; color: var(--gray-500); }

.mp-review-item { padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.mp-review-item:last-child { border-bottom: none; }
.mp-review-head { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.mp-review-head img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.mp-review-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.mp-review-date { font-size: 11px; color: var(--gray-500); }
.mp-review-stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; }
.mp-review-text { font-size: 13px; color: var(--gray-700); line-height: 1.6; }

.mp-no-reviews {
    text-align: center; padding: 24px; color: var(--gray-500); font-size: 13px;
}

/* ---------- Sticky sidebar (booking card) ---------- */
.mp-side-col {
    position: sticky; top: 16px;
    display: flex; flex-direction: column; gap: 16px;
}

.mp-booking-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
}
.mp-booking-head {
    padding: 18px 22px 14px; border-bottom: 1px solid var(--gray-200);
}
.mp-booking-price { display: flex; align-items: baseline; gap: 6px; }
.mp-booking-price .amount { font-size: 26px; font-weight: 700; color: var(--gray-900); letter-spacing: -0.02em; }
.mp-booking-price .unit { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.mp-booking-price-sub { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.mp-booking-body { padding: 14px 22px 18px; }
.mp-booking-step-label {
    font-size: 11px; font-weight: 700; color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
}

.mp-tier {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-md);
    cursor: pointer; transition: all 0.15s; margin-bottom: 6px;
}
.mp-tier:hover { border-color: var(--primary); }
.mp-tier.is-selected { border-color: var(--primary); background: var(--primary-lighter); }
.mp-tier input[type="radio"] { display: none; }
.mp-tier-radio {
    width: 16px; height: 16px; border: 2px solid var(--gray-300); border-radius: 50%;
    flex-shrink: 0; position: relative; transition: border-color 0.15s;
}
.mp-tier.is-selected .mp-tier-radio { border-color: var(--primary); }
.mp-tier.is-selected .mp-tier-radio::after {
    content: ''; position: absolute; top: 2px; left: 2px; width: 8px; height: 8px;
    background: var(--primary); border-radius: 50%;
}
.mp-tier-info { flex: 1; min-width: 0; }
.mp-tier-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.mp-tier-desc { font-size: 11px; color: var(--gray-500); margin-top: 1px; }
.mp-tier-price { font-size: 13px; font-weight: 700; color: var(--gray-900); white-space: nowrap; }

.mp-booking-cta { margin-top: 14px; }
.mp-booking-cta .btn { width: 100%; justify-content: center; }

.mp-booking-trust {
    margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gray-200);
    display: flex; flex-direction: column; gap: 6px;
}
.mp-booking-trust-row {
    display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-600);
}
.mp-booking-trust-row i { color: var(--success); font-size: 11px; width: 14px; }

.mp-side-help {
    padding: 14px 18px; font-size: 12px; color: var(--gray-600);
    background: var(--gray-100); border-radius: var(--radius-md); line-height: 1.55;
}
.mp-side-help i { color: var(--primary); margin-right: 6px; }
.mp-side-help a { color: var(--primary); font-weight: 600; text-decoration: none; }

/* Login-gated sidebar state */
.mp-booking-gated {
    padding: 24px 22px; text-align: center;
}
.mp-booking-gated i { font-size: 28px; color: var(--gray-300); margin-bottom: 10px; }
.mp-booking-gated p { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; line-height: 1.5; }

/* Incomplete-profile sidebar state */
.mp-booking-incomplete {
    padding: 24px 22px; text-align: center;
}
.mp-booking-incomplete i { font-size: 28px; color: var(--warning); margin-bottom: 10px; }
.mp-booking-incomplete p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ---------- Related mentors strip ---------- */
.mp-related {
    background: var(--white); border-top: 1px solid var(--border);
    padding: 40px 0;
}
.mp-related-head { margin-bottom: 20px; }
.mp-related-head h2 { font-size: 20px; font-weight: 700; color: var(--gray-900); letter-spacing: -0.01em; }
.mp-related-head p { font-size: 13px; color: var(--gray-500); margin-top: 3px; }

.mp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mp-mini {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 18px; transition: all 0.15s; text-decoration: none; display: block;
}
.mp-mini:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.mp-mini-head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.mp-mini-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--primary-light);
}
.mp-mini-name { font-size: 13px; font-weight: 700; color: var(--gray-900); line-height: 1.3; }
.mp-mini-title { font-size: 11px; color: var(--gray-600); margin-top: 2px; }
.mp-mini-trust { font-size: 11px; color: var(--gray-600); display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.mp-mini-trust .star { color: var(--accent); }
.mp-mini-price { font-size: 12px; color: var(--gray-700); font-weight: 600; }

/* ---------- Mobile fixed bottom CTA ---------- */
.mp-mobile-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
    background: var(--white); border-top: 1px solid var(--border);
    padding: 10px 16px; box-shadow: 0 -4px 10px rgba(0,0,0,0.04);
}
.mp-mobile-cta-inner { display: flex; gap: 10px; align-items: center; }
.mp-mobile-cta-price { flex: 1; min-width: 0; }
.mp-mobile-cta-price .amount { font-size: 16px; font-weight: 700; color: var(--gray-900); }
.mp-mobile-cta-price .sub { font-size: 11px; color: var(--gray-500); }
.mp-mobile-cta .btn { flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .mp-body { grid-template-columns: 1fr; }
    .mp-side-col { position: static; }
    .mp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mp-hero-inner { grid-template-columns: 80px 1fr; gap: 14px; }
    .mp-avatar-wrap, .mp-avatar { width: 80px; height: 80px; }
    .mp-avail-badge { width: 22px; height: 22px; font-size: 9px; }
    .mp-hero-actions { display: none; }
    .mp-id h1 { font-size: 22px; }
    .mp-stats { gap: 16px; flex-wrap: wrap; }
    .mp-stat .num { font-size: 16px; }
    .mp-related-grid { grid-template-columns: 1fr; }
    .mentor-profile-main { padding-bottom: 90px; }
    .mp-mobile-cta { display: block; }
    .mp-courses-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================================
   Mentor profile v2 (.mp2) — workshop-style landing: full-bleed hero + bands
   ============================================================================ */
.mp2 { background: var(--white); }
.mp2 .container { max-width: 1120px; }

/* HERO */
.mp2-hero { position: relative; background: #0F172A; color: #fff; background-size: cover; background-position: center; overflow: hidden; }
.mp2-hero.has-cover .mp2-hero-tint { position: absolute; inset: 0; background: rgba(15,23,42,.80); }
.mp2-hero:not(.has-cover) .mp2-hero-tint { display: none; }
.mp2-hero-wrap { position: relative; display: grid; grid-template-columns: 1fr 372px; gap: 40px; align-items: start; padding: 34px 20px 48px; }
.mp2-back { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; margin-bottom: 22px; }
.mp2-back:hover { color: #fff; }
.mp2-hero-id { display: flex; gap: 18px; align-items: center; }
.mp2-avatar-wrap { position: relative; flex-shrink: 0; }
.mp2-avatar { width: 96px; height: 96px; border-radius: 22px; object-fit: cover; border: 3px solid rgba(255,255,255,.15); }
.mp2-avatar-init { width: 96px; height: 96px; border-radius: 22px; background: #2563EB; color: #fff; align-items: center; justify-content: center; font-size: 34px; font-weight: 800; }
.mp2-avail { position: absolute; right: -4px; bottom: -4px; width: 26px; height: 26px; border-radius: 50%; background: #10B981; color: #fff; display: grid; place-items: center; font-size: 11px; border: 3px solid #0F172A; }
.mp2-hero-tag { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 11px; border-radius: 999px; background: rgba(96,165,250,.2); color: #93C5FD; margin-bottom: 8px; }
.mp2-hero-idtext h1 { font-size: 30px; font-weight: 800; margin: 0; line-height: 1.15; color: #fff; }
.mp2-hero-job { font-size: 15px; color: #CBD5E1; margin-top: 5px; }
.mp2-hero-line { font-size: 16px; color: #E2E8F0; line-height: 1.6; margin: 20px 0 0; max-width: 620px; }
.mp2-hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; font-size: 14px; color: #CBD5E1; }
.mp2-hero-trust strong { color: #fff; font-weight: 700; }
.mp2-hero-trust i { margin-right: 5px; color: #94A3B8; }
.mp2-hero-cta { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.mp2-hero-cta .btn-primary { background: #2563EB; border: none; }
.mp2-hero-cta .btn-primary:hover { background: #1D4ED8; }
.mp2-hero-social { display: flex; gap: 8px; }
.mp2-hero-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; text-decoration: none; transition: background .15s; }
.mp2-hero-social a:hover { background: rgba(255,255,255,.2); }

/* Floating booking panel */
.mp2-hero-panel { background: #fff; color: var(--gray-900); border-radius: 16px; box-shadow: 0 20px 48px rgba(2,6,23,.35); overflow: hidden; }
.mp2-panel-msg { padding: 26px 22px; text-align: center; }
.mp2-panel-msg > i { font-size: 26px; color: var(--gray-300); margin-bottom: 12px; }
.mp2-panel-msg p { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; margin: 0 0 14px; }

/* BANDS */
.mp2-band { padding: 52px 0; border-bottom: 1px solid #F1F5F9; }
.mp2-band.tint { background: #F8FAFC; }
.mp2-shell { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.mp2-shell-narrow { max-width: 760px; }
.mp2-band-title { margin-bottom: 26px; }
.mp2-band-title h2 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin: 0; }
.mp2-band-title p { font-size: 15px; color: var(--gray-500); margin: 6px 0 0; }
.mp2-prose p { font-size: 16px; line-height: 1.75; color: var(--gray-700); margin: 0 0 16px; }
.mp2-prose p:last-child { margin-bottom: 0; }

/* Value props */
.mp2-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mp2-value { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.mp2-value-ico { width: 46px; height: 46px; border-radius: 12px; background: #EFF6FF; color: #2563EB; display: grid; place-items: center; font-size: 18px; margin-bottom: 14px; }
.mp2-value-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.mp2-value-desc { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; }

/* Expertise */
.mp2-expertise { display: flex; flex-direction: column; gap: 20px; }
.mp2-exp-block { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.mp2-exp-label { flex: 0 0 150px; font-size: 14px; font-weight: 700; color: var(--gray-700); display: flex; align-items: center; gap: 8px; }
.mp2-exp-label i { color: var(--gray-400); }
.mp2-exp-text { font-size: 15px; color: var(--gray-700); }
.mp2-chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; min-width: 200px; }
.mp2-chip { font-size: 13px; font-weight: 600; color: #334155; background: #F1F5F9; border-radius: 999px; padding: 6px 13px; }

/* Courses strip */
.mp2-courses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mp2-course { display: block; background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .15s, transform .1s; }
.mp2-course:hover { box-shadow: 0 12px 28px rgba(15,23,42,.10); transform: translateY(-2px); }
.mp2-course-thumb { position: relative; aspect-ratio: 16/9; background: #EEF2FF; overflow: hidden; }
/* Branded text placeholder — always in the DOM behind the image; shows when there is no
   thumbnail or the <img> fails (onerror removes the img). Keeps every card consistent. */
.mp2-course-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 16px 20px; text-align: center; }
.mp2-course-ph::after { content: "\f02d"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -8px; bottom: -16px; font-size: 84px; color: rgba(37,99,235,.06); pointer-events: none; }
.mp2-course-ph-cat { position: relative; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #2563EB; opacity: .85; }
.mp2-course-ph-title { position: relative; font-size: 18px; font-weight: 800; color: #2563EB; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mp2-course-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.mp2-course-badge { position: absolute; bottom: 8px; right: 8px; z-index: 2; background: rgba(15,23,42,.78); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.mp2-course-body { padding: 14px 16px; }
.mp2-course-title { font-size: 14.5px; font-weight: 700; color: var(--gray-900); line-height: 1.35; }
.mp2-course-meta { font-size: 12px; color: var(--gray-500); margin-top: 6px; }

/* Reviews */
.mp2-reviews { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.mp2-review-summary { text-align: center; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.mp2-big-score { font-size: 48px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.mp2-big-stars { color: #FBBF24; font-size: 18px; letter-spacing: 2px; margin: 6px 0; }
.mp2-big-count { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.mp2-bars { display: flex; flex-direction: column; gap: 6px; }
.mp2-bar { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-500); }
.mp2-bar .l { width: 24px; text-align: right; }
.mp2-bar .t { flex: 1; height: 7px; background: #EDF2F7; border-radius: 99px; overflow: hidden; }
.mp2-bar .f { display: block; height: 100%; background: #FBBF24; border-radius: 99px; }
.mp2-testimonials { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.mp2-testimonial { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.mp2-t-stars { color: #FBBF24; font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
.mp2-t-text { font-size: 14.5px; color: var(--gray-700); line-height: 1.6; margin: 0 0 14px; }
.mp2-t-author { display: flex; align-items: center; gap: 10px; }
.mp2-t-author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.mp2-t-name { font-size: 13.5px; font-weight: 700; color: var(--gray-900); }
.mp2-t-date { font-size: 12px; color: var(--gray-400); }
.mp2-empty-reviews { text-align: center; padding: 30px; color: var(--gray-500); }
.mp2-empty-reviews i { font-size: 30px; color: var(--gray-300); margin-bottom: 12px; display: block; }

/* FAQ */
.mp2-faq { display: flex; flex-direction: column; gap: 10px; }
.mp2-faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.mp2-faq-item summary { list-style: none; cursor: pointer; padding: 16px 18px; font-size: 15px; font-weight: 600; color: var(--gray-900); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mp2-faq-item summary::-webkit-details-marker { display: none; }
.mp2-faq-item summary i { color: var(--gray-400); font-size: 13px; transition: transform .2s; }
.mp2-faq-item[open] summary i { transform: rotate(180deg); }
.mp2-faq-a { padding: 0 18px 16px; font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* CTA band */
.mp2-cta { background: #0F172A; color: #fff; padding: 56px 0; text-align: center; }
.mp2-cta h2 { font-size: 26px; font-weight: 800; margin: 0 0 10px; color: #fff; }
.mp2-cta p { font-size: 16px; color: #94A3B8; margin: 0 0 24px; }
.mp2-cta-btn { background: #2563EB; color: #fff; border: none; padding: 14px 30px; border-radius: 12px; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.mp2-cta-btn:hover { background: #1D4ED8; }

/* Related */
.mp2-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mp2-rel { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; text-align: center; text-decoration: none; color: inherit; transition: box-shadow .15s, transform .1s; }
.mp2-rel:hover { box-shadow: 0 12px 28px rgba(15,23,42,.09); transform: translateY(-2px); }
.mp2-rel-av { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; display: block; }
.mp2-rel-name { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.mp2-rel-job { font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }
.mp2-rel-meta { font-size: 12.5px; color: var(--gray-600); margin-top: 8px; }
.mp2-rel-price { font-size: 13px; font-weight: 700; color: #2563EB; margin-top: 6px; }

/* Responsive */
@media (max-width: 900px) {
    .mp2-hero-wrap { grid-template-columns: 1fr; gap: 26px; }
    .mp2-hero-panel { max-width: 420px; }
    .mp2-values { grid-template-columns: repeat(2, 1fr); }
    .mp2-courses, .mp2-related { grid-template-columns: repeat(2, 1fr); }
    .mp2-reviews { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 560px) {
    .mp2-hero-id { flex-direction: column; text-align: center; align-items: center; }
    .mp2-hero-idtext h1 { font-size: 26px; }
    .mp2-hero-cta { justify-content: center; }
    .mp2-hero-trust { justify-content: center; }
    .mp2-values, .mp2-courses, .mp2-related { grid-template-columns: 1fr; }
    .mp2-exp-label { flex-basis: 100%; }
    .mp2-band { padding: 40px 0; }
}
