:root {
  /* Ultra-Premium Divine & Spiritual Palette */
  --primary: #C89B3C;       /* Royal Gold */
  --primary-light: #EBD38D; /* Soft Sunrise Gold */
  
  /* Rich Dark Golden for Header, Footer & Buttons */
  --dark-gold: #9E7423;     
  --dark-gold-hover: #7E5B1A;

  --accent: #F2A65A;        /* Warm Sunrise Peach */
  --secondary: #B2DFFB;     /* Ethereal Sky Blue */
  
  /* Backgrounds */
  --bg-main: #FFFCF9;       /* Pearl White */
  --bg-cream: #FAF3EA;      /* Divine Cream / Main Body Bg */
  --bg-alt: #FFFFFF;        /* Pure White for Box Cards */
  
  /* Highlights & Glows */
  --highlight: #FFF5CC;     
  
  /* Typography */
  --ink: #332822;           /* Deep Espresso Brown */
  --muted: #7A6658;         
  
  /* Borders & Shadows */
  --border-color: #EADAC1;  
  --shadow-soft: 0 15px 40px rgba(200, 155, 60, 0.08); 
  --shadow-hover: 0 18px 45px rgba(200, 155, 60, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-main);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  padding-bottom: 90px;
}

button, input, a { font: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
a { color: inherit; }
img, video, iframe { display: block; max-width: 100%; border: none; }

/* ================= Typography ================= */
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 800; line-height: 1.15; }

h1 {
  width: 100%;
  max-width: 1200px;
  font-size: clamp(38px, 4.5vw, 60px);
  background: linear-gradient(135deg, var(--ink) 40%, var(--dark-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 { font-size: clamp(30px, 3.5vw, 46px); text-align: center; }
h3 { font-size: 18px; }
p { line-height: 1.65; }

.soft-kicker {
  margin: 0 auto 15px;
  color: var(--dark-gold);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

/* ================= Custom List Styles ================= */
ul.clean-list, ul.plus-list, ul.check-list, ul.dot-list {
  list-style: none; padding: 0; margin: 15px 0; display: grid; gap: 12px;
}
ul.clean-list li, ul.plus-list li, ul.check-list li, ul.dot-list li {
  position: relative; padding-left: 28px; color: var(--ink); font-weight: 600; font-size: 15.5px; line-height: 1.5; text-align: left;
}
ul.clean-list li::before { content: '•'; position: absolute; left: 0; color: var(--dark-gold); font-size: 20px; line-height: 1; top: 0px;}
ul.plus-list li::before { content: '+'; position: absolute; left: 0; color: var(--dark-gold); font-size: 18px; font-weight: 800; top: 1px;}
ul.check-list li::before { content: '☑'; position: absolute; left: 0; color: var(--dark-gold); font-size: 16px; top: 2px;}
ul.dot-list li::before { content: '▪'; position: absolute; left: 0; color: var(--dark-gold); font-size: 18px; top: 1px;}

/* ================= Header ================= */
.top-band {
  position: relative;
  width: 100%;
  z-index: 40;
  background: var(--dark-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1360px, 95%); 
  min-height: 75px;
  margin: 0 auto;
}

.top-inner img {
  height: 55px;
  padding: 6px 12px;
  background: #fff; 
  border-radius: 6px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 22px;
  color: var(--dark-gold);
  background: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.pill-btn:hover {
  background: var(--bg-cream);
  color: var(--dark-gold-hover);
  transform: translateY(-2px);
}

/* ================= Premium Buttons & Wrappers ================= */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 35px;
  color: #ffffff;
  background: var(--dark-gold);
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(158, 116, 35, 0.3);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  text-align: center;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: var(--dark-gold-hover);
  color: #fff;
}

.center-btn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ================= Base Sections (Full Page Width System) ================= */
.section { width: 100%; padding: 70px 18px; }
.container { width: 100%; max-width: 1360px; margin: 0 auto; }

/* ================= Divine Full Screen Hero ================= */
.full-screen-hero, .hero {
  position: relative; overflow: hidden; min-height: 90vh; display: flex;
  align-items: center; justify-content: center; padding: 80px 18px 40px; 
  background: radial-gradient(circle at 50% -10%, #FFFFFF 0%, #FAF3EA 55%, #EBE0D2 100%); 
  text-align: center;
}
.celestial-glow { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; opacity: 0.6; }
.glow-left { width: 500px; height: 500px; top: -100px; left: -100px; background: radial-gradient(circle, var(--highlight), transparent 60%); }
.glow-right { width: 450px; height: 450px; bottom: -50px; right: -50px; background: radial-gradient(circle, var(--secondary), transparent 60%); }

.hero-inner-centered { position: relative; z-index: 1; width: 100%; max-width: 1360px; display: flex; flex-direction: column; align-items: center; }
.hero-inner-centered h1 { margin: 0 auto 30px; text-align: center; filter: drop-shadow(0 4px 15px rgba(200, 155, 60, 0.15)); }

.hero-subtitle { color: var(--ink); font-size: clamp(18px, 2vw, 22px); font-weight: 600; margin: 0 auto 35px; text-align: center; max-width: 100%; }

.hero-text-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; max-width: 1200px; margin: 0 auto 30px; text-align: left; }
.hero-col { 
  padding: 40px 35px; 
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 243, 234, 0.75) 100%);
  backdrop-filter: blur(24px); 
  border: 1px solid rgba(200, 155, 60, 0.25); 
  border-radius: 20px; 
  box-shadow: 0 25px 50px rgba(158, 116, 35, 0.08), inset 0 0 20px rgba(255, 255, 255, 1); 
  position: relative; 
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.hero-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px rgba(158, 116, 35, 0.12), inset 0 0 25px rgba(255, 255, 255, 1);
  border-color: rgba(200, 155, 60, 0.6);
}
.hero-col::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--primary-light), var(--dark-gold)); border-top-left-radius: 20px; border-top-right-radius: 20px; }

