/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS
   Centralised variables — every visual decision references these.
───────────────────────────────────────────────────────────── */



/* ─────────────────────────────────────────────────────────────
   RESET & GLOBAL BASE
───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font-family: var(--f);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Prevent long strings from blowing layout on small screens */
p, li, div, h1, h2, h3, h4 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* iOS: Prevent auto-zoom on focus */
input, select, textarea {
  font-size: 16px !important;
  font-family: var(--f);
}


/* ─────────────────────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.sec {
  padding: clamp(44px, 5.5vw, 76px) 0;
}

.sec-alt {
  background: var(--bg-2);
}


/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL
   Elements start invisible and slide up into view.
   JavaScript adds .on class when element enters viewport.
───────────────────────────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  .65s cubic-bezier(.16, 1, .3, 1),
    transform .65s cubic-bezier(.16, 1, .3, 1);
}

.r.on { opacity: 1; transform: none; }

/* Staggered delay utilities */
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }


/* ─────────────────────────────────────────────────────────────
   TYPE HELPERS
───────────────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 11px;
}

.h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
}

.h2 .o { color: var(--orange); }

.body-t {
  font-size: .92rem;
  line-height: 1.85;
  color: var(--ink-2);
}


/* ─────────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 600;
  height: 64px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .3s;
}

.nav.scrolled { box-shadow: 0 2px 24px rgba(0, 0, 0, .08); }

.ni {
  height: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .18s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: var(--bg-orange);
}

.nav-r {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-signin {
  font-size: .76rem;
  font-weight: 600;
  padding: 7px 16px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: var(--ink-2);
  transition: all .18s;
  min-height: 36px;
}

.btn-signin:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-enrol-nav {
  font-size: .76rem;
  font-weight: 700;
  padding: 8px 18px;
  border: none;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  transition: all .18s;
  min-height: 36px;
}

.btn-enrol-nav:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
}

/* Hamburger button */
.hbg {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.hbg span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .28s;
}

.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile navigation drawer */
.mob-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: #fff;
  z-index: 599;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mob-nav.open { display: flex; }

.mob-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 16px var(--gut);
  border-bottom: 1px solid var(--line);
  transition: color .18s;
  min-height: 56px;
}

.mob-nav a:hover,
.mob-nav a.active { color: var(--orange); }

.mob-nav .sch-link { color: var(--orange); }

.mob-actions {
  padding: 20px var(--gut) 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mob-actions .btn-mob-o,
.mob-actions .btn-mob-g {
  width: 100%;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--f);
  border: none;
  cursor: pointer;
}

.btn-mob-o { background: var(--orange); color: #fff; }
.btn-mob-g { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }


/* ─────────────────────────────────────────────────────────────
   BATCH ANNOUNCEMENT BANNER
   Fixed-position banner immediately below the nav.
───────────────────────────────────────────────────────────── */
.batch-banner {
  background: var(--navy);
  padding: 12px 0;
  position: relative;
  z-index: 500;
}

.batch-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.batch-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Pulsing live dot */
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

.batch-msg {
  font-size: .84rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
}

.batch-msg strong { color: #fff; }

.batch-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  transition: background .2s;
  white-space: nowrap;
  min-height: 36px;
}

.batch-cta:hover { background: var(--orange-d); }


/* ─────────────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, #0d3060 100%);
  padding: clamp(44px, 6vw, 76px) 0 clamp(36px, 4.5vw, 60px);
  position: relative;
  overflow: hidden;
}

/* Subtle radial light sources */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 175, 239, .15) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(249, 115, 22, .10) 0%, transparent 45%);
}

/* Bottom accent line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 40%, var(--blue) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(249, 115, 22, .85);
  display: block;
  margin-bottom: 14px;
}

.hero-h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.hero-h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(.88rem, 1.4vw, .96rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, .58);
  max-width: 480px;
  margin-bottom: 30px;
}

/* Hero CTA group */
.hero-btns {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  font-family: var(--f);
  border: none;
  transition: all .2s;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, .3);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 27px;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--f);
  transition: all .2s;
  text-decoration: none;
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
}

