/* ==========================================================================
   PMP Course Page (P14)
   ========================================================================== */
.pmp-page {
    --pmp-brand: #2f5aae;
    --pmp-brand2: #338eaa;
    --pmp-green: #27ae60;
    --pmp-green2: #2ecc71;
    --pmp-dark: #0c1a2a;
    --pmp-body: #334155;
    --pmp-line: #e8ecf1;
    --pmp-gold: #f59e0b;
}
.pmp-page * { box-sizing: border-box; }
.pmp-page .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.pmp-page .section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 22px; border-radius: 50px;
    font-size: 14px; font-weight: 800;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--pmp-brand), var(--pmp-brand2));
    color: #fff;
    box-shadow: 0 6px 20px rgba(47, 90, 174, 0.25);
}

.pmp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 34px; border-radius: 50px;
    font-size: 1rem; font-weight: 800;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pmp-btn--green {
    background: linear-gradient(135deg, var(--pmp-green), var(--pmp-green2));
    color: #fff;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
}
.pmp-btn--green:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(39, 174, 96, 0.4); color: #fff; }
.pmp-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(8px);
}
.pmp-btn--ghost:hover { background: #fff; color: var(--pmp-dark); transform: translateY(-3px); }
.pmp-btn--lg { padding: 18px 44px; font-size: 1.1rem; border-radius: 60px; }

/* ============ 1. HERO ============ */
.pmp-hero {
    position: relative;
    min-height: 82vh;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0c1a2a 0%, #1a3a6b 50%, #2f5aae 100%);
    background-size: cover;
    background-position: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}
.pmp-hero.has-bg { background-color: #0c1a2a; }
.pmp-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(12, 26, 42, 0.88), rgba(47, 90, 174, 0.7)); }
.pmp-hero__shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.pmp-hero__shape { position: absolute; border-radius: 50%; }
.pmp-hero__shape--1 { width: 360px; height: 360px; top: -120px; right: -100px; background: radial-gradient(circle, rgba(39, 174, 96, 0.22), transparent 70%); }
.pmp-hero__shape--2 { width: 300px; height: 300px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%); }
.pmp-hero__shape--3 { width: 180px; height: 180px; top: 30%; right: 15%; border: 2px solid rgba(253, 224, 71, 0.18); }
.pmp-hero__content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 900px; }
.pmp-hero__title {
    font-size: clamp(28px, 4.6vw, 50px);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 14px;
}
.pmp-hero__subtitle { font-size: clamp(16px, 2.2vw, 22px); color: #fde047; font-weight: 700; margin: 0 0 18px; }
.pmp-hero__desc { font-size: clamp(14px, 1.5vw, 17px); color: rgba(255, 255, 255, 0.88); margin: 0 0 30px; line-height: 1.9; }
.pmp-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pmp-hero .section-badge { background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); }

/* ============ 2. INTRO ============ */
.pmp-intro {
    padding: 80px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    text-align: center;
    position: relative;
}
.pmp-intro::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 4px; border-radius: 0 0 4px 4px; background: linear-gradient(135deg, var(--pmp-brand), var(--pmp-brand2)); }
.pmp-intro__title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; color: var(--pmp-dark); margin: 0 auto 18px; line-height: 1.4; max-width: 900px; }
.pmp-intro__text { font-size: 1.05rem; line-height: 2; color: var(--pmp-body); font-weight: 500; max-width: 900px; margin: 0 auto; }

