/* Base styles for PMP Bootcamp and PM Ascend layouts */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #f97316;
  --bg: #0f172a;
  --bg-light: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --card-bg: #ffffff;
  --radius-lg: 18px;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

/* Header / Nav */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(18px);
  color: #e5e7eb;
  box-shadow: 0 1px 0 rgba(148, 163, 184, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #bfdbfe, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #e5e7eb;
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.4);
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #cbd5f5;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #f97316, #22c55e);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #eab308);
  color: #111827;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 7px 18px rgba(248, 180, 0, 0.35);
  white-space: nowrap;
}

.nav-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.nav-toggle {
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 1.3rem;
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1.5rem 1rem;
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.mobile-menu a {
  color: #e5e7eb;
  font-size: 0.95rem;
}

.mobile-menu.show {
  display: flex;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #1d4ed8 0, #020617 45%, #020617 100%);
  color: #e5e7eb;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    align-items: center;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.eyebrow-pill-badge {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h1 {
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.9rem;
  }
}

.hero h1 span {
  color: #bfdbfe;
}

.hero-subtitle {
  font-size: 1rem;
  color: #cbd5f5;
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-badge-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #e5e7eb;
  margin-bottom: 1.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #e5e7eb;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.65);
}

.btn-outline {
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.95);
}

.hero-meta {
  font-size: 0.78rem;
  color: #9ca3af;
}

.hero-meta strong {
  color: #e5e7eb;
}

.hero-card {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.98));
  border-radius: 24px;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

@media (min-width: 768px) {
  .hero-card {
    padding: 1.9rem 1.7rem;
  }
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #bfdbfe;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.metric {
  padding: 0.7rem 0.6rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.metric-label {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.metric-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
}

.slider-bar {
  margin-top: 0.4rem;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 1);
  overflow: hidden;
}

.slider-bar-fill {
  width: 80%;
  height: 100%;
  background: linear-gradient(to right, #22c55e, #facc15);
}

.hero-card-list {
  font-size: 0.8rem;
  color: #cbd5f5;
  margin-bottom: 1rem;
  list-style: none;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.check {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #22c55e;
  flex-shrink: 0;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #9ca3af;
}

.hero-card-footer strong {
  color: #e5e7eb;
}

/* Section headings */

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.section-header {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
  }
}

/* Features */

#features {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */

#pricing {
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  gap: 1.3rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.plan-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}

.plan-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.18);
}

.plan-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.plan-name {
  font-size: 1.05rem;
  font-weight: 600;
}

.plan-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-main {
  font-size: 1.4rem;
  font-weight: 700;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.plan-footer {
  margin-top: auto;
}

.btn-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  background: #f8fafc;
  cursor: pointer;
  width: 100%;
}

.plan-card.highlight .btn-plan {
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0f172a;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.plan-ribbon {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #22c55e;
  color: #052e16;
  font-weight: 600;
}

/* Why Us */

#why-us {
  background: var(--bg);
  color: #e5e7eb;
}

#why-us .section-subtitle {
  color: #cbd5f5;
}

.why-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }
}

.why-points {
  list-style: none;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.why-points li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.why-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.why-card {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.35), #020617);
  border-radius: 24px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  color: #cbd5f5;
}

.why-card-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

.why-metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1rem;
}

.why-metric {
  min-width: 90px;
}

.why-metric strong {
  font-size: 1.1rem;
}

.why-metric span {
  display: block;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Testimonials */

#testimonials {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.1rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.testimonial-text {
  color: var(--text-muted);
}

.testimonial-author {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.86rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Mentor */

#mentor .mentor-card {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 900px) {
  #mentor .mentor-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }
}

.mentor-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.mentor-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.mentor-summary {
  font-size: 0.92rem;
  color: #cbd5f5;
  margin-top: 0.5rem;
}

.mentor-list {
  list-style: none;
  font-size: 0.85rem;
  color: #cbd5f5;
  margin-top: 0.8rem;
}

.mentor-list li {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.mentor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.3);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.mentor-avatar {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 10%, #93c5fd, #1e293b);
  margin: 0 auto 0.9rem;
  border: 3px solid rgba(148, 163, 184, 0.7);
}

.mentor-meta {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Schedule */

#schedule {
  background: #ffffff;
}

.schedule-grid {
  display: grid;
  gap: 1.3rem;
}

@media (min-width: 900px) {
  .schedule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.batch-card {
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.25rem 1.2rem;
  box-shadow: 0 9px 18px rgba(15, 23, 42, 0.06);
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.batch-name {
  font-weight: 600;
}

.batch-rating {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.batch-details {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.batch-details li {
  margin-bottom: 0.25rem;
}

.btn-batch {
  margin-top: 0.7rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 0.85rem;
  background: #f8fafc;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
}

.batch-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
}

/* Contact */

#contact {
  background: var(--bg);
  color: #e5e7eb;
}

#contact .section-subtitle {
  color: #cbd5f5;
}

.contact-layout {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: flex-start;
  }
}

.contact-form-card {
  border-radius: 22px;
  padding: 1.5rem 1.4rem;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.form-field {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: #cbd5f5;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  color: #e5e7eb;
  font-size: 0.88rem;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.6);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.3rem;
}

.contact-side {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.contact-list {
  list-style: none;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #cbd5f5;
}

.btn-submit {
  margin-top: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0f172a;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

.btn-submit:hover {
  filter: brightness(1.05);
}

/* Footer */

footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 1.3rem 0;
}

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

.footer-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5f5;
}

.footer-note {
  max-width: 480px;
  font-size: 0.75rem;
}

/* Small helper */

.text-link {
  color: #bfdbfe;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
