/* ========================================
   CANETCO — COMPONENT STYLES
   All page components consolidated from
   approved HTML templates
   ======================================== */


/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

/* Inner pages: always filled */
nav.nav-filled {
  background: rgba(28, 47, 57, .97);
  backdrop-filter: blur(20px);
  padding: .85rem 3.5rem;
}

/* Homepage: transparent → filled on scroll */
nav.scrolled {
  background: rgba(28, 47, 57, .97);
  backdrop-filter: blur(20px);
  padding: .7rem 3.5rem;
}

.nav-logo img { height: 28px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

.nav-links a {
  color: rgba(192, 211, 220, .8);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--crimson);
  color: var(--white);
  padding: .55rem 1.35rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  transition: all .3s;
}
.nav-cta:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-lightest);
  border-radius: 2px;
  transition: all .3s;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28, 47, 57, .98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.active { display: flex; }
.nav-overlay a {
  color: var(--teal-lightest);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
}
.nav-overlay a:hover { color: var(--white); }
.nav-overlay .nav-cta {
  margin-top: 1rem;
  padding: .75rem 2rem;
  font-size: 1rem;
}


/* ══════════════════════════════════════════
   FOOTER — Standard
   ══════════════════════════════════════════ */

footer {
  background: var(--teal-deep);
  padding: 3.5rem 3.5rem 1.75rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr .6fr .5fr .5fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo img { height: 24px; margin-bottom: .9rem; }

.footer-tagline {
  font-size: .85rem;
  color: var(--teal-mid);
  line-height: 1.5;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--teal-light);
  text-decoration: none;
  font-size: .88rem;
  margin-bottom: .5rem;
  transition: color .3s;
}
.footer-col a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--teal-light);
  text-decoration: none;
  font-size: .88rem;
  margin-bottom: .6rem;
  transition: color .3s;
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}

.footer-copy { font-size: .78rem; color: var(--teal-mid); }

.footer-credit { font-size: .68rem; }
.footer-credit a {
  color: var(--teal-mid);
  text-decoration: none;
  transition: color .3s;
}
.footer-credit a:hover { color: var(--teal-light); }

.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.footer-socials a:hover {
  border-color: var(--crimson);
  background: rgba(195, 60, 84, .08);
}
.footer-socials svg { width: 15px; height: 15px; fill: var(--teal-light); }
.footer-socials a:hover svg { fill: var(--crimson); }


/* ══════════════════════════════════════════
   PAGE HERO — Inner pages (about, contact, etc.)
   ══════════════════════════════════════════ */

.page-hero {
  background: var(--teal-deep);
  padding: 7.5rem 3.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 95, 113, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 95, 113, .06) 1px, transparent 1px);
  background-size: 72px 72px;
}

.page-hero-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.page-label-dot {
  width: 7px; height: 7px;
  background: var(--crimson);
  border-radius: 50%;
}

.page-label span {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--teal-light);
  max-width: 560px;
}


/* ══════════════════════════════════════════
   HOMEPAGE — Hero
   ══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 211, 220, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 211, 220, .06) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 55%, rgba(195, 60, 84, .08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 30%, rgba(192, 211, 220, .1) 0%, transparent 50%);
}

.hero-stripe {
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--crimson) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10rem 3.5rem 5rem;
  display: block;
}

.hero-text { min-width: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.hero-dot {
  width: 7px; height: 7px;
  background: var(--crimson);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}

.hero-eyebrow-text {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--crimson);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 680px;
  text-wrap: balance;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .8s .35s forwards;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--teal-lightest);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .7s .45s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeUp .7s .6s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(192, 211, 220, .12);
  opacity: 0;
  animation: fadeUp .7s .8s forwards;
}

.hero-stat { padding: 2rem 0; }

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: .25rem;
}
.hero-stat-num .acc { color: var(--crimson); }

.hero-stat-label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--teal-lightest);
  letter-spacing: .06em;
  text-transform: uppercase;
}



/* ══════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1rem;
}

.section-label-line {
  width: 28px;
  height: 1.5px;
  background: var(--crimson);
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--teal-mid);
  max-width: 520px;
}


/* ══════════════════════════════════════════
   HOMEPAGE — Services Section
   ══════════════════════════════════════════ */

.services { background: var(--white); }

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6.5rem 3.5rem;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2.25rem;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(28, 47, 57, .07);
  border-color: rgba(28, 47, 57, .05);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 1.5rem;
  color: var(--crimson);
  transition: color .3s;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon { color: var(--navy); }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: .65rem;
}

.service-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--teal-mid);
}

.service-tag {
  display: inline-block;
  margin-top: 1.15rem;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--crimson);
  padding: .3rem .7rem;
  background: rgba(195, 60, 84, .07);
  border-radius: 3px;
}


/* ══════════════════════════════════════════
   HOMEPAGE — Topics Accordion
   ══════════════════════════════════════════ */

.topics { background: var(--off-white); }

.topics-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6.5rem 3.5rem;
  display: grid;
  grid-template-columns: .4fr .6fr;
  gap: 5rem;
  align-items: start;
}

.topics-left { position: sticky; top: 7rem; }

.topic-item { border-bottom: 1px solid rgba(28, 47, 57, .08); }

.topic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  cursor: pointer;
}
.topic-header:hover h3 { color: var(--crimson); }

.topic-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: color .3s;
}

