/* =====================
   PLACEMENTS PAGE
   ===================== */

.pl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}

/* ── Shared Typography ── */
.pl-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E91E24;
  margin-bottom: 8px;
}

.pl-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: #570F12;
  margin-bottom: 16px;
  line-height: 1.25;
}

.pl-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ══════════════════════
   HERO
══════════════════════ */
.pl-hero {
  position: relative;
  background: url('../../images/main-img/dashboard_topsection.jpg') center/cover no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 80px 6%;
  overflow: hidden;
}

.pl-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.pl-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.pl-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.pl-hero-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F7C201;
  margin-bottom: 14px;
}

.pl-hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: #FFD700;
  margin-bottom: 16px;
}

.pl-hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════
   INTRO
══════════════════════ */
.pl-intro {
  background: #fff;
  padding: 64px 0;
}

.pl-intro-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.pl-intro-text { flex: 1.3; }

.pl-intro-aside {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pl-aside-card {
  background: #FFF5F6;
  border-left: 4px solid #E31E24;
  border-radius: 0 10px 10px 0;
  padding: 22px 20px;
}

.pl-aside-card--teal {
  background: #E31E24;
  border-left-color: #570F12;
}

.pl-aside-card--teal h4,
.pl-aside-card--teal p,
.pl-aside-card--teal .pl-aside-icon { color: #fff; }

.pl-aside-icon {
  font-size: 1.4rem;
  color: #E31E24;
  display: block;
  margin-bottom: 10px;
}

.pl-aside-card--teal .pl-aside-icon { color: #fff; }

.pl-aside-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.pl-aside-card p {
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.pl-aside-card--teal p {
  color: #fff !important;
}

.pl-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pl-check-list li {
  font-size: 0.83rem;
  color: #475569;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.pl-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E31E24;
  font-weight: 700;
}

/* ══════════════════════
   KEY DEVELOPMENT AREAS
══════════════════════ */
.pl-develop {
  background: #322929;
  padding: 64px 0;
}

.pl-develop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0 32px;
}

.pl-develop-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}

.pl-develop-card:hover {
  background: rgba(227,30,36,0.18);
  transform: translateY(-4px);
}

.pl-develop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(227,30,36,0.2);
  margin: 0 auto 16px;
}

.pl-develop-icon i {
  font-size: 1.4rem;
  color: #F7C201;
}

.pl-develop-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}

.pl-develop-note {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
  font-style: italic;
}

/* ══════════════════════
   SKILLS & GAINS
══════════════════════ */
.pl-skills {
  background: #F9FAFB;
  padding: 64px 0;
}

.pl-skills-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.pl-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pl-bullet-list li {
  font-size: 14px;
  color: #475569;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.pl-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E31E24;
}

.pl-gains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.pl-gain-item {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-bottom: 3px solid #E31E24;
}

.pl-gain-item i {
  font-size: 1.2rem;
  color: #E31E24;
  flex-shrink: 0;
}

.pl-gain-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

/* ══════════════════════
   OUTCOME FOCUS
══════════════════════ */
.pl-outcome {
  background: #EC2939;
  padding: 56px 0;
}

.pl-outcome-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.pl-outcome-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pl-outcome-badge i {
  font-size: 2.2rem;
  color: #fff;
}

.pl-outcome-text { flex: 1; }

/* ══════════════════════
   PLACEMENT ASSISTANCE
══════════════════════ */
.pl-placement {
  background: #fff;
  padding: 64px 0;
}

.pl-placement-sub {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.pl-placement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.pl-placement-card {
  background: #322929;
  border-radius: 12px;
  padding: 32px 24px;
  border-top: 4px solid #E31E24;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pl-placement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.pl-placement-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: #F7C201;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.pl-placement-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.pl-placement-card p {
  font-size: 0.83rem;
  color: #ffffff;
  line-height: 1.75;
  margin: 0;
}

.pl-disclaimer {
  background: linear-gradient(90deg, #1a1a1a, #E31E24);
  border: none;
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.pl-disclaimer i {
  color: #F7C201;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pl-disclaimer p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

/* ── Key statements ── */
.pl-statements {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
  justify-content: center;
}

.pl-statement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF5F6;
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #1a1a1a;
}

.pl-statement-item i {
  color: #E31E24;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════
   HOW IT WORKS
══════════════════════ */
.pl-howitworks {
  background: #1a1a1a;
  padding: 64px 0;
}

.pl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  position: relative;
}

.pl-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: rgba(227,30,36,0.4);
  z-index: 0;
}

.pl-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.pl-step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E31E24;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 3px solid #1a1a1a;
  box-shadow: 0 0 0 3px #E31E24;
}

.pl-step-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pl-step-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════
   CTA
══════════════════════ */
.pl-cta {
  background: #F9FAFB;
  padding: 64px 6%;
}

.pl-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pl-cta-inner h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #570F12;
  margin-bottom: 12px;
}

.pl-cta-inner p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pl-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pl-cta-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 32px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.2s;
}

.pl-cta-btn--primary {
  background: #E31E24;
  color: #fff;
  border: 2px solid #E31E24;
}

.pl-cta-btn--primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

.pl-cta-btn--outline {
  background: transparent;
  color: #E31E24;
  border: 2px solid #E31E24;
}

.pl-cta-btn--outline:hover {
  background: #E31E24;
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 992px) {
  .pl-develop-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-placement-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pl-steps::before { display: none; }
  .pl-skills-inner { grid-template-columns: 1fr; gap: 36px; }

  .pl-intro-inner {
    flex-direction: column;
    gap: 32px;
  }

  .pl-outcome-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .pl-hero { padding: 56px 6%; min-height: unset; }
  .pl-develop-grid { grid-template-columns: 1fr; }
  .pl-placement-grid { grid-template-columns: 1fr; }
  .pl-steps { grid-template-columns: 1fr; }
  .pl-gains-grid { grid-template-columns: 1fr; }
  .pl-statements { flex-direction: column; }
}