/* ============ 3. FEATURES ============ */
.pmp-features { padding: 90px 0; background: #fff; text-align: center; }
.pmp-features__title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; color: var(--pmp-dark); margin: 0 0 40px; }
.pmp-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: right; }
.pmp-feature-card {
    padding: 28px 22px;
    background: #fff;
    border: 2px solid var(--pmp-line);
    border-top-width: 5px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(12, 26, 42, 0.06);
    transition: transform 0.3s;
    position: relative;
}
.pmp-feature-card { --tone-color: #2f5aae; }
.pmp-feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(12, 26, 42, 0.12); }
.pmp-feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--tone-color) 18%, #fff), color-mix(in srgb, var(--tone-color) 30%, #fff));
    border: 1.5px solid color-mix(in srgb, var(--tone-color) 35%, transparent);
    color: var(--tone-color);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--tone-color) 22%, transparent);
    transition: transform 0.3s ease;
}
.pmp-feature-card:hover .pmp-feature-card__icon { transform: scale(1.08); }
.pmp-feature-card__icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 5px color-mix(in srgb, var(--tone-color) 40%, transparent));
}
.pmp-feature-card h3 { font-size: 1.05rem; font-weight: 900; color: var(--pmp-dark); margin: 10px 0 8px; line-height: 1.5; }
.pmp-feature-card p { font-size: 0.92rem; color: var(--pmp-body); margin: 0; line-height: 1.8; font-weight: 500; }
.pmp-feature-card--tone-1 { --tone-color: #2f5aae; border-top-color: #2f5aae; background: linear-gradient(180deg, #eff6ff, #fff); }
.pmp-feature-card--tone-2 { --tone-color: #27ae60; border-top-color: #27ae60; background: linear-gradient(180deg, #f0fdf4, #fff); }
.pmp-feature-card--tone-3 { --tone-color: #f59e0b; border-top-color: #f59e0b; background: linear-gradient(180deg, #fffbeb, #fff); }
.pmp-feature-card--tone-4 { --tone-color: #ec4899; border-top-color: #ec4899; background: linear-gradient(180deg, #fdf2f8, #fff); }

/* ============ 4. AUDIENCE ============ */
.pmp-audience {
    padding: 90px 0;
    background: linear-gradient(160deg, #fffbeb, #fef3c7 40%, #fff7ed);
    text-align: center;
}
.pmp-audience__title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; color: var(--pmp-dark); margin: 0 0 40px; }
.pmp-audience__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: right; max-width: 1000px; margin: 0 auto; }
.pmp-audience-card {
    position: relative;
    padding: 22px 24px 22px 60px;
    background: #fff;
    border: 2px solid var(--pmp-line);
    border-radius: 16px;
    transition: all 0.3s;
}
.pmp-audience-card:hover { transform: translateX(-4px); border-color: var(--pmp-brand); }
.pmp-audience-card__check {
    position: absolute;
    top: 22px; left: 18px;
    width: 28px; height: 28px;
    color: var(--pmp-green);
    background: rgba(39, 174, 96, 0.12);
    padding: 4px;
    border-radius: 50%;
}
.pmp-audience-card h3 { font-size: 1.05rem; font-weight: 900; color: var(--pmp-dark); margin: 0 0 6px; }
.pmp-audience-card p { font-size: 0.92rem; color: var(--pmp-body); margin: 0; line-height: 1.7; font-weight: 500; }

/* ============ 5. MODULES ============ */
.pmp-modules { padding: 100px 0; background: #fff; text-align: center; }
.pmp-modules__title { font-size: clamp(24px, 3.4vw, 38px); font-weight: 900; color: var(--pmp-dark); margin: 0 0 48px; }
.pmp-modules__list { list-style: none; padding: 0; margin: 0 auto; max-width: 900px; text-align: right; }
.pmp-modules__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f8fbff, #eaf1fd);
    border-right: 4px solid var(--pmp-brand);
    border-radius: 12px;
    transition: all 0.3s;
}
.pmp-modules__item:hover { transform: translateX(-6px); border-right-color: var(--pmp-green); background: linear-gradient(135deg, #f0fdf4, #ecfdf5); }
.pmp-modules__num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pmp-brand), var(--pmp-brand2));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px;
    box-shadow: 0 6px 16px rgba(47, 90, 174, 0.3);
}
.pmp-modules__text { font-size: 1.05rem; font-weight: 700; color: var(--pmp-dark); line-height: 1.6; }

/* ============ 6. INSTRUCTOR ============ */
.pmp-instructor { padding: 100px 0; background: linear-gradient(160deg, #f0fdf4, #f8fbff); }
.pmp-instructor__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: center; }
.pmp-instructor__image img { width: 100%; height: auto; border-radius: 24px; box-shadow: 0 20px 60px rgba(12, 26, 42, 0.18); }
.pmp-instructor__title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 900; color: var(--pmp-dark); margin: 12px 0 18px; line-height: 1.4; }
.pmp-instructor__text { font-size: 1.02rem; line-height: 2; color: var(--pmp-body); font-weight: 500; margin: 0 0 24px; }

/* ============ 7. CTA ============ */
.pmp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2f5aae 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pmp-cta__shapes { position: absolute; inset: 0; pointer-events: none; }
.pmp-cta__shapes .shape { position: absolute; border-radius: 50%; }
.pmp-cta__shapes .shape--1 { width: 420px; height: 420px; top: -140px; right: -100px; background: radial-gradient(circle, rgba(39, 174, 96, 0.2), transparent 70%); }
.pmp-cta__shapes .shape--2 { width: 320px; height: 320px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(253, 224, 71, 0.12), transparent 70%); }
.pmp-cta .container { position: relative; z-index: 1; }
.pmp-cta__title { font-size: clamp(24px, 3.6vw, 40px); font-weight: 900; color: #fff; margin: 0 0 16px; line-height: 1.35; }
.pmp-cta__desc { font-size: clamp(15px, 1.8vw, 18px); color: #fde047; margin: 0 0 32px; max-width: 760px; margin-left: auto; margin-right: auto; line-height: 1.9; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .pmp-features__grid { grid-template-columns: repeat(2, 1fr); }
    .pmp-audience__grid { grid-template-columns: 1fr; }
    .pmp-instructor__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .pmp-hero { padding-top: 100px; min-height: auto; }
    .pmp-features__grid { grid-template-columns: 1fr; }
    .pmp-modules__item { padding: 16px 18px; }
    .pmp-modules__text { font-size: 0.95rem; }
    .pmp-hero__cta { flex-direction: column; }
    .pmp-hero__cta .pmp-btn { width: 100%; }
}
