:root {
  --red: #e74c3c;
  --red-dk: #c0392b;
  --red-lt: #fdecea;
  --red-md: #fca5a5;
  --grad-red: linear-gradient(44.44deg, #ed2775 7.79%, #ff7448 94.18%);
  --blue: #2563eb;
  --ocean: #1e40af;
  --deep: #0f2057;
  --navy: #1e3a8a;
  --sky: #0ea5e9;
  --mist: #dbeafe;
  --amber: #d97706;
  --gold: #f59e0b;
  --terra: #ea580c;
  --white: #ffffff;
  --bg: #f8faff;
  --bg2: #f0f6ff;
  --ink: #0f172a;
  --ink2: #374151;
  --ink3: #6b7280;
  --line: #e2e8f0;
  --grad-blue: linear-gradient(135deg, #0ea5e9 0%, #2563eb 60%, #1e40af 100%);
  --grad-warm: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  --cj-red: #e74c3c;
  --cj-red-dark: #b01720;
  --cj-red-light: #f15b6c;
  --cj-off-white: #ffffff;
  --cj-charcoal: #181818;
  --cj-mid: #444;
  --green: #1a7a4a;
  --green-light: #e8f5ee;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar-cj {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 70px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(231, 76, 60, 0.08);
  box-shadow: 0 2px 20px rgba(15, 32, 87, 0.07);
  transition:
    height 0.3s,
    box-shadow 0.3s;
}
.navbar-cj.scrolled {
  height: 62px;
  box-shadow: 0 4px 28px rgba(15, 32, 87, 0.11);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--red);
}
.nav-cta {
  background: var(--grad-red);
  color: #fff !important;
  padding: 0.58rem 1.6rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.18);
  transition: all 0.25s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(231, 76, 60, 0.2);
}

/* ── HERO ── */
.hero {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f3f3f3 0%, #f8faff 40%, #eef5ff 100%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatB var(--d, 8s) ease-in-out infinite alternate;
}
.blob-1 {
  width: 520px;
  height: 520px;
  top: -90px;
  right: -90px;
  --d: 9s;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.1) 0%,
    rgba(14, 165, 233, 0.08) 55%,
    transparent 80%
  );
}
.blob-2 {
  width: 360px;
  height: 360px;
  bottom: -60px;
  left: 12%;
  --d: 11s;
  /* background: radial-gradient(
    circle,
    rgba(234, 88, 12, 0.09) 0%,
    rgba(217, 119, 6, 0.05) 60%,
    transparent 80%
  ); */
}
.blob-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 36%;
  --d: 7s;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.07) 0%,
    transparent 70%
  );
}
@keyframes floatB {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(22px, 32px) scale(1.07);
  }
}

.ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1.5px dashed rgba(231, 76, 60, 0.13);
  animation: spinR var(--sp, 35s) linear infinite;
}
@keyframes spinR {
  from {
    transform: translateY(-50%) rotate(0);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.ring-1 {
  width: 430px;
  height: 430px;
  right: 7%;
  top: 50%;
  --sp: 42s;
}
.ring-2 {
  width: 295px;
  height: 295px;
  right: 14%;
  top: 50%;
  --sp: 26s;
  animation-direction: reverse;
}

.dot-dec {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.dot-1 {
  width: 12px;
  height: 12px;
  top: 32%;
  left: 5%;
  background: var(--red);
  opacity: 0.22;
  animation: floatB 6s ease-in-out infinite alternate;
}
.dot-2 {
  width: 12px;
  height: 12px;
  top: 63%;
  left: 9%;
  background: #52c41a;
  opacity: 0.28;
  animation: floatB 9s ease-in-out infinite alternate;
}
.dot-3 {
  width: 14px;
  height: 14px;
  top: 36%;
  right: 61%;
  background: var(--gold);
  opacity: 0.18;
  animation: floatB 7s 2s ease-in-out infinite alternate;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--red-lt);
  border: 1.5px solid rgba(231, 76, 60, 0.28);
  color: var(--red);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 1rem;
  animation: riseUp 0.5s ease both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52c41a;
  animation: blink 1.7s infinite;
  display: inline-block;
  margin-bottom: 3px;
}
@keyframes blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.45);
    opacity: 0.25;
  }
}
@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5.5vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--deep);
  margin-bottom: 1.5rem;
  animation: riseUp 0.5s 0.1s ease both;
}
.hero-title i {
  font-style: italic;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.82;
  margin-bottom: 2.5rem;
  animation: riseUp 0.5s 0.18s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: riseUp 0.5s 0.26s ease both;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--grad-red);
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(231, 76, 60, 0.56);
  color: #fff;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: var(--ink);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--line);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.15);
  transform: translateY(-1px);
}
.img-showcase-wrapper {
  position: relative;
}

