/*
Theme Name: UniCLiQ Global
Author: Infineural Technologies
Description: Custom WordPress theme for UniCLiQ Global – Study in Australia landing page.
Version: 1.0.0
Text Domain: unicliq
*/

:root {
  --blue: #662c91;
  --blue-dark: #542477;
  --text: #1e293b;
  --text-mid: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-mid: #D1D5DB;
  --bg: #FFFFFF;
  --bg-soft: #F9FAFB;
  --bg-mid: #F3F4F6;
  --uwa: #003087;
  --uwa-tint: #E8EDF8;
  --nd: #6B4EA0;
  --nd-tint: #F3EEFF;
  --green: #3dba8f;
  --faq-bg: #f8fafc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -.3px; }
.logo-sub  { font-size: 11px; color: var(--text-muted); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-link  { font-size: 14px; color: var(--text-mid); text-decoration: none; }
.nav-link:hover { color: var(--blue); }
.btn-nav {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s;
  border: none;
  cursor: pointer;
}
.btn-nav:hover { background: var(--blue-dark); }

/* ── HERO ── */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.dot-live { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 18px;
}
h1 span { color: var(--blue); }
.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-facts {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.fact-num { font-size: 26px; font-weight: 700; color: var(--text); letter-spacing: -.04em; line-height: 1; }
.fact-num span { color: var(--blue); }
.fact-label { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* ── FORM CARD ── */
.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px 26px;
  position: sticky;
  top: 76px;
}
.form-card-title { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -.02em; margin-bottom: 4px; }
.form-card-sub   { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 18px;
}
.form-note { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 10px; line-height: 1.5; }

/* JetForms field overrides – homepage form-card + course page form-sidebar-body */
.form-card .jet-form-builder__field,
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card select,
.form-card textarea,
.form-sidebar-body .jet-form-builder__field,
.form-sidebar-body input[type="text"],
.form-sidebar-body input[type="email"],
.form-sidebar-body input[type="tel"],
.form-sidebar-body select,
.form-sidebar-body textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  padding: 9px 12px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.form-sidebar-body input:focus,
.form-sidebar-body select:focus,
.form-sidebar-body textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(102,44,145,.1);
}
.form-card .jet-form-builder__submit,
.form-card button[type="submit"],
.form-sidebar-body .jet-form-builder__submit,
.form-sidebar-body button[type="submit"] {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px;
  cursor: pointer;
  transition: background .15s;
  margin-top: 4px;
}
.form-card .jet-form-builder__submit:hover,
.form-card button[type="submit"]:hover,
.form-sidebar-body .jet-form-builder__submit:hover,
.form-sidebar-body button[type="submit"]:hover { background: var(--blue-dark); }
.form-card .jet-form-builder__label,
.form-card label,
.form-sidebar-body .jet-form-builder__label,
.form-sidebar-body label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── PARTNERS STRIP ── */
.partners-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.partners-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.partners-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); flex-shrink: 0; }
.partner-item   { display: flex; align-items: center; gap: 10px; }
.p-badge        { padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 800; color: #fff; }
.uwa-bg         { background: var(--uwa); }
.nd-bg          { background: var(--nd); }
.partner-detail { font-size: 13px; color: var(--text-mid); font-weight: 500; }
.partner-sub    { font-size: 11px; color: var(--text-light); }
.dot-div        { width: 4px; height: 4px; background: var(--border-mid); border-radius: 50%; flex-shrink: 0; }

/* ── SECTIONS ── */
.section { max-width: 1160px; margin: 0 auto; padding: 72px 24px; }
.bg-soft  { background: var(--bg-soft); }
.section-full-wrap { padding: 72px 0; }
.section-full-wrap .inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: 8px; }
h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: -.03em; color: var(--text); line-height: 1.2; margin-bottom: 10px; }
.section-desc   { font-size: 15px; color: var(--text-muted); max-width: 540px; line-height: 1.65; }
.section-header { margin-bottom: 40px; }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.ftab {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s;
}
.ftab:hover { color: var(--text); }
.ftab.active { color: var(--blue); font-weight: 600; border-bottom-color: var(--blue); }

