/* ============================================================
   APSKIL PGP: BUSINESS & ANALYTICS (Germany)
   Design Language: Executive Education, Data Science IDEs, 
   Corporate Precision. High contrast, classic professional,
   reimagined with modern vibrant gradients and glassmorphism.
   Light and clean version with premium soft colors.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    /* Core Brand */
    --ink:          #070B14;
    --paper:        #F8FAFC;
    --paper-dim:    #EFF6FF;
    --line:         #E2E8F0;
    --line-strong:  #CBD5E1;
    
    /* Text */
    --text:         #0F172A;
    --text-soft:    #334155;
    --text-mute:    #64748B;
    
    /* PGP Specific Theme Palette */
    --pgp-blue:     #3B82F6;   
    --pgp-blue-dark:#1D4ED8;
    --pgp-blue-dim: #DBEAFE;
    --pgp-gold:     #F59E0B;   
    --pgp-gold-dim: #FEF3C7;
    --pgp-green:    #10B981;   
    --pgp-accent:   #8B5CF6; /* Violet accent for tech vibe */
    
    /* Typography */
    --f-display: 'Fraunces', Georgia, serif;
    --f-body:    'Inter', -apple-system, sans-serif;
    --f-mono:    'JetBrains Mono', monospace;
    
    /* Shadows & Transitions */
    --s-sm: 0 4px 6px -1px rgba(59,130,246,0.06);
    --s-md: 0 10px 30px -10px rgba(59,130,246,0.08);
    --s-lg: 0 24px 50px -12px rgba(59,130,246,0.12);
    --s-glow: 0 0 20px rgba(59,130,246,0.2);
    
    --t-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-mid:  400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════════════
   GLOBAL RESET & UTILITIES
   ════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--f-body); background: var(--paper); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 64px; }
section { padding: 120px 0; }

.section-eyebrow {
    font-family: var(--f-mono); font-size: 12px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--pgp-blue-dark);
    display: inline-block; margin-bottom: 16px;
    padding: 8px 16px; background: linear-gradient(135deg, var(--pgp-blue-dim), #E0E7FF); border-radius: 6px;
    box-shadow: 0 2px 10px rgba(59,130,246,0.06);
}
.section-title { font-family: var(--f-display); font-size: clamp(36px, 4.5vw, 48px); font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.section-sub { font-size: 18px; color: var(--text-soft); max-width: 650px; line-height: 1.7; }

.section-header-center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 72px; }
.section-header-left { text-align: left; margin-bottom: 64px; }

/* ════════════════════════════════════
   1. HERO SECTION (Light & Minimalist)
   ════════════════════════════════════ */
.pgp-hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #E8F2FF 100%);
    color: var(--text);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}
/* Soft radial blue glow without the grid pattern */
.pgp-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.pgp-hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pgp-hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--pgp-blue-dim); border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 8px 20px; border-radius: 100px;
    font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    color: var(--pgp-blue-dark); margin-bottom: 32px;
}
.badge-pulse {
    width: 10px; height: 10px; background: var(--pgp-blue); border-radius: 50%;
    box-shadow: 0 0 10px var(--pgp-blue); animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

.pgp-hero-title {
    font-size: clamp(42px, 5.5vw, 64px); font-weight: 800; color: var(--ink);
    line-height: 1.1; margin-bottom: 24px;
}
.highlight-pgp { 
    background: linear-gradient(135deg, #D97706, #B45309);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-style: italic; display: inline-block; padding-right: 10px;
}

.pgp-hero-lead { font-size: 19px; color: var(--text-soft); line-height: 1.7; margin-bottom: 48px; max-width: 580px; }

.pgp-hero-metrics {
    display: flex; align-items: center; gap: 32px;
    background: #FFFFFF; border: 1px solid var(--line);
    padding: 24px 36px; border-radius: 20px; margin-bottom: 48px; width: fit-content;
    box-shadow: var(--s-sm);
}
.pgp-metric-box { display: flex; flex-direction: column; gap: 6px; }
.p-metric-val { font-family: var(--f-mono); font-size: 28px; font-weight: 800; color: var(--ink); }
.p-metric-val small { font-size: 15px; color: var(--text-soft); font-weight: 500; }
.p-metric-lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--pgp-gold); }
.pgp-metric-divider { width: 1px; height: 50px; background: var(--line); }

