/* ============ TOKENS ============ */
:root {
  --c-text:        #2e3948;
  --c-heading:     #1f2937;
  --c-heading-dk:  #0d1f30;
  --c-muted:       #6b7280;
  --c-muted-2:     #9ca3af;
  --c-blue:        #187fd3;
  --c-blue-dk:     #1565b0;
  --c-bg:          #ffffff;
  --c-bg-soft:     #f8fafb;
  --c-bg-soft-2:   #f8f8f8;
  --c-border:      #e2e7ed;
  --c-red:         #dc2626;
  --c-green:       #10b981;
  --c-green-soft:  #d1fae5;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-pill:   999px;
  --shadow-card:   0 2px 12px rgba(15, 31, 48, 0.06);
  --shadow-soft:   0 8px 30px rgba(15, 31, 48, 0.08);
  --font:          'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
[hidden] { display: none !important; }
body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--c-blue); }
.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.dot-kicker::before {
  content: '•';
  color: var(--c-blue);
  margin-right: 6px;
  font-size: 14px;
}
.subline {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin: 28px 0 16px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  padding: 16px 0 0;
}
.header-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 24px;
}
.logo-mark { display: inline-flex; }
.logo-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: #fff;
  background: var(--c-blue);
  padding: 2px 14px;
  margin-top: 2px;
  border-radius: 2px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  margin-left: 18px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-heading);
  white-space: nowrap;
}
.nav-link:hover { color: var(--c-blue); }
.caret { font-size: 10px; opacity: 0.7; margin-left: 2px; }
.nav-lang { font-weight: 600; }

.header-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--c-heading-dk);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-btn {
  background: #d6e9f5;
}

/* ============ HERO ============ */
.hero { padding: 80px 0 30px; text-align: center; }
.hero-title {
  font-size: 44.8px;
  font-weight: 500;
  line-height: 1.18;
  color: var(--c-heading);
  margin: 0 0 26px;
}
.hero-sub {
  font-size: 16px;
  color: var(--c-text);
  margin: 0;
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ============ COURSE GRID HEADER ============ */
.course-grid-section { padding: 40px 24px 80px; }
.grid-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}
.section-title {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin: 0;
  white-space: nowrap;
}
.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  height: 48px;
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--c-text);
  font-family: inherit;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.pill {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--c-text);
  transition: all .15s;
}
.pill:hover { border-color: var(--c-blue); color: var(--c-blue); }
.pill.active {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}

/* ============ COURSE CARD GRID ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.course-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.card-cover {
  position: relative;
  aspect-ratio: 1 / 0.85;
  padding: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.card-cover > * { position: relative; z-index: 1; }
.cover-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 700;
  background: rgba(24,127,211,.9);
  padding: 3px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.cover-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--c-blue);
  padding: 3px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.cover-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 6px;
}
.cover-cert {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #1f4f8a;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 8px;
  border-radius: 4px;
  line-height: 1.2;
  text-align: center;
  border: 2px solid #1f4f8a;
}
.cover-pill {
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  color: var(--c-heading-dk);
  padding: 4px 14px;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: auto;
}
.cover-pill.purple { background: #fff; color: #5b3aa3; }
.atd-pill { color: #1f4f8a; }
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--c-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body .kicker {
  font-size: 10px;
  margin-bottom: 6px;
  color: var(--c-muted);
}
.card-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.35;
  min-height: 36px;
}
.card-desc {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0 0 10px;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.stars { color: #f5a623; letter-spacing: 1px; font-size: 12px; }
.rating-num { color: var(--c-muted); font-weight: 600; font-size: 11px; }
.meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--c-blue);
  display: inline-block;
  position: relative;
}
.dot::before {
  content: '';
  position: absolute;
  width: 1.5px;
  height: 5px;
  background: var(--c-blue);
  top: 1.5px;
  left: 50%;
  transform: translateX(-50%);
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-heading-dk);
  margin-bottom: 8px;
}
.price-blue { color: var(--c-blue); }
.price-old {
  font-size: 12px;
  color: var(--c-muted);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 4px;
}
.installment {
  display: inline-block;
  background: var(--c-green-soft);
  color: #047857;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  width: fit-content;
}
.enroll-btn {
  background: var(--c-blue);
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  margin-top: auto;
  transition: background .15s;
}
.enroll-btn:hover { background: var(--c-blue-dk); }

.empty-state {
  text-align: center;
  color: var(--c-muted);
  font-size: 14px;
  padding: 60px 20px;
  margin: 0;
}

.discover-wrap { text-align: center; margin-top: 50px; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-pill);
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-heading);
}
.btn-outline:hover { border-color: var(--c-blue); color: var(--c-blue); }

/* ============ FEATURED PATHS ============ */
.paths-section { padding: 40px 0 80px; background: #fff; }
.paths-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.path-tab {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-border);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text);
}
.path-tab.active { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.paths-slider {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent);
}
.paths-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: paths-scroll 40s linear infinite;
}
.paths-track:hover { animation-play-state: paused; }
.paths-slide {
  flex: 0 0 auto;
  width: 360px;
  aspect-ratio: 560 / 692;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-soft);
  box-shadow: var(--shadow-card);
  display: block;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none;
}
.paths-slide:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15, 31, 48, 0.18);
}
.paths-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.paths-slide:hover img { transform: scale(1.04); }
@keyframes paths-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 9px)); }
}