.hero-col p { color: #4A3C34; font-size: 16.5px; font-weight: 500; line-height: 1.7; margin: 0 0 18px; }
.hero-col p:last-child { margin-bottom: 0; }
.hero-col strong { font-weight: 800; background: linear-gradient(90deg, var(--dark-gold), #b38321); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.centered-badges, .badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 10px auto 35px; }
.badge-row span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 22px; color: var(--dark-gold); background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(8px); border: 1px solid rgba(200, 155, 60, 0.3); border-radius: 999px; font-size: 14px; font-weight: 800; box-shadow: 0 4px 15px rgba(200, 155, 60, 0.05); transition: all 0.3s ease; }
.badge-row span:hover { border-color: var(--primary); background: #fff; box-shadow: 0 8px 20px rgba(200, 155, 60, 0.15); transform: translateY(-2px); }

/* ================= Problem Card & Video Section ================= */
.discovery-section { padding: 60px 18px 40px; background: var(--bg-main); width: 100%; }
.discovery-card { 
  display: grid; 
  grid-template-columns: 0.75fr 1.25fr; 
  gap: 40px; 
  width: min(1360px, 95%); 
  margin: 0 auto; 
  align-items: start; 
}

.problem-card { padding: 0; text-align: left; background: transparent; border: none; box-shadow: none; position: relative; height: 100%; margin-top: 0; }
.problem-card .card-kicker { margin: 0 0 12px; color: var(--dark-gold); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; text-align: left; }
.problem-card h3 { font-size: 18px; color: var(--muted); margin-bottom: 8px; font-weight: 600; text-align: left;}
.problem-card h2 { text-align: left; font-size: clamp(20px, 2.5vw, 24px); margin-bottom: 22px; line-height: 1.4; }
.problem-lines { display: grid; gap: 12px; margin: 22px 0; }
.problem-lines span { padding: 16px; color: var(--ink); background: var(--bg-cream); border: 1px solid var(--border-color); border-radius: 8px; font-weight: 600; font-size: 15px; line-height: 1.5; box-shadow: 0 4px 10px rgba(0,0,0,0.03); text-align: left;}
.card-footer-text p { margin: 10px 0; color: var(--muted); font-weight: 500; font-size: 15.5px; text-align: left;}
.card-footer-text blockquote { margin: 24px 0; color: var(--dark-gold); font-family: Georgia, serif; font-size: 20px; font-style: italic; font-weight: 800; text-align: center; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 18px 0; }

.video-heading-box .card-kicker { color: var(--dark-gold); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; text-align: left;}
.video-heading-box h2 { font-size: 19px; line-height: 1.4; color: var(--ink); margin-bottom: 20px; text-align: left; }

.video-frame { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 45px rgba(0,0,0,0.15); background: #000; border: 2px solid var(--border-color); }
.main-vimeo { padding-top: 56.25%; /* 16:9 Aspect Ratio */ }
.main-vimeo iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Full Width Pathway Box Below Video (Smaller Responsive Single Line Configuration) */
.full-width-pathway { 
    width: min(1360px, 95%); 
    margin: 40px auto 0; 
    padding: 26px 40px; 
    background: var(--bg-cream); 
    border: 1px solid var(--border-color); 
    border-top: 4px solid var(--dark-gold); 
    border-radius: 14px; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(200, 155, 60, 0.08); 
}
.single-line-text {
    margin: 0;
    font-size: clamp(13px, 1.25vw, 16px); /* Reduced font size so it fits perfectly on 1 line */
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
    white-space: nowrap; 
}

/* ================= Marquees ================= */
.featured-strip { text-align: center; overflow: hidden; background: var(--bg-alt); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 50px 18px;}
.feature-logos-wrapper { overflow: hidden; white-space: nowrap; margin-top: 30px; padding: 10px 0; }
.feature-logos { display: flex; width: max-content; align-items: center; animation: brandmarquee 40s linear infinite; }
.feature-logos img { display: inline-block; height: 85px; width: 180px; margin: 0 18px; background: #fff; padding: 8px; border: 1px solid var(--border-color); border-radius: 10px; box-shadow: 0 8px 25px rgba(200, 155, 60, 0.08); object-fit: contain; vertical-align: middle; }
@keyframes brandmarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.event-marquee-section { padding: 50px 0 80px; overflow: hidden; background: var(--bg-main); width: 100%; }
.photo-marquee { overflow: hidden; white-space: nowrap; }
.photo-track { display: flex; align-items: center; width: max-content; gap: 24px; animation: marquee 45s linear infinite; }
.photo-track img { width: 260px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 14px; box-shadow: 0 15px 35px rgba(200, 155, 60, 0.12); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================= Section Headings ================= */
.section-heading { max-width: 900px; margin: 0 auto 40px; text-align: center; }
.section-heading p:not(.soft-kicker) { color: var(--muted); font-size: 18px; margin-top: 15px; line-height: 1.6; text-align: center;}
.section-heading h2 { text-align: center; }

/* ================= Grid Cards (Fit & Achieve) ================= */
.fit-section { background: var(--bg-cream); }
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fit-grid article { padding: 26px; background: var(--bg-alt); border: 1px solid var(--border-color); border-radius: 14px; color: var(--ink); font-weight: 600; font-size: 15px; line-height: 1.5; box-shadow: 0 4px 12px rgba(200, 155, 60, 0.03); transition: transform 0.3s ease, border-color 0.3s ease; text-align: left;}
.fit-grid article:hover { transform: translateY(-4px); border-color: rgba(200, 155, 60, 0.5);}
.fit-grid article.achieve-card { border-left: 4px solid var(--dark-gold); }
.fit-grid article.achieve-card::before { content: "✓ "; color: var(--dark-gold); font-weight: 900; margin-right: 8px;}

.fit-conclusion-box { width: 100%; margin: 50px auto 0; padding: 30px; background: var(--bg-alt); border: 1px solid var(--border-color); border-radius: 12px; box-shadow: var(--shadow-soft); text-align: center; }
.fit-conclusion-box p { color: var(--dark-gold); font-weight: 800; font-size: 22px; margin: 0; }
.highlight-card { border-color: var(--primary) !important; background: rgba(200, 155, 60, 0.05) !important; }

/* ================= Akashic Records Details ================= */
.records-section { background: var(--bg-main); }
.two-column-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.info-card { padding: 40px; background: var(--bg-alt); border: 1px solid var(--border-color); border-radius: 20px; box-shadow: var(--shadow-soft); }

/* ================= Mentor ================= */
.mentor-section { 
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 60px 50px; 
  width: 100%; background: var(--bg-alt); border: 1px solid var(--border-color); 
  border-radius: 20px; box-shadow: var(--shadow-soft); position: relative;
}
.mentor-copy h2 { text-align: left; margin-bottom: 20px; }
.mentor-copy p { color: var(--muted); font-size: 16.5px; line-height: 1.6; text-align: left;}
.mentor-copy .soft-kicker { text-align: left; margin: 0 0 12px 0; }
.mentor-image { display: flex; justify-content: center; align-items: center; padding: 30px; background: radial-gradient(circle, var(--highlight) 0%, var(--bg-alt) 80%); border-radius: 16px; box-shadow: inset 0 0 30px rgba(200, 155, 60, 0.03); }
.mentor-image img { width: 100%; height: auto; max-width: 420px; max-height: 520px; object-fit: cover; object-position: top center; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 2px solid var(--border-color); }

/* ================= Curriculum Grid ================= */
.curriculum-section { background: var(--bg-cream); }
.curriculum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.course-title-img { grid-column: 1 / 2; grid-row: 1 / 3; }
.course-title-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-soft); }

.mod-1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.mod-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.mod-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.mod-4 { grid-column: 3 / 4; grid-row: 2 / 3; }
.mod-5 { grid-column: 1 / 2; grid-row: 3 / 4; }
.mod-6 { grid-column: 2 / 3; grid-row: 3 / 4; }
.mod-7 { grid-column: 3 / 4; grid-row: 3 / 4; }

.module-card { 
    display: flex; flex-direction: column; padding: 28px; background: var(--bg-alt); 
    border: 1px solid var(--border-color); border-top: 5px solid var(--dark-gold); 
    border-radius: 16px; box-shadow: 0 10px 30px rgba(200, 155, 60, 0.08); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.module-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(200, 155, 60, 0.15); }
.module-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px;}
.module-number { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: #fff; background: var(--dark-gold); border-radius: 50%; font-weight: 900; font-size: 18px; flex-shrink: 0;}
.module-header h3 { margin: 0; font-size: 18px; color: var(--ink); text-align: left;}

/* ================= Dark Band / Divine Band ================= */
.dark-band { 
    padding: 80px 18px; 
    background: radial-gradient(circle at center, var(--highlight) 0%, var(--bg-main) 100%); 
    border-top: 1px solid var(--border-color); 
    border-bottom: 1px solid var(--border-color); 
    text-align: center; 
    margin: 40px 0 0; 
}
.dark-inner { max-width: 1000px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.dark-inner h2 { color: var(--ink); margin-bottom: 18px; font-size: 38px; text-align: center; }
.dark-inner p { color: var(--muted); font-weight: 500; font-size: 18px; margin: 0 auto 15px; line-height: 1.6; max-width: 850px; text-align: center; }
.dark-band .primary-btn { margin: 25px auto 0; display: inline-flex; }

/* ================= Testimonials Section (Reels) ================= */
.testimonials-section { background: var(--bg-main); padding-top: 80px; }
.reels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.reel-frame {
    position: relative;
    width: 100%;
    padding-top: 177.77%; 
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(200, 155, 60, 0.15);
    border: 2px solid var(--border-color);
    background: #000;
}
.reel-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ================= Audience & Tags ================= */
.audience-section { background: var(--bg-main); }
.audience-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.audience-tags span { padding: 14px 22px; background: var(--bg-cream); border: 1px solid var(--border-color); border-radius: 999px; font-weight: 700; color: var(--dark-gold); box-shadow: 0 4px 12px rgba(200, 155, 60, 0.04); font-size: 15px; transition: transform 0.3s ease; }
.audience-tags span:hover { transform: translateY(-3px); border-color: var(--dark-gold); background: #fff;}

/* ================= Investment Section ================= */
.faq-investment { background: var(--bg-main); text-align: center; }
.investment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1050px; margin: 0 auto 35px; text-align: left; }
.investment-grid article { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 22px 24px; background: var(--bg-alt); border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 4px 15px rgba(200, 155, 60, 0.04); }
.investment-grid span { display: grid; place-items: center; width: 40px; height: 40px; color: #fff; background: var(--dark-gold); border-radius: 50%; font-weight: 900; font-size: 18px; box-shadow: 0 4px 10px rgba(200, 155, 60, 0.2); }
.investment-grid h3 { font-size: 18px; margin: 0 0 6px 0; color: var(--ink); text-align: left;}
.investment-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; text-align: left;}

.bonus-box { max-width: 1050px; margin: 40px auto; text-align: center; padding: 20px; }
.highlight-wrapper { display: flex; justify-content: center; width: 100%; margin: 15px 0 25px; }
.highlight-text { text-align: center; color: var(--dark-gold-hover); font-size: 20px; font-weight: 800; background: var(--highlight); padding: 10px 30px; border-radius: 999px; box-shadow: 0 4px 15px rgba(200, 155, 60, 0.15); margin: 0; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus-card { background: var(--bg-alt); padding: 30px 20px; border: 1px solid var(--border-color); border-radius: 14px; border-top: 5px solid var(--dark-gold); box-shadow: 0 5px 15px rgba(0,0,0,0.03); font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: center; text-align: center; font-size: 15px; }

/* ================= Final CTA ================= */
.final-cta { width: 100%; margin: 0 auto; padding: 65px 45px; text-align: center; background: var(--bg-alt); border: 1px solid var(--border-color); border-radius: 20px; box-shadow: var(--shadow-soft); position: relative; }
.final-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--primary-light), var(--dark-gold)); border-top-left-radius: 20px; border-top-right-radius: 20px; }
.final-cta h2 { margin: 0 auto 25px; font-size: clamp(28px, 3.5vw, 36px); line-height: 1.3; max-width: 900px; text-align: center;}
.final-cta p:not(.soft-kicker) { color: var(--muted); margin: 0 auto 20px; font-size: 18px; line-height: 1.6; max-width: 750px; text-align: center;}

/* ================= Bottom Sticky CTA ================= */
.bottom-cta { position: fixed; bottom: 0; left: 0; width: 100%; padding: 18px 20px; background: var(--dark-gold); border-top: 1px solid rgba(0,0,0,0.1); box-shadow: 0 -10px 40px rgba(0,0,0,0.15); z-index: 9999; }
.bottom-cta-inner { display: flex; align-items: center; justify-content: center; gap: 25px; width: min(1360px, 95%); margin: 0 auto; }
.bottom-cta span { color: #ffffff; font-weight: 800; font-size: 15px;}
.bottom-cta a.primary-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 32px; background: #ffffff; color: var(--dark-gold); font-weight: 800; font-size: 15px; letter-spacing: 0.5px; box-shadow: 0 8px 20px rgba(0,0,0,0.2); border-radius: 999px; transition: all 0.3s ease; border:none;}
.bottom-cta a.primary-btn:hover { background: var(--bg-main); color: var(--dark-gold-hover); transform: translateY(-2px); }

/* ================= Responsive Media Queries ================= */
@media (max-width: 1024px) {
  .discovery-card, .mentor-section, .two-column-layout { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }
  .course-title-img { grid-column: 1 / -1; grid-row: auto;}
  .mod-1, .mod-2, .mod-3, .mod-4, .mod-5, .mod-6, .mod-7 { grid-column: auto; grid-row: auto;}
  .mentor-section { padding: 40px 30px; }
  .mentor-copy h2, .mentor-copy .soft-kicker { text-align: center; }
  .fit-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  
  /* Reels grid on Tablet */
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; } 
  .single-line-text { white-space: normal; }
}

@media (max-width: 620px) {
  .top-inner { min-height: 65px; }
  .full-screen-hero, .hero { padding-top: 40px; min-height: auto; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  
  .hero-subtitle { white-space: normal; font-size: 18px; }
  .hero-text-columns { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .hero-col { padding: 25px 20px; }
  
  .badge-row span { flex: 1 1 100%; justify-content: center; }
  .primary-btn { width: 100%; text-align: center; }
  
  .discovery-card, .problem-card { padding: 24px; }
  .fit-grid, .curriculum-grid, .investment-grid { grid-template-columns: 1fr; }
  
  .course-title img { max-width: 280px; margin: 0 auto; display: block; }
  
  /* ================= Mobile Swipeable Reels (Premium UX) ================= */
  .reels-grid { 
      display: flex; 
      overflow-x: auto; 
      scroll-snap-type: x mandatory; 
      gap: 15px; 
      padding-bottom: 20px; 
      margin-left: -18px; 
      margin-right: -18px; 
      padding-left: 18px; 
      padding-right: 18px;
  }
  /* Hide scrollbar for clean look */
  .reels-grid::-webkit-scrollbar { display: none; }
  .reel-frame { 
      flex: 0 0 75%; /* Show 1 reel and a glimpse of the next to encourage swiping */
      scroll-snap-align: center; 
  }
  
  .photo-track img { width: 220px; }
  
  .final-cta { padding: 45px 25px; margin: 40px auto; width: 100%; }
  
  .full-width-pathway { padding: 20px 15px; }
  .single-line-text { white-space: normal; font-size: 15px; } 
  
  .bottom-cta { padding: 12px 15px; }
  .bottom-cta-inner { flex-direction: column; text-align: center; gap: 10px; }
  .bottom-cta span { font-size: 13px; line-height: 1.3; }
  .bottom-cta a.primary-btn { min-height: 48px; font-size: 15px; padding: 0 18px; width: 100%; }
}