.topic-toggle {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(28, 47, 57, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
}

.topic-item.active .topic-toggle {
  background: var(--crimson);
  border-color: var(--crimson);
}

.topic-toggle svg {
  width: 13px; height: 13px;
  stroke: var(--teal-deep);
  fill: none;
  stroke-width: 2;
  transition: all .3s;
}
.topic-item.active .topic-toggle svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.topic-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16, 1, .3, 1);
}
.topic-item.active .topic-body { max-height: 280px; }

.topic-body-inner { padding-bottom: 1.5rem; }

.topic-body p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--teal-mid);
  margin-bottom: .9rem;
}

.topic-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

.topic-tag {
  font-size: .76rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(56, 95, 113, .07);
  padding: .28rem .7rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all .3s;
}
.topic-tag:hover {
  background: var(--teal-deep);
  color: var(--white);
}


/* ══════════════════════════════════════════
   HOMEPAGE — Instructor Section
   ══════════════════════════════════════════ */

.instructor {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

.instructor-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 211, 220, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 211, 220, .05) 1px, transparent 1px);
  background-size: 72px 72px;
}

.instructor-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6.5rem 3.5rem;
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.photo-wrap { position: relative; }

.photo-corner {
  position: absolute;
  top: -10px; left: -10px;
  width: 64px; height: 64px;
  border-top: 3px solid var(--crimson);
  border-left: 3px solid var(--crimson);
  border-radius: 3px 0 0 0;
}

.photo-wrap img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  filter: grayscale(10%);
}

.photo-badge {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: var(--crimson);
  color: var(--white);
  padding: .6rem 1.25rem;
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.instructor-text .section-title { color: var(--white); }
.instructor-text .section-desc { color: var(--teal-lightest); }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.75rem;
}

.cred {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--teal-lightest);
  padding: .45rem .9rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 100px;
}
.cred svg {
  width: 13px; height: 13px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 2.5;
}


/* ══════════════════════════════════════════
   HOMEPAGE — CPD Banner
   ══════════════════════════════════════════ */

.cpd { background: var(--white); }

.cpd-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6.5rem 3.5rem;
}

.cpd-banner {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  border-radius: 10px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cpd-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(195, 60, 84, .12) 0%, transparent 65%);
}

.cpd-left h2 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.cpd-left h2 .big {
  font-size: 3.2rem;
  color: var(--crimson);
}
.cpd-left p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--teal-light);
}

.cpd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cpd-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
  padding: 1.35rem;
  transition: all .3s;
}
.cpd-card:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-2px);
}
.cpd-card-icon { font-size: 1.35rem; margin-bottom: .6rem; }
.cpd-card h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .2rem;
}
.cpd-card p {
  font-size: .78rem;
  color: var(--teal-light);
  line-height: 1.5;
}


/* ══════════════════════════════════════════
   HOMEPAGE — CTA Section
   ══════════════════════════════════════════ */

.cta {
  background: var(--off-white);
  padding: 6.5rem 3.5rem;
}

.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.cta-inner .section-title { max-width: 640px; margin: 0 auto .75rem; }
.cta-inner .section-desc { max-width: 460px; margin: 0 auto 2.25rem; }

.cta-btns {
  display: flex;
  gap: .9rem;
  justify-content: center;
}


/* ══════════════════════════════════════════
   INNER PAGE — Content Blocks
   ══════════════════════════════════════════ */

.content-block { padding: 5rem 3.5rem; }
.content-block.white { background: var(--white); }
.content-block:nth-child(even) { background: var(--white); }

.content-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.content-inner h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.content-inner p {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--teal-mid);
  margin-bottom: 1.25rem;
}


/* ── Highlight box ── */
.highlight-box {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  border-radius: 8px;
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
}
.highlight-box p {
  color: var(--teal-light) !important;
  margin-bottom: 0 !important;
  font-size: .95rem;
}
.highlight-box strong { color: var(--white); }


/* ══════════════════════════════════════════
   ABOUT PAGE — Instructor Grid
   ══════════════════════════════════════════ */

.about-instructor-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-instructor-grid h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .6rem; color: var(--teal-deep); }
.about-instructor-grid p { font-size: .93rem; line-height: 1.75; color: var(--teal-mid); margin-bottom: 1.1rem; }

.about-instructor-photo {
  width: 220px; height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  filter: grayscale(10%);
  box-shadow: 0 8px 32px rgba(28,47,57,.12);
}

/* About page credential pills (light bg) */
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}

.cred-light {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--teal);
  padding: .4rem .85rem;
  background: rgba(56, 95, 113, .06);
  border-radius: 100px;
}
.cred-light svg {
  width: 13px; height: 13px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 2.5;
}


/* ══════════════════════════════════════════
   PAGE CTA (inner pages)
   ══════════════════════════════════════════ */

.page-cta {
  padding: 4.5rem 3.5rem;
  text-align: center;
}
.page-cta.white { background: var(--white); }

.page-cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.page-cta h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: .6rem;
}

.page-cta p {
  font-size: .92rem;
  color: var(--teal-mid);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}


/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */

.contact-main {
  background: var(--white);
  padding: 5rem 3.5rem;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; }
.contact-form h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(195, 60, 84, .06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 18px; height: 18px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 1.8;
}

.contact-item-text h3 { font-size: .88rem; font-weight: 600; margin-bottom: .15rem; }
.contact-item-text p { font-size: .85rem; color: var(--teal-mid); line-height: 1.55; }
.contact-item-text a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.contact-item-text a:hover { color: var(--crimson); }


/* ══════════════════════════════════════════
   CUSTOM TRAINING — Feature Cards & Process
   ══════════════════════════════════════════ */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(28, 47, 57, .05);
  border-radius: 8px;
  padding: 1.5rem;
}
.content-block.white .feature-card { background: var(--off-white); }