/* Trust strip below CTAs */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
}

.trust-item i { color: var(--orange); font-size: .68rem; }

/* Separator dot used in course exam meta row */
.sep { color: var(--line); }

/* Hero right — stat cards */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hstat {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s, background .2s;
}

.hstat:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(249, 115, 22, .35);
}

.hstat-n {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.hstat-n em {
  font-style: normal;
  color: var(--orange);
}

.hstat-l {
  font-size: .66rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .42);
  text-transform: uppercase;
  letter-spacing: .6px;
}


/* ─────────────────────────────────────────────────────────────
   THE S.MONK DIFFERENCE
   Four guarantee cards — the core value propositions.
───────────────────────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.diff-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}

/* Accent top bar — grows in on hover */
.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.diff-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, .1);
}

.diff-card:hover::before {
  transform: scaleX(1);
}

.diff-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(249, 115, 22, .15);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.diff-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.diff-body {
  font-size: .82rem;
  color: var(--ink-2);
  line-height: 1.75;
}

.diff-note {
  margin-top: 10px;
  font-size: .72rem;
  color: var(--ink-3);
  font-style: italic;
}


/* ─────────────────────────────────────────────────────────────
   COURSE CARDS
   Two-column grid. Each card has a coloured left-border accent
   that signals which exam series it belongs to.
───────────────────────────────────────────────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ccard {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
}

/* Coloured left-edge accent by series */
.ccard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  border-radius: 0;
}

.ccard-cm::before { background: var(--cm-accent); }
.ccard-cs::before { background: var(--cs-accent); }
.ccard-cb::before { background: var(--cb-accent); }

.ccard:hover {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(11, 29, 63, .1);
  transform: translateY(-4px);
}

/* Card head: code + name + price + formats */
.ccard-head {
  padding: 22px 24px 18px 28px; /* extra left for the 4px border */
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.ccard-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ccard-identity { flex: 1; }

/* Large course code */
.ccard-code {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.ccard-cm .ccard-code { color: var(--cm-accent); }
.ccard-cs .ccard-code { color: var(--cs-accent); }
.ccard-cb .ccard-code { color: var(--cb-accent); }

.ccard-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 5px;
}

.ccard-exam {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Price block */
.ccard-price-block { text-align: right; flex-shrink: 0; }

.ccard-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.5px;
}

.ccard-price-note {
  font-size: .66rem;
  color: var(--orange);
  font-weight: 700;
  margin-top: 3px;
  white-space: nowrap;
}

/* Popular badge */
.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 4px;
}

/* Format pills */
.format-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.fmt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .64rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
}

.fmt-offline  { background: #EFF9FF; color: var(--blue-d); }
.fmt-online   { background: var(--bg-orange); color: var(--orange); }
.fmt-recorded { background: var(--green-bg); color: #166534; }

/* Card body */
.ccard-body {
  padding: 20px 24px 18px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ccard-desc {
  font-size: .86rem;
  color: var(--ink-2);
  line-height: 1.8;
}

/* Syllabus section */
.ccard-section-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
}

.topic {
  font-size: .78rem;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.topic::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
  margin-top: 6px;
}

.ccard-cm .topic::before { background: var(--cm-accent); }
.ccard-cs .topic::before { background: var(--cs-accent); }
.ccard-cb .topic::before { background: var(--cb-accent); }

/* Includes row */
.includes-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .79rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.inc-item i {
  color: var(--green);
  flex-shrink: 0;
  font-size: .7rem;
  margin-top: 2px;
}

/* Card footer */
.ccard-foot {
  padding: 20px 24px 20px 28px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-enrol {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: .84rem;
  font-weight: 700;
  border: none;
  font-family: var(--f);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  min-height: 44px;
}

.btn-enrol:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, .3);
}

.btn-trial {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--f);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn-trial:hover {
  border-color: var(--orange);
  color: var(--orange);
}


/* ─────────────────────────────────────────────────────────────
   ENTRY-LEVEL SECTION (ACET + FOUNDATION)
───────────────────────────────────────────────────────────── */
.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.entry-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .25s;
}