/* ============ PARTNER STRIP ============ */
.partner-strip { padding: 40px 24px; }
.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-row.tighter { padding: 18px 0; gap: 36px; justify-content: flex-start; }
.logo-row.light { padding: 18px 0; }
.logo-cell {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-heading-dk);
  text-align: center;
  letter-spacing: 0.02em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: transform .35s ease, filter .35s ease;
  transform-origin: center;
  filter: grayscale(0.2);
}
.logo-cell:hover {
  transform: scale(1.18);
  filter: grayscale(0);
}
.logo-cell small { font-size: 8px; font-weight: 600; color: var(--c-muted); letter-spacing: 0.1em; }
.logo-cell.red {
  background: #d63333;
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 22px;
}
.logo-cell.uni {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-muted);
}

/* ============ STATS ============ */
.stats-section { padding: 60px 24px; text-align: center; }
.big-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--c-heading-dk);
  margin: 0 0 50px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 6px;
}
.stat-num sup { font-size: 18px; font-weight: 600; }
.stat-label { font-size: 13px; color: var(--c-text); }

/* ============ OUR SERVICES ============ */
.services-section { padding: 60px 24px; }
.services-head { margin-bottom: 14px; }
.services-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  row-gap: 0;
}
.services-grid .service-row:nth-child(odd) { grid-column: 2; }
.services-grid .service-row:nth-child(even) { grid-column: 3; }
.service-row {
  padding: 22px 6px;
  border-top: 1px solid var(--c-border);
  font-size: 18px;
  color: var(--c-heading-dk);
  font-weight: 500;
  cursor: pointer;
}
.service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.service-name {
  transition: color .25s ease;
}
.service-num {
  color: var(--c-muted-2);
  font-size: 11px;
  font-weight: 500;
  transition: color .25s ease;
}
.services-grid .service-row:last-child,
.services-grid .service-row:nth-last-child(2) { border-bottom: 1px solid var(--c-border); }

.service-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease, margin-top .35s ease;
  margin-top: 0;
}
.service-detail p {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 360px;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.learn-more svg { transition: transform .2s ease; }
.learn-more:hover svg { transform: translate(2px, -2px); }

.service-row:hover .service-name { color: var(--c-blue); }
.service-row:hover .service-detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 14px;
}

/* ============ GATEWAY ============ */
.gateway-section { padding: 60px 0; }
.gateway-section .container { padding: 0 24px; }
.huge-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--c-heading-dk);
  margin: 0 0 30px;
}
.bold-sub {
  font-size: 14px;
  font-weight: 700;
  max-width: 460px;
  color: var(--c-heading-dk);
  margin: 0 0 20px;
}