/* ── COURSE LIST ── */
.course-list { display: flex; flex-direction: column; }
.course-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all .15s;
}
.course-row:first-child { border-top: 1px solid var(--border); }
.course-row:hover { background: var(--bg-soft); margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 8px; }
.badge-row  { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.badge-dot  { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.uwa-dot    { background: var(--uwa); }
.nd-dot     { background: var(--nd); }
.uwa-text   { color: var(--uwa); }
.nd-text    { color: var(--nd); }
.course-name  { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -.02em; margin-bottom: 6px; line-height: 1.25; }
.course-about { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 600px; margin-bottom: 14px; }
.course-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pill { font-size: 12px; font-weight: 500; color: var(--text-mid); background: var(--bg-mid); border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px; }
.course-meta-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.meta-pair  { display: flex; align-items: center; gap: 5px; font-size: 13px; }
.meta-key   { color: var(--text-light); }
.meta-val   { color: var(--text-mid); font-weight: 600; }
.acc-note   { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--green); font-weight: 500; margin-top: 10px; }
.course-ctas { display: flex; flex-direction: column; gap: 8px; min-width: 148px; padding-top: 28px; }
.btn-primary-sm {
  display: block; text-align: center;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  color: #fff; background: var(--blue); border: none; border-radius: 6px;
  padding: 9px 16px; text-decoration: none; cursor: pointer; transition: background .15s;
}
.btn-primary-sm:hover { background: var(--blue-dark); }
.btn-secondary-sm {
  display: block; text-align: center;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--text-mid); background: var(--bg); border: 1px solid var(--border-mid);
  border-radius: 6px; padding: 8px 16px; text-decoration: none; cursor: pointer; transition: all .15s;
}
.btn-secondary-sm:hover { border-color: var(--blue); color: var(--blue); }

/* ── FACTS ── */
.facts-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 40px;
}
.fact-block { padding: 32px 28px; border-right: 1px solid var(--border); }
.fact-block:last-child { border-right: none; }
.fact-big { font-size: 40px; font-weight: 700; letter-spacing: -.04em; color: var(--text); line-height: 1; margin-bottom: 6px; }
.fact-big span { color: var(--blue); }
.fact-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.fact-body  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.facts-row2 {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-top: none; border-radius: 0 0 10px 10px; overflow: hidden;
}