.entry-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(0, 175, 239, .1);
  transform: translateY(-3px);
}

.entry-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-d);
}

.entry-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.entry-desc {
  font-size: .86rem;
  color: var(--ink-2);
  line-height: 1.8;
  flex: 1;
}

.entry-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.entry-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.entry-price small {
  display: block;
  font-size: .64rem;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 2px;
}

.entry-enrol {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  min-height: 40px;
}

.entry-enrol:hover { background: var(--blue); }


/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────────────────────── */
.faq-wrap {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open { border-color: var(--orange); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  background: transparent;
  border: none;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  font-family: var(--f);
  min-height: 56px;
  transition: color .18s;
}

.faq-q:hover { color: var(--orange); }

.faq-chevron {
  font-size: .75rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: .86rem;
  color: var(--ink-2);
  line-height: 1.85;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.faq-item.open .faq-a { display: block; }


/* ─────────────────────────────────────────────────────────────
   CLOSING CTA BAND
───────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0E2550 55%, #0B3060 100%);
  padding: clamp(52px, 6vw, 80px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(249, 115, 22, .15) 0%, transparent 60%);
}

.cta-inner { position: relative; z-index: 1; }

.cta-h {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-h .acc { color: var(--orange); }

.cta-sub {
  font-size: .92rem;
  color: rgba(255, 255, 255, .5);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
}

.btn-cta-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  font-family: var(--f);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  min-height: 48px;
}

.btn-cta-o:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, .35);
}

.btn-cta-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  border: 1.5px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--f);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  min-height: 48px;
}

.btn-cta-g:hover {
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
}


/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
footer { background: #07101F; }

.foot-top {
  padding: clamp(40px, 5vw, 60px) 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px;
}

.fw-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1;
  margin-bottom: 3px;
}

.fw-name span { color: var(--blue); }

.fw-sub {
  font-size: .44rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 14px;
}

.foot-tagline {
  font-size: .76rem;
  color: rgba(255, 255, 255, .3);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 300px;
}

.foot-tagline strong { color: rgba(255, 255, 255, .55); }

.foot-nl-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 9px;
}

.foot-nl { display: flex; gap: 7px; }

.foot-nl input {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  color: #fff;
  outline: none;
  transition: border-color .18s;
  font-size: .76rem !important;
}

.foot-nl input:focus { border-color: rgba(249, 115, 22, .5); }
.foot-nl input::placeholder { color: rgba(255, 255, 255, .2); }

.foot-nl button {
  padding: 9px 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--f);
  cursor: pointer;
  transition: background .18s;
  white-space: nowrap;
}

.foot-nl button:hover { background: var(--orange-d); }

.foot-social { display: flex; gap: 7px; margin-top: 18px; }

.fsoc {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  transition: all .18s;
  text-decoration: none;
}

.fsoc:hover { border-color: var(--orange); color: var(--orange); }

.foot-founded {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .68rem;
  color: rgba(255, 255, 255, .2);
  line-height: 1.9;
}

.foot-col h5 {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  margin-bottom: 13px;
}

.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.foot-col a {
  font-size: .74rem;
  color: rgba(255, 255, 255, .4);
  transition: color .18s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.foot-col a:hover { color: var(--orange); }
.foot-col a i { font-size: .6rem; color: rgba(255, 255, 255, .2); width: 10px; }

.fci {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .72rem;
  color: rgba(255, 255, 255, .37);
  margin-bottom: 9px;
  line-height: 1.6;
}

.fci i { color: var(--orange); flex-shrink: 0; font-size: .68rem; margin-top: 3px; width: 12px; }
.fci a { color: rgba(255, 255, 255, .37); transition: color .18s; }
.fci a:hover { color: var(--orange); }

.foot-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy { font-size: .66rem; color: rgba(255, 255, 255, .2); line-height: 1.6; }
.foot-copy a { color: rgba(255, 255, 255, .3); transition: color .18s; }
.foot-copy a:hover { color: var(--orange); }

.foot-badges { display: flex; gap: 7px; flex-wrap: wrap; }

.foot-badge {
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .28);
}


/* ─────────────────────────────────────────────────────────────
   FLOATING UTILITY BUTTONS
───────────────────────────────────────────────────────────── */
.wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .2s;
  text-decoration: none;
}

.wa:hover { transform: scale(1.1); }

.btt {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 998;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: none;
  place-items: center;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .25);
  transition: all .2s;
  -webkit-tap-highlight-color: transparent;
}