/* gateway auto-slider */
.gateway-slider {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent);
}
.gateway-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: gateway-scroll 35s linear infinite;
}
.gateway-track-rev { animation: gateway-scroll-rev 40s linear infinite; }
.gateway-track:hover, .gateway-track-rev:hover { animation-play-state: paused; }
.gateway-card {
  flex: 0 0 auto;
  width: 220px;
  height: 150px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  text-decoration: none;
}
.gateway-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 31, 48, 0.10);
  border-color: var(--c-blue);
}
.gateway-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter .3s ease;
}
.gateway-card:hover img { filter: grayscale(0); }
.uni-card span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-muted);
}
@keyframes gateway-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 9px)); }
}
@keyframes gateway-scroll-rev {
  from { transform: translateX(calc(-50% - 9px)); }
  to   { transform: translateX(0); }
}

/* ============ DOWNLOAD (parallax bg) ============ */
.download-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}
.download-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://academy.tharwah.net/wp-content/uploads/2024/11/company_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
.download-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,31,48,0.18) 0%, rgba(13,31,48,0.30) 100%);
}
.download-wrap { display: flex; justify-content: center; }
.download-card {
  background: #fff;
  border-radius: 28px;
  padding: 48px 56px;
  width: 100%;
  max-width: 760px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 31, 48, 0.18);
}
.download-card h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--c-heading-dk);
  margin: 0 0 20px;
  line-height: 1.2;
}
.d-sub {
  color: var(--c-heading-dk);
  font-size: 15px;
  margin: 0 0 6px;
}
.d-sub b { font-weight: 700; }
.d-helper {
  color: var(--c-muted);
  font-size: 12px;
  margin: 0 0 28px;
}
.download-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.d-opt {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.d-opt:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15,31,48,0.12);
  border-color: var(--c-blue);
}
.d-opt b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-heading-dk);
  margin: 4px 0 8px;
  line-height: 1.3;
}
.d-opt small { font-size: 11px; color: var(--c-muted); line-height: 1.4; }
.d-icon, .h-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(24,127,211,.1);
  color: var(--c-blue);
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* ============ TRUSTED ============ */
.trusted-section { padding: 30px 24px 60px; }

/* ============ HELP (parallax bg) ============ */
.help-section {
  position: relative;
  padding: 110px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.help-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://academy.tharwah.net/wp-content/uploads/2024/11/company_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
.help-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,31,48,0.62) 0%, rgba(13,31,48,0.38) 60%, rgba(13,31,48,0.30) 100%);
}
.help-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.help-text { color: #fff; }
.huge-title.light { color: #fff; }
.help-tagline {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  margin: 18px 0 0;
  max-width: 360px;
  line-height: 1.6;
}
.help-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 36px;
  color: var(--c-text);
  box-shadow: 0 24px 60px rgba(15, 31, 48, 0.22);
}
.help-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-heading-dk);
  text-align: center;
  margin: 0 0 6px;
}
.help-sub {
  font-size: 12px;
  color: var(--c-muted);
  margin: 0 0 24px;
  text-align: center;
}
.help-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.h-opt {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.h-opt:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,31,48,0.12);
  border-color: var(--c-blue);
}
.h-opt b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-heading-dk);
  margin: 4px 0 6px;
  line-height: 1.3;
}
.h-opt small { font-size: 10px; color: var(--c-muted); line-height: 1.4; }

/* ============ TESTIMONIAL SLIDER ============ */
.testimonial-section { padding: 60px 24px; }

.t-slider {
  position: relative;
  margin-top: 30px;
  min-height: 280px;
}
.t-slide {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: flex-start;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity .5s ease, transform .5s ease, visibility 0s linear .5s;
}
.t-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity .5s ease, transform .5s ease, visibility 0s;
}

.t-author { text-align: center; padding-top: 8px; }
.t-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg,#3a4658,#1f2937);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-author h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--c-heading-dk);
  margin: 0 0 6px;
}
.t-author small {
  color: var(--c-muted);
  font-size: 12px;
  line-height: 1.5;
  display: block;
  max-width: 280px;
  margin: 0 auto;
}