.feature-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: .35rem; }
.feature-card p {
  font-size: .85rem;
  color: var(--teal-mid);
  line-height: 1.6;
  margin-bottom: 0;
}

.process-list { counter-reset: step; margin: 2rem 0; }

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(28, 47, 57, .05);
}
.process-step:last-child { border-bottom: none; }

.process-num {
  counter-increment: step;
  font-size: .72rem;
  font-weight: 600;
  color: var(--crimson);
  background: rgba(195, 60, 84, .06);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.process-num::before { content: counter(step); }

.process-text h3 { font-size: .92rem; font-weight: 600; margin-bottom: .2rem; }
.process-text p {
  font-size: .85rem;
  color: var(--teal-mid);
  line-height: 1.6;
  margin-bottom: 0;
}


/* ══════════════════════════════════════════
   TECHNICAL HELP — Area Cards & How Steps
   ══════════════════════════════════════════ */

.help-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.help-area {
  background: var(--white);
  border: 1px solid rgba(28, 47, 57, .05);
  border-radius: 8px;
  padding: 1.5rem;
}
.content-block.white .help-area { background: var(--off-white); }
.help-area h3 { font-size: .95rem; font-weight: 600; margin-bottom: .35rem; }
.help-area p { font-size: .85rem; color: var(--teal-mid); line-height: 1.6; margin-bottom: 0; }

.how-it-works { margin: 2rem 0; }

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(28, 47, 57, .05);
}
.how-step:last-child { border-bottom: none; }

.how-step-num {
  font-size: .72rem;
  font-weight: 600;
  color: var(--crimson);
  background: rgba(195, 60, 84, .06);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-step-text h3 { font-size: .92rem; font-weight: 600; margin-bottom: .2rem; }
.how-step-text p { font-size: .85rem; color: var(--teal-mid); line-height: 1.6; margin-bottom: 0; }


/* ══════════════════════════════════════════
   COURSE PAGE — Hero
   ══════════════════════════════════════════ */

.course-hero {
  background: var(--hero-bg);
  padding: 7.5rem 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.course-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 211, 220, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 211, 220, .06) 1px, transparent 1px);
  background-size: 72px 72px;
}

.course-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(195, 60, 84, .06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(192, 211, 220, .08) 0%, transparent 50%);
}

.course-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.course-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
}
.course-breadcrumb a {
  color: var(--teal-light);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  transition: color .3s;
}
.course-breadcrumb a:hover { color: var(--white); }
.course-breadcrumb span.sep { color: var(--teal-mid); font-size: .75rem; }
.course-breadcrumb .current { color: var(--teal-lightest); font-size: .82rem; font-weight: 500; }

.hero-category {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.hero-category-dot {
  width: 7px; height: 7px;
  background: var(--crimson);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}
.hero-category-text {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
}

.course-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--teal-lightest);
}
.hero-meta-item svg {
  width: 16px; height: 16px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.hero-meta-item strong { color: var(--white); font-weight: 600; }


/* ══════════════════════════════════════════
   COURSE PAGE — Main Layout
   ══════════════════════════════════════════ */

.course-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 3.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: start;
}

/* CPD badge */
.cpd-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid rgba(28, 47, 57, .08);
  padding: .6rem 1.15rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}
.cpd-badge-num {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
  background: rgba(195, 60, 84, .07);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cpd-badge-text {
  font-size: .78rem;
  font-weight: 500;
  color: var(--teal-mid);
  line-height: 1.35;
}
.cpd-badge-text strong { color: var(--teal-deep); font-weight: 600; }

/* Content section */
.content-section { margin-bottom: 3rem; }
.content-section h2 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(28, 47, 57, .06);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.content-section h2::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--crimson);
  flex-shrink: 0;
}
.content-section p {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--teal-mid);
  margin-bottom: .75rem;
}

/* Outline grid */
.outline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.outline-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .7rem .85rem;
  background: var(--white);
  border: 1px solid rgba(28, 47, 57, .04);
  border-radius: 5px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}
.outline-item:hover {
  border-color: rgba(195, 60, 84, .15);
  background: rgba(195, 60, 84, .02);
  transform: translateX(3px);
}
.outline-num {
  font-size: .72rem;
  font-weight: 600;
  color: var(--crimson);
  background: rgba(195, 60, 84, .06);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .05rem;
}
.outline-text {
  font-size: .85rem;
  font-weight: 500;
  color: var(--teal-deep);
  line-height: 1.35;
}

/* Learning outcomes */
.outcome-list { display: flex; flex-direction: column; gap: .5rem; }
.outcome-item { display: flex; align-items: flex-start; gap: .65rem; padding: .65rem 0; }
.outcome-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(195, 60, 84, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.outcome-check svg {
  width: 11px; height: 11px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 2.5;
}
.outcome-text { font-size: .9rem; line-height: 1.6; color: var(--teal-mid); }

/* Audience tags */
.audience-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.audience-tag {
  font-size: .82rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(56, 95, 113, .06);
  padding: .4rem .85rem;
  border-radius: 100px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}
.audience-tag:hover {
  background: var(--teal-deep);
  color: var(--white);
}


/* ══════════════════════════════════════════
   COURSE PAGE — Sidebar
   ══════════════════════════════════════════ */

.course-sidebar { position: sticky; top: 5.5rem; }

.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(28, 47, 57, .06);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28, 47, 57, .04);
}