.pgp-hero-actions { display: flex; gap: 20px; align-items: center; }
.btn-primary-mega, .btn-secondary-mega {
    padding: 18px 36px; border-radius: 12px; font-weight: 700; font-size: 16px;
    display: inline-flex; align-items: center; justify-content: center; transition: var(--t-fast);
}
.btn-pgp-theme { 
    background: linear-gradient(135deg, var(--pgp-blue), var(--pgp-blue-dark)); 
    color: #FFFFFF; border: none; box-shadow: 0 8px 20px rgba(59,130,246,0.2); 
}
.btn-pgp-theme:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(59,130,246,0.35); background: linear-gradient(135deg, #60A5FA, var(--pgp-blue)); }
.btn-secondary-mega { background: #FFFFFF; color: var(--text); border: 1px solid var(--line-strong); }
.btn-secondary-mega:hover { background: var(--paper-dim); border-color: var(--pgp-blue); color: var(--pgp-blue-dark); transform: translateY(-3px); }

/* The Outcomes Dashboard Visual (Clean & White Light-Mode) */
.pgp-outcomes-dashboard {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--s-lg);
    position: relative;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pgp-outcomes-dashboard:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-8px); }

.dash-glow {
    position: absolute; top: -60px; right: -60px; width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.dash-header { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 24px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #EF4444; }
.dash-dot.yellow { background: #F59E0B; }
.dash-dot.green { background: #10B981; }
.dash-title { font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); margin-left: auto; font-weight: 700; letter-spacing: 0.05em; }

.dash-stat-row {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--paper-dim); border: 1px solid var(--line);
    border-radius: 16px; padding: 20px 24px; margin-bottom: 24px;
}
.dash-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--f-mono); font-size: 26px; font-weight: 800; color: var(--ink); }
.stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--pgp-gold); letter-spacing: 0.05em; }
.dash-stat-divider { width: 1px; height: 40px; background: var(--line-strong); }

.dash-chart-container { margin-bottom: 24px; }
.outcome-chart { width: 100%; height: auto; display: block; }

.dash-hubs { display: flex; flex-direction: column; gap: 10px; border-top: 1px dashed var(--line); padding-top: 20px; }
.hub-title { font-size: 12px; color: var(--text-soft); font-weight: 700; }
.hub-list { display: flex; gap: 10px; flex-wrap: wrap; }
.hub-item { font-family: var(--f-mono); font-size: 11px; background: var(--paper-dim); color: var(--pgp-blue-dark); padding: 6px 12px; border-radius: 6px; border: 1px solid var(--line); }

/* ════════════════════════════════════
   2. THE HYBRID BRIDGE
   ════════════════════════════════════ */
