:root {
  --black: #060608;
  --white: #F8F6F1;
  --teal: #00C896;
  --teal-dim: rgba(0, 200, 150, 0.1);
  --teal-border: rgba(0, 200, 150, 0.25);
  --amber: #F5A623;
  --blue: #4A9EFF;
  --border: rgba(255, 255, 255, 0.07);
  --card: #0D0D1A;
  --muted: rgba(248, 246, 241, 0.45);
  --muted2: rgba(248, 246, 241, 0.25);
  --teal-deep: #0E5D4F;
  --util-bg: #0B2436;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--black);
  color: var(--white);
}

#wrapper {
  position: relative;
  overflow: hidden;
}

/* HERO */
.dept-hero-wrap {
  background: var(--teal);
}

.dept-hero {
  padding: 40px 3rem 115px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
}

.dept-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal-border);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.dept-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.dept-hero h1 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.dept-hero h1 span {
  color: var(--black);
}

.dept-desc {
  font-size: 16px;
  color: var(--card);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.dept-stats {
  display: flex;
  gap: 2rem;
}

.dept-stat-val {
  font-family: 'Roboto', sans-serif;
  font-size: 44px;
  font-weight: 700;
  display: block;
  color: var(--white);
}

.dept-stat-lbl {
  font-size: 18px;
  color: var(--card);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.dept-hero-right {
  text-align: right;
}

.dept-badge {
  position: relative;
  width: 550px;
  height: 450px;
  background-image: url('../images/radio-hero.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

.badge-caption {
  position: absolute;
  bottom: -1px;
  left: -1px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(6, 6, 8, 0.65);
  padding: 0.85rem 1.1rem;
  border-radius: 0 12px 0 0;
}

.badge-txt {
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-sub {
  font-size: 20px;
  color: var(--muted);
}

/* PROGRESS BAR */
.progress-bar {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: sticky;
  top: 64px;
  z-index: 100;
  backdrop-filter: blur(20px);
}

.prog-label {
  font-size: 28px;
  color: var(--muted);
  white-space: nowrap;
}

.prog-track-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 60px;
  min-width: 60px;
}

.prog-track {
  flex: 1 1 60px;
  min-width: 260px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  max-width: 400px;
}

.prog-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s ease;
}

.prog-pct {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
}

.prog-modules {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
}

.prog-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  transition: background 0.3s;
  cursor: pointer;
}

.prog-dot.done {
  background: var(--teal);
}

.prog-dot.active {
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber);
}

/* LAYOUT */
.dept-layout-wrap {
  background: var(--white);
}

.dept-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 80vh;
}

/* SIDEBAR */
.sidebar {
  border-right: 1px solid var(--teal);
  padding: 2rem 0;
  position: sticky;
  top: 120px;
  height: calc(100vh - 120px);
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
  width: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.sidebar-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  user-select: none;
}

.sidebar-track:hover {
  color: var(--white);
  background: var(--teal);
}

.sidebar-track:hover .track-arrow {
  color: var(--white);
}

.sidebar-track:hover .track-label,
.sidebar-track:hover .track-label i,
.sidebar-track.active-track .track-label,
.sidebar-track.active-track .track-label i {
  color: var(--white);
}

.track-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  color: var(--teal);
}

.track-label i {
  font-size: 28px;
  flex-shrink: 0;
  display: flex;
  font-size: 16px;
  color: var(--teal);
}

.sidebar-track.active-track {
  color: var(--white);
  background: var(--teal);
}

.track-arrow {
  font-size: 20px;
  transition: transform 0.2s;
  color: var(--teal);
}

.sidebar-track.active-track .track-arrow {
  transform: rotate(90deg);
  color: var(--white);
}

.sidebar-lessons {
  display: none;
  padding: 0 0 0.5rem;
}

.sidebar-track.active-track+.sidebar-lessons {
  display: block;
}

.lesson-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.15rem;
}

.lesson-link:hover {
  background: var(--teal-dim);
  color: var(--teal);
}

.lesson-link:hover .lesson-dur {
  color: var(--teal);
}

.lesson-link.active-lesson {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid var(--teal-border);
}

.lesson-link.active-lesson .lesson-dur {
  color: var(--teal);
}

.lesson-link.done-lesson .lesson-num {
  background: var(--teal);
  color: var(--black);
}

.lesson-num {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Roboto', sans-serif;
}

.lesson-link.active-lesson .lesson-num {
  background: var(--white);
  color: var(--teal);
}

.lesson-title {
  line-height: 1.3;
  flex: 1;
}

.lesson-dur {
  font-size: 14px;
  color: var(--black);
  flex-shrink: 0;
}

.sidebar-divider {
  height: 1px;
  background: var(--teal);
}

/* MAIN CONTENT */
.main-content {
  padding: 2.5rem 3rem;
}

.module-header {
  margin-bottom: 2rem;
}