.sidebar-image,
.sidebar-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.sidebar-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--teal-lightest) 0%, rgba(56, 95, 113, .2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 500;
  color: var(--teal-mid);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sidebar-body { padding: 1.75rem; }

.sidebar-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: 1.5rem;
}
.sidebar-price-amount {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
}
.sidebar-price-note {
  font-size: .78rem;
  color: var(--teal-mid);
  font-weight: 400;
}

.sidebar-details { margin-bottom: 1.75rem; }
.sidebar-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(28, 47, 57, .04);
}
.sidebar-detail:last-child { border-bottom: none; }
.sidebar-detail-label { font-size: .82rem; color: var(--teal-mid); font-weight: 400; }
.sidebar-detail-value { font-size: .85rem; color: var(--teal-deep); font-weight: 600; }
.sidebar-detail-value.highlight { color: var(--crimson); }

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--crimson);
  color: var(--white);
  padding: .9rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.btn-register:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(195, 60, 84, .25);
}
.btn-register svg { transition: transform .3s; }
.btn-register:hover svg { transform: translateX(3px); }

.btn-syllabus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  color: var(--teal-deep);
  padding: .8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  border: 1px solid rgba(28, 47, 57, .12);
  transition: all .3s;
  cursor: pointer;
}
.btn-syllabus:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(56, 95, 113, .02);
}
.btn-syllabus svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.btn-employer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(56, 95, 113, .06);
  color: var(--teal-deep);
  padding: .8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  border: 1px solid rgba(56, 95, 113, .08);
  transition: all .3s;
  cursor: pointer;
}
.btn-employer:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(56, 95, 113, .1);
}
.btn-employer svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.sidebar-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 47, 57, .06);
  align-items: center;
}
.sidebar-links a {
  font-size: .8rem;
  color: var(--teal-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color .3s;
}
.sidebar-links a:hover { color: var(--crimson); }
.sidebar-links svg {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

/* Tooltip */
.sidebar-note {
  margin-top: 1.25rem;
  padding: .85rem;
  background: rgba(56, 95, 113, .03);
  border-radius: 5px;
  text-align: center;
}
.sidebar-note > svg { display: none; }
.sidebar-note p { font-size: .78rem; color: var(--teal-mid); line-height: 1.5; }

.tooltip-trigger {
  display: inline;
  position: relative;
  cursor: help;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--teal-mid);
  text-underline-offset: 3px;
  white-space: nowrap;
}
.tooltip-trigger .tooltip-icon {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-mid);
  font-size: .58rem;
  font-weight: 700;
  color: var(--teal-mid);
  margin-left: .2rem;
  vertical-align: .1em;
  line-height: 13px;
  text-align: center;
  text-decoration: none;
}
.tooltip-trigger .tooltip-content {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-deep);
  color: var(--white);
  padding: .6rem .85rem;
  border-radius: 5px;
  font-size: .72rem;
  line-height: 1.45;
  white-space: normal;
  width: 220px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(28, 47, 57, .15);
}
.tooltip-trigger .tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--teal-deep);
}
.tooltip-trigger:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}


/* ══════════════════════════════════════════
   COURSE PAGE — Related Courses
   ══════════════════════════════════════════ */

.related {
  background: var(--white);
  padding: 5rem 3.5rem;
}

.related-inner { max-width: var(--max-width); margin: 0 auto; }

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}
.related-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.related-header a {
  color: var(--crimson);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: all .3s;
  flex-shrink: 0;
}
.related-header a:hover { color: var(--crimson-dark); }
.related-header a svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
}
.related-header a:hover svg { transform: translateX(3px); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-card {
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}
.related-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(28, 47, 57, .07);
  border-color: rgba(28, 47, 57, .05);
}
.related-card:hover::after { transform: scaleX(1); }

.related-card-category {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: .6rem;
}
.related-card h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: .6rem;
  line-height: 1.3;
}
.related-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
}
.related-card-meta span { font-size: .78rem; color: var(--teal-mid); font-weight: 500; }
.related-card-meta strong { color: var(--teal-deep); }
.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--crimson);
  text-decoration: none;
  transition: all .3s;
}
.related-card-link:hover { color: var(--crimson-dark); }
.related-card-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
}
.related-card-link:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════════════
   COURSE PAGE — Instructor Strip
   ══════════════════════════════════════════ */

.instructor-strip {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

.instructor-strip-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 211, 220, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 211, 220, .05) 1px, transparent 1px);
  background-size: 72px 72px;
}

.instructor-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.instructor-strip-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(195, 60, 84, .3);
}
.instructor-strip-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.instructor-strip-text h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .3rem; }
.instructor-strip-text p { font-size: .88rem; color: var(--teal-lightest); line-height: 1.55; max-width: 560px; }

.instructor-strip-creds { display: flex; gap: .5rem; margin-top: .6rem; }
.instructor-strip-cred {
  font-size: .72rem;
  font-weight: 500;
  color: var(--teal-lightest);
  padding: .25rem .65rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 100px;
}

.instructor-strip-link { margin-left: auto; flex-shrink: 0; }
.instructor-strip-link a {
  color: var(--teal-lightest);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  border: 1px solid rgba(192, 211, 220, .25);
  border-radius: 4px;
  transition: all .3s;
}
.instructor-strip-link a:hover {
  color: var(--white);
  border-color: rgba(192, 211, 220, .5);
  background: rgba(255, 255, 255, .06);
}
.instructor-strip-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
}
.instructor-strip-link a:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════════════
   COURSE PAGE — CTA Band
   ══════════════════════════════════════════ */