.pgp-hybrid-section { background: linear-gradient(to bottom, #FFFFFF, var(--paper)); border-bottom: 1px solid var(--line); }
.bridge-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    max-width: 1100px;
    margin: 56px auto 0;
}
.bridge-card {
    background: #FFFFFF; border: 1px solid var(--line); border-radius: 28px;
    width: 45%; position: relative; overflow: hidden; box-shadow: var(--s-md);
    transition: var(--t-mid); z-index: 2;
}
.bridge-card:hover { transform: translateY(-8px); box-shadow: var(--s-lg); }
.bridge-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 8px; }
.bridge-card-accent.blue { background: linear-gradient(90deg, var(--pgp-blue), var(--pgp-accent)); }
.bridge-card-accent.gold { background: linear-gradient(90deg, var(--pgp-gold), #FCD34D); }

.bridge-card-content { padding: 48px; }
.bridge-step { font-family: var(--f-mono); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--pgp-blue-dark); display: block; margin-bottom: 12px; }
.bridge-card-accent.gold + .bridge-card-content .bridge-step { color: #B45309; }
.bridge-card-title { font-family: var(--f-display); font-size: 26px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.bridge-card-duration { font-size: 14px; font-weight: 700; color: var(--text-soft); display: block; margin-bottom: 24px; }
.bridge-card-desc { font-size: 15.5px; color: var(--text-soft); margin-bottom: 32px; line-height: 1.6; }

.bridge-features { display: flex; flex-direction: column; gap: 16px; }
.bridge-features li { font-size: 15px; font-weight: 500; color: var(--text); position: relative; padding-left: 28px; line-height: 1.4; }
.bridge-features li::before { content: '✓'; position: absolute; left: 0; top: -1px; color: var(--pgp-blue); font-weight: 900; font-size: 17px; }
.bridge-card-accent.gold + .bridge-card-content .bridge-features li::before { color: var(--pgp-gold); }

.bridge-connector-element { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.bridge-connector-element::before {
    content: ''; position: absolute; left: -20px; right: -20px; top: 50%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0, var(--line-strong) 6px, transparent 6px, transparent 12px);
    transform: translateY(-50%);
}
.connector-arrow {
    background: #FFFFFF; border: 2px solid var(--line-strong); width: 52px; height: 52px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-soft); position: relative; z-index: 2; box-shadow: var(--s-sm);
    transition: var(--t-fast);
}
.bridge-grid:hover .connector-arrow { transform: scale(1.1) rotate(360deg); border-color: var(--pgp-blue); color: var(--pgp-blue); box-shadow: var(--s-glow); }

/* ════════════════════════════════════
   3. CURRICULUM TABS
   ════════════════════════════════════ */
.pgp-curriculum-section { background: var(--paper-dim); position: relative; }
.syllabus-tabs-container {
    background: #FFFFFF; border: 1px solid var(--line); border-radius: 28px;
    padding: 20px; box-shadow: var(--s-md); margin-top: 56px; position: relative; z-index: 2;
}
.syllabus-tabs-list { display: flex; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 20px; flex-wrap: wrap; }
.syllabus-tab-btn {
    flex: 1; min-width: 180px; background: transparent; border: none; padding: 18px 24px;
    font-size: 15px; font-weight: 700; color: var(--text-soft); cursor: pointer;
    border-radius: 16px; transition: var(--t-fast); display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    outline: none;
}
.syllabus-tab-btn svg { transition: transform var(--t-fast); }
.syllabus-tab-btn:hover { background: var(--paper-dim); color: var(--pgp-blue-dark); }
.syllabus-tab-btn.active { background: var(--pgp-blue); color: #FFFFFF; box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); }
.syllabus-tab-btn.active svg { transform: scale(1.1); }

.syllabus-tabs-content { padding: 48px 32px 32px; }
.syllabus-tab-panel { display: none; }
.syllabus-tab-panel.active { display: block; animation: tabFadeIn 0.4s ease; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.syllabus-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.panel-info { display: flex; flex-direction: column; justify-content: center; }
.panel-info h4 { font-family: var(--f-display); font-size: 30px; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.panel-info p { font-size: 16px; color: var(--text-soft); line-height: 1.7; margin-bottom: 28px; }
.panel-meta-badge { font-family: var(--f-mono); font-size: 12px; font-weight: 700; background: var(--pgp-gold-dim); color: #B45309; padding: 8px 16px; border-radius: 8px; width: fit-content; }

.panel-topics h5 { font-size: 13px; text-transform: uppercase; font-weight: 700; color: var(--text-mute); letter-spacing: 0.05em; margin-bottom: 24px; }
.panel-topics ul { display: flex; flex-direction: column; gap: 16px; }
.panel-topics li { font-size: 16px; font-weight: 600; color: var(--text); position: relative; padding-left: 28px; line-height: 1.4; }
.panel-topics li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--pgp-blue); font-weight: 800; font-family: var(--f-mono); }

/* ════════════════════════════════════
   4. GERMAN LANGUAGE STAIRCASE (Award-Winning Dark Mode UI)
   ════════════════════════════════════ */
/* ════════════════════════════════════
   4. GERMAN LANGUAGE STAIRCASE (Vibrant Light Glassmorphism UI)
   ════════════════════════════════════ */
.pgp-language-section.dark-mode-lang { 
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%); 
    color: #0F172A; 
    overflow: hidden; 
    position: relative;
    border-bottom: none;
    padding: 120px 0;
}
.lang-section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.neon-badge-blue {
    display: inline-flex;
    align-items: center;
    background: #EFF6FF;
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #2563EB;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 8px 18px;
    border-radius: 9999px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.text-glow-white {
    font-family: var(--f-display);
    font-size: 48px;
    font-weight: 900;
    color: #0F172A;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.text-dim-white {
    color: #475569;
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.frosted-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.frosted-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.frosted-glass-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}
.card-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-check svg {
    width: 14px;
    height: 14px;
}
.frosted-glass-card span {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
}

.lang-staircase-3d { 
    display: flex; 
    align-items: flex-end; 
    gap: 16px; 
    height: 440px; 
    padding-top: 40px; 
    perspective: 1000px;
}
.stair-3d {
    flex: 1; 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8); 
    border-bottom: none;
    border-radius: 16px 16px 0 0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding-top: 28px;
    position: relative; 
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 12px 36px rgba(15, 23, 42, 0.05);
    transform-style: preserve-3d;
}
.stair-3d:hover { 
    transform: translateY(-12px) scaleZ(1.05); 
    border-color: rgba(255, 255, 255, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 20px 48px rgba(15, 23, 42, 0.1); 
}
.step-a1 { height: 25%; background: rgba(224, 242, 254, 0.65); border-color: rgba(186, 230, 253, 0.8); }
.step-a2 { height: 40%; background: rgba(204, 251, 241, 0.65); border-color: rgba(153, 246, 228, 0.8); }
.step-b1 { height: 60%; background: rgba(239, 246, 255, 0.75); border-color: rgba(191, 219, 254, 0.8); }
.step-b2 { height: 80%; background: rgba(245, 243, 255, 0.75); border-color: rgba(221, 214, 254, 0.8); }

.stair-3d.step-c1.glow-gold { 
    height: 100%; 
    background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%); 
    border: 1px solid rgba(251, 191, 36, 0.5); 
    box-shadow: 0 15px 45px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.stair-3d.step-c1.glow-gold:hover { 
    background: linear-gradient(135deg, #FCD34D 0%, #B45309 100%); 
    box-shadow: 0 20px 60px rgba(217, 119, 6, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5); 
}
.c1-light-source {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.75) 0%, transparent 70%);
    filter: blur(12px);
    pointer-events: none;
    animation: pulseLight 3s infinite alternate;
}
@keyframes pulseLight {
    0% { opacity: 0.65; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.18); }
}

.badge-3d { 
    font-family: var(--f-display); 
    font-size: 28px; 
    font-weight: 900; 
    line-height: 1; 
    margin-bottom: 12px; 
    color: #1E293B;
}
.desc-3d { 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    text-align: center; 
    padding: 0 8px; 
    color: #475569; 
    letter-spacing: 0.05em; 
    line-height: 1.35;
}
.badge-3d.text-gold {
    color: #FFFFFF !important;
    text-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.2);
}
.desc-3d.text-gold {
    color: #FFFFFF !important;
    font-weight: 800;
}

/* ════════════════════════════════════
   5. TIMELINE / 3-TERM GRID
   ════════════════════════════════════ */
.pgp-timeline-section { background: #FFFFFF; }
.timeline-term-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.term-card {
    background: #FFFFFF; border: 1px solid var(--line); border-radius: 28px;
    padding: 40px; box-shadow: var(--s-md); transition: var(--t-mid); position: relative;
}
.term-card:hover { transform: translateY(-8px); box-shadow: var(--s-lg); border-color: var(--pgp-blue-dim); }
.term-badge {
    font-family: var(--f-mono); font-size: 11px; font-weight: 700; color: var(--pgp-blue-dark);
    background: var(--pgp-blue-dim); padding: 6px 12px; border-radius: 6px; width: fit-content; margin-bottom: 24px;
}
.term-title { font-family: var(--f-display); font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.term-duration { font-size: 13.5px; font-weight: 600; color: var(--text-soft); display: block; margin-bottom: 28px; }

.term-items { display: flex; flex-direction: column; gap: 16px; }
.term-items li { font-size: 15px; font-weight: 500; color: var(--text-soft); position: relative; padding-left: 20px; line-height: 1.4; }
.term-items li::before { content: '•'; position: absolute; left: 0; top: 0; color: var(--pgp-blue); font-weight: 900; font-size: 18px; }

/* Light Golden Highlight instead of black */
.highlight-term { 
    background: linear-gradient(145deg, #FFFBEB, #FEF3C7); 
    border-color: #FCD34D; 
    color: var(--text); 
    box-shadow: var(--s-lg); 
}
.highlight-term:hover { border-color: #F59E0B; }
.highlight-term .de-badge { background: var(--pgp-gold); color: var(--ink); }
.highlight-term .term-title { color: var(--ink); }
.highlight-term .term-duration { color: #B45309; }
.highlight-term .term-items li { color: var(--text-soft); }
.highlight-term .term-items li::before { color: var(--pgp-gold); }

/* ════════════════════════════════════
   6. PLACEMENT SUCCESS ECOSYSTEM GRID
   ════════════════════════════════════ */
.pgp-benefits-section { background: #F4F7F9; border-top: 1px solid var(--line); }
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.success-card { 
    background: #FFFFFF; 
    border: none; 
    border-radius: 24px; 
    padding: 40px; 
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.04); 
    transition: transform var(--t-mid), box-shadow var(--t-mid); 
}
.success-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08); 
}

.success-icon-wrapper {
    position: relative;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
}
.success-icon-blob {
    width: 44px;
    height: 44px;
    background: #E0E7FF;
    border-radius: 12px;
    position: absolute;
    top: 6px;
    left: 0;
    transition: background var(--t-fast);
}
.success-card:hover .success-icon-blob {
    background: #C7D2FE;
}
.success-icon-svg {
    width: 28px;
    height: 28px;
    color: #1D4ED8;
    position: absolute;
    top: 0;
    left: 12px;
    z-index: 2;
    transition: transform var(--t-fast);
}
.success-card:hover .success-icon-svg {
    transform: scale(1.08) translate(1px, -1px);
}
.success-card h3 { 
    font-family: var(--f-display); 
    font-size: 20px; 
    font-weight: 800; 
    color: #0F172A; 
    margin-bottom: 16px; 
    line-height: 1.3;
}
.success-card p { 
    font-family: var(--f-body);
    font-size: 15px; 
    color: #475569; 
    line-height: 1.6; 
    font-weight: 400;
}

/* ════════════════════════════════════
   7. CTA & FORM (Light Slate Version)
   ════════════════════════════════════ */
.pgp-cta-section { background: var(--paper-dim); padding-bottom: 120px; }
.cta-mega-card {
    background: #FFFFFF; border-radius: 32px; display: grid;
    grid-template-columns: 1.15fr 0.85fr; overflow: hidden; box-shadow: var(--s-lg);
    border: 1px solid var(--line);
}
.cta-left-content { padding: 80px; color: var(--text); display: flex; flex-direction: column; justify-content: center; position: relative; }
.cta-left-content::before {
    content: ''; position: absolute; top: -50px; left: -50px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none;
}
.cta-left-content h2 { color: var(--ink); font-size: clamp(36px, 4.5vw, 52px); line-height: 1.15; margin-bottom: 28px; font-family: var(--f-display); font-weight: 800; }
.cta-left-content p { font-size: 18px; color: var(--text-soft); line-height: 1.7; margin-bottom: 48px; }
.cta-summary-box { background: var(--paper-dim); border: 1px solid var(--line); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.sum-item { display: flex; justify-content: space-between; align-items: center; font-size: 16px; border-bottom: 1px dashed var(--line-strong); padding-bottom: 16px; }
.sum-item:last-child { border-bottom: none; padding-bottom: 0; }
.sum-item span { color: var(--text-soft); font-weight: 500; }
.sum-item strong { font-family: var(--f-mono); color: var(--pgp-blue-dark); font-size: 18px; font-weight: 800; }

.cta-right-form { background: #FFFFFF; padding: 80px 64px; border-left: 1px solid var(--line); }
.cta-form-header { margin-bottom: 40px; text-align: center; }
.cta-form-header h3 { font-size: 32px; color: var(--ink); margin-bottom: 12px; font-family: var(--f-display); font-weight: 800; }

.form-vertical-stack { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.input-group { position: relative; width: 100%; }
.c-input {
    width: 100%; height: 64px; border: 2px solid var(--line); border-radius: 12px;
    background: var(--paper); padding: 26px 20px 8px; font-size: 16px; font-family: var(--f-body); font-weight: 500;
    color: var(--ink); outline: none; transition: all var(--t-fast);
}
.c-input:focus, .c-input:hover { border-color: var(--line-strong); background: #FFFFFF; box-shadow: var(--s-sm); }
.c-input:focus { border-color: var(--pgp-blue); box-shadow: 0 0 0 4px var(--pgp-blue-dim); }
.c-label {
    position: absolute; left: 20px; top: 22px; font-size: 15px; color: var(--text-mute); font-weight: 500;
    transition: all var(--t-fast); pointer-events: none; text-transform: uppercase; letter-spacing: 0.03em;
}
.c-input:focus + .c-label, .c-input:not(:placeholder-shown) + .c-label, .c-input.active + .c-label {
    top: 10px; font-size: 11px; font-weight: 800; color: var(--pgp-blue);
}
.btn-submit { width: 100%; font-size: 18px; padding: 20px; border: none; border-radius: 12px; cursor: pointer; color: #FFFFFF; background: linear-gradient(135deg, var(--pgp-blue), var(--pgp-blue-dark)); font-weight: 800; transition: var(--t-fast); box-shadow: 0 10px 20px rgba(59,130,246,0.15); }
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(59,130,246,0.25); background: linear-gradient(135deg, #60A5FA, var(--pgp-blue)); }
.form-privacy-note { text-align: center; font-size: 13px; color: var(--text-mute); margin-top: 24px; font-weight: 500; }

/* ════════════════════════════════════
   8. FAQ ACCORDION
   ════════════════════════════════════ */
.pgp-faq-section { background: var(--paper); padding: 120px 0; border-top: 1px solid var(--line); position: relative; }
.faq-accordion-wrapper { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item {
    background: #FFFFFF; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
    transition: var(--t-fast); box-shadow: var(--s-sm);
}
.faq-item:hover { border-color: var(--pgp-blue-dim); box-shadow: var(--s-md); transform: translateY(-3px); }
.faq-item.open { border-color: var(--pgp-blue); box-shadow: 0 10px 25px rgba(59,130,246,0.1); }
.faq-trigger {
    padding: 28px 32px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 800; color: var(--ink); font-size: 18px; user-select: none;
    transition: var(--t-fast);
}
.faq-item:hover .faq-trigger { color: var(--pgp-blue); }
.faq-icon {
    width: 32px; height: 32px; background: var(--paper-dim); color: var(--pgp-blue);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: bold; transition: transform var(--t-mid), background var(--t-fast);
}
.faq-item.open .faq-icon { background: var(--pgp-blue); color: #FFFFFF; }
.faq-content {
    max-height: 0; overflow: hidden; transition: max-height var(--t-mid);
    padding: 0 32px; color: var(--text-soft); font-size: 16px; line-height: 1.7; font-weight: 500;
}
.faq-content-inner { padding-bottom: 32px; border-top: 1px dashed var(--line); padding-top: 24px; margin-top: -8px; }

/* ════════════════════════════════════
   MOBILE RESPONSIVE ENGINE
   ════════════════════════════════════ */
@media (max-width: 1024px) {
    .pgp-hero-container { grid-template-columns: 1fr; text-align: center; gap: 64px; }
    .pgp-hero-lead { margin-inline: auto; }
    .pgp-hero-metrics { margin-inline: auto; justify-content: center; }
    .pgp-hero-actions { justify-content: center; }
    .pgp-hero-visual { justify-content: center; }
    
    .bridge-grid { flex-direction: column; align-items: center; gap: 32px; }
    .bridge-card { width: 100%; max-width: 600px; }
    .bridge-connector-element { transform: rotate(90deg); margin: 16px 0; }
    
    .syllabus-panel-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .language-split { grid-template-columns: 1fr; gap: 56px; }
    .lang-text { text-align: center; }
    .lang-benefits { align-items: center; }
    .lang-benefits li { width: 100%; max-width: 500px; }
    
    .timeline-term-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
    .success-grid { grid-template-columns: 1.5fr; max-width: 500px; margin-inline: auto; }
    
    .cta-mega-card { grid-template-columns: 1fr; }
    .cta-left-content { padding: 64px; text-align: center; }
    .cta-right-form { border-left: none; border-top: 1px solid var(--line); }
}

@media (max-width: 480px) {
    .container { padding: 0 24px; }
    section { padding: 80px 0; }
    
    .pgp-hero { padding-top: 80px; padding-bottom: 80px; }
    .pgp-hero-metrics { flex-direction: column; width: 100%; gap: 20px; padding: 24px; }
    .pgp-metric-divider { width: 100%; height: 1px; }
    .pgp-hero-actions { flex-direction: column; width: 100%; }
    .btn-primary-mega, .btn-secondary-mega { width: 100%; }
    
    .dash-body { padding: 24px; }
    .stat-num { font-size: 22px; }
    
    .bridge-card-content { padding: 32px 24px; }
    .syllabus-tabs-content { padding: 32px 16px 16px; }
    .syllabus-tab-btn { min-width: 130px; font-size: 13.5px; padding: 12px; }
    
    .lang-staircase { height: 320px; }
    .cefr-badge { font-size: 20px; }
    .cefr-desc { font-size: 10px; } 
    
    .cta-right-form { padding: 40px 24px; }
    .cta-left-content { padding: 48px 24px; }
    
    .term-card { padding: 32px 24px; }
    .success-card { padding: 32px 24px; }
    .faq-trigger { padding: 20px; font-size: 16px; }
    .faq-content { padding: 0 20px; }
}