/* ==========================================================================
   SKILLS CLUB - MASTER PRODUCTION STYLESHEET
   Powered by Edu Connects | 100% Mobile & Desktop Responsive
   Tailored specifically for 360px - 430px smartphones, tablets & desktops
   Designed & Managed by MyProFunnels Ventures
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --navy-950: #020B1E;
  --navy-900: #061A4A;
  --navy-850: #071F54;
  --navy-800: #08245C;
  --navy-700: #0E3685;
  --navy-600: #1A4BB0;
  
  --gold-500: #FFC400;
  --gold-600: #FFA000;
  --gold-400: #FFD54F;
  --gold-100: #FFF9E6;

  --accent-green: #10B981;
  --accent-green-dark: #059669;
  --accent-blue: #2563EB;
  --accent-purple: #8B5CF6;
  --accent-orange: #F97316;
  --accent-pink: #EC4899;
  --accent-teal: #06B6D4;
  --accent-red: #DC2626;

  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;

  /* Typography */
  --font-body: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(6, 26, 74, 0.15);
  --shadow-2xl: 0 25px 50px -12px rgba(2, 11, 30, 0.35);
  --shadow-gold: 0 8px 25px rgba(255, 196, 0, 0.4);
  --shadow-gold-lg: 0 12px 35px rgba(255, 196, 0, 0.55);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Utilities */
.text-gold { color: var(--gold-500) !important; }
.text-glow-gold { text-shadow: 0 0 25px rgba(255, 196, 0, 0.45); }
.bg-navy { background-color: var(--navy-900); }
.text-white { color: var(--white) !important; }

.gold-gradient-btn {
  background: linear-gradient(135deg, #FFC400 0%, #FFB300 100%);
  color: var(--navy-950) !important;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
}

.gold-gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  background: linear-gradient(135deg, #FFD54F 0%, #FFC400 100%);
}

.gold-gradient-btn:active {
  transform: translateY(0);
}

.navy-mesh-bg {
  background-color: #061A4A;
  background-image: 
    radial-gradient(at 0% 0%, hsla(220, 80%, 25%, 0.95) 0px, transparent 50%),
    radial-gradient(at 100% 0%, hsla(225, 75%, 22%, 0.9) 0px, transparent 50%),
    radial-gradient(at 100% 100%, hsla(215, 85%, 15%, 0.95) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsla(220, 90%, 18%, 0.95) 0px, transparent 50%);
}

.section-padding {
  padding: 65px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 35px auto;
}

/* Diamond Divider Headings */
.diamond-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(1.4rem, 3.8vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.diamond-title .d-line {
  height: 2px;
  width: clamp(20px, 4vw, 50px);
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}

.diamond-title .d-sym {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ==========================================================================
   TOP STICKY NAVBAR (DESKTOP & MOBILE)
   ========================================================================== */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 26, 74, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: #FFF;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  color: #E2E8F0;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--gold-400);
}

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

.btn-enroll-nav {
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  border: none;
  min-height: 38px;
}

.btn-enroll-nav:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.45);
}

/* Mobile Menu Hamburger Button */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(2, 11, 30, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1500;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.open {
  display: block;
  opacity: 1;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 330px;
  background: var(--navy-900);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.mobile-nav-links a {
  color: #F1F5F9;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--gold-400);
}

/* ==========================================================================
   HERO SECTION (FLUID DESKTOP & IMPACTFUL MOBILE)
   ========================================================================== */
.hero-section {
  padding: 40px 0 55px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 35px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Slanted Ribbon Badge */
.badge-ribbon-hero {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  align-self: flex-start;
  backdrop-filter: blur(6px);
  max-width: 100%;
}

.badge-ribbon-yellow {
  background: #FFC400;
  color: #020B1E;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 6px 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-ribbon-text {
  color: #93C5FD;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(2.2rem, 5.2vw, 3.7rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero-subheading {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--slate-100);
  margin-top: 4px;
}

.hero-desc {
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  color: var(--slate-300);
  max-width: 580px;
  line-height: 1.6;
}

/* 5-Step Row with Icons */
.steps-icon-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
}

.step-icon-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #FFF;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-icon-item .s-icon {
  font-size: 1rem;
}

.steps-icon-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* Bullet Items */
.bullet-dots-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-200);
}

.bullet-dot-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bullet-dot-item span {
  color: var(--gold-400);
  font-size: 0.75rem;
}

/* White Hero Launch Offer Card */
.hero-offer-white-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 18px 22px;
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--slate-200);
  margin-top: 6px;
}

.offer-w-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-w-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.offer-w-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.del-price {
  font-size: 1.15rem;
  color: var(--slate-400);
  text-decoration: line-through;
  font-weight: 600;
}

.red-price {
  font-size: 2.3rem;
  font-weight: 900;
  color: #DC2626;
  font-family: var(--font-display);
  line-height: 1;
}

.only-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-950);
}

.launch-tag-yellow {
  background: #FFC400;
  color: #020B1E;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-w-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hero-cta-btn {
  padding: 14px 26px;
  font-size: 1rem;
  min-height: 48px;
}

.offer-w-sub {
  font-size: 0.74rem;
  color: var(--slate-500);
  font-weight: 600;
}

/* Hero Right Visual Column (Blended Photo) */
.hero-visual-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}

.hero-woman-frame {
  width: 100%;
  max-width: 480px;
  background: transparent;
  display: flex;
  justify-content: flex-end;
}

.hero-woman-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35));
}

/* ==========================================================================
   SECTION 2: DEGREE HAI. LEKIN PRACTICAL OFFICE SKILLS?
   ========================================================================== */
.degree-section {
  background: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.degree-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 900;
  color: var(--navy-950);
  margin-bottom: 12px;
}

.degree-subtitle {
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  color: var(--slate-600);
  max-width: 820px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

.degree-icons-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.degree-icon-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.degree-icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-700);
  box-shadow: var(--shadow-md);
}

.degree-circle-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #2563EB;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: #EFF6FF;
  flex-shrink: 0;
}

.degree-icon-card h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.25;
  text-align: center;
}