.cta-band {
  background: var(--off-white);
  padding: 5rem 3.5rem;
  text-align: center;
}

.cta-band-inner { max-width: 560px; margin: 0 auto; }

.cta-band h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: .6rem;
}

.cta-band p {
  font-size: .95rem;
  color: var(--teal-mid);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.cta-band-btns {
  display: flex;
  gap: .75rem;
  justify-content: center;
}


/* ══════════════════════════════════════════
   COURSE CATALOGUE (new page, no template)
   ══════════════════════════════════════════ */

.catalogue-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 3.5rem 6rem;
}

.catalogue-filters {
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: .82rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(56, 95, 113, .06);
  padding: .45rem 1rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.catalogue-card {
  background: var(--white);
  border: 1px solid rgba(28, 47, 57, .05);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column;
}
.catalogue-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.catalogue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(28, 47, 57, .07);
  border-color: rgba(28, 47, 57, .08);
}
.catalogue-card:hover::after { transform: scaleX(1); }

.catalogue-card-category {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: .6rem;
}
.catalogue-card h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: .6rem;
  line-height: 1.3;
}
.catalogue-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
}
.catalogue-card-meta span { font-size: .78rem; color: var(--teal-mid); font-weight: 500; }
.catalogue-card-meta strong { color: var(--teal-deep); }
.catalogue-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 47, 57, .04);
}
.catalogue-card-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-deep);
}
.catalogue-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--crimson);
  text-decoration: none;
  transition: all .3s;
}
.catalogue-card-link:hover { color: var(--crimson-dark); }
.catalogue-card-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
}
.catalogue-card-link:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════════════
   COURSES PAGE — New Layout (topic groups + card images)
   ══════════════════════════════════════════ */

/* Hero two-column variant */
.page-hero-cols {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 1.5rem;
}
.hero-stat-card .hero-stat-num {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: .25rem;
}
.hero-stat-card .hero-stat-label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--teal-mid);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Filter section */
.filter-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 3.5rem 0;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

/* Courses section */
.courses-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 3.5rem 5rem;
}

/* Topic groups */
.topic-group { margin-bottom: 3rem; }
.topic-group-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(28, 47, 57, .06);
}
.topic-group-dot {
  width: 8px; height: 8px;
  background: var(--crimson);
  border-radius: 50%;
  flex-shrink: 0;
}
.topic-group-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.topic-group-count {
  font-size: .78rem;
  font-weight: 500;
  color: var(--teal-mid);
  margin-left: auto;
}

/* Course grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Course cards */
.course-card {
  background: var(--white);
  border: 1px solid rgba(28, 47, 57, .05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  text-decoration: none;
  color: inherit;
  padding-top: 0;
}
.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(28, 47, 57, .06);
  border-color: rgba(28, 47, 57, .08);
}
.course-card-img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.course-card-top {
  flex: 1;
  padding: 1.25rem 1.75rem 0;
}
.course-card-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: .85rem;
  min-height: 2.6em;
}
.course-card-meta {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: nowrap;
}
.course-card-meta span {
  font-size: .78rem;
  color: var(--teal-mid);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.course-card-meta svg {
  width: 13px; height: 13px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.course-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(28, 47, 57, .04);
}
.course-card-price {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.course-card-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--crimson);
  text-decoration: none;
  transition: gap .25s;
}
.course-card:hover .course-card-link { gap: .5rem; }
.course-card-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Courses CTA (dark band) */
.courses-cta {
  background: var(--teal-deep);
  position: relative;
  overflow: hidden;
}
.courses-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.courses-cta-text h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: .4rem;
}
.courses-cta-text p {
  font-size: .92rem;
  color: var(--teal-light);
  line-height: 1.6;
}
.courses-cta-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   LANDING PAGES
   ══════════════════════════════════════════ */

/* LP Nav */
.lp-nav {
  padding: 1.5rem 3.5rem;
  background: var(--teal-deep);
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-nav img { height: 36px; width: auto; }

/* LP Hero */
.lp-hero {
  background: var(--hero-bg);
  padding: 5rem 3.5rem 5.5rem;
  position: relative;
  overflow: hidden;
}
.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 211, 220, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 211, 220, .06) 1px, transparent 1px);
  background-size: 72px 72px;
}
.lp-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.lp-eyebrow { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.5rem; }
.lp-eyebrow-dot { width: 7px; height: 7px; background: var(--crimson); border-radius: 50%; }
.lp-eyebrow-text { font-size: .73rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--crimson); }
.lp-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.03em; color: var(--white); margin-bottom: 1.25rem; }
.lp-hero-sub { font-size: 1.05rem; line-height: 1.7; color: var(--teal-lightest); max-width: 560px; margin: 0 auto 2.25rem; }
.lp-hero-actions { display: flex; gap: .75rem; justify-content: center; align-items: center; flex-wrap: wrap; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--teal-lightest);
  padding: 1rem 1.75rem;
  border: 1px solid rgba(192, 211, 220, .2);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: all .3s;
  background: none;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: rgba(192, 211, 220, .45);
  color: var(--white);
  background: rgba(255, 255, 255, .03);
}
.btn-secondary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* LP Value Props */
.lp-value { background: var(--white); padding: 4.5rem 3.5rem; }
.lp-value-inner { max-width: 960px; margin: 0 auto; }
.lp-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.lp-value-card { text-align: center; padding: 1.5rem 1rem; }
.lp-value-icon {
  width: 44px; height: 44px;
  background: rgba(195, 60, 84, .06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}
.lp-value-icon svg { width: 20px; height: 20px; stroke: var(--crimson); fill: none; stroke-width: 1.8; }
.lp-value-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: .4rem; letter-spacing: -0.01em; }
.lp-value-card p { font-size: .85rem; line-height: 1.6; color: var(--teal-mid); }