.img-card-inner img {
  height: 480px;
  width: auto;
  /* filter: drop-shadow(0 0 18px rgba(231, 76, 60, 0.3)); */
  filter: drop-shadow(0 0 14px rgba(70, 130, 255, 0.4));
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 1.5rem;
  animation: riseUp 0.5s 0.34s ease both;
}
.hs {
  text-align: left;
}
.hs-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-align: center;
}
.hs-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink2);
  margin-top: 0.8rem;
  text-align: center;
}
.hs-div {
  width: 1px;
  height: 38px;
  background: #d6d2d2;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: riseUp 0.6s 0.22s ease both;
}
.fcard {
  background: #fff;
  border-radius: 28px;
  width: 100%;
  max-width: 395px;
  box-shadow:
    0 32px 80px rgba(15, 32, 87, 0.14),
    0 4px 14px rgba(15, 32, 87, 0.05);
  overflow: hidden;
}
.fcard-head {
  background: #387de3;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.fcard-head::before {
  content: '"';
  position: absolute;
  top: -14px;
  right: 10px;
  font-family: "Playfair Display", serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.fcard-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.fcard-name {
  font-size: 1rem;
  font-weight: 800;
  color: #ffd65b;
}
.fcard-role {
  font-size: 0.84rem;
  color: #fff;
  margin-top: 0.2rem;
}
.fcard-body {
  padding: 1.75rem 2rem;
}
.tl {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.tl-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.tl-yr {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--red-lt);
  color: var(--red);
  border: 1px solid rgba(231, 76, 60, 0.25);
  padding: 0.22rem 0.5rem;
  border-radius: 7px;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}
.tl-txt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.45;
}
.fcard-bar {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--terra),
    var(--amber),
    var(--gold),
    var(--sky)
  );
}

/* ── HOOK BAND ── */
.hook-band {
  position: relative;
  overflow: hidden;
  background: #1d4ed8;
  padding: 1.5rem 0;
}
.hook-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
  pointer-events: none;
}
.hook-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: scrollleft 25s linear infinite;
  width: max-content;
  position: relative;
  z-index: 2;
}
@keyframes scrollleft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.hook-item {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.hook-sep {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── STATS BAND ── */
.stats-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #304e9e 0%, #1d4ed8 55%, #0369a1 100%);
  padding: 5rem 0;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
  pointer-events: none;
}
.sbp {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sbp-1 {
  width: 420px;
  height: 420px;
  top: -110px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 70%
  );
}
.sbp-2 {
  width: 320px;
  height: 320px;
  bottom: -90px;
  right: 8%;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.18) 0%,
    transparent 70%
  );
}
.snum {
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}
.ssuf {
  color: var(--gold);
}
.slbl {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.6rem;
}
.sbar {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-red);
  margin: 0.75rem auto 0;
}

/* ── SECTION COMMON ── */
section {
  padding: 5rem 0;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.stag::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--grad-red);
  border-radius: 2px;
}
.stitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.16;
  color: var(--deep);
  margin-bottom: 1.25rem;
}
.stitle span {
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sbody {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.82;
}

/* ── PROBLEM CARDS ── */
.ecard {
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid;
  border-left: 4px solid;
  transition: all 0.25s;
  height: 100%;
}
.ecard:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(231, 76, 60, 0.12);
}
.ec-red {
  background: #fef7f7;
  border-color: rgba(231, 76, 60, 0.15);
  border-left-color: var(--red);
}
.ec-terra {
  background: #fff6f2;
  border-color: rgba(234, 88, 12, 0.15);
  border-left-color: var(--terra);
}
.ec-gold {
  background: #fffbeb;
  border-color: rgba(217, 119, 6, 0.18);
  border-left-color: var(--amber);
}
.ec-blue {
  background: #f0f7ff;
  border-color: rgba(37, 99, 235, 0.15);
  border-left-color: var(--blue);
}
.ec-icon {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}
.ec-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.ec-body {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.65;
}

/* ── AGITATE / QUOTE BAND ── */
.quote-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4rem 0;
  background-color: #fcf6e7;
}
.qb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle 420px at 8% 50%,
      rgba(231, 76, 60, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle 420px at 92% 50%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 70%
    );
}
.qb-dec {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.qb-dec-1 {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.08) 0%,
    transparent 70%
  );
}
.qb-dec-2 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: -40px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.09) 0%,
    transparent 70%
  );
}
.qb-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.qb-mark {
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  line-height: 0.6;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.qb-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--deep);
  line-height: 1.48;
  margin-bottom: 1.5rem;
}
.qb-author {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red);
}
.qb-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink3);
  margin-top: 0.22rem;
}