.t-quote {
  position: relative;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.75;
  padding: 8px 60px;
  max-width: 760px;
}
.t-quote p { margin: 0; }
.t-mark-open, .t-mark-close {
  position: absolute;
  display: inline-block;
  line-height: 0;
}
.t-mark-open { top: -2px; left: 0; }
.t-mark-close { bottom: -2px; right: 0; }

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.t-progress {
  width: 280px;
  height: 3px;
  background: var(--c-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.t-progress-fill {
  height: 100%;
  background: var(--c-blue);
  width: 33.33%;
  border-radius: var(--radius-pill);
  transition: width .4s ease;
}
.t-arrows { display: flex; gap: 10px; }
.t-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: #fff;
  color: var(--c-heading-dk);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.t-arrow:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: #fff;
}

/* ============ EMPOWER BANNER (parallax bg) ============ */
.empower-banner {
  position: relative;
  padding: 110px 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.empower-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://academy.tharwah.net/wp-content/uploads/2024/11/company_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
.empower-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,31,48,0.55) 0%, rgba(13,31,48,0.30) 70%, rgba(13,31,48,0.15) 100%);
}
.banner-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ============ FAQ ============ */
.faq-section { padding: 60px 24px; }
.faq-list { margin-top: 30px; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-heading-dk);
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  color: var(--c-blue);
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item p {
  margin: 14px 0 0;
  color: var(--c-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ============ ACCREDITED ============ */
.accredited-section {
  text-align: center;
  padding: 80px 24px;
  background: #f4f9fc;
}
.accredited-section h3 {
  font-size: 26px;
  font-weight: 500;
  color: var(--c-heading-dk);
  line-height: 1.4;
  margin: 0 0 40px;
}
.accred-logo img {
  display: inline-block;
  height: 90px;
  max-width: 320px;
  object-fit: contain;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #fff;
  padding: 60px 0 24px;
  color: var(--c-text);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 0 24px 30px;
}
.footer-mission {
  font-size: 22px;
  font-weight: 500;
  color: var(--c-heading-dk);
  line-height: 1.4;
  margin: 0;
  max-width: 540px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.footer-logo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: #fff;
  background: var(--c-blue);
  padding: 3px 18px;
  border-radius: 2px;
}

.footer-divider {
  height: 1px;
  background: var(--c-border);
  margin-bottom: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 0 24px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 18px;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--c-heading-dk);
  font-weight: 500;
  margin-bottom: 12px;
  width: 100%;
}
.footer-col a:hover { color: var(--c-blue); }
.footer-col a .ext {
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 400;
}
.footer-col a:hover .ext { color: var(--c-blue); }
.footer-col-contact {
  align-items: flex-end;
}
.payments {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}
.payments .pay {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 22px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-tvtc img {
  height: 40px;
  max-width: 160px;
  object-fit: contain;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-meta small { font-size: 11px; color: var(--c-muted); }
.footer-legal {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px;
  color: var(--c-heading-dk);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-legal a:hover { color: var(--c-blue); }
.footer-legal .ext { font-size: 11px; color: var(--c-muted); font-weight: 400; }

/* ============================================================
   COURSE DETAIL PAGE
   ============================================================ */
.course-shell { position: relative; }
.course-hero-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 460px;
  background:
    linear-gradient(180deg, rgba(13,31,48,0.90), rgba(13,31,48,0.95)),
    url('https://academy.tharwah.net/wp-content/uploads/2024/11/company_bg.jpg') center/cover;
  z-index: 0;
}
.course-shell-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 372px;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 70px;
  align-items: start;
}
.cs-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.course-hero-main { max-width: 640px; color: #fff; padding-bottom: 18px; }
.hero-cert-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  color: #1f4f8a;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 26px;
  line-height: 1.1;
  text-align: center;
}
.hero-cert-badge b { font-size: 20px; letter-spacing: 0.04em; }
.hero-cert-badge small { font-size: 7px; font-weight: 700; margin: 3px 0; letter-spacing: 0.05em; }
.hero-cert-badge span { font-size: 7px; border-top: 1px solid #ccd; padding-top: 3px; }
.course-hero-main h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 22px;
  color: #fff;
}
.course-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0 0 24px;
}
.hero-tags { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.hero-pill.trending {
  background: rgba(16,185,129,0.18);
  color: #34d399;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}
.hero-rating .stars { color: #f5a623; letter-spacing: 1px; }
.hero-accred { font-size: 11px; color: rgba(255,255,255,0.55); margin: 0; }

.course-meta-wrap { margin: 4px 0; }
.course-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.meta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.meta-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 8px 22px rgba(15,31,48,0.06);
}
.meta-icon {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(24,127,211,0.1);
  display: flex; align-items: center; justify-content: center;
}
.meta-card b { display: block; font-size: 14px; color: var(--c-heading-dk); margin-bottom: 2px; }
.meta-card small { font-size: 12px; color: var(--c-muted); }

/* sticky section nav */
.course-tabs {
  position: sticky;
  top: 58px;
  z-index: 45;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .25s ease;
}
.course-tabs.is-stuck {
  box-shadow: 0 6px 20px rgba(15, 31, 48, 0.08);
}
html { scroll-behavior: smooth; }
:target { scroll-margin-top: 120px; }
[id="overview"], [id="outcomes"], [id="outline"],
[id="testimonials"], [id="faq"] { scroll-margin-top: 120px; }
.course-tabs-row { display: flex; gap: 34px; }
.ct-link {
  padding: 18px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  border-bottom: 2px solid transparent;
}
.ct-link:hover { color: var(--c-blue); }
.ct-link.active { color: var(--c-blue); border-bottom-color: var(--c-blue); }

/* main content column */
.course-content { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.course-card-block {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
}
.block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-heading-dk);
  margin: 0 0 22px;
}
.bt-bar { width: 6px; height: 26px; background: var(--c-blue); border-radius: 4px; }
.overview-grid, .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 14px;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 17px; height: 17px;
  background: var(--c-blue);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-col h4 { font-size: 18px; font-weight: 600; color: var(--c-heading-dk); margin: 0 0 10px; }
.why-col p { font-size: 13px; color: var(--c-muted); line-height: 1.65; margin: 0; }

.cert-banner {
  background: linear-gradient(120deg,#0d1f30,#1a4a7a);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cb-kicker { font-size: 11px; letter-spacing: 0.16em; font-weight: 700; color: rgba(255,255,255,0.7); }
.cert-banner h3 { font-size: 22px; font-weight: 700; margin: 10px 0 0; line-height: 1.3; }
.cert-banner-art { position: relative; flex: 0 0 160px; height: 90px; }
.cb-doc {
  position: absolute;
  width: 90px; height: 70px;
  background: #fff;
  border-radius: 6px;
  top: 10px; left: 10px;
  transform: rotate(-6deg);
}
.cb-doc-2 { left: 50px; top: 16px; transform: rotate(6deg); background: #e8eef5; }
.cb-seal {
  position: absolute;
  right: 6px; top: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.outline-list { display: flex; flex-direction: column; gap: 12px; }
.outline-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.outline-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-heading-dk);
  cursor: pointer;
  list-style: none;
}
.outline-item summary::-webkit-details-marker { display: none; }
.oi-plus { color: var(--c-blue); font-size: 20px; transition: transform .2s; }
.outline-item[open] .oi-plus { transform: rotate(45deg); }
.outline-item p { margin: 14px 0 0; font-size: 13px; color: var(--c-muted); line-height: 1.6; }

.course-testimonial {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.ct-quote-mark { margin-bottom: 16px; }
.ct-quote-text { font-size: 14px; color: var(--c-text); line-height: 1.8; margin: 0 0 24px; }
.ct-quote-foot { display: flex; justify-content: space-between; align-items: center; }
.ct-author { display: flex; align-items: center; gap: 14px; }
.ct-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg,#3a4658,#1f2937);
  display: flex; align-items: center; justify-content: center;
}
.ct-author b { display: block; font-size: 14px; color: var(--c-heading-dk); }
.ct-author small { font-size: 11px; color: var(--c-muted); }
.ct-nav { display: flex; gap: 8px; }
.ct-nav button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: #fff;
  color: var(--c-heading-dk);
  display: flex; align-items: center; justify-content: center;
}
.ct-nav button:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }

.course-stats {
  background: var(--c-bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.cs-kicker { font-size: 12px; font-weight: 600; color: var(--c-blue); margin: 0 0 10px; }
.course-stats h3 { font-size: 24px; font-weight: 700; color: var(--c-heading-dk); margin: 0 0 12px; line-height: 1.25; }
.cs-sub { font-size: 13px; color: var(--c-muted); margin: 0; }
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cs-stat b { display: block; font-size: 28px; font-weight: 700; color: var(--c-blue); }
.cs-stat small { font-size: 12px; color: var(--c-text); }
.cs-wide { grid-column: span 2; }

.lms-banner {
  background: linear-gradient(120deg,#187fd3,#0d4f8c);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lms-kicker { font-size: 11px; letter-spacing: 0.14em; opacity: 0.8; }
.lms-banner h3 { font-size: 22px; font-weight: 700; margin: 10px 0 0; line-height: 1.3; }
.lms-art { font-size: 40px; }

.course-faq { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px 34px; }
.faq-heading { font-size: 30px; font-weight: 600; color: var(--c-heading-dk); margin: 0 0 20px; line-height: 1.2; }

.lead-form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
}
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.lead-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  color: var(--c-text);
  outline: none;
}
.lead-form input:focus { border-color: var(--c-blue); }
.lf-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.lf-chip {
  padding: 8px 18px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--c-text);
  cursor: pointer;
}
.lf-chip.active, .lf-chip:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.lf-submit {
  background: var(--c-blue);
  color: #fff;
  border: none;
  padding: 13px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
}
.lf-submit:hover { background: var(--c-blue-dk); }

/* sticky enroll sidebar — starts over the dark band, sticks on scroll */
.course-side {
  position: sticky;
  top: 80px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.enroll-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
}
.enroll-title { font-size: 24px; font-weight: 700; color: var(--c-heading-dk); margin: 0 0 6px; }
.enroll-sub { font-size: 13px; color: var(--c-muted); margin: 0 0 20px; }
.enroll-price { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.ep-old { font-size: 14px; color: var(--c-muted); text-decoration: line-through; }
.ep-new { font-size: 26px; font-weight: 700; color: var(--c-heading-dk); }
.ep-save { background: var(--c-green-soft); color: #047857; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-sm); }
.enroll-note { font-size: 12px; color: var(--c-green); margin-bottom: 20px; }
.enroll-field { display: block; margin-bottom: 14px; }
.enroll-field span { display: block; font-size: 12px; color: var(--c-muted); margin-bottom: 6px; }
.enroll-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  color: var(--c-text);
  background: #fff;
}
.enroll-btn {
  width: 100%;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  border: none;
  margin-top: 8px;
}
.enroll-btn.primary { background: var(--c-blue); color: #fff; }
.enroll-btn.primary:hover { background: var(--c-blue-dk); }
.enroll-btn.ghost { background: #fff; color: var(--c-blue); border: 1px solid var(--c-blue); }
.enroll-btn.ghost:hover { background: rgba(24,127,211,0.06); }
.accred-box {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.ab-title { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--c-muted); text-transform: uppercase; }
.ab-logos img { height: 56px; margin-top: 14px; object-fit: contain; }

.related-section { padding: 60px 24px; }
.related-title { font-size: 28px; font-weight: 600; color: var(--c-heading-dk); margin: 0 0 30px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.enroll-btn-sm {
  background: var(--c-blue);
  color: #fff;
  border: none;
  padding: 11px;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-top: auto;
}
.enroll-btn-sm:hover { background: var(--c-blue-dk); }

@media (max-width: 980px) {
  .course-shell-grid { grid-template-columns: 1fr; }
  .course-side { position: static; order: -1; }
  .course-hero-band { height: 360px; }
  .course-meta-grid { grid-template-columns: repeat(2,1fr); }
  .overview-grid, .why-grid, .course-stats, .cert-banner, .lms-banner { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .course-hero-main h1 { font-size: 28px; }
}
@media (max-width: 560px) {
  .course-meta-grid { grid-template-columns: 1fr; }
  .lf-row { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .course-tabs-row { gap: 18px; overflow-x: auto; }
}

/* ============ FAB ============ */
.chat-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(24,127,211,.4);
  z-index: 90;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
}
@media (max-width: 880px) {
  .primary-nav { display: none; }
  .grid-header { flex-direction: column; align-items: stretch; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .paths-row { grid-template-columns: repeat(2, 1fr); }
  .help-wrap { grid-template-columns: 1fr; }
  .testimonial-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-row:nth-child(odd),
  .services-grid .service-row:nth-child(even) { grid-column: 1; }
  .hero-title { font-size: 32px; }
  .huge-title { font-size: 38px; }
}
@media (max-width: 540px) {
  .cards-grid { grid-template-columns: 1fr; }
  .paths-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .download-options, .help-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