/* LP Image */
.lp-image { padding: 0 3.5rem; background: var(--white); }
.lp-image-inner { max-width: 960px; margin: 0 auto; padding: 3.5rem 0; }
.lp-image-inner img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; }

/* LP Topics */
.lp-topics { background: var(--off-white); padding: 5rem 3.5rem; }
.lp-topics-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.lp-topics-inner h2 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: .6rem; }
.lp-topics-inner > p { font-size: .9rem; color: var(--teal-mid); margin-bottom: 2.5rem; line-height: 1.6; }
.lp-topics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.lp-topic-pill { padding: 1.25rem 1rem; background: var(--white); border: 1px solid rgba(28, 47, 57, .05); border-radius: 6px; text-align: center; transition: all .25s; }
.lp-topic-pill:hover { border-color: rgba(195, 60, 84, .15); background: rgba(195, 60, 84, .02); }
.lp-topic-pill h4 { font-size: .88rem; font-weight: 600; color: var(--teal-deep); }

.btn-browse {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal-deep);
  color: var(--white);
  padding: .85rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  transition: all .3s;
}
.btn-browse:hover { background: var(--teal); transform: translateY(-1px); }
.btn-browse svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .3s; }
.btn-browse:hover svg { transform: translateX(3px); }

/* LP Featured Course */
.lp-featured { background: var(--white); padding: 5rem 3.5rem; }
.lp-featured-inner { max-width: 800px; margin: 0 auto; }
.lp-featured-label { display: inline-flex; align-items: center; gap: .5rem; font-size: .73rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--crimson); margin-bottom: 1rem; }
.lp-featured-label svg { width: 14px; height: 14px; stroke: var(--crimson); fill: none; stroke-width: 2; }
.lp-featured h2 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: .5rem; }
.lp-featured-inner > p { font-size: .9rem; color: var(--teal-mid); line-height: 1.65; margin-bottom: 1.5rem; }
.lp-featured-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.75rem; }
.lp-featured-meta-item { font-size: .82rem; color: var(--teal-mid); }
.lp-featured-meta-item strong { color: var(--teal-deep); font-weight: 600; }
.lp-featured-outline { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.lp-featured-outline-item { display: flex; align-items: flex-start; gap: .75rem; padding: 1rem 1.15rem; background: var(--off-white); border: 1px solid rgba(28, 47, 57, .04); border-radius: 5px; }
.lp-featured-outline-num { font-size: .72rem; font-weight: 600; color: var(--crimson); background: rgba(195, 60, 84, .06); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .05rem; }
.lp-featured-outline-text { font-size: .85rem; font-weight: 500; color: var(--teal-deep); line-height: 1.35; }
.lp-featured-cta { text-align: center; }

/* LP More Courses Carousel */
.lp-more { background: var(--off-white); padding: 4.5rem 3.5rem; }
.lp-more-inner { max-width: 960px; margin: 0 auto; }
.lp-more-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.lp-more-header h2 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.015em; }
.lp-more-arrows { display: flex; gap: .5rem; }
.lp-more-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(28, 47, 57, .12); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.lp-more-arrow:hover { border-color: var(--teal); background: rgba(56, 95, 113, .04); }
.lp-more-arrow svg { width: 16px; height: 16px; stroke: var(--teal-deep); fill: none; stroke-width: 2; }
.lp-more-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; padding-bottom: .5rem; }
.lp-more-track::-webkit-scrollbar { display: none; }
.lp-more-card { min-width: 280px; max-width: 280px; background: var(--white); border: 1px solid rgba(28, 47, 57, .05); border-radius: 8px; padding: 1.5rem; flex-shrink: 0; transition: all .3s; display: flex; flex-direction: column; }
.lp-more-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(28, 47, 57, .06); border-color: rgba(28, 47, 57, .08); }
.lp-more-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: .35rem; letter-spacing: -0.01em; }
.lp-more-card p { font-size: .8rem; color: var(--teal-mid); line-height: 1.55; margin-bottom: .75rem; flex: 1; }
.lp-more-card-bottom { display: flex; justify-content: space-between; align-items: center; }
.lp-more-card-meta { font-size: .73rem; color: var(--teal); font-weight: 500; }
.lp-more-card-link { font-size: .78rem; font-weight: 600; color: var(--crimson); text-decoration: none; display: inline-flex; align-items: center; gap: .25rem; transition: all .2s; }
.lp-more-card-link:hover { color: var(--crimson-dark); }
.lp-more-card-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.lp-more-card-link:hover svg { transform: translateX(2px); }