.btt.show { display: grid; }
.btt:hover { background: var(--orange); transform: translateY(-2px); }


/* ─────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS

   Breakpoints:
     <= 1040px  — tablet
     <= 700px   — mobile
     <= 420px   — small phone (iPhone SE etc.)
     + hover:none — touch device overrides
───────────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1040px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-stats      { display: none; }
  .diff-grid       { grid-template-columns: 1fr 1fr; }
  .courses-grid    { grid-template-columns: 1fr; }
  .entry-grid      { grid-template-columns: 1fr 1fr; }
  .foot-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 700px) {
  /* Nav */
  .nav-links,
  .btn-signin { display: none; }
  .hbg        { display: flex; }

  /* Hero */
  .hero-h1    { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-btns  { flex-direction: column; gap: 11px; }
  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    padding: 13px;
  }
  .hero-trust { gap: 12px; }
  .trust-item { font-size: .7rem; }

  /* Batch banner */
  .batch-inner  { flex-direction: column; align-items: flex-start; gap: 10px; }
  .batch-cta    { width: 100%; justify-content: center; }

  /* Guarantees */
  .diff-grid { grid-template-columns: 1fr; }

  /* Course cards */
  .ccard-head  { padding: 18px 18px 14px 22px; }
  .ccard-body  { padding: 16px 18px 0 22px; }
  .ccard-foot  { padding: 16px 18px 16px 22px; flex-direction: column; }
  .btn-enrol,
  .btn-trial   { width: 100%; }
  .ccard-code  { font-size: 1.6rem; }
  .topics-grid { grid-template-columns: 1fr; }

  /* Entry */
  .entry-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-btns      { flex-direction: column; align-items: stretch; gap: 9px; }
  .btn-cta-o,
  .btn-cta-g     { width: 100%; justify-content: center; }

  /* Footer */
  .foot-grid   { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .foot-badges { justify-content: center; }
  .foot-tagline { max-width: 100%; }
}

/* Small phones */
@media (max-width: 420px) {


  .hero-h1     { font-size: 1.75rem; }
  .h2          { font-size: 1.45rem; }
  .ccard-foot  { gap: 8px; }
  .sec         { padding: clamp(36px, 5vw, 56px) 0; }
}

/* Touch devices — remove hover transforms */
@media (hover: none) {
  .btn-hero-primary:hover,
  .btn-enrol:hover,
  .btn-cta-o:hover,
  .ccard:hover,
  .diff-card:hover,
  .entry-card:hover { transform: none; box-shadow: none; }

  .diff-card:hover::before { transform: scaleX(0); }
}


.mob-101-sub a i{font-size:.7rem;opacity:.6;width:14px;flex-shrink:0}


.mega-menu{z-index:9999!important;isolation:isolate}
.nav{isolation:isolate;transform:translateZ(0)}


/* ─────────────────────────────────────────────────────────────
   COURSES HERO BACKGROUND OVERRIDE (from second style block)
───────────────────────────────────────────────────────────── */
.hero::before,.page-hero::before {
  content:'';position:absolute;inset:0;
  background:url('https://images.unsplash.com/photo-1546410531-bb4caa6b424d?w=1400&q=80&auto=format&fm=webp&fit=crop') center/cover no-repeat;
  opacity:.13;z-index:0;pointer-events:none
}
.hero,.page-hero { position:relative; overflow:hidden }
.hero .wrap,.page-hero .wrap { position:relative;z-index:1 }


.hero,.page-hero{margin-top:-64px;padding-top:calc(64px + var(--hero-pt,clamp(40px,5vw,64px)))}