.module-num {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.module-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.module-desc {
  font-size: 0.92rem;
  color: var(--card);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.module-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.meta-ico {
  font-size: 18px;
  color: var(--black);
}

.meta-txt {
  font-size: 18px;
  color: var(--teal);
}

/* LESSON CARD */
.lessons-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lesson-card {
  background:
    radial-gradient(120% 100% at 15% 15%, rgba(94, 234, 212, 0.9), transparent 60%),
    radial-gradient(100% 100% at 90% 10%, rgba(34, 211, 238, 0.75), transparent 55%),
    radial-gradient(120% 120% at 75% 85%, rgba(45, 212, 191, 0.85), transparent 60%),
    radial-gradient(100% 100% at 5% 90%, rgba(13, 148, 136, 0.9), transparent 55%),
    #2dd4bf;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  animation: fadeUp 0.4s ease both;
}

.lesson-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.lesson-card.locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.lesson-card.locked:hover {
  transform: none;
  border-color: var(--border);
}

.lesson-card.featured {
  border-color: var(--teal-border);
}

.lesson-card:nth-child(2) {
  animation-delay: 0.05s;
}

.lesson-card:nth-child(3) {
  animation-delay: 0.1s;
}

.lesson-card:nth-child(4) {
  animation-delay: 0.15s;
}

.lesson-card:nth-child(5) {
  animation-delay: 0.2s;
}

.lesson-card-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
}

.lesson-card-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(6, 6, 8, 0.35);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0B6E4F;
  flex-shrink: 0;
}

.lesson-card.featured .lesson-card-num {
  background: rgba(6, 6, 8, 0.35);
  border-color: var(--teal-border);
  color: #0B6E4F;
}

.lesson-card.done .lesson-card-num {
  color: var(--white);
}

.lesson-card-body {
  flex: 1;
}

.lesson-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.lesson-card-desc {
  font-size: 0.78rem;
  color: var(--black);
  line-height: 1.5;
}

.lesson-card-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lesson-dur-tag {
  font-size: 18px;
  color: var(--black);
}

.lesson-tag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.tag-free {
  background: rgba(2, 44, 34, 0.767);
  color: var(--teal);
  border: 1px solid var(--teal-border);
}

.tag-pro {
  background: rgb(217 157 56 / 78%);
  color: #7f4f00;
  border: 1px solid rgba(245, 166, 35, 0.25);
}

.tag-new {
  background: rgba(74, 158, 255, 0.1);
  color: var(--blue);
  border: 1px solid rgba(74, 158, 255, 0.25);
}

.lesson-arrow {
  color: var(--whhite);
  font-size: 16px;
  transition: transform 0.2s;
}

.lesson-arrow i {
  display: flex;
}

.lesson-card:hover .lesson-arrow {
  transform: translateX(4px);
  color: var(--white);
}

.lock-ico {
  font-size: 18px;
  color: var(--whte);
}

