/* ============================================
   MNSKILLS — GLOBAL THEME & VARIABLES
   ============================================ */

:root {
  --color-primary: #0066cc;
  --color-primary-light: #4da6ff;
  --color-primary-dark: #0a1a2f;
  --color-accent: #2bae66;
  --color-bg: #f5f7fb;
  --color-bg-alt: #ffffff;
  --color-bg-soft: #edf3ff;
  --color-text: #222;
  --color-muted: #777;
  --color-border: #dde3f0;

  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-soft: 0 18px 40px rgba(10, 26, 47, 0.12);
  --shadow-light: 0 10px 24px rgba(10, 26, 47, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-bg-soft);
}

.section-accent {
  background: linear-gradient(135deg, #0066cc, #4da6ff);
  color: #fff;
}

.section-accent h2,
.section-accent label,
.section-accent p,
.section-accent li {
  color: #fff;
}

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

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-muted);
  margin-top: 0.3rem;
}

/* ============================================
   HEADER + LOGO
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(245, 247, 251, 0.98);
  border-bottom: 1px solid rgba(221, 227, 240, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
}

/* LOGO IMAGE */
.logo-img-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px; /* final chosen size */
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0;
}

/* NAVIGATION */
.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav a {
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.nav a:hover {
  color: var(--color-primary);
}

.nav-cta {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.18s ease-in-out;
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc, #004b99);
  color: #fff;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary-dark);
}

.btn-outline:hover {
  background: rgba(0, 102, 204, 0.06);
}

.btn-block {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--color-primary);
}

.hero-subtitle {
  color: var(--color-muted);
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-item {
  background: #edf3ff;
  border: 1px solid #dde3f0;
  padding: 0.7rem 1rem;
  border-radius: 12px;
}

.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #666;
}

.meta-value {
  font-size: 0.85rem;
  font-weight: 600;
}

/* HERO CARD */
.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-family: "Poppins", sans-serif;
  margin-top: 0;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
}

.hero-card-footer {
  margin-top: 0.8rem;
}

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero-card-price {
  font-size: 1.6rem;
  margin: 0.2rem 0;
}

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

/* ============================================
   GRID & CARD LAYOUTS
   ============================================ */

.grid {
  display: grid;
  gap: 1.8rem;
}

.programs-grid {
  grid-template-columns: repeat(2, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--color-border);
}

/* PRICING CARDS */
.pricing-card-featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.badge {
  background: var(--color-accent);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

/* ============================================
   ABOUT
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 0.5rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.enroll-form {
  background: rgba(255, 255, 255, 0.96);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
}

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

label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  display: block;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px solid #dce3f0;
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(0, 102, 204, 0.15);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-primary-dark);
  padding: 1.5rem 0;
  color: #e0e8f0;
}

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

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 960px) {

  .nav {
    display: none; /* simple mobile behavior */
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .programs-grid,
  .steps-grid,
  .pricing-grid,
  .about-grid,
  .enroll-grid {
    grid-template-columns: 1fr;
  }

  .logo-img {
    height: 30px;
  }
}

@media (max-width: 640px) {

  .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .btn {
    width: 100%;
  }
}
