* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --purple-primary: #7B68AA;
  --purple-dark: #5B4B8A;
  --purple-light: #9B8BC4;
  --cyan-bright: #4DD4E8;
  --grade5-blue: #5EC6E8;
  --grade6-purple: #A179C9;
  --grade7-orange: #FF9F5A;
  --grade8-green: #6BCF94;
  --text-dark: #2D3748;
  --text-light: #718096;
  --bg-light: #F7FAFC;
  --white: #FFFFFF;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
h2 {
  font-size: 36px !important;
  margin-bottom: 10px !important;;
  color: #1d103f !important;;
  text-align: center !important;;
  font-family: Poppins !important;;
  font-weight: 600 !important;;
  margin-top: 0 !important;;
  line-height: 1.2 !important;;
  letter-spacing: -0.96px !important;;
}
p {
  color: #666 !important;;;
  margin-top: 0;
  color:#333333b2;
  text-align: center;
  font-family: Poppins !important;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 160% !important;
}
.hero-outer-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
}
.hero-section {
  background-color: #1d103f;
  padding: 60px 15px 40px 15px;
  color: #fff;
}
.container {
  width: 87.5vw;
  max-width: 1680px;
  padding: 0 0px;
  margin: auto;
  box-sizing: border-box;
}
.hero-inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.text-content {
  max-width: 50%;
  width: 50%;
  text-align: left;
}
.visual {
  position: relative;
  width: 50%;
  flex-shrink: 0;
}
.text-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 9px;
  color: #fff;
  text-align: left;
}
.text-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 45px;
  margin-top: 9px;
  color: #FFFFFFB2 !important;
  text-align: left;
}
.text-content .why-footer {
  text-align: left;
}
.why-footer {
  max-width: 100%;
  margin-top: 40px;
  text-align: center;
  width: 100%;
}
.text-content .btn {
  background-color: #06b6d4;
  border: none;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 500;
  margin-right: auto;
  padding: 12px 25px;
  text-decoration: none;
}
.circle-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 76, 230, 0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(107, 76, 230, 0.4);
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F5F5FA 0%, #E8E8F5 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 76, 230, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: .5rem 0rem;

}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h2 {
  font-size: 1.5rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-cta {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(107, 76, 230, 0.3);
  margin-bottom: 3rem;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(107, 76, 230, 0.4);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.meta-item {
  background: white;
  padding: 0rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
span.number {
  font-size: 41px;
  vertical-align: middle;
  margin-right: 10px;
}
.leftcontent {
  background: #fff;
  border-color: #6b4ce6 #ffad33 #ffad33;
  border-radius: 20px;
  border-top: 6px solid #4269e2;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
  padding: 2rem;
  position: relative;
}
.leftcontent h3 svg {
  fill:#4269e2 !important;
  margin-right: 10px;
  vertical-align: middle;
  width: 38px;
  fill: #4269e2;
}
.research-box h3 svg {
  fill: #4269e2;
  left: 35px;
  position: absolute;
  top: 29px;
  width: 30px;
}
.meta-label {
  border-radius: 10px 11px 0 0;
  border-top: 5px solid #a86ada;
  color: #1d103f !important;
  /* color: #fff !important; */
  font-size: 18px;
  border-bottom: 2px solid;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: .5rem;
  padding: 4px 10px 5px;
  text-align: center;
  text-transform: uppercase;
  text-transform: capitalize;
}
span.courseitm {
  color: #1d103f;
}
.meta-item:first-child .meta-label {
  border-top: 5px solid #4269e2;
}
.meta-item:nth-child(2) .meta-label {
  border-top: 5px solid #85b710;
}
.meta-item:nth-child(3) .meta-label {
  border-top: 5px solid #1bc0d8;
}
.meta-item:nth-child(4) .meta-label {
  border-top: 5px solid#ff9901;
}
.meta-item:nth-child(1) span.number {
  font-size: 90px;
  margin-right: 10px;
  vertical-align: middle;

}
.meta-item:nth-child(2) span.number {
  font-size: 72px;
  font-weight: 600;
  margin-right: 10px;
  vertical-align: middle;

}
span.courseitm span.number {
  font-size: 62px;
  display: block;
  line-height: 1;

  margin-right: 0;
}
span.tier2 {
    display: block;
    font-size: 50px;
}

/*.meta-item:nth-child(1) .meta-value {
font-size: 4rem;
}
.meta-item:nth-child(2) .meta-value {
font-size: 4rem;
}

*/
.meta-value {
  color: #1d103f;
  font-size: 30px;
  font-weight: 600;
  padding: 5px 15px 15px;
  text-align: center;
  display: flex;
  height: 165px;
  align-items: center;
  justify-content: center;
}
.meta-item:nth-child(3) .meta-value {
 justify-content: space-around;
}
.meta-item:nth-child(3) .meta-value span.courseitm span.number{
         font-size: 65px;
}
.meta-item:nth-child(4) .meta-value,.meta-item:nth-child(5) .meta-value, .meta-item:nth-child(4) .meta-value,.meta-item:nth-child(3) .meta-value{
   font-size: 20px;
}
.meta-item:nth-child(5) .meta-value{
    display: block;
}
.container,.hero-container {
  box-sizing: border-box;
  margin: auto;
  max-width: 1680px !important;
  padding: 0;
  width: 87.5vw !important;
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

/* Section 1 - Why Grade 5 Matters */
.why-matters {
  background: white;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

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

.why-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--dark-gray);
  font-size: 1.05rem;
}

.why-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);

  line-height: 1;
}

.research-box {
  border-top: 6px solid #4269e2;
  border-radius: 20px;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
  padding: 2rem;
  position: relative;
}
.leftcontent h3 {
  font-size: 30px;
  font-style: normal;
  margin: 0;
}
.research-box h3 {
  color: #4269e2;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-left: 34px;
}
.research-list {
  list-style: none;
  padding: 0;
}

.research-list li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--dark-gray);
}
.research-list li::before,.why-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
.highlight-text {
  background: linear-gradient(90deg, #dcb1ff, #b179df);
  border-radius: 10px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 2rem auto 0;
  max-width: 100%;
  padding: 23px;
  text-align: center;
}
/* Section 2 - Program Overview */
.program-overview {
  background: linear-gradient(135deg, #F5F5FA 0%, #FFFFFF 100%);
  background: linear-gradient(to right bottom, #e0e7ff, #f7efff, #fff2fa);
}
.course-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #040404;
  font-style: normal !important;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.core-question {
  background: #ffffff;
  border: 2px solid #f1e0ff;
  border-radius: 10px;
  box-shadow: 7px 7px 0 rgba(168, 106, 218, .2);
  margin-top: 2.5rem;
  padding: 2rem 0;
  text-align: center;
}

.core-question h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  opacity: .9;
  font-style: normal;
}

.core-question p {
  font-size: 1.1rem !important;
  font-weight: 700;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.develops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.develop-item {
  background: #fff;
  border-left: 4px solid #85b710;
  border-radius: 15px;
  box-shadow: 11px 9px 1px rgba(0, 0, 0, .05);
  padding: 1.5rem;
  transition: transform .3s ease;
}

.develop-item:hover {
  transform: translateY(-5px);
}

/* Section 3 - Course Lineup */
.course-lineup {
  background: white;
}

.courses-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns:  1fr 1fr 1fr 1fr;
    margin-top: 3rem
}

.course-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.course-header {
     color: #fff !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 12px solid #4269e2;
    min-height: 120px;
    padding: 1rem 1rem 0;
}


.learnitems {
  font-size: 17px;
}
.course-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-align: center;
      justify-content: center;
}

.course-body {
  padding: 1.5rem 1rem 2rem;
}

.course-focus {
  color: var(--medium-gray);
  font-size: 16px !important;
}

.course-note {
  background: linear-gradient(90deg, #dcb1ff, #b179df);
  border-radius: 10px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 2rem auto 0;
  max-width: 100%;
  padding: 23px;
  text-align: center;
}
/* Section 4 - What Students Learn */
.students-learn {
  background: linear-gradient(135deg, #F5F5FA 0%, #E8E8F5 100%);
}
.learn-grid {
  display: grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.learn-item {
  align-items: start;
  background: #fff;
  border-left: 5px solid #a86ada;
  border-radius: 9px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}
.benefit-card li:before {
  color: #fff;
  content: "✓";
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.concern-icon {
  align-items: center;
  border: 1px solid #7b68aa;
  border-radius: 12px;
  display: flex;
  flex-shrink: 0;
  font-size: 1.5rem;
  height: 50px;
  justify-content: center;
  width: 50px;
}
.concern-icon svg {
  color: #b179df;
}
.learn-icon {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.2rem;
  width: auto;
  border: 1px solid;
  text-align: center;
  border-radius: 6px;
  max-width: 39px;
  margin-bottom: 20px;
}

.final-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

/* Section 5 - Academic Impact */
.academic-impact {
  background: #1d103f;
  color: #fff;
}


.academic-impact .section-title {
  color: #fff !important;
}
.impact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  margin-top: 3rem;
}

.impact-card {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, .05);
  border: 4px solid hsla(0, 0%, 100%, .2);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.impact-number {
  border: 1px solid;
  color: var(--secondary);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0 0px;
  border-radius: 64px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.impact-title {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
}

.impact-desc {
  color: hsla(0, 0%, 100%, .8) !important;
  font-size: 15px !important;
  text-align: left;
}

.quote-box {
  background: linear-gradient(90deg, #dcb1ff, #b179df);
  border-radius: 10px;
  color: #fff !important;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 2rem auto 0;
  max-width: 100%;
  padding: 23px;
  text-align: center;
}

.quote-box p {
  color: #fff !important;
  font-size: 1.1rem !important;
  font-style: normal;
}


/* Section 6 - Research & Standards */
.research-standards {
  background: white;
}

.standards-grid {
  display: grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.standard-item {
  align-items: center;
  background: var(--light-gray);
  border-radius: 8px;
  border-top: 8px solid #85b710;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .22);
  color: var(--dark);
  display: flex;
  font-weight: 600;
  padding: 1.5rem;
  text-align: left;
  transition: background .3s ease;
}
.standard-item .concern-icon {
  align-items: center;
  background: #85b710;
  border: 1px solid #85b710;
  border-radius: 7px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 20px;
  height: 30px;
  justify-content: center;
  margin-right: 25px;
  width: 30px;
}
.standard-item:hover {
  background: linear-gradient(135deg, rgba(107, 76, 230, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
}
.standard-item strong{
font-weight:600;
}
/* Section 7 - Implementation */
.implementation {
  background: linear-gradient(135deg, #F5F5FA 0%, #FFFFFF 100%);
  background: linear-gradient(to right bottom, #e0e7ff, #f7efff, #fff2fa);
}

.impl-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3rem;
}

.impl-box {
  background: #1bc0d8;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 2rem;
}
.impl-box:nth-child(2) {
  background: #a86ada;
}
.impl-box:nth-child(3) {
  background: #85b711;
}
.impl-box h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: normal;
  margin-bottom: 3px;
}

.impl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impl-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: #fff
}

.impl-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

/* Section 8 - Assessment */
.assessment {
  background: white;
}
.assessment-left {
  padding: 20px;
  border-radius: 30px;
  background: #fff;
  border-radius: 20px;

  padding: 2rem;
  position: relative;
}
.assessment-grid {
  display: grid;
  gap: 3rem;
  border-radius: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
  border-top: 6px solid #85b710;
}

.assessment-left ul {
  list-style: none;
  padding: 0;
}

.assessment-left ul li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--dark-gray);
}

.assessment-left ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.assessment-right {
  background: #fff;
  border-radius: 30px;
  border-radius: 20px;

  padding: 2rem;
  position: relative;
}

.assessment-right p {
  background: rgba(133, 183, 16, .1);
  border: 1px solid #ffffff;
  border-left: 5px solid #85b710;
  border-radius: 30px 15px 15px 30px;
  color: var(--dark);
  color: #1d103f !important;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0;
  padding: 14px;
}

.assessment-note {
  background: linear-gradient(90deg, #dcb1ff, #b179df);
  border-radius: 10px;
  color: #fff !important;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 2rem auto 0;
  max-width: 100%;
  padding: 23px;
  text-align: center;
}

/* Section 9 - Outcomes */
.outcomes {
  background: linear-gradient(135deg, #F5F5FA 0%, #E8E8F5 100%);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.outcome-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 2rem;
}

.outcome-box h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-style:normal;
  border-bottom: 3px solid #b179df;
  color: #b179df;
  margin-bottom: 1rem;
  padding-bottom: 16px;
}

.outcome-box ul {
  list-style: none;
  padding: 0;
}

.outcome-box ul li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--dark-gray);
}

.outcome-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #b179df;
  font-weight: bold;
}

.summary-quote {
  background: linear-gradient(90deg, #dcb1ff, #b179df);
  border-radius: 10px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 2rem auto 0;
  max-width: 100%;
  padding: 23px;
  text-align: center;
}

/* Section 10 - Funding */
.funding {
  background: white;
}

.funding-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2rem;
}

.funding-item {
  background: #fff;
  border-top: 5px solid #4269e2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
  color: var(--dark);
  font-weight: 600;
  text-align: center;
  padding: 27px;
  border-radius: 12px;
}
.circle-image img {
  border-radius: 20px;
}

.funding-note {
  background: linear-gradient(90deg, #dcb1ff, #b179df);
  border-radius: 10px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 2rem auto 0;
  max-width: 100%;
  padding: 23px;
  text-align: center;
}

/* Section 11 - Why Choose */
.why-choose {
  background: #1d103f;
  color: #fff;
}

.why-choose .section-title {
  color: #fff !important;
}

.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3rem;
}

.why-card {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, .05);
  border-left: 4px solid #1cc0d8;
  border-radius: 23px;
  padding: 2rem;
}

.why-card h3 {
  color: #1cc0d8;
  font-size: 22px;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 600;
}

.why-card p {
  color: hsla(0, 0%, 100%, .9) !important;
  font-size: 16px !important;
  text-align: left;
}

.why-conclusion {
  margin-top: 3rem;
  background: linear-gradient(90deg, #dcb1ff, #b179df);
  border-radius: 10px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 2rem auto 0;
  max-width: 100%;
  padding: 23px;
  text-align: center;
  text-align: center;
}

.why-conclusion p {
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  margin: 1rem 0 !important;
  color: #fff !important;
  line-height: 1 !important;
}

.why-conclusion p:first-child {
  color: rgba(255, 255, 255, 0.8);
}

.why-conclusion p:last-child {
  color: var(--secondary);
}

/* Section 12 - CTA */
.final-cta {

}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  padding: 0;
  text-align: left;
  justify-content: center;
}

.cta-list li {
  font-size: 1rem;
  padding: .8rem 0 .8rem 2rem;
  position: relative;
  width: 20%;
  color: #fff;
  background: #1cc0d8;
  padding: 35px 10px 15px 10px;
  margin: 0 13px 10px 0px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  align-items: baseline;
}

.cta-list li::before {
    background: #1cc0d8;
    border: 3px solid #ffffff;
    border-radius: 31px;
    content: "✓";
    font-size: 1.1rem;
    font-weight: 700;
    height: 30px;
    left: 98px;
    line-height: 26px;
    outline: 2px solid #ffffff;
    padding: 2px;
    position: absolute;
    top: -14px;
    width: 30px;
}

.final-cta-button {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 1.3rem 3.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  opacity: 0.7;
}

.why-footer a.btn {
  border-radius: 33px;
  display: inline-block;
  font-family: 'Poppins';
  font-size: 17px !important;
  font-weight: 500;
  height: 50px;
  line-height: 21px;
  margin: 0 !important;
  padding: 15px 30px !important;
  position: relative;
  text-decoration: none !important;
  transform: perspective(1px) translateZ(0);
  transition-duration: .3s;
  transition-property: color;
  vertical-align: middle;
}
.why-footer a.btn:active,.why-footer a.btn:focus,.why-footer a.btn:hover {
  border-radius: 26px;
  color: #fff;
  border: 0 !important;
}

.why-footer a.btn:active:before,.why-footer a.btn:focus:before,.why-footer a.btn:hover:before {
  border-radius: 26px;
  -webkit-transform: scaleX(1);
  transform: scaleX(1)
}

.why-footer a.btn:before {
  background: #85b711;
  border-radius: 5px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: -1
}
.quiz-modal {
    align-items: center;
      background: transparent !important;
    height: 100vh !important;
}
.quiz-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 1440px) {
.meta-item:nth-child(2) span.number {
    font-size: 60px !important;
  }
  .meta-item:nth-child(3) .meta-value span.courseitm span.number {
    font-size: 60px !important;;
}
  .meta-item:first-child span.number {
    font-size: 80px !important;;
  }
  .meta-item:nth-child(3) .meta-value, .meta-item:nth-child(4) .meta-value, .meta-item:nth-child(5) .meta-value {
    font-size: 16px;
}
  span.tier2 {
    display: block;
    font-size: 40px;
}
  .course-title {
    color: #f9faff;
    font-size: 19px;
}
/* =====================================================
   ✅ TABLET (≤ 1024px)
===================================================== */
@media (max-width: 1024px) {

  /* HERO */
  .hero-inner {
    flex-direction: column !important;
    gap: 32px !important;
    text-align: center !important;
  }

  .text-content,
  .visual {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .text-content h1 {
    font-size: 38px !important;
  }

  .text-content p {
    font-size: 18px !important;
  }

  /* HERO META */
  .hero-meta {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .meta-value {
    height: auto !important;
    padding: 20px !important;
  }

  /* FORCE 1 COLUMN */
  .why-content,
  .impl-grid,
  .assessment-grid,
  .outcomes-grid {
    grid-template-columns: 1fr !important;
  }

  /* 2 COLUMN GRIDS */
  .funding-grid,
  .why-grid,
  .standards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* CTA LIST */
  .cta-list {
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }

  .cta-list li {
    width: 48% !important;
  }
}


/* =====================================================
   ✅ MOBILE (≤ 768px)
===================================================== */
@media (max-width: 768px) {

  /* GLOBAL TEXT */
  h2 {
    font-size: 26px !important;
  }

  p {
    font-size: 16px !important;
  }

  section {
    padding: 3rem 0 !important;
  }

  /* HERO */
  .hero-section {
    padding: 40px 16px !important;
  }

  .text-content h1 {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }

  .hero-badge {
    font-size: 14px !important;
  }

  /* HIDE IMAGE */
  .visual {
    display: none !important;
  }

  /* HERO META */
  .hero-meta {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .meta-item span.number {
    font-size: 64px !important;
  }

  /* ALL GRIDS → 1 COLUMN */
  .courses-grid,
  .learn-grid,
  .impact-grid,
  .standards-grid,
  .funding-grid,
  .why-grid {
    grid-template-columns: 1fr !important;
  }

  /* CTA LIST FIX (THIS FIXES YOUR VERTICAL TEXT ISSUE) */
  .cta-list {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .cta-list li {
    width: 100% !important;
    margin: 0 0 12px 0 !important;
    writing-mode: horizontal-tb !important;
  }

  .cta-list li::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* BUTTONS */
  .btn,
  .btn-filled {
    width: 100% !important;
    text-align: center !important;
  }

  .why-footer {
    margin-top: 20px !important;
  }
  .hero-section {
    padding: 40px 0px 40px;
}
  .container {
    padding: 0 1rem !important;
    width: 100% !important;
}
.text-content {
    max-width: 100% !important;
    text-align: left;
    width: 100% !important;
}
.text-content h1 {
    font-size: 46px !important;
  }
  .visual {
    width: 100% !important;
}
  .hero-inner {
    gap: 15px;
    flex-direction: column-reverse;
}
      section {
        padding: 3rem 0 !important;
    }
      .dnd-section section h2, .dnd-section h2 span, .dnd_area-row-3-padding span#hs_cos_wrapper_module_17377084489684_ h2, div#module_1746441912813 h2 span {
        font-size: 32px !important;
        line-height: 40px !important;
        font-family: 'Poppins' !important;
    }
  .section-subtitle {
    font-size: 1.1rem !important;
  }
  .leftcontent {
    padding: 1rem 1rem 0 !important;
  }
  .research-box {
    padding: 2rem 1rem 0 !important;
  }
  .research-box h3 svg {
    left: 10px !important;
    top: 7px !important;
}
  .core-question h3 {
    font-size: 1.6rem !important;
  }
  .develops-grid {
    grid-template-columns: 1fr !important;
}
  .course-header {
    padding: 0rem 13px;
}
  .course-body {
    padding: 1.5rem 1rem 2rem !important;
}
  .impact-title {
    font-size: 1.4rem !important;
  }
  .research-standards h3 {
    font-size: 1.3rem !important;
    text-align: center !important;
}
  .impl-box h3 {
    font-size: 1.5rem !important;
  }
  .impl-box,.assessment-left,.assessment-right,.outcome-box,.why-card {
    padding: 1rem !important;
 }
      .assessment-grid{
        grid-template-columns: 1fr;
        gap: 0 !important;
    }
  .outcome-box h3 {
    font-size: 1.5rem !important;
  }
  .outcome-box{
      margin-bottom: 10px;
  }
  .funding-grid ,.why-grid{
    gap: 1rem !important;
    grid-template-columns: 1fr !important;
  }
.cta-list {
    flex-wrap: wrap;
  }
  .cta-list li {
    margin: 0 0px 32px 0;
    padding: 35px 10px 15px;
 }
      .hero-badge {
        font-size: 14px !important;
        text-align: left;
        width: 100%;
    }
  .research-box h3 {
    color: #4269e2;
    font-size: 1.3rem !important;
    margin-bottom: 1rem;
    padding-left: 0 !important;
}
  .why-card h3 {
    font-size: 22px !important;
  }
  .cta-content p {
    font-size: 1.2rem !important;
}
      .hero-meta {
        margin-top: 25px;
    }
.hs-form-frame iframe {
                overflow: auto !important;
            height: 800px !important;
}
.hs-form-frame {
            max-height: 80vh;
            overflow: auto;
            height: 100% !important;
}
  .quiz-content{
      width: 100% !important;
  }
}


/* =====================================================
   ✅ SMALL MOBILE (≤ 480px)
===================================================== */
@media (max-width: 480px) {

  .text-content h1 {
    font-size: 24px !important;
  }

  .section-title {
    font-size: 22px !important;
  }

  .course-title {
    font-size: 1.1rem !important;
  }

  .impact-title {
    font-size: 1.05rem !important;
  }

  .quote-box,
  .highlight-text,
  .course-note,
  .assessment-note,
  .funding-note,
  .summary-quote {
    font-size: 1rem !important;
    padding: 16px !important;
  }
}