/* EXAM TRACK BOX */
.exam-track-box {
  background: linear-gradient(135deg, rgba(0, 265, 150, 53.08), rgba(0, 200, 150, 0.02));
  border: 1px solid var(--teal-border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 10px;
}

.exam-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.exam-ico {
  font-size: 1.75rem;
}

.exam-ico img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.exam-name {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.exam-info {
  font-size: 16px;
  color: var(--black);
}

.exam-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.exam-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(122, 10, 10, 0.315);
  color: var(--white);
  border: 1px solid var(--border);
}

.exam-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.exam-btn:hover {
  background: var(--white);
}

/* MODULE SELECTOR TABS */
.module-tabs {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.mod-tab {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 22px;
  border-radius: 5px;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.mod-tab:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: var(--teal);
}

.mod-tab.active-tab {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* SECTION DIVIDER */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.25rem;
}

.section-divider-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: var(--black);
}

/* FREE CTA */
.free-cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.free-cta-txt {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.free-cta-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
}

.free-cta-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.free-cta-btn:hover {
  background: var(--white);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE — tablet */
@media (max-width: 1280px) {
  .dept-stat-val {
    font-size: 30px;
  }

  .dept-stat-lbl {
    font-size: 16px;
  }

  .dept-badge {
    width: 450px;
    height: 350px;
  }
}

@media (max-width: 1160px) {
  .dept-hero {
    display: block;
  }
}

/* RESPONSIVE — tablet */
@media (max-width: 900px) {
  .dept-hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .dept-hero>div {
    width: 100%;
  }

  .dept-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    width: 100%;
    position: static;
    height: auto;
    border-right: none;
  }

  .main-content {
    padding: 1.5rem;
  }

  .module-tabs {
    width: 100%;
  }

  .dept-hero-right {
    display: block;
    text-align: center;
  }

  .dept-badge {
    width: 100%;
    max-width: 400px;
    height: 280px;
    margin: 0 auto;
  }

  .progress-bar {
    padding: 0.75rem 1.5rem;
    flex-direction: column;
  }
}

/* RESPONSIVE — mobile */
@media (max-width: 600px) {
  .dept-hero {
    padding: 20px 1rem 30px;
  }

  .dept-desc {
    font-size: 0.85rem;
  }

  .dept-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .dept-stat-val {
    font-size: 1.4rem;
  }

  .progress-bar {
    padding: 0.65rem 1rem;
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  .prog-label {
    font-size: 22px;
  }

  .prog-track-wrap {
    flex: 1 1 0px;
    min-width: 280px;
  }

  .prog-track {
    flex: 1 1 60px;
    min-width: 60px;
    max-width: none;
  }

  .prog-modules {
    flex-basis: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .main-content {
    padding: 1.25rem 1rem;
  }

  .module-title {
    font-size: 1.5rem;
  }

  .module-meta {
    gap: 0.85rem;
  }

  .module-tabs {
    gap: 0.3rem;
    margin-bottom: 1.75rem;
  }

  .mod-tab {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .lesson-card-inner {
    padding: 1rem;
    gap: 0.85rem;
    flex-direction: column;
    align-items: start;
  }

  .lesson-card-num {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .lesson-card-right {
    align-items: end;
    justify-content: end;
    gap: 0.35rem;
  }

  .exam-track-box {
    padding: 1.25rem;
  }

  .exam-left {
    width: 100%;
  }

  .free-cta {
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .free-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* PAGE LOADER */
html.is-loading,
html.is-loading body {
  overflow: hidden;
  height: 100%;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ecg {
  width: 380px;
  height: 100px;
}

.ecg-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ecg-track {
  fill: none;
  stroke: rgba(248, 246, 241, 0.1);
  stroke-width: 3;
  stroke-linejoin: round;
}

.ecg-pulse {
  fill: none;
  stroke: url(#ecgFade);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 22 78;
  stroke-dashoffset: 0;
  animation: ecgSweep 3s linear infinite;
  filter: drop-shadow(0 0 6px rgba(0, 200, 150, 0.6));
}

@keyframes ecgSweep {
  to {
    stroke-dashoffset: -100;
  }
}

/* INSURANCE — bonus module pricing tiers (insurance-dept.html) */
.bonus-pricing {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.bonus-pricing-head {
  margin-bottom: 1.5rem;
}

.bonus-pricing-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.bonus-pricing-desc {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.55);
  line-height: 1.6;
}

.bonus-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .bonus-tiers {
    grid-template-columns: 1fr;
  }
}

.bonus-tier-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}

.bonus-tier-card.featured {
  border-color: var(--teal-border);
  background: var(--teal-dim);
}

.bonus-tier-badge {
  position: absolute;
  top: -11px;
  right: 1.25rem;
  background: var(--teal);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.bonus-tier-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(248, 246, 241, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bonus-tier-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  margin: 0.4rem 0;
}

.bonus-tier-feat {
  font-size: 0.82rem;
  color: rgba(248, 246, 241, 0.6);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.bonus-tier-btn {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px;
  border: none;
  border-radius: 100px;
  background: var(--teal);
  color: var(--black);
  cursor: pointer;
}

.bonus-tier-btn:hover {
  background: var(--white);
}

.bonus-upgrade-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.7);
}

.bonus-upgrade-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border: none;
  border-radius: 100px;
  background: var(--teal);
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
}

.bonus-upgrade-btn:hover {
  background: var(--white);
}

/* FOOTER (dark, matches contact.css/join-team.css/home.css) */
footer {
  background: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4.5rem 3rem 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #F8F6F1;
}

.footer-logo span {
  color: #00C896;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.7;
  margin-top: 0.9rem;
}

.footer-cols {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00C896;
  margin-bottom: 0.3rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: rgba(248, 246, 241, 0.5);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #00C896;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(248, 246, 241, 0.25);
}

.footer-paypal-form {
  display: inline-block;
}

.footer-paypal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8F6F1;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #060608;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-paypal-btn img {
  height: 16px;
  width: auto;
  display: block;
}

.footer-paypal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
}

.footer-paypal-btn-pro {
  background: #00C896;
  color: #060608;
}

.footer-paypal-btn-pro:hover {
  background: #00b085;
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.25);
}

.footer-paypal-btn-pro.is-unlocked {
  background: rgba(0, 200, 150, 0.15);
  color: #00C896;
  cursor: default;
  box-shadow: none;
}

.footer-paypal-btn-pro.is-unlocked:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  footer {
    padding: 3.5rem 1.5rem 0;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-cols {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ============ COMING SOON (replaces the old interactive placeholder course) ============ */
.dept-coming-soon {
  max-width: 640px;
  margin: 0 auto;
  padding: 110px 24px 130px;
  text-align: center;
}

.dcs-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--teal);
}

.dcs-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.dept-coming-soon h1 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}

.dept-coming-soon p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 28px;
}

.dcs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--black);
  text-decoration: none;
  transition: .2s;
}

.dcs-cta:hover {
  background: var(--white);
}

@media (max-width: 640px) {
  .dept-coming-soon {
    padding: 70px 20px 90px;
  }
}