/* ── COMPARE ── */
.compare-sec {
  background: #f9f9f9;
}
.ccard {
  border-radius: 22px;
  padding: 2.5rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.ccard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
}
.ccard:hover {
  transform: translateY(-4px);
}
.cc-old {
  background: #fff;
  border: 1px solid rgba(234, 88, 12, 0.16);
}
.cc-old::before {
  background: var(--grad-warm);
}
.cc-new {
  background: #fff;
  border: 1px solid rgba(231, 76, 60, 0.18);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.08);
}
.cc-new::before {
  background: var(--grad-red);
}
.clabel {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cc-old .clabel {
  color: var(--terra);
}
.cc-new .clabel {
  color: var(--red);
}
.citem {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink2);
}

/* ── IMPACT CARDS ── */
.impact-sec {
  background: linear-gradient(145deg, #f0f7ff 0%, #e8f2ff 60%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}
.impact-sec::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.07) 0%,
    transparent 65%
  );
}
.icard {
  background: #fff;
  border-radius: 22px;
  padding: 2.25rem;
  border: 1px solid rgba(231, 76, 60, 0.09);
  box-shadow: 0 4px 22px rgba(231, 76, 60, 0.05);
  transition: all 0.27s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.icard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.icard:hover::after {
  transform: scaleX(1);
}
.icard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(231, 76, 60, 0.13);
  border-color: rgba(231, 76, 60, 0.22);
}
.ic-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.ic-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.625rem;
}
.ic-body {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.72;
}

/* ── METRICS ── */
.metrics-sec {
  background: #fff;
}
.mcard {
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: all 0.27s;
  position: relative;
  overflow: hidden;
}
.mcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #fef2f2 0%, #fff 100%);
  opacity: 0;
  transition: opacity 0.27s;
}
.mcard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.mcard:hover::before {
  opacity: 1;
}
.mcard:hover::after {
  transform: scaleX(1);
}
.mcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(231, 76, 60, 0.12);
  border-color: rgba(231, 76, 60, 0.24);
}
.mcard-in {
  position: relative;
  z-index: 1;
}
.mc-ico {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.mc-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.mc-lbl {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink3);
  margin-top: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CURRICULUM ── */
.curriculum-sec {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.curriculum-sec::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.05) 0%,
    transparent 70%
  );
}
.crcard {
  background: #fff;
  border-radius: 22px;
  padding: 2.25rem;
  border: 1px solid var(--line);
  transition: all 0.27s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.crcard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  transform: translate(45px, -45px);
  transition: all 0.35s;
}
.cr-red::before {
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.09) 0%,
    transparent 70%
  );
}
.cr-warm::before {
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 70%
  );
}
.crcard:hover::before {
  transform: translate(20px, -20px) scale(1.45);
}
.crcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.2);
}
.cr-ico {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.ico-red {
  background: linear-gradient(135deg, #fdecea, #fca5a5);
}
.ico-warm {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.cr-title {
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.cr-body {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

/* ── TIMELINE ── */
.timeline-cj {
  position: relative;
  padding-left: 2.5rem;
}
.timeline-cj::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--amber), transparent);
}
.tl-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 3px;
  width: 24px;
  height: 24px;
  background: #000;
  border-radius: 50%;
  z-index: 1;
}
.tl-item::after {
  content: "";
  position: absolute;
  left: calc(-2.5rem + 8px);
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 2;
}
.tl-time {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.tl-title {
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 5px;
}
.tl-desc {
  font-size: 0.88rem;
  color: var(--ink2);
  line-height: 1.65;
  font-weight: 500;
}
.tag {
  background: #000;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  display: inline-block;
}

/* ── FOUNDER ── */
.founder-avatar {
  width: 110px;
  /* height: 110px; */
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;

  border: 3px solid #fff;
  box-shadow:
    0 0 0 2px #ffbc9a,
    0 6px 18px rgba(0, 0, 0, 0.12),
    0 0 0 rgba(231, 76, 60, 0.18);
}

.founder-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-name {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--deep);
}
.founder-title {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cred-badge {
  background: var(--deep);
  color: #fff;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-block;
}

/* ── TESTIMONIALS ── */
.testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(231, 76, 60, 0.1);
  transition: all 0.25s;
  height: 500px;
}
.testi-carousel-python-ht .testi-card {
  height: 350px;
}
.testi-carousel-java-ht .testi-card {
  height: 500px;
}

.testi-card:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 16px 48px rgba(231, 76, 60, 0.1); */
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ── COLLEGE ── */
.college-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid var(--line);
  transition: all 0.27s;
  height: 100%;
}
.college-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.2);
}
.college-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.college-num span {
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCARCITY ── */
.scarcity-band {
  background: var(--grad-red);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scarcity-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1.5px,
    transparent 1.5px
  );
  background-size: 25px 25px;
  pointer-events: none;
}
.scarcity-band h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  position: relative;
  z-index: 2;
}
.scarcity-band p {
  position: relative;
  z-index: 2;
}

