:root {
  --bg: #f7f3ea;
  --card: #ffffff;
  --navy: #000000;
  --text: #1f2937;
  --muted: #4b5563;
  --accent: #f5b500;
  --accent-2: #41aff8;
  --shadow: 0 15px 40px rgba(12, 35, 64, 0.12);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════ */
/* PAGE LOADER STYLES */
/* ═══════════════════════════════════════════════════════════════ */

.page-loader {
  position: fixed;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7f3ea 0%, #ffffff 100%);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Custom Animated Loader */
.loader {
  --s: 40px;
  --_d: calc(0.353 * var(--s));
  width: calc(var(--s) + var(--_d));
  aspect-ratio: 1;
  display: grid;
  margin: 0 auto;
}

.loader:before,
.loader:after {
  content: "";
  clip-path: polygon(var(--_d) 0, 100% 0, 100% calc(100% - var(--_d)), 
                     calc(100% - var(--_d)) 100%, 0 100%, 0 var(--_d));
  background: conic-gradient(from -90deg at var(--s) var(--_d),
    #41aff8 135deg,
    #f5b500 0 270deg,
    #000000 0);
  animation: l4 1.2s infinite;
}

.loader:before {
  z-index: 1;
  margin-bottom: calc(var(--_d) / -2 - 1px);
}

.loader:after {
  margin-top: calc(var(--_d) / -2 - 1px);
  animation-delay: 0.6s;
}

@keyframes l4 {
  0% {
    transform: translate(0);
  }
  16.67% {
    transform: translate(-10px);
  }
  33.33% {
    transform: translate(10px);
  }
  50%,
  100% {
    transform: translate(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* END PAGE LOADER STYLES */
/* ═══════════════════════════════════════════════════════════════ */


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

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

a, button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(247, 243, 234, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(3vw, 6vw, 48px);
  border-bottom: 1px solid rgba(12, 35, 64, 0.05);
  gap: 20px;
  min-height: 70px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 3vw;
    min-height: 60px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .nav {
    padding: 8px clamp(3vw, 6vw, 48px);
    min-height: 56px;
  }
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInLeft 0.5s ease-out;
  flex-shrink: 0;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(65, 175, 248, 0.1));
}

.nav-logo:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 6px 16px rgba(65, 175, 248, 0.2));
}

.brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  font-size: 18px;
  white-space: nowrap;
}

.brand span {
  color: var(--accent-2);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  flex: 1;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════ */
/* MOBILE HAMBURGER MENU */
/* ═══════════════════════════════════════════════════════════════ */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: rgba(12, 35, 64, 0.08);
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8;
}

.mobile-nav-overlay.active {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* END MOBILE HAMBURGER MENU */
/* ═══════════════════════════════════════════════════════════════ */

.solid {
  background: var(--navy);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(12, 35, 64, 0.2);
}

.ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 11px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ghost:hover {
  transform: translateY(-2px);
  background: rgba(12, 35, 64, 0.06);
}

.enroll-btn {
  background: var(--accent-2);
  color: var(--card);
  border: none;
  padding: 11px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.enroll-btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(65, 175, 248, 0.3);
}

.circle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

@media (max-width: 1024px) {
  main {
    gap: 72px;
  }
}

@media (max-width: 768px) {
  main {
    gap: 56px;
  }
}

@media (max-width: 640px) {
  main {
    gap: 40px;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(60px, 8vw, 72px) clamp(3vw, 6vw, 48px) 24px;
  margin-top: 70px;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 4vw 20px;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 3vw 16px;
    gap: 16px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    gap: 16px;
    padding: 20px clamp(3vw, 6vw, 48px) 16px;
    margin-top: 60px;
  }

  .hero-visual {
    min-height: 200px;
  }
}

.hero-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--navy);
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 12px;
 

@media (max-width: 640px) {
  .lede {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .lede {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
} }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero-copy h1 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 8px;
  }
}

.lede {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-actions {
    gap: 12px;
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .hero-actions a {
    width: 100%;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.hero-stats .stat-number {
  display: block;
}

.stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 300px;
}

@media (max-width: 768px) {
  .hero-visual {
    order: -1;
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    min-height: 380px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero-visual {
    min-height: auto;
    max-height: 300px;
  }
}

.blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(245, 181, 0, 0.25), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(11, 165, 164, 0.2), transparent 50%),
              #f9eac0;
  border-radius: 38% 62% 60% 40% / 45% 35% 65% 55%;
  filter: blur(2px);
  z-index: 0;
}

.hero-img {
  width: min(420px, 80vw);
  height: auto;
  aspect-ratio: 1;
  border-radius: 32% 68% 58% 42% / 45% 35% 65% 55%;
  object-fit: cover;
  z-index: 1;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .hero-img {
    width: min(100%, 320px) !important;
    aspect-ratio: 0.9 !important;
    border-radius: 32% 68% 58% 42% / 45% 35% 65% 55% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 640px) {
  .hero-img {
    width: 100% !important;
    max-width: 300px !important;
    aspect-ratio: 0.85 !important;
    border-radius: 32% 68% 58% 42% / 45% 35% 65% 55% !important;
    object-fit: cover !important;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero-img {
    max-height: 250px;
    width: auto;
  }
}

.badge {
  position: absolute;
  right: 8%;
  bottom: 8%;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 10;
  max-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(12, 35, 64, 0.18);
}

@media (max-width: 768px) {
  .badge {
    right: 5%;
    bottom: 5%;
    padding: 12px 14px;
    font-size: 0.9rem;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(12, 35, 64, 0.18);
  }
}

@media (max-width: 640px) {
  .badge {
    position: absolute !important;
    left: auto !important;
    top: auto !important;
    right: 8% !important;
    bottom: 12% !important;
    transform: none !important;
    padding: 4px 6px !important;
    font-size: 0.75rem !important;
    width: min-content !important;
    max-width: none !important;
    display: flex !important;
    gap: 2px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column !important;
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 25px rgba(12, 35, 64, 0.12) !important;
    z-index: 10 !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }
  
  .badge:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(12, 35, 64, 0.18) !important;
  }
  
  .badge-extra-1 {
    left: 5% !important;
    top: 8% !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  .badge-extra-1:hover {
    transform: translateX(-2px) translateY(-2px) !important;
  }
  
  .badge-extra-2 {
    right: 5% !important;
    top: 5% !important;
    left: auto !important;
    bottom: auto !important;
  }
  
  .badge-extra-2:hover {
    transform: translateX(2px) translateY(-2px) !important;
  }
  
  .badge-extra-3 {
    left: 8% !important;
    bottom: 8% !important;
    right: auto !important;
    top: auto !important;
  }
  
  .badge-extra-3:hover {
    transform: translateX(-2px) translateY(2px) !important;
  }
  
  .badge-extra-4 {
    right: 5% !important;
    bottom: 8% !important;
    left: auto !important;
    top: auto !important;
  }
  
  .badge-extra-4:hover {
    transform: translateX(2px) translateY(2px) !important;
  }
  
  .badge i {
    font-size: 0.7rem !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
  }
  
  .badge div {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .badge div p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
  }
  
  .badge div span {
    font-size: 0.58rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
  }
  
  .badge-top,
  .badge-left {
    display: none !important;
  }
}

@media (orientation: landscape) and (max-height: 800px) {
  .badge {
    position: absolute !important;
    left: auto !important;
    top: auto !important;
    right: 5% !important;
    bottom: 15% !important;
    transform: none !important;
    padding: 4px 7px !important;
    font-size: 0.75rem !important;
    display: flex !important;
    gap: 2px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column !important;
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(12, 35, 64, 0.12) !important;
    z-index: 10 !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }
  
  .badge:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(12, 35, 64, 0.18) !important;
  }
  
  .badge.badge-extra-1 {
    left: 4% !important;
    top: 12% !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  .badge.badge-extra-1:hover {
    transform: translateX(-2px) translateY(-2px) !important;
  }
  
  .badge.badge-extra-2 {
    right: 4% !important;
    top: 10% !important;
    left: auto !important;
    bottom: auto !important;
  }
  
  .badge.badge-extra-2:hover {
    transform: translateX(2px) translateY(-2px) !important;
  }
  
  .badge.badge-extra-3 {
    left: 4% !important;
    bottom: 18% !important;
    right: auto !important;
    top: auto !important;
  }
  
  .badge.badge-extra-3:hover {
    transform: translateX(-2px) translateY(2px) !important;
  }
  
  .badge.badge-extra-4 {
    right: 4% !important;
    bottom: 15% !important;
    left: auto !important;
    top: auto !important;
  }
  
  .badge.badge-extra-4:hover {
    transform: translateX(2px) translateY(2px) !important;
  }
  
  .badge i {
    font-size: 0.7rem !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
  }
  
  .badge div {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .badge div p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }
  
  .badge div span {
    font-size: 0.6rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
  }
  
  .badge-top,
  .badge-left {
    display: none !important;
  }
}

/* Landscape mode - hero badges positioning */
@media (min-aspect-ratio: 1.5/1) {
  .hero-visual .badge {
    position: absolute !important;
    right: 5% !important;
    bottom: 15% !important;
    left: auto !important;
    top: auto !important;
    padding: 4px 7px !important;
    font-size: 0.75rem !important;
    gap: 2px !important;
  }
  
  .hero-visual .badge:hover {
    transform: translateY(-3px) !important;
  }
  
  .hero-visual .badge.badge-extra-1 {
    left: 4% !important;
    top: 12% !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  .hero-visual .badge.badge-extra-1:hover {
    transform: translateX(-2px) translateY(-2px) !important;
  }
  
  .hero-visual .badge.badge-extra-2 {
    right: 4% !important;
    top: 10% !important;
    left: auto !important;
    bottom: auto !important;
  }
  
  .hero-visual .badge.badge-extra-2:hover {
    transform: translateX(2px) translateY(-2px) !important;
  }
  
  .hero-visual .badge.badge-extra-3 {
    left: 4% !important;
    bottom: 18% !important;
    right: auto !important;
    top: auto !important;
  }
  
  .hero-visual .badge.badge-extra-3:hover {
    transform: translateX(-2px) translateY(2px) !important;
  }
  
  .hero-visual .badge.badge-extra-4 {
    right: 4% !important;
    bottom: 15% !important;
    left: auto !important;
    top: auto !important;
  }
  
  .hero-visual .badge.badge-extra-4:hover {
    transform: translateX(2px) translateY(2px) !important;
  }
}

.badge i {
  color: var(--accent);
}

.badge-top {
  right: auto;
  left: 5%;
  bottom: auto;
  top: 5%;
}

.badge-left {
  right: auto;
  left: -5%;
  bottom: 35%;
}

.floating-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-icon i {
  font-size: 1.3rem;
  color: var(--accent-2);
}

.float-1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}


@media (max-width: 768px) {
  .float-1 {
    width: 40px;
    height: 40px;
    top: 5%;
    right: 2%;
  }

  .float-2 {
    display: none;
  }

  .float-3 {
    width: 40px;
    height: 40px;
    bottom: 10%;
    left: 0;
  }

  .floating-icon i {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .float-1 {
    width: 32px;
    height: 32px;
    top: 10%;
    right: 5%;
    display: block;
  }

  .float-2 {
    display: none;
  }

  .float-3 {
    width: 32px;
    height: 32px;
    bottom: 15%;
    left: 5%;
    display: block;
  }
  
  .floating-icon i {
    font-size: 0.95rem;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .float-2,
  .float-3 {
    display: none;
  }

  .float-1 {
    width: 36px;
    height: 36px;
    top: 5%;
  }
}
.float-2 {
  top: 50%;
  right: -3%;
  animation-delay: 0.5s;
}

.float-3 {
  bottom: 20%;
  left: 2%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.card-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.card-meta-row i {
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}
@media (max-height: 600px) and (orientation: landscape) {
  .section {
    gap: 20px;
    padding: 0 clamp(3vw, 6vw, 48px);
  }
}

.section.alt {
  background: #f0ead8;
  padding-top: 72px;
  padding-bottom: 72px;
}

@media (max-height: 600px) and (orientation: landscape) {
  .section.alt {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  margin-left: auto;
}

.section {
  padding: 0 clamp(3vw, 6vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: #f0ead8;
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.section-heading p {
  color: var(--muted);
  max-width: 620px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .course-grid {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .course-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .course-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }
}

.course-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(12, 35, 64, 0.16);
}

.card-img {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  height: 200px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .card-img {
    height: 180px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .card-img {
    height: 140px;
  }
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
}

.pill {
  background: rgba(11, 165, 164, 0.12);
  color: var(--accent-2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 1px;
}

.card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.4;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 41, 55, 0.08);
  flex-wrap: wrap;
}

.card-bottom .ghost {
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.card-bottom .ghost:hover {
  background: var(--navy);
  color: var(--card);
  transform: none;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.showcase-card .card-img {
  height: 200px;
}

.showcase-card h3 {
  font-size: 1.05rem;
}

.showcase-tag {
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.meta-row i {
  color: var(--accent);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.impact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.impact-label {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.counter-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.impact-note {
  color: var(--muted);
}

.center {
  text-align: center;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.pillar {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  align-items: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12, 35, 64, 0.14);
}

.pillar i {
  font-size: 1.4rem;
  color: var(--accent-2);
  background: rgba(11, 165, 164, 0.12);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.category-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.category-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 16px;
  overflow: hidden;
}

.category-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(12, 35, 64, 0.14);
}

.category-card i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(12, 35, 64, 0.08);
  border-radius: 50%;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.category-card span {
  display: block;
  font-weight: 700;
  color: var(--navy);
}

.category-card small {
  color: var(--muted);
}

.slider-btn {
  background: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(12, 35, 64, 0.12);
  display: grid;
  place-items: center;
  color: var(--navy);
}

.slider-btn:hover {
  background: var(--navy);
  color: #fff;
}

.promo {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.promo-copy h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.promo-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.promo-video {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.promo-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.news-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(12, 35, 64, 0.14); }

.news-thumb { height: 180px; background: var(--card); background-image: var(--img); background-size: cover; background-position: center; }

.news-body { padding: 16px; display: grid; gap: 8px; }

.news-body h3 { font-family: 'Poppins', sans-serif; color: var(--navy); }

.news-meta { color: var(--muted); font-size: 0.95rem; display: flex; align-items: center; gap: 6px; font-weight: 600; }

.news-tag { color: var(--accent-2); font-weight: 700; letter-spacing: 0.2px; text-transform: uppercase; font-size: 0.85rem; }

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(12, 35, 64, 0.15);
  color: #fff;
  font-size: 2rem;
  transition: background 0.25s ease;
}

.play:hover {
  background: rgba(12, 35, 64, 0.28);
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

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

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author small {
  color: var(--muted);
}

.footer {
  margin-top: 72px;
  padding: 40px 6vw 36px;
  border-top: 1px solid rgba(12, 35, 64, 0.08);
}

@media (max-width: 768px) {
  .footer {
    margin-top: 56px;
    padding: 32px 4vw 28px;
  }
}

@media (max-width: 640px) {
  .footer {
    margin-top: 40px;
    padding: 24px 3vw 20px;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.footer-section .brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.footer-section .brand span {
  color: var(--accent);
}

.footer .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--navy);
}

.footer .small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: var(--accent);
  font-size: 1.1rem;
  min-width: 20px;
}

.contact-info a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.social-links a i {
  color: var(--accent);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
}

.social-links a:hover {
  color: var(--accent);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.faq-list p {
  margin-top: 8px;
  color: var(--muted);
}

.cta-banner {
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.94), #12365e);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(12, 35, 64, 0.4);
}

.cta-banner .lede {
  color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cta-actions .solid {
  background: #f5b500;
  color: #0c2340;
  box-shadow: 0 14px 30px rgba(245, 181, 0, 0.35);
}

.cta-actions .ghost {
  border-color: #fff;
  color: #fff;
}

/* Shop & programs */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: 180px 1fr;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(12, 35, 64, 0.16);
}

.product-thumb {
  background-size: cover;
  background-position: center;
}

.product-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.product-title {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: 1.05rem;
}

.pill.small {
  font-size: 0.8rem;
  padding: 4px 8px;
}

.price {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

.meta-stack {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-row .ghost {
  padding: 10px 14px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.program-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(12, 35, 64, 0.14);
}

.program-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.link-arrow {
  color: var(--accent-2);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow i { color: inherit; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.info-card strong { color: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  align-items: start;
}

.why-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(11, 165, 164, 0.12);
  color: var(--accent-2);
}

.why-card h3 { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 1.05rem; }

.why-card p { color: var(--muted); }

.module-list,
.perk-list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding-left: 0;
}

.module-list li,
.perk-list li {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-list i,
.perk-list i {
  color: var(--accent-2);
}

.best-project {
  background: linear-gradient(135deg, rgba(11, 165, 164, 0.14), rgba(12, 35, 64, 0.08));
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}

.badge-set {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-set .pill { background: rgba(12, 35, 64, 0.08); color: var(--navy); }

.price-tag {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion p,
.accordion ul {
  color: var(--muted);
  margin-top: 8px;
}

.project-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-left: 0;
}

.project-list li {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.project-list strong { color: var(--navy); }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 35, 64, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 20;
  overflow-y: auto;
}

.modal.is-open { display: flex; }

.modal-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(12, 35, 64, 0.35);
  max-width: 1100px;
  width: min(94vw, 1100px);
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  overflow: hidden;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════ */
/* IMAGE CAROUSEL STYLING */
/* ═══════════════════════════════════════════════════════════════ */

.modal-carousel {
  background: linear-gradient(135deg, #f6f2e5 0%, #f9f6f0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  width: 100%;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.3rem;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(12, 35, 64, 0.2);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(12, 35, 64, 0.3);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-indicator.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(12, 35, 64, 0.2);
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════════════════════ */
/* MODAL CONTENT STYLING */
/* ═══════════════════════════════════════════════════════════════ */

.modal-copy { 
  padding: 28px; 
  display: grid; 
  gap: 14px;
  background: #fff;
  overflow-y: auto;
  max-height: 420px;
}

.modal-copy h3 { 
  font-family: 'Poppins', sans-serif; 
  font-size: 1.6rem;
  color: var(--navy);
  margin: 8px 0;
  line-height: 1.3;
}

.modal-copy p { 
  color: var(--muted); 
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 8px 0;
}

.modal-meta { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  font-weight: 600; 
  color: #f5b500;
  font-size: 0.9rem;
}

.modal-close { 
  position: absolute; 
  top: 16px; 
  right: 16px; 
  background: rgba(255, 255, 255, 0.95); 
  border: none;
  cursor: pointer;
  border-radius: 50%; 
  width: 40px; 
  height: 40px; 
  display: grid; 
  place-items: center; 
  box-shadow: 0 8px 24px rgba(12, 35, 64, 0.15); 
  font-size: 1.3rem;
  color: var(--navy);
  z-index: 15;
  transition: all 0.3s ease;
}

.modal-close:hover { 
  background: #fff;
  transform: rotate(90deg);
  box-shadow: 0 12px 32px rgba(12, 35, 64, 0.25);
}

@media (max-width: 900px) {
  .nav { 
    padding: 14px 5vw; 
    flex-wrap: wrap;
  }

  .nav-links {
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 9;
    padding: 16px 0;
    border-bottom: 1px solid rgba(12, 35, 64, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 5vw;
    border-bottom: 1px solid rgba(12, 35, 64, 0.05);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: rgba(12, 35, 64, 0.04);
  }

  .hamburger {
    display: flex;
  }

  main { gap: 60px; }
  .section { padding: 0 5vw; gap: 24px; }
  .section.alt { padding-top: 48px; padding-bottom: 48px; }
  
  .hero { 
    grid-template-columns: 1fr; 
    padding: 48px 5vw 20px; 
    text-align: left; 
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .lede {
    font-size: 1rem;
  }

  .hero-actions { 
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-actions a {
    flex: 1;
    min-width: 140px;
  }

  .hero-visual { 
    order: -1;
  }

  .hero-img { 
    width: min(100%, 360px); 
    height: auto;
  }

  .hero-stats { 
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
    gap: 12px;
  }

  .floating-icon {
    display: none;
  }

  .badge {
    right: 5%;
    bottom: 5%;
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .badge p {
    margin: 0;
    line-height: 1.3;
  }

  .badge span {
    font-size: 0.8rem;
  }

  .course-grid, 
  .news-grid, 
  .showcase-grid, 
  .impact-grid, 
  .why-grid, 
  .program-grid, 
  .product-grid, 
  .pillars,
  .testimonial-row,
  .category-track {
    grid-template-columns: 1fr;
  }

  .card-img, .news-thumb, .product-thumb { 
    height: 160px; 
  }

  .showcase-card .card-img { 
    height: 150px; 
  }

  .promo { 
    grid-template-columns: 1fr; 
    padding: 20px; 
    gap: 16px;
  }

  .promo-copy h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .promo-video { 
    order: -1; 
  }

  .cta-banner { 
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 12px;
  }

  .cta-banner h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions a {
    width: 100%;
  }

  .modal-card { 
    grid-template-columns: 1fr; 
    width: 100%;
    max-width: 100%;
    margin: 20px;
    border-radius: 18px;
  }

  .modal-carousel {
    min-height: 300px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }

  .modal-copy {
    padding: 20px;
    max-height: none;
  }

  .footer { 
    padding: 16px 5vw 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .footer .links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .category-row {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* TABLET & MEDIUM SCREENS (768px - 900px) */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --radius: 12px;
  }

  body {
    font-size: 15px;
  }

  .nav {
    padding: 12px 4vw;
  }

  .brand {
    font-size: 16px;
  }

  .nav-logo {
    width: 40px;
    height: 40px;
  }

  .nav-actions {
    gap: 8px;
  }

  .solid {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .ghost {
    padding: 9px 14px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 40px 4vw 16px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    margin-bottom: 14px;
  }

  .eyebrow {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .lede {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .stat {
    padding: 12px 14px;
  }

  .card-body {
    padding: 14px;
  }

  .card-body h3 {
    font-size: 1rem;
  }

  .promo {
    padding: 18px;
  }

  .promo-copy h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 10px;
  }

  .impact-card {
    padding: 14px;
  }

  .counter-number {
    font-size: 1.6rem;
  }

  main {
    gap: 48px;
  }

  .section {
    padding: 0 4vw;
    gap: 20px;
  }

  .section.alt {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pillar {
    padding: 16px;
  }

  .pillar i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .testimonial {
    padding: 14px;
  }

  .author img {
    width: 38px;
    height: 38px;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* MOBILE DEVICES (480px - 768px) */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  :root {
    --radius: 10px;
  }

  body {
    font-size: 14px;
    line-height: 1.5;
  }

  .nav {
    padding: 10px 3vw;
    border-bottom: 2px solid rgba(12, 35, 64, 0.05);
  }

  .brand-container {
    gap: 8px;
  }

  .brand {
    font-size: 15px;
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  .nav-actions {
    gap: 6px;
  }

  .solid {
    padding: 9px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .ghost {
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
    border-width: 1px;
  }

  .ghost.circle {
    gap: 6px;
  }

  .ghost.circle i {
    font-size: 1rem;
  }

  main {
    gap: 40px;
  }

  .hero {
    padding: 32px 3vw 12px;
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .lede {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions a,
  .cta-actions a {
    width: 100%;
    padding: 12px 10px;
    font-size: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat {
    padding: 10px 12px;
    text-align: center;
  }

  .stat-number {
    font-size: 0.95rem;
    font-weight: 700;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .hero-img {
    width: min(100%, 280px);
    border-radius: 24px;
  }

  .badge {
    right: 3%;
    bottom: 3%;
    padding: 8px 10px;
  }

  .badge i {
    font-size: 1rem;
  }

  .badge p {
    font-size: 0.85rem;
  }

  .badge span {
    font-size: 0.75rem;
  }

  .badge-top,
  .badge-left {
    display: none;
  }

  .section {
    padding: 0 3vw;
    gap: 16px;
  }

  .section.alt {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .section-heading h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 6px;
  }

  .section-heading p {
    font-size: 0.9rem;
  }

  .course-grid,
  .news-grid,
  .impact-grid,
  .pillars,
  .program-grid,
  .product-grid,
  .why-grid,
  .info-grid,
  .testimonial-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-img,
  .news-thumb,
  .product-thumb {
    height: 140px;
  }

  .card-body,
  .product-body {
    padding: 12px;
    gap: 8px;
  }

  .card-body h3,
  .product-title,
  .program-card h3 {
    font-size: 1rem;
  }

  .card-body p,
  .why-card p {
    font-size: 0.9rem;
  }

  .card-meta-row {
    gap: 8px;
    font-size: 0.85rem;
  }

  .pillar {
    padding: 14px;
    gap: 8px;
  }

  .pillar i {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .pillar h3 {
    font-size: 1rem;
  }

  .pillar p {
    font-size: 0.9rem;
  }

  .impact-card {
    padding: 12px;
    gap: 6px;
  }

  .impact-label {
    font-size: 0.85rem;
  }

  .counter-number {
    font-size: 1.5rem;
  }

  .impact-note {
    font-size: 0.9rem;
  }

  .promo {
    padding: 14px;
    gap: 12px;
  }

  .promo-copy h2 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-bottom: 8px;
  }

  .promo-copy p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .cta-banner {
    padding: 16px;
    gap: 10px;
    border-radius: 12px;
  }

  .cta-banner h2 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .cta-banner p {
    font-size: 0.9rem;
  }

  .modal {
    padding: 10px;
  }

  .modal-card {
    margin: 10px;
    border-radius: 16px;
    grid-template-columns: 1fr;
  }

  .modal-carousel {
    min-height: 240px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .carousel-indicators {
    bottom: 12px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .carousel-indicator.active {
    width: 24px;
  }

  .modal-copy {
    padding: 16px;
    gap: 10px;
    max-height: none;
  }

  .modal-copy h3 {
    font-size: 1.2rem;
  }

  .modal-copy p {
    font-size: 0.9rem;
  }

  .footer {
    padding: 12px 3vw 20px;
  }

  .footer .links {
    gap: 8px;
    font-size: 0.9rem;
  }

  .footer .small {
    font-size: 0.85rem;
  }

  .pill {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .stars {
    font-size: 0.9rem;
  }

  .meta {
    font-size: 0.85rem;
  }

  .price-inline,
  .price-tag {
    font-size: 1rem;
  }

  .link-arrow {
    font-size: 0.95rem;
  }

  .testimonial {
    padding: 12px;
    gap: 10px;
  }

  .author {
    gap: 10px;
  }

  .author img {
    width: 36px;
    height: 36px;
  }

  .author small {
    font-size: 0.85rem;
  }

  .faq-list details {
    padding: 12px 14px;
  }

  .faq-list summary {
    font-size: 0.95rem;
  }

  .faq-list p {
    font-size: 0.9rem;
    margin-top: 6px;
  }

  .module-list li,
  .perk-list li,
  .project-list li {
    padding: 8px 10px;
    gap: 8px;
    font-size: 0.9rem;
  }

  .best-project {
    padding: 14px;
    gap: 8px;
  }

  .accordion details {
    padding: 10px 12px;
  }

  .accordion summary {
    font-size: 0.95rem;
    gap: 6px;
  }

  .accordion p,
  .accordion ul {
    font-size: 0.9rem;
    margin-top: 6px;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* GALLERY: AUTO-SLIDING CAROUSEL */
/* ═══════════════════════════════════════════════════════════════ */

.gallery-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f0ead8;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(245, 181, 0, 0.9);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  background: rgba(245, 181, 0, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-indicator.active {
  background: rgba(245, 181, 0, 1);
  border-color: #fff;
  width: 28px;
  border-radius: 5px;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════════════════════ */
/* COMPANY VIDEO SECTION */
/* ═══════════════════════════════════════════════════════════════ */

.video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f0ead8;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE: GALLERY & VIDEO */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }

  .carousel-indicators {
    bottom: 12px;
    gap: 6px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .carousel-indicator.active {
    width: 24px;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    aspect-ratio: 16 / 9;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .carousel-indicators {
    bottom: 10px;
    gap: 5px;
  }

  .carousel-indicator {
    width: 7px;
    height: 7px;
  }

  .carousel-indicator.active {
    width: 20px;
  }
}

@media (max-width: 640px) {
  .carousel-slide {
    aspect-ratio: 4 / 3;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }

  .carousel-indicators {
    bottom: 8px;
    gap: 4px;
  }

  .carousel-indicator {
    width: 6px;
    height: 6px;
  }

  .carousel-indicator.active {
    width: 16px;
  }

  .video-wrapper {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    aspect-ratio: 4 / 3;
  }

  .carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .carousel-prev {
    left: 4px;
  }

  .carousel-next {
    right: 4px;
  }

  .carousel-indicators {
    bottom: 6px;
    gap: 4px;
  }

  .carousel-indicator {
    width: 5px;
    height: 5px;
  }

  .carousel-indicator.active {
    width: 12px;
  }

  .video-wrapper {
    aspect-ratio: 4 / 3;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* SMALL PHONES (280px - 480px) */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .nav {
    padding: 8px 2vw;
  }

  .brand {
    font-size: 14px;
  }

  .nav-logo {
    width: 32px;
    height: 32px;
  }

  .nav-actions {
    gap: 4px;
  }

  .solid,
  .ghost {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .solid i,
  .ghost i {
    font-size: 0.9rem;
  }

  .hero {
    padding: 24px 2vw 8px;
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    margin-bottom: 10px;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .lede {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions a {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

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

  .stat {
    padding: 10px;
    text-align: center;
  }

  .hero-img {
    width: min(100%, 240px);
    border-radius: 20px;
  }

  .badge {
    right: 2%;
    bottom: 2%;
    padding: 6px 8px;
    gap: 6px;
  }

  .badge i {
    font-size: 0.9rem;
  }

  .badge p {
    font-size: 0.75rem;
  }

  .badge span {
    font-size: 0.65rem;
  }

  .badge div {
    display: none;
  }

  .section {
    padding: 0 2vw;
    gap: 12px;
  }

  .section.alt {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-bottom: 4px;
  }

  main {
    gap: 32px;
  }

  .course-grid,
  .news-grid,
  .impact-grid,
  .pillars,
  .program-grid,
  .product-grid {
    gap: 10px;
  }

  .card-img,
  .news-thumb {
    height: 120px;
  }

  .card-body {
    padding: 10px;
    gap: 6px;
  }

  .card-body h3 {
    font-size: 0.95rem;
  }

  .card-body p {
    font-size: 0.85rem;
  }

  .card-meta-row {
    gap: 6px;
    font-size: 0.75rem;
  }

  .pillar {
    padding: 12px;
  }

  .pillar i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .pillar h3 {
    font-size: 0.95rem;
  }

  .impact-card {
    padding: 10px;
  }

  .counter-number {
    font-size: 1.3rem;
  }

  .promo {
    padding: 12px;
  }

  .promo-copy h2 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .cta-banner {
    padding: 12px;
    gap: 8px;
  }

  .cta-banner h2 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .footer {
    padding: 10px 2vw 16px;
    font-size: 0.85rem;
  }

  .testimonial {
    padding: 10px;
  }

  .author img {
    width: 32px;
    height: 32px;
  }
}