/* LP CPD Highlight (CPD landing page) */
.lp-cpd-highlight { background: var(--teal-deep); padding: 5rem 3.5rem; position: relative; overflow: hidden; }
.lp-cpd-highlight::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(192,211,220,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(192,211,220,.04) 1px, transparent 1px); background-size: 72px 72px; }
.lp-cpd-highlight::after { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(195,60,84,.1) 0%, transparent 65%); pointer-events: none; }
.lp-cpd-highlight-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.lp-cpd-stat-row { display: grid; grid-template-columns: auto 1px 1fr; align-items: center; gap: 3rem; margin-bottom: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(192,211,220,.07); }
.lp-cpd-big { font-size: clamp(4rem, 8vw, 6.5rem); font-weight: 600; color: var(--crimson); letter-spacing: -0.04em; line-height: 1; }
.lp-cpd-big-label { font-size: 1rem; font-weight: 600; color: var(--white); margin-top: .4rem; letter-spacing: -0.01em; }
.lp-cpd-big-sub { font-size: .82rem; color: var(--teal-mid); margin-top: .25rem; }
.lp-cpd-stat-divider { width: 1px; height: 80px; background: rgba(192,211,220,.1); align-self: center; }
.lp-cpd-stat-context p { font-size: .95rem; line-height: 1.72; color: var(--teal-light); }
.lp-cpd-stat-context p strong { color: var(--white); font-weight: 600; }
.lp-cpd-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.lp-cpd-badge { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 1.5rem 1.25rem; transition: all .3s; position: relative; overflow: hidden; }
.lp-cpd-badge::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--crimson); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.16,1,.3,1); }
.lp-cpd-badge:hover { background: rgba(255,255,255,.06); border-color: rgba(195,60,84,.15); transform: translateY(-3px); }
.lp-cpd-badge:hover::before { transform: scaleX(1); }
.lp-cpd-badge-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(195,60,84,.1); display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.lp-cpd-badge-icon svg { width: 18px; height: 18px; stroke: var(--crimson); fill: none; stroke-width: 1.8; }
.lp-cpd-badge h4 { font-size: .85rem; font-weight: 600; color: var(--white); margin-bottom: .3rem; }
.lp-cpd-badge p { font-size: .77rem; color: var(--teal-mid); line-height: 1.5; }

/* LP Compliance Cards */
.lp-compliance { background: var(--white); padding: 5rem 3.5rem; }
.lp-compliance-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.lp-compliance-inner h2 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: .5rem; }
.lp-compliance-inner > p { font-size: .9rem; color: var(--teal-mid); margin-bottom: 2.5rem; line-height: 1.65; }
.lp-compliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.lp-compliance-card { padding: 1.75rem 1.5rem; background: var(--off-white); border: 1px solid rgba(28, 47, 57, .05); border-radius: 8px; text-align: left; transition: all .25s; }
.lp-compliance-card:hover { border-color: rgba(195, 60, 84, .1); background: rgba(195, 60, 84, .015); }
.lp-compliance-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: .45rem; letter-spacing: -0.01em; }
.lp-compliance-card p { font-size: .85rem; line-height: 1.6; color: var(--teal); }

/* LP Instructor */
.lp-instructor { background: var(--teal-deep); padding: 3.5rem 3.5rem; position: relative; overflow: hidden; }
.lp-instructor-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(192, 211, 220, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(192, 211, 220, .06) 1px, transparent 1px); background-size: 72px 72px; }
.lp-instructor-inner { max-width: 800px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; position: relative; z-index: 2; }
.lp-instructor-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(195, 60, 84, .3); flex-shrink: 0; }
.lp-instructor-text h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
.lp-instructor-text p { font-size: .88rem; color: var(--teal-light); line-height: 1.55; }
.lp-instructor-creds { display: flex; gap: .45rem; margin-top: .5rem; flex-wrap: wrap; }
.lp-instructor-cred { font-size: .7rem; font-weight: 500; color: var(--teal-light); padding: .2rem .6rem; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06); border-radius: 100px; }

/* LP Bottom CTA */
.lp-cta { background: var(--white); padding: 4.5rem 3.5rem; text-align: center; }
.lp-cta-inner { max-width: 560px; margin: 0 auto; }
.lp-cta h2 { font-size: 1.6rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: .5rem; }
.lp-cta p { font-size: .92rem; color: var(--teal-mid); line-height: 1.65; margin-bottom: 1.75rem; }
.lp-cta-actions { display: flex; gap: .75rem; justify-content: center; align-items: center; flex-wrap: wrap; }

.btn-primary-dark { display: inline-flex; align-items: center; gap: .5rem; background: var(--teal-deep); color: var(--white); padding: .9rem 1.75rem; border-radius: 4px; text-decoration: none; font-weight: 500; font-size: .9rem; transition: all .3s; border: none; cursor: pointer; }
.btn-primary-dark:hover { background: var(--teal); transform: translateY(-1px); }
.btn-primary-dark svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* Outline Light Button */
.btn-outline-light { display: inline-flex; align-items: center; gap: .5rem; color: var(--teal-deep); padding: .9rem 1.75rem; border: 1.5px solid rgba(28,47,57,.3); border-radius: 4px; text-decoration: none; font-weight: 500; font-size: .92rem; transition: all .3s; }
.btn-outline-light:hover { border-color: var(--teal); color: var(--teal); background: rgba(56,95,113,.04); }
.btn-outline-light svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.lp-hero .btn-outline-light { color: var(--teal-lightest); border-color: rgba(192,211,220,.25); }
.lp-hero .btn-outline-light:hover { border-color: rgba(192,211,220,.5); color: var(--white); background: rgba(255,255,255,.05); }

/* LP Footer */
.lp-footer { background: var(--teal-deep); padding: 1.75rem 3.5rem; text-align: center; }
.lp-footer p { font-size: .75rem; color: var(--teal-mid); }
.lp-footer a { color: var(--teal-light); text-decoration: none; transition: color .3s; }
.lp-footer a:hover { color: var(--white); }
.lp-footer-credit { margin-top: .5rem; }
.lp-footer-credit a { font-size: .68rem; color: var(--teal-mid); text-decoration: none; transition: color .3s; }
.lp-footer-credit a:hover { color: var(--teal-light); }