/* ── PROCESS ── */
.process-list {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 40px; position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: var(--border-mid);
}
.p-step  { padding: 0 24px 0 0; position: relative; z-index: 1; }
.p-num   { width: 40px; height: 40px; background: var(--bg); border: 1px solid var(--border-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 18px; }
.p-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.p-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── COMPARE ── */
.compare-layout { display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: start; margin-top: 40px; }
.compare-table  { width: 100%; border-collapse: collapse; }
.compare-table th { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 10px 14px; text-align: left; border-bottom: 2px solid var(--border); color: var(--text-muted); }
.compare-table th:nth-child(2) { color: var(--text-light); text-align: center; }
.compare-table th:nth-child(3) { color: var(--blue); text-align: center; }
.compare-table td { font-size: 14px; padding: 13px 14px; border-bottom: 1px solid var(--border); color: var(--text-mid); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:nth-child(1) { font-weight: 500; color: var(--text); }
.compare-table td:nth-child(2) { text-align: center; }
.compare-table td:nth-child(3) { text-align: center; font-weight: 600; color: var(--text); }
.compare-table tr:hover td { background: var(--bg-soft); }
.tick-yes { color: var(--green); font-size: 16px; }
.tick-no  { color: var(--text-light); font-size: 16px; }
.compare-text h3 { font-size: 22px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 12px; line-height: 1.3; font-family: 'Montserrat', sans-serif; }
.compare-text p  { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.detail-list     { list-style: none; }
.detail-list li  { font-size: 14px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.detail-list li:last-child { border-bottom: none; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--blue); padding: 56px 24px; text-align: center; }
.cta-banner h2 { font-size: clamp(24px,3vw,34px); font-weight: 700; color: #fff; letter-spacing: -.03em; margin-bottom: 12px; }
.cta-banner p  { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 28px; line-height: 1.6; }
.cta-actions   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white { font-family: 'Inter',sans-serif; font-size: 15px; font-weight: 700; background: #fff; color: var(--blue); border: none; border-radius: 6px; padding: 12px 26px; text-decoration: none; cursor: pointer; }
.btn-cta-ghost { font-family: 'Inter',sans-serif; font-size: 15px; font-weight: 600; background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); border-radius: 6px; padding: 12px 26px; text-decoration: none; }

/* ── FOOTER ── */
footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 56px 24px 32px; }
.footer-inner  { max-width: 1160px; margin: 0 auto; }
.footer-top    { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 10px 0 16px; max-width: 280px; }
.footer-contact a { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; margin-bottom: 5px; }
.footer-contact a:hover { color: var(--blue); }
.footer-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text); margin-bottom: 14px; }
.footer-col a  { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; margin-bottom: 9px; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: var(--text-light); }
.footer-legal  { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--text-light); text-decoration: none; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #25D366; color: #fff; width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: all .55s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .form-card { position: static; }
  .facts-grid, .facts-row2 { grid-template-columns: 1fr; }
  .fact-block { border-right: none; border-bottom: 1px solid var(--border); }
  .process-list { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-list::before { display: none; }
  .compare-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .course-row { grid-template-columns: 1fr; }
  .course-ctas { flex-direction: row; padding-top: 0; }
}
@media (max-width: 600px) {
  .process-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-facts { gap: 20px; flex-wrap: wrap; }
  nav .nav-link { display: none; }
}

/* ── COURSE PAGE ── */
.bc { max-width:1160px;margin:0 auto;padding:12px 24px;display:flex;align-items:center;gap:6px;font-size:13px;color:var(--text-muted);border-bottom:1px solid var(--border); }
.bc a { color:var(--blue);text-decoration:none; }
.bc a:hover { text-decoration:underline; }
.bc-sep { color:var(--border-mid);font-size:11px; }

.course-hero { position:relative;height:400px;overflow:hidden;background:#0a1628; }
.course-hero img { width:100%;height:100%;object-fit:cover;opacity:.38;display:block; }
.hero-overlay { position:absolute;inset:0;background:linear-gradient(105deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.28) 100%); }
.hero-content { position:absolute;bottom:0;left:0;right:0;padding:36px 24px;max-width:1160px;margin:0 auto; }
.hero-uni-tag { display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.22);border-radius:100px;padding:5px 14px;font-size:11px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.06em;margin-bottom:14px; }
.hero-uni-dot { width:8px;height:8px;background:var(--green);border-radius:2px;flex-shrink:0; }
.course-hero h1 { font-size:clamp(26px,3.8vw,42px);font-weight:700;color:#fff;letter-spacing:-.03em;line-height:1.15;margin-bottom:12px;max-width:660px; }
.hero-tagline { font-size:16px;color:rgba(255,255,255,.72);max-width:580px;line-height:1.6; }

.stats-bar { background:var(--blue); }
.stats-bar-inner { max-width:1160px;margin:0 auto;display:flex; }
.stat-item { flex:1;padding:18px 16px;text-align:center;border-right:1px solid rgba(255,255,255,.18); }
.stat-item:last-child { border-right:none; }
.stat-val { font-size:14px;font-weight:700;color:#fff;line-height:1; }
.stat-key { font-size:10px;color:rgba(255,255,255,.65);text-transform:uppercase;letter-spacing:.06em;margin-top:4px; }

.page-wrap { max-width:1160px;margin:0 auto;padding:48px 24px;display:grid;grid-template-columns:1fr 344px;gap:52px;align-items:start; }

.content-block { padding-bottom:44px;border-bottom:1px solid var(--border);margin-bottom:44px; }
.content-block:last-child { border-bottom:none;margin-bottom:0;padding-bottom:0; }
.block-label { font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--blue);margin-bottom:8px; }
.block-title { font-size:21px;font-weight:700;letter-spacing:-.025em;color:var(--text);margin-bottom:14px;line-height:1.3;font-family:'Montserrat',sans-serif; }
.prose { font-size:15px;color:var(--text-mid);line-height:1.72; }
.prose p { margin-bottom:14px; }
.prose p:last-child { margin-bottom:0; }

.img-wrap { border-radius:10px;overflow:hidden;margin:24px 0; }
.img-wrap img { width:100%;height:220px;object-fit:cover;display:block; }
.img-cap { font-size:12px;color:var(--text-light);padding:8px 12px;background:var(--bg-soft);border:1px solid var(--border);border-top:none;border-radius:0 0 10px 10px; }

.spec-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:16px; }
.spec-card { border:1px solid var(--border);border-radius:8px;padding:14px 15px;background:var(--bg-soft); }
.spec-card:hover { border-color:var(--blue); }
.spec-name { font-size:13px;font-weight:700;color:var(--text);margin-bottom:4px; }
.spec-desc { font-size:12px;color:var(--text-muted);line-height:1.5; }