.degree-pill-banner {
  display: inline-flex;
  background: var(--navy-900);
  color: #FFF;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.5px;
  max-width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION 3: CHOOSE YOUR PROGRAM
   ========================================================================== */
.programs-section {
  background: #F8FAFC;
  padding: 60px 0;
}

.programs-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prog-item-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.prog-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.prog-circle-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.prog-circle-badge .num {
  font-size: 1.35rem;
}

.prog-circle-badge .txt {
  font-size: 0.62rem;
  letter-spacing: 0.5px;
}

.badge-bg-green { background: #10B981; }
.badge-bg-blue { background: #2563EB; }
.badge-bg-purple { background: #8B5CF6; }
.badge-bg-orange { background: #F97316; }

.prog-item-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.prog-item-tagline {
  font-size: 0.82rem;
  color: var(--slate-500);
  min-height: 38px;
  margin-bottom: 16px;
}

.prog-item-pricing {
  margin-bottom: 20px;
}

.prog-price-lg {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--navy-950);
  font-family: var(--font-display);
}

.btn-card-action {
  width: 100%;
  padding: 13px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #FFF;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  min-height: 48px;
}

.btn-card-green { background: #10B981; }
.btn-card-green:hover { background: #059669; }

.btn-card-blue { background: #2563EB; }
.btn-card-blue:hover { background: #1D4ED8; }

.btn-card-purple { background: #8B5CF6; }
.btn-card-purple:hover { background: #7C3AED; }

.btn-card-orange { background: #F97316; }
.btn-card-orange:hover { background: #EA580C; }

/* ==========================================================================
   SECTION 4: WHAT YOU WILL LEARN (Dark Navy 5x2 Grid)
   ========================================================================== */
.learn-dark-section {
  background: #061A4A;
  color: var(--white);
  padding: 60px 0;
}

.learn-grid-5x2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.learn-box-gold {
  border: 1px solid rgba(255, 196, 0, 0.4);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.learn-box-gold:hover {
  background: rgba(255, 196, 0, 0.12);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.learn-box-icon {
  font-size: 1.4rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

.learn-box-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
}

/* ==========================================================================
   SECTION 5: 15-DAY CURRICULUM SNAPSHOT
   ========================================================================== */
.curriculum-timeline-section {
  background: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.timeline-nodes-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 35px;
  position: relative;
}

.timeline-node-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease;
}

.timeline-node-item:hover {
  border-color: var(--navy-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.node-circle-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.node-day-label {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 4px;
}

.node-day-desc {
  font-size: 0.8rem;
  color: var(--slate-600);
  line-height: 1.4;
}

.btn-syllabus-dark {
  background: var(--navy-900);
  color: var(--white);
  border: 1px solid rgba(255, 196, 0, 0.4);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.btn-syllabus-dark:hover {
  background: var(--navy-800);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   SECTION 6: WHY CHOOSE SKILLS CLUB? & STATS
   ========================================================================== */
.why-stats-section {
  background: #F8FAFC;
  padding: 60px 0;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.why-list-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.why-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.5;
}

.why-check-row span {
  color: var(--accent-green);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.2;
}

.navy-stats-box {
  background: var(--navy-900);
  border-radius: var(--radius-2xl);
  padding: 32px 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 196, 0, 0.25);
  text-align: center;
}

.stat-metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-metric-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-400);
  font-family: var(--font-display);
  line-height: 1;
}

.stat-metric-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.35;
}

/* ==========================================================================
   SECTION 7: WHAT OUR STUDENTS SAY (Testimonials)
   ========================================================================== */
.testimonials-section {
  background: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.gold-stars-row {
  color: #FFC400;
  font-size: 1.3rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.test-container-wrapper {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  max-width: 1100px;
  margin: 0 auto;
}

.test-columns-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  flex: 1;
}

.test-col-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  gap: 14px;
  padding: 6px;
}

.test-col-divider {
  width: 1px;
  background: var(--slate-200);
}

.test-nav-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--slate-300);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.test-nav-arrow-btn:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.test-quote-text {
  font-size: 0.92rem;
  color: var(--slate-700);
  font-style: italic;
  line-height: 1.6;
}

.test-person-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-person-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.test-person-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy-950);
}

.test-person-batch {
  font-size: 0.76rem;
  color: var(--slate-500);
}

/* ==========================================================================
   SECTION 8: FINAL CTA BANNER
   ========================================================================== */
.final-cta-banner-section {
  background: #061A4A;
  color: #FFF;
  padding: 45px 0;
}

.final-cta-banner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.final-cta-left-title {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 900;
  color: #FFF;
  margin-bottom: 10px;
}

.final-cta-flow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  color: var(--slate-300);
  flex-wrap: wrap;
}

.final-cta-right-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.final-cta-btn {
  padding: 16px 32px;
  font-size: 1.05rem;
  min-height: 52px;
}

.final-cta-sub {
  font-size: 0.76rem;
  color: var(--gold-400);
  font-weight: 600;
}

/* ==========================================================================
   FOOTER (CENTERED REFERENCE FOOTER)
   ========================================================================== */
.site-footer-custom {
  background-color: #000000 !important;
  color: #CBD5E1;
  padding: 55px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-center-content {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-brand-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #141414;
  border: 1px solid rgba(255, 196, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 196, 0, 0.15);
  flex-shrink: 0;
}

.footer-brand-titles h3 {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0;
  font-family: var(--font-display);
}

.footer-brand-titles p {
  color: #94A3B8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 3px 0 0 0;
}

.footer-description-text {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 800px;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
}

.footer-divider-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 0;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 600;
  color: #E2E8F0;
}

.footer-policy-links a:hover {
  color: #FFC400;
}

.footer-policy-links .dot-separator {
  color: #64748B;
}

.footer-bottom-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  font-size: 0.85rem;
  color: #94A3B8;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-row a {
  color: #CBD5E1;
}

.footer-bottom-row .highlight-text {
  color: #FFC400;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-row .highlight-text:hover {
  color: #FFE082;
  text-decoration: underline;
}

/* ==========================================================================
   MODALS (ENROLLMENT & SYLLABUS)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 11, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  max-width: 620px;
  width: 100%;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  position: relative;
  animation: modalScaleUp 0.3s ease-out;
  margin: auto;
}

.modal-card.large {
  max-width: 820px;
}

@keyframes modalScaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-header {
  background: var(--navy-900);
  color: var(--white);
  padding: 20px 22px;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 20px 22px;
  max-height: 75vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-300);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--navy-900);
  box-shadow: 0 0 0 3px rgba(6, 26, 74, 0.1);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-prog-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.modal-prog-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-prog-item.selected {
  border-color: var(--navy-900);
  background: var(--slate-50);
  box-shadow: 0 0 0 2px var(--navy-900);
}

.modal-prog-item h5 {
  font-size: 0.86rem;
  font-weight: 800;
}

.modal-prog-item p {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--gold-600);
}

.success-screen {
  text-align: center;
  padding: 12px 0;
}

.success-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #D1FAE5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 14px auto;
}

.voucher-summary-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: left;
  font-size: 0.85rem;
  margin: 16px 0;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR (CONVERSION BOOSTER)
   ========================================================================== */
.mobile-sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(6, 26, 74, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 196, 0, 0.4);
  padding: 8px 14px;
  z-index: 999;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.msb-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.msb-badge {
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.msb-price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.msb-price-line del {
  font-size: 0.8rem;
  color: var(--slate-400);
}

.msb-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFC400;
  line-height: 1;
}

.msb-name {
  font-size: 0.72rem;
  color: #E2E8F0;
  font-weight: 600;
}

.msb-btn {
  padding: 10px 18px !important;
  font-size: 0.82rem !important;
  border-radius: 9999px !important;
  white-space: nowrap;
  min-height: 40px;
}

/* ==========================================================================
   TABLET RESPONSIVENESS (768px - 991px)
   ========================================================================== */
@media screen and (max-width: 991px) {
  .nav-menu {
    display: none;
  }

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

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

  .hero-content {
    order: 1;
  }

  .hero-visual-col {
    order: 2;
    justify-content: center;
    margin-top: 15px;
  }

  .hero-woman-frame {
    max-width: 380px;
    margin: 0 auto;
  }

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

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

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

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

  .why-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .test-columns-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .test-col-divider {
    display: none;
  }

  .test-nav-arrow-btn {
    display: none;
  }

  .test-col-item {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 18px;
  }
}

/* ==========================================================================
   PRIMARY MOBILE RESPONSIVENESS (360px - 767px Wide Smartphones)
   TRUE LARGE MOBILE LAYOUT — ZERO DESKTOP COMPRESSION
   ========================================================================== */
@media screen and (max-width: 767px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    padding-bottom: 64px !important; /* space for mobile sticky bar */
    box-sizing: border-box !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .section-padding {
    padding: 44px 0 !important;
  }

  /* 1. Header on Mobile */
  .site-navbar {
    padding: 8px 0 !important;
    width: 100% !important;
  }

  .nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .brand-logo {
    gap: 6px !important;
  }

  .brand-logo-icon {
    font-size: 1.4rem !important;
  }

  .brand-name {
    font-size: 0.98rem !important;
  }

  .brand-tagline {
    font-size: 0.58rem !important;
  }

  .nav-actions {
    gap: 6px !important;
    display: flex !important;
    align-items: center !important;
  }

  .btn-enroll-nav {
    padding: 6px 10px !important;
    font-size: 0.72rem !important;
    min-height: 34px !important;
    letter-spacing: 0px !important;
  }

  .mobile-menu-btn {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    padding: 5px !important;
  }

  /* 2. Hero Section on Mobile: Large, Bold & Readable */
  .hero-section {
    padding: 18px 0 36px 0 !important;
    width: 100% !important;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .hero-content {
    order: 1 !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .badge-ribbon-hero {
    display: inline-flex !important;
    max-width: 100% !important;
    margin-bottom: 2px !important;
    border-radius: 6px !important;
    flex-wrap: wrap !important;
  }

  .badge-ribbon-yellow {
    font-size: 10.5px !important;
    padding: 4px 7px !important;
  }

  .badge-ribbon-text {
    font-size: 10.5px !important;
    padding: 4px 7px !important;
    white-space: normal !important;
  }

  .hero-title {
    font-size: clamp(26px, 7.8vw, 34px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.5px !important;
    font-weight: 900 !important;
    margin: 0 !important;
    word-break: break-word !important;
  }

  .hero-subheading {
    font-size: 16px !important;
    line-height: 1.35 !important;
    color: #E2E8F0 !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
  }

  .hero-desc {
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: #CBD5E1 !important;
  }

  /* 5-Step Flow Pills (Large & Clean Wrapping) */
  .steps-icon-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px 6px !important;
    align-items: center !important;
    margin: 4px 0 !important;
    width: 100% !important;
  }

  .steps-icon-arrow {
    display: none !important;
  }

  .step-icon-item {
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 4px 8px !important;
    gap: 4px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .step-icon-item .s-icon {
    font-size: 13px !important;
  }

  /* Bullet Benefits: 2x2 Grid on Mobile */
  .bullet-dots-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 8px !important;
    font-size: 13px !important;
    color: #E2E8F0 !important;
    margin: 4px 0 !important;
    width: 100% !important;
  }

  .bullet-dot-item {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
  }

  .bullet-dot-item span {
    font-size: 10px !important;
    color: var(--gold-400) !important;
  }

  /* White Hero Launch Offer Card: Clean Full-Width Stack */
  .hero-offer-white-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
    padding: 16px 12px !important;
    gap: 10px !important;
    border-radius: 16px !important;
    margin-top: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
  }

  .offer-w-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 4px !important;
    width: 100% !important;
  }

  .offer-w-title {
    font-size: 12.5px !important;
    font-weight: 800 !important;
    color: var(--navy-950) !important;
    letter-spacing: 0.5px !important;
  }

  .offer-w-pricing {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin-bottom: 2px !important;
  }

  .del-price {
    font-size: 15px !important;
    color: var(--slate-400) !important;
  }

  .red-price {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #DC2626 !important;
    line-height: 1 !important;
  }

  .only-text {
    font-size: 12.5px !important;
    font-weight: 800 !important;
    color: var(--navy-950) !important;
  }

  .launch-tag-yellow {
    font-size: 11px !important;
    padding: 3px 8px !important;
  }

  .offer-w-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 4px !important;
  }

  .hero-cta-btn {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 16px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(255, 196, 0, 0.45) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .offer-w-sub {
    text-align: center !important;
    font-size: 12px !important;
    color: var(--slate-500) !important;
    margin-top: 2px !important;
  }

  /* Hero Image: Large (85% of content width, Centered & Feathered) */
  .hero-visual-col {
    order: 2 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 8px auto 0 auto !important;
    width: 100% !important;
  }

  .hero-woman-frame {
    width: 85% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .hero-woman-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* 3. "DEGREE HAI" Section: 2-Column Clean Cards */
  .degree-section {
    padding: 40px 0 !important;
    width: 100% !important;
  }

  .degree-title {
    font-size: clamp(20px, 5.8vw, 26px) !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  .degree-subtitle {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  .degree-icons-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
  }

  .degree-icon-card {
    padding: 12px 6px !important;
    border-radius: 12px !important;
    min-height: 95px !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .degree-circle-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.15rem !important;
    margin-bottom: 2px !important;
  }

  .degree-icon-card h4 {
    font-size: 12.5px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
  }

  .degree-pill-banner {
    font-size: 13.5px !important;
    padding: 11px 16px !important;
    width: 100% !important;
    max-width: 440px !important;
    box-sizing: border-box !important;
  }

  /* 4. "CHOOSE YOUR PROGRAM": 1-Column Full-Width Card Stack */
  .programs-section {
    padding: 40px 0 !important;
    width: 100% !important;
  }

  .diamond-title {
    font-size: clamp(20px, 5.5vw, 26px) !important;
  }

  .programs-grid-4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  .prog-item-card {
    padding: 22px 16px !important;
    border-radius: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .prog-circle-badge {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 10px !important;
  }

  .prog-circle-badge .num {
    font-size: 19px !important;
  }

  .prog-circle-badge .txt {
    font-size: 10px !important;
  }

  .prog-item-title {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }

  .prog-item-tagline {
    min-height: auto !important;
    margin-bottom: 10px !important;
    font-size: 13.5px !important;
    line-height: 1.4 !important;
  }

  .prog-price-lg {
    font-size: 30px !important;
  }

  .btn-card-action {
    min-height: 46px !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
    width: 100% !important;
  }

  /* 5. "WHAT YOU WILL LEARN": 2-Column Gold Box Grid */
  .learn-dark-section {
    padding: 40px 0 !important;
    width: 100% !important;
  }

  .learn-grid-5x2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .learn-box-gold {
    padding: 11px 8px !important;
    gap: 8px !important;
    border-radius: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .learn-box-icon {
    font-size: 1.25rem !important;
  }

  .learn-box-title {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }

  /* 6. "15-DAY CURRICULUM SNAPSHOT": 2-Column Timeline */
  .curriculum-timeline-section {
    padding: 40px 0 !important;
    width: 100% !important;
  }

  .timeline-nodes-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
  }

  .timeline-node-item {
    padding: 12px 8px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .node-circle-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.15rem !important;
    margin-bottom: 6px !important;
  }

  .node-day-label {
    font-size: 14px !important;
  }

  .node-day-desc {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .btn-syllabus-dark {
    width: 100% !important;
    max-width: 340px !important;
    min-height: 46px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  /* 7. "WHY CHOOSE SKILLS CLUB? & STATS": Vertical Stack */
  .why-stats-section {
    padding: 40px 0 !important;
    width: 100% !important;
  }

  .why-stats-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .why-stats-grid h2 {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }

  .why-check-row {
    font-size: 14px !important;
    padding: 4px 0 !important;
    gap: 8px !important;
  }

  .why-check-row span {
    font-size: 15px !important;
  }

  .navy-stats-box {
    padding: 20px 14px !important;
    border-radius: 16px !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .stat-metric-num {
    font-size: 34px !important;
  }

  .stat-metric-title {
    font-size: 12.5px !important;
  }

  /* 8. "WHAT OUR STUDENTS SAY": Clean Stacked Cards */
  .testimonials-section {
    padding: 40px 0 !important;
    width: 100% !important;
  }

  .test-container-wrapper {
    padding: 12px !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .test-columns-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .test-col-divider {
    display: none !important;
  }

  .test-nav-arrow-btn {
    display: none !important;
  }

  .test-col-item {
    background: var(--slate-50) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: 12px !important;
    padding: 14px 12px !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .test-quote-text {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  .test-person-avatar {
    width: 42px !important;
    height: 42px !important;
  }

  .test-person-name {
    font-size: 14.5px !important;
  }

  .test-person-batch {
    font-size: 12px !important;
  }

  /* 9. Final CTA Banner on Mobile */
  .final-cta-banner-section {
    padding: 32px 0 !important;
    width: 100% !important;
  }

  .final-cta-banner-row {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .final-cta-left-title {
    font-size: 21px !important;
    line-height: 1.3 !important;
  }

  .final-cta-flow-line {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 5px 8px !important;
    font-size: 12.5px !important;
  }

  .final-cta-right-box {
    width: 100% !important;
  }

  .final-cta-btn {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 18px !important;
    font-size: 15px !important;
  }

  /* 10. Footer on Mobile */
  .site-footer-custom {
    padding: 36px 0 20px 0 !important;
    width: 100% !important;
  }

  .footer-description-text {
    font-size: 13px !important;
    line-height: 1.65 !important;
    padding: 0 2px !important;
  }

  .footer-policy-links {
    font-size: 13px !important;
    gap: 10px !important;
  }

  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px !important;
    font-size: 12.5px !important;
  }

  /* Sticky Bottom Bar */
  .mobile-sticky-bottom-bar {
    display: flex !important;
    padding: 8px 12px !important;
    gap: 8px !important;
  }

  .msb-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
    min-width: 0 !important;
    flex: 1 !important;
  }

  .msb-badge {
    font-size: 10px !important;
  }

  .msb-price-line {
    display: flex !important;
    align-items: baseline !important;
    gap: 4px !important;
  }

  .msb-price-line del {
    font-size: 12px !important;
  }

  .msb-price {
    font-size: 1.15rem !important;
  }

  .msb-name {
    font-size: 11px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .msb-btn {
    padding: 8px 14px !important;
    font-size: 0.76rem !important;
    min-height: 38px !important;
    flex-shrink: 0 !important;
  }

  /* Modals on Mobile */
  .form-grid-2, .modal-prog-picker {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .modal-card {
    border-radius: 16px !important;
    max-height: 90vh !important;
    width: 95% !important;
  }

  .modal-body {
    padding: 14px 12px !important;
    max-height: 74vh !important;
  }
}

/* ==========================================================================
   EXTRA SMALL PHONES (Under 375px e.g. iPhone SE / 360px Android)
   ========================================================================== */
@media screen and (max-width: 374px) {
  .hero-title {
    font-size: 27px !important;
  }

  .badge-ribbon-hero {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .badge-ribbon-yellow, .badge-ribbon-text {
    width: 100% !important;
    text-align: center !important;
  }

  .degree-icons-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .degree-circle-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
  }

  .degree-icon-card h4 {
    font-size: 12px !important;
  }

  .learn-grid-5x2 {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }

  .timeline-nodes-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
}