/* ══════════════════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  nav, nav.scrolled, nav.nav-filled { padding-left: 2rem; padding-right: 2rem; }
  .hero-content { padding-left: 2rem; padding-right: 2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .services-inner, .cpd-inner { padding-left: 2rem; padding-right: 2rem; }
  .services-grid { grid-template-columns: 1fr; }

  .topics-inner { padding: 5rem 2rem; grid-template-columns: 1fr; gap: 2rem; }
  .topics-left { position: static; }

  .instructor-inner { grid-template-columns: 1fr; padding: 5rem 2rem; }

  .cpd-banner { grid-template-columns: 1fr; padding: 2.5rem; }

  .cta { padding: 5rem 2rem; }

  .course-hero { padding: 7rem 2rem 3.5rem; }
  .course-main { grid-template-columns: 1fr; padding: 2.5rem 2rem 4rem; }
  .course-sidebar { position: static; }
  .outline-grid { grid-template-columns: 1fr; }

  .related { padding: 4rem 2rem; }
  .related-grid { grid-template-columns: 1fr; }
  .instructor-strip-inner { flex-wrap: wrap; padding: 3rem 2rem; }
  .instructor-strip-link { margin-left: 0; }
  .cta-band { padding: 4rem 2rem; }

  .catalogue-inner { padding: 2.5rem 2rem 4rem; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }

  .page-hero-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .filter-section { padding: 2.5rem 2rem 0; }
  .courses-section { padding: 1.5rem 2rem 4rem; }
  .course-grid { grid-template-columns: 1fr 1fr; }
  .courses-cta-inner { flex-direction: column; text-align: center; padding: 3.5rem 2rem; }
  .courses-cta-actions { justify-content: center; }

  .lp-cpd-stat-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .lp-cpd-stat-divider { display: none; }
  .lp-cpd-badges { grid-template-columns: repeat(2, 1fr); }

  footer { padding: 3rem 2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — 640px (mobile)
   ══════════════════════════════════════════ */

@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 7rem 1.25rem 3.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr 1fr; }

  .services-inner { padding: 4.5rem 1.25rem; }
  .services-header { flex-direction: column; align-items: flex-start; }

  .topics-inner { padding: 4.5rem 1.25rem; }
  .cpd-inner { padding: 4.5rem 1.25rem; }
  .cpd-grid { grid-template-columns: 1fr; }

  .cta { padding: 4.5rem 1.25rem; }
  .cta-btns { flex-direction: column; align-items: center; }

  .instructor-inner { padding: 4rem 1.25rem; }

  .page-hero { padding: 6.5rem 1.25rem 3rem; }
  .content-block { padding: 3.5rem 1.25rem; }
  .page-cta { padding: 3rem 1.25rem; }

  .contact-main { padding: 3.5rem 1.25rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .feature-grid { grid-template-columns: 1fr; }
  .help-areas { grid-template-columns: 1fr; }

  .about-instructor-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .about-instructor-photo { width: 160px; height: 190px; }

  .course-hero { padding: 6rem 1.25rem 2.5rem; }
  .course-main { padding: 2rem 1.25rem 3rem; }
  .hero-meta { gap: .75rem; }

  .related { padding: 3.5rem 1.25rem; }
  .cta-band { padding: 3.5rem 1.25rem; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .instructor-strip-inner { padding: 2.5rem 1.25rem; }

  .catalogue-inner { padding: 2rem 1.25rem 3rem; }
  .catalogue-grid { grid-template-columns: 1fr; }

  .filter-section { padding: 2rem 1.25rem 0; }
  .filter-bar { gap: .4rem; }
  .courses-section { padding: 1.25rem 1.25rem 3rem; }
  .course-grid { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .courses-cta-inner { padding: 3rem 1.25rem; }
  .courses-cta-actions { flex-direction: column; width: 100%; }
  .courses-cta-actions .btn-primary,
  .courses-cta-actions .btn-outline { justify-content: center; width: 100%; }

  footer { padding: 2.5rem 1.25rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }

  /* LP responsive */
  .lp-nav { padding: 1rem 1.5rem; }
  .lp-hero { padding: 3.5rem 1.5rem 4rem; }
  .lp-hero-actions { flex-direction: column; }
  .lp-value { padding: 3rem 1.5rem; }
  .lp-value-grid { grid-template-columns: 1fr; gap: 1rem; }
  .lp-image { padding: 0 1.5rem; }
  .lp-image-inner img { height: 200px; }
  .lp-topics { padding: 3.5rem 1.5rem; }
  .lp-topics-grid { grid-template-columns: 1fr 1fr; }
  .lp-featured { padding: 3.5rem 1.5rem; }
  .lp-featured-outline { grid-template-columns: 1fr; }
  .lp-more { padding: 3rem 1.5rem; }
  .lp-cpd-highlight { padding: 3.5rem 1.5rem; }
  .lp-cpd-stat-row { gap: 1.5rem; }
  .lp-cpd-badges { grid-template-columns: 1fr 1fr; }
  .lp-compliance { padding: 3.5rem 1.5rem; }
  .lp-compliance-grid { grid-template-columns: 1fr; }
  .lp-instructor { padding: 2.5rem 1.5rem; }
  .lp-instructor-inner { flex-direction: column; text-align: center; }
  .lp-instructor-creds { justify-content: center; }
  .lp-cta { padding: 3rem 1.5rem; }
  .lp-cta-actions { flex-direction: column; }
  .lp-footer { padding: 1.5rem; }
}