/* ── CTA / FORM ── */
.cta-sec {
  position: relative;
  overflow: hidden;
  background-color: #262525;
  padding: 5rem 0;
}
.cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
  pointer-events: none;
}
.ctab {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ctab-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 65%
  );
}
.ctab-2 {
  width: 310px;
  height: 310px;
  bottom: -100px;
  left: 4%;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.2) 0%,
    transparent 70%
  );
}

.form-box {
  background: #fff;
  border-radius: 28px;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}
.form-box h3 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--deep);
}
.form-box .form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
}
.form-box .form-control {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  font-family: "Nunito", sans-serif;
  font-size: 0.93rem;
}
.form-box .form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.88rem;
  font-weight: 600;
}
.radio-option:has(input:checked) {
  border-color: var(--red);
  background: var(--red-lt);
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--grad-red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 22px rgba(231, 76, 60, 0.3);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(231, 76, 60, 0.45);
}
.form-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
#success-msg {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.65;
}

/* DOT CONTAINER */
.testi-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}
.testi-carousel .owl-nav {
  display: none;
}
/* DOT */
.testi-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  transition: 0.3s;
}

/* ACTIVE DOT */
.testi-carousel .owl-dot.active span {
  background: var(--red);
  width: 22px;
  border-radius: 10px;
}

/* ───────── FOOTER BASE ───────── */

footer {
  background: #0f0f0f;
  padding: 2rem 0 2rem;
  border-top: 1px solid #757474;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.footer-brand span {
  color: var(--cj-red-light);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--line);
  margin-top: 0.5rem;
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--line);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-info {
  font-size: 0.85rem;
  color: var(--line);
  line-height: 1.6;
}

.footer-info strong {
  color: #fff;
  font-weight: 600;
}

/* ───────── SOCIAL ICONS ───────── */

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* Platform hover colors */
.social-icon.linkedin:hover {
  background: #0a66c2;
}

.social-icon.youtube:hover {
  background: #ff0000;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.whatsapp:hover {
  background: #25d366;
}

.social-icon.instagram:hover {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

/* Divider */
.footer-divider {
  margin: 2.5rem 0 1.2rem;
  border-color: #fff;
}

/* Copyright */
.copyright {
  font-size: 0.8rem;
  color: var(--line);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.mytext {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mytext-title {
  color: #fff;
  text-align: center;
}
.agitate-quote {
  /* font-family: var(--font-display); */
  font-size: clamp(1.3rem, 3vw, 1.3rem);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.form-box .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.my-agitate .snum {
  font-size: 2.5rem !important;
  margin-bottom: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .testi-carousel-python-ht .testi-card {
    height: 100%;
  }
  .testi-carousel-java-ht .testi-card {
    height: 100%;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .ring {
    display: none;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .hs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 160px;
  }
  .hs-div {
    display: none;
  }
  .nav-logo {
    font-size: 1.4rem;
  }
  .nav-cta {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }
  .hero-title {
    font-size: clamp(2rem, 5.5vw, 2rem);
  }
  section {
    padding: 2rem 0;
  }
  .stats-band {
    padding: 2rem 0;
  }
  .agitate-quote {
    font-size: 1rem;
  }
  .college-card {
    padding: 2rem 0.5rem;
  }
  .slbl {
    font-size: 0.5rem;
  }
  .hero-badge {
    font-size: 0.52rem;
  }
  .hero-left {
    margin-top: 1rem;
  }

  .founder-name,
  .founder-title {
    text-align: center;
  }
}

@media (max-width: 400px) {
  .hero {
    padding-top: 5rem;
  }

  .dot-1 {
    width: 14px;
    height: 14px;
    top: 16%;
    left: 0%;
  }
  .dot-2 {
    width: 14px;
    height: 14px;
    top: 4%;
    left: 43%;
  }
  .dot-3 {
    width: 16px;
    height: 16px;
    top: 30%;
    right: 6%;
  }
}
@media (max-width: 350px) {
  .nav-logo {
    font-size: 1.2rem;
  }
}