.data-table { width:100%;border-collapse:collapse;margin-top:16px;font-size:13px; }
.data-table th { text-align:left;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--text-muted);padding:9px 12px;background:var(--bg-soft);border-bottom:2px solid var(--border); }
.data-table td { padding:11px 12px;border-bottom:1px solid var(--border);color:var(--text-mid);vertical-align:top; }
.data-table tr:last-child td { border-bottom:none; }
.data-table td:first-child { font-weight:600;color:var(--text); }
.tag { display:inline-block;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;padding:2px 7px;border-radius:4px;margin-top:3px; }
.tag-core { background:#DBEAFE;color:var(--blue); }
.tag-elective { background:#F3F4F6;color:var(--text-muted); }
.tag-project { background:#D1FAE5;color:var(--green); }

.reqs-table { width:100%;border-collapse:collapse;margin-top:16px; }
.reqs-table tr { border-bottom:1px solid var(--border); }
.reqs-table tr:last-child { border-bottom:none; }
.reqs-table td { padding:12px 0;font-size:14px;vertical-align:top; }
.reqs-table td:first-child { color:var(--text-muted);width:42%;padding-right:16px; }
.reqs-table td:last-child { color:var(--text);font-weight:600; }

.careers-grid { display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:16px; }
.career-card { border:1px solid var(--border);border-radius:8px;padding:14px 15px;background:var(--bg-soft);display:flex;gap:12px; }
.career-icon { font-size:22px;flex-shrink:0;line-height:1; }
.career-role { font-size:14px;font-weight:700;color:var(--text);margin-bottom:2px; }
.career-salary { font-size:12px;color:var(--green);font-weight:700;margin-bottom:4px; }
.career-desc { font-size:12px;color:var(--text-muted);line-height:1.5; }

.faq-list { margin-top:20px;display:flex;flex-direction:column;gap:0; }
.faq-list .faq-q-text {
  font-size:14px;font-weight:700;color:var(--text);
  padding:15px 18px;
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:8px 8px 0 0;
  margin-top:10px;
  display:flex;align-items:flex-start;gap:10px;
  line-height:1.4;
}
.faq-list .faq-q-text::before {
  content:'Q';
  flex-shrink:0;
  font-size:10px;font-weight:800;letter-spacing:.05em;
  color:var(--blue);
  background:rgba(102,44,145,.1);
  border-radius:4px;
  padding:2px 6px;
  margin-top:1px;
}
.faq-list .faq-a-text {
  font-size:14px;color:var(--text-muted);line-height:1.65;
  padding:13px 18px 15px;
  background:var(--bg);
  border:1px solid var(--border);border-top:none;
  border-radius:0 0 8px 8px;
  margin-bottom:0;
}
.faq-list .faq-q-text:first-of-type { margin-top:0; }

.sidebar { position:sticky;top:76px;display:flex;flex-direction:column;gap:14px; }

.glance-card { border:1px solid var(--border);border-radius:12px;overflow:hidden; }
.glance-head { background:var(--bg-soft);padding:13px 18px;border-bottom:1px solid var(--border);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--text-muted); }
.glance-row { display:flex;justify-content:space-between;align-items:flex-start;padding:11px 18px;border-bottom:1px solid var(--border);font-size:13px;gap:10px; }
.glance-row:last-child { border-bottom:none; }
.glance-key { color:var(--text-muted);flex-shrink:0; }
.glance-val { font-weight:600;color:var(--text);text-align:right; }
.glance-val-green { font-weight:700;color:var(--green);text-align:right; }

.form-sidebar { border:1px solid var(--border);border-radius:12px;overflow:hidden; }
.form-sidebar-head { background:var(--blue);padding:20px 22px; }
.form-sidebar-title { font-size:16px;font-weight:700;color:#fff;margin-bottom:4px; }
.form-sidebar-sub { font-size:13px;color:rgba(255,255,255,.75);line-height:1.4; }
.form-sidebar-body { padding:20px 22px 22px;background:var(--bg-soft); }
.form-sidebar-body .free-badge { margin-bottom:16px; }
.form-sidebar-body .form-note { margin-top:10px; }

@media (max-width:900px) {
  .page-wrap { grid-template-columns:1fr;gap:36px; }
  .sidebar { position:static; }
  .spec-grid { grid-template-columns:1fr 1fr; }
  .careers-grid { grid-template-columns:1fr; }
  .stats-bar-inner { flex-wrap:wrap; }
  .stat-item { min-width:33%;border-bottom:1px solid rgba(255,255,255,.15); }
}
@media (max-width:600px) {
  .course-hero { height:300px; }
  .spec-grid { grid-template-columns:1fr; }
}

/* ── THANK YOU PAGE ── */
.ty-page {
  background: linear-gradient(160deg, #1a0a2e 0%, #2d1154 60%, #3d1a70 100%);
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 5%; position: relative; overflow: hidden;
}
.ty-page::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(102,44,145,0.2) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(61,186,143,0.08) 0%, transparent 50%);
}
.ty-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 64px 56px;
  max-width: 680px; width: 100%; text-align: center;
  position: relative; z-index: 2; backdrop-filter: blur(8px);
}
.ty-icon-wrap {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(61,186,143,0.12); border: 2px solid rgba(61,186,143,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  animation: ty-pulse 2.5s ease-in-out infinite;
}
@keyframes ty-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,186,143,0.25); }
  50%       { box-shadow: 0 0 0 18px rgba(61,186,143,0); }
}
.ty-icon { width: 40px; height: 40px; stroke: #3dba8f; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ty-icon .checkmark { stroke-dasharray: 60; stroke-dashoffset: 60; animation: ty-draw 0.7s ease forwards 0.3s; }
@keyframes ty-draw { to { stroke-dashoffset: 0; } }
.ty-tag { font-size: 11px; font-weight: 700; color: #3dba8f; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.ty-card h1 { font-size: 40px; font-weight: 900; color: white; line-height: 1.1; margin-bottom: 18px; font-family: 'Montserrat', sans-serif; }
.ty-card h1 span { color: #a78bfa; }
.ty-intro { font-size: 17px; color: #CBD5E1; line-height: 1.75; margin-bottom: 40px; }
.ty-intro strong { color: #e2e8f0; font-weight: 600; }
.ty-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 36px; }
.ty-steps-label { font-size: 11px; font-weight: 700; color: #c4b5fd; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.ty-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; text-align: left; }
.ty-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 16px 20px;
}
.ty-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: white;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Montserrat', sans-serif;
}
.ty-step-text { font-size: 14px; color: #CBD5E1; line-height: 1.6; }
.ty-step-text strong { color: #e2e8f0; display: block; margin-bottom: 2px; font-weight: 600; }
.ty-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ty-btn-primary {
  background: var(--blue); color: white; padding: 14px 32px;
  border-radius: 7px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.25s; display: inline-block; border: 2px solid var(--blue);
}
.ty-btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(102,44,145,.35); }
.ty-btn-ghost {
  background: transparent; color: #CBD5E1; padding: 14px 30px;
  border-radius: 7px; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all 0.25s; display: inline-block; border: 2px solid rgba(255,255,255,0.16);
}
.ty-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }
.ty-reassure { margin-top: 28px; font-size: 12px; color: #475569; display: flex; align-items: center; justify-content: center; gap: 6px; }
.ty-reassure::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #3dba8f; flex-shrink: 0; }
@media (max-width: 768px) {
  .ty-card { padding: 40px 24px; }
  .ty-card h1 { font-size: 28px; }
  .ty-intro { font-size: 15px; }
  .ty-ctas { flex-direction: column; }
  .ty-btn-primary, .ty-btn-ghost { text-align: center; }
}
