/* ====================================================
   RESET
==================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  background: #ffffff;
  color: #0f172a;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
}
h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.15;
  color: #0f172a;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.course-page {
  font-family: "Open Sans", sans-serif;
  color: #1a1e35;
}
body.course-page h1,
body.course-page h2,
body.course-page h3,
body.course-page h4 {
  color: #1a1e35;
}
:root {
  --bg: #ffffff;
  --bg2: #f8f9fc;
  --bg3: #f1f4f9;
  --bg4: #eaecf5;
  --surface: #ffffff;
  --orange: #e85d04;
  --orange-lt: #fff3ec;
  --orange-md: #ffd5b8;
  --gold: #d97706;
  --cyan: #0891b2;
  --green: #059669;
  --purple: #7c3aed;
  --text: #0f172a;
  --text2: #1e293b;
  --muted: #52637a;
  --muted2: #94a3b8;
  --ph: #b0bec5;
  --border: #e2e8f0;
  --border-c: #e2e8f0;
  --border-md: #cbd5e1;
  --border-o: #ffc9a0;
  --sh-sm: 0 1px 4px rgba(15, 23, 42, 0.07);
  --sh-md: 0 4px 16px rgba(15, 23, 42, 0.09);
  --sh-lg: 0 10px 36px rgba(15, 23, 42, 0.11);
  --sh-xl: 0 20px 56px rgba(15, 23, 42, 0.13);
  --r: 8px;
  --r2: 12px;
  --nav-orange: #f47920;
  --nav-orange-dark: #d9651a;
  --nav-orange-lt: #fff3ea;
  --navy: #003399;
  --navy-lt: #eef2ff;
  --border-nav: #dde3f0;
  --ft-bg: #0b1228;
  --ft-card: #111d38;
  --ft-line: rgba(255, 255, 255, 0.08);
  --ft-text: rgba(255, 255, 255, 0.62);
  --ft-hi: rgba(255, 255, 255, 0.9);
  --ft-muted: rgba(255, 255, 255, 0.32);
  --wa: #25d366;
  --wa-dark: #1da851;
  --tap: 44px;
}
#notice-bar {
  background: var(--navy);
  position: relative;
  overflow: clip;
  max-height: 56px;
  transition:
    max-height 0.38s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
  opacity: 1;
}
#notice-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 18px,
    rgba(255, 255, 255, 0.03) 18px,
    rgba(255, 255, 255, 0.03) 19px
  );
}
#notice-bar.dismissed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.notice-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.n-badge {
  background: var(--nav-orange);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px 3px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.5;
}
.n-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.n-text strong {
  color: #fff;
  font-weight: 600;
}
.n-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.n-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.18s;
  white-space: nowrap;
}
.n-link:hover {
  color: #fff;
}
.n-link svg {
  flex-shrink: 0;
}
.n-sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.n-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--nav-orange);
  white-space: nowrap;
  transition: opacity 0.18s;
}
.n-cta:hover {
  opacity: 0.78;
}
.n-cta svg {
  transition: transform 0.2s;
}
.n-cta:hover svg {
  transform: translateX(3px);
}
.n-close {
  min-width: var(--tap);
  min-height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  padding: 0 2px;
  transition: color 0.18s;
}
.n-close:hover {
  color: #fff;
}
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
}
#navbar {
  background: #fff;
  border-bottom: 3px solid var(--nav-orange);
  box-shadow: 0 2px 16px rgba(0, 51, 153, 0.07);
  transition: box-shadow 0.3s;
  width: 100%;
}
#site-header.scrolled #navbar {
  box-shadow: 0 4px 28px rgba(0, 51, 153, 0.13);
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  margin-right: 28px;
  text-decoration: none;
  min-height: var(--tap);
}
.logo-box {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-name em {
  color: var(--nav-orange);
  font-style: normal;
}
.logo-domain {
  font-size: 8.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  gap: 0;
  flex: 1;
  height: 68px;
}
.nav-links > li {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 68px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3d4166;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition:
    color 0.18s,
    border-color 0.18s;
}
.nav-links > li > a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.nav-links > li > a.active {
  color: var(--nav-orange);
  font-weight: 600;
  border-bottom-color: var(--nav-orange);
}
.nav-links .chev {
  opacity: 0.38;
  flex-shrink: 0;
  transition: transform 0.22s;
}
.has-drop:hover > a .chev {
  transform: rotate(180deg);
}
.has-drop {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border-nav);
  border-top: 3px solid var(--nav-orange);
  border-radius: 0 0 10px 10px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0, 51, 153, 0.11);
  z-index: 200;
}
.has-drop:hover .dropdown,
.has-drop.kb-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 13px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #3d4166 !important;
  border-radius: 7px;
  transition:
    background 0.15s,
    color 0.15s !important;
}
.dropdown a::before {
  content: "›";
  color: var(--nav-orange);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.dropdown a:hover {
  background: var(--navy-lt) !important;
  color: var(--navy) !important;
}
.dropdown.two-col {
  min-width: 430px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 16px;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 38px;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-call:hover {
  background: var(--navy);
  color: #fff;
}
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 40px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--nav-orange);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(244, 121, 32, 0.3);
  transition:
    background 0.2s,
    transform 0.18s,
    box-shadow 0.2s;
}
.btn-demo:hover {
  background: var(--nav-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.4);
}
.btn-demo:active {
  transform: translateY(0);
}
.dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}
.dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}
.dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.7);
    opacity: 0;
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--tap);
  height: var(--tap);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 6px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover {
  background: var(--navy-lt);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s,
    width 0.3s;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
#drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 800;
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-tap-highlight-color: transparent;
}
#drawer-backdrop.visible {
  display: block;
  opacity: 1;
}
#mobile-drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #ffffff;
  z-index: 850;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  padding-bottom: env(safe-area-inset-bottom, 16px);
}
#mobile-drawer.open {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 2px solid var(--nav-orange);
  flex-shrink: 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.drawer-logo .logo-box {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}
.drawer-logo .logo-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.drawer-logo .logo-name em {
  color: var(--nav-orange);
  font-style: normal;
}
.drawer-close {
  width: var(--tap);
  height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #717496;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-close:hover {
  background: #f0f4fb;
  color: var(--navy);
}
.drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.drawer-nav > a,
.drawer-acc-btn {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3d4166;
  border-left: 3px solid transparent;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-nav > a:hover,
.drawer-acc-btn:hover {
  background: var(--navy-lt);
  color: var(--navy);
  border-left-color: var(--navy);
}
.drawer-nav > a.active {
  color: var(--nav-orange);
  font-weight: 600;
  border-left-color: var(--nav-orange);
}
.drawer-acc-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  justify-content: space-between;
}
.drawer-acc-btn .acc-chev {
  opacity: 0.4;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.drawer-acc-btn[aria-expanded="true"] .acc-chev {
  transform: rotate(180deg);
  opacity: 0.7;
}
.drawer-acc-btn[aria-expanded="true"] {
  color: var(--navy);
  border-left-color: var(--navy);
  background: var(--navy-lt);
}
.drawer-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8faff;
  border-left: 3px solid var(--nav-orange-lt);
  margin-left: 16px;
  border-radius: 0 0 6px 0;
}
.drawer-acc-panel.open {
  max-height: 600px;
}
.drawer-acc-panel a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px 0 20px;
  font-size: 13px;
  color: #717496;
  gap: 8px;
  border-bottom: 1px solid var(--border-nav);
  transition:
    color 0.15s,
    background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-acc-panel a:last-child {
  border-bottom: none;
}
.drawer-acc-panel a::before {
  content: "›";
  color: var(--nav-orange);
  font-weight: 700;
}
.drawer-acc-panel a:hover {
  color: var(--navy);
  background: #eef2ff;
}
.drawer-divider {
  height: 1px;
  background: var(--border-nav);
  margin: 6px 16px;
  flex-shrink: 0;
}
.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  flex-shrink: 0;
}
.drawer-ctas .btn-call {
  justify-content: center;
  width: 100%;
  height: 46px;
  font-size: 14px;
}
.drawer-ctas .btn-demo {
  justify-content: center;
  width: 100%;
  height: 46px;
  font-size: 14px;
}
.drawer-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 12.5px;
  color: #717496;
  min-height: var(--tap);
  -webkit-tap-highlight-color: transparent;
}
.drawer-contact a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ts-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}
.ts-section {
  padding: 80px 0;
}
.ts-alt {
  background: var(--bg2);
}
.ts-alt2 {
  background: var(--bg3);
}
.ts-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-lt);
  border: 1px solid var(--border-o);
  color: var(--orange);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.ts-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: ts-pulse 2s ease infinite;
}
@keyframes ts-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.45);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(232, 93, 4, 0);
  }
}
.ts-h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.ts-h2 .ts-hl {
  color: var(--orange);
}
.ts-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 580px;
}
.ts-center {
  text-align: center;
}
.ts-center .ts-sub {
  margin: 0 auto;
}
@keyframes ts-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r);
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.ts-btn-primary {
  background: var(--orange);
  color: #fff;
}
.ts-btn-primary:hover {
  background: #c94f02;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
}
.ts-btn-outline {
  background: #fff;
  color: var(--text2);
  border: 1.5px solid var(--border-md);
}
.ts-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.ts-btn-wa {
  background: #25d366;
  color: #fff;
}
.ts-btn-wa:hover {
  background: #1db954;
  color: #fff;
}
.ts-btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}
.ts-btn-full {
  width: 100%;
}

/* ====================================================
   HERO  — 3 FIXES APPLIED HERE
   1. padding:40px 0  (was 40px 0 0)
   2. .ts-hero-grid  align-items:center  (was start)
   3. .ts-hero-left  padding-bottom:0  (was 30px)
   4. .ts-hero-card  position:relative  (was sticky)
==================================================== */
.ts-hero {
  padding: 40px 0;
  background: linear-gradient(150deg, #fff 0%, #fff8f4 55%, #fff3ec 100%);
  position: relative;
  overflow: clip;
}
.ts-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #fbbf24, var(--orange));
}
.ts-hero-blob {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 93, 4, 0.07) 0%,
    transparent 70%
  );
  top: -80px;
  right: -80px;
  pointer-events: none;
}
.ts-cert-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ts-cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text2);
  box-shadow: var(--sh-sm);
}
.ts-cert-pill.ts-nasscom {
  background: var(--orange-lt);
  border-color: var(--border-o);
  color: var(--orange);
}
.ts-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
  animation: ts-up 0.5s ease both;
}
.ts-hero h1 .ts-o {
  color: var(--orange);
}
.ts-hero h1 .ts-g {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ts-hero-sub {
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 510px;
  margin-bottom: 26px;
  animation: ts-up 0.5s 0.08s ease both;
}
.ts-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  animation: ts-up 0.5s 0.13s ease both;
}
.ts-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 13px;
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--text2);
  box-shadow: var(--sh-sm);
}
.ts-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: ts-up 0.5s 0.18s ease both;
}
.ts-hero-note {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--muted2);
  animation: ts-up 0.5s 0.22s ease both;
}
.ts-hero-note .ts-ok {
  color: var(--green);
  font-weight: 600;
}
.ts-hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 26px;
  box-shadow: var(--sh-xl);
  position: relative;
  animation: ts-up 0.5s 0.1s ease both;
}
.ts-hero-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 3px;
}
.ts-hero-card > .ts-hcp {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.ts-rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 9px 13px;
  margin-bottom: 16px;
}
.ts-stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 0.88rem;
}
.ts-rating-bar span {
  font-size: 0.79rem;
  color: var(--muted);
}
.ts-rating-bar strong {
  color: var(--text);
}
.ts-timer-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  margin-bottom: 16px;
  text-align: center;
}
.ts-tbox-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.ts-timer-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
.ts-tunit {
  text-align: center;
}
.ts-tnum {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  min-width: 44px;
  padding: 1px 4px;
  line-height: 1.2;
}
.ts-tlbl {
  font-size: 0.58rem;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.ts-tsep {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.3;
  margin-top: 2px;
}
.ts-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 11px;
}
.ts-field label {
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text2);
}
.ts-field input,
.ts-field select,
.ts-field textarea {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px 13px;
  font-family: "Inter", sans-serif;
  font-size: 0.89rem;
  border-radius: var(--r);
  outline: none;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
  width: 100%;
}
.ts-field input::placeholder {
  color: var(--ph);
}
.ts-field input:focus,
.ts-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}
.ts-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.ts-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 9px;
  line-height: 1.4;
}
.ts-consent input[type="checkbox"] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--orange);
}
.ts-privacy {
  font-size: 0.7rem;
  color: var(--muted2);
  text-align: center;
  margin-top: 8px;
}
.ts-success-block {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.ts-success-block .ts-si {
  font-size: 3rem;
  margin-bottom: 12px;
}
.ts-success-block h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.ts-success-block p {
  font-size: 0.86rem;
  color: var(--muted);
}
.ts-success-block a {
  color: var(--orange);
  font-weight: 600;
}
.ts-stats-bar {
  background: var(--orange);
  overflow: clip;
}
.ts-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ts-stat {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.ts-stat:last-child {
  border-right: none;
}
.ts-snum {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ts-slbl {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 4px;
}
.ts-trust-strip {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  background: #fff;
  overflow-x: clip;
}
.ts-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 22px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text2);
}
.ts-trust-item:last-child {
  border-right: none;
}
.ts-trust-item strong {
  color: var(--orange);
}
.ts-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.ts-feat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  transition:
    box-shadow 0.22s,
    border-color 0.22s,
    transform 0.22s;
}
.ts-feat:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--border-o);
  transform: translateY(-3px);
}
.ts-feat-ic {
  width: 46px;
  height: 46px;
  background: var(--orange-lt);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.ts-feat h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text);
}
.ts-feat p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
.ts-cta-inline {
  margin-top: 28px;
  background: var(--orange-lt);
  border: 1.5px solid var(--border-o);
  border-radius: var(--r2);
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.ts-cta-inline h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 3px;
}
.ts-cta-inline p {
  font-size: 0.86rem;
  color: var(--muted);
}
.ts-batch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.ts-batch-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.ts-batch-card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--border-o);
}
.ts-bdate {
  background: var(--orange);
  border-radius: var(--r);
  padding: 12px 14px;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}
.ts-bday {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ts-bmon {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.ts-binfo {
  flex: 1;
  min-width: 0;
}
.ts-bcourse {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.ts-bmeta {
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ts-bstatus {
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.bs-open {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}
.bs-filling {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
}
.bs-full {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}
.ts-para-block {
  margin-top: 20px;
  max-width: 100%;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}
.ts-para-block p {
  margin-bottom: 16px;
}
.ts-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ts-hero-left {
  padding-bottom: 0;
}
.ts-courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.ts-ccard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
  display: flex;
  flex-direction: column;
}
.ts-ccard:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-3px);
}
.ts-chead {
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(145deg, var(--orange-lt), #fff);
}
.ts-ctag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.ts-ctag.auto {
  background: var(--cyan);
}
.ts-ctitle {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 9px;
  color: var(--text);
}
.ts-cmeta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--muted);
}
.ts-cmeta span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ts-cbody {
  padding: 18px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ts-mods {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.ts-mods li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--text2);
}
.ts-mods li:last-child {
  border-bottom: none;
}
.ts-mods li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.ts-cfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.ts-cbatch small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 2px;
}
.ts-cbatch strong {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 700;
}
.ts-placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.ts-pstats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.ts-pstat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.ts-pstat:hover {
  border-color: var(--border-o);
  box-shadow: var(--sh-md);
}
.ts-pnum {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.ts-pnum.gold {
  color: var(--gold);
}
.ts-plbl {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 500;
}
.ts-psteps {
  margin: 20px 0;
}
.ts-pstep {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.ts-pstep:last-child {
  border-bottom: none;
}
.ts-pn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-lt);
  border: 1.5px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.ts-pstep h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.ts-pstep p {
  font-size: 0.8rem;
  color: var(--muted);
}
.ts-logos-section {
  padding: 60px 0;
  overflow: clip;
}
.ts-logos-head {
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
}
.ts-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.ts-logo-cell {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  min-height: 68px;
  transition: background 0.18s;
}
.ts-logo-cell:hover {
  background: var(--orange-lt);
}
.ts-logo-nm {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted2);
  text-align: center;
  line-height: 1.25;
  transition: color 0.18s;
  letter-spacing: -0.01em;
}
.ts-logo-cell:hover .ts-logo-nm {
  color: var(--orange);
}
.ts-ticker-outer {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ts-ticker-outer::before,
.ts-ticker-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ts-ticker-outer::before {
  left: 0;
  background: linear-gradient(90deg, #f1f4f9, transparent);
}
.ts-ticker-outer::after {
  right: 0;
  background: linear-gradient(270deg, #f1f4f9, transparent);
}
.ts-ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ts-ticker 36s linear infinite;
}
.ts-ticker-track:hover {
  animation-play-state: paused;
}
@keyframes ts-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ts-ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-right: 1px solid var(--border);
  min-width: 150px;
  height: 80px;
  overflow: hidden;
}
.ts-ticker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ts-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ts-vcard {
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16/9;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.ts-vcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-xl);
}
.ts-vbg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.vbg1 {
  background: linear-gradient(135deg, #1a1228, #2e1760);
}
.vbg2 {
  background: linear-gradient(135deg, #0c1f0c, #1a4d1a);
}
.vbg3 {
  background: linear-gradient(135deg, #12121a, #1b1b69);
}
.vbg4 {
  background: linear-gradient(135deg, #1a1010, #691b1b);
}
.vbg5 {
  background: linear-gradient(135deg, #0a1f2a, #0e4d69);
}
.vbg6 {
  background: linear-gradient(135deg, #1a1228, #694d0e);
}
.ts-voverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ts-vplay {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(232, 93, 4, 0.55);
  transition: transform 0.2s;
}
.ts-vcard:hover .ts-vplay {
  transform: scale(1.15);
}
.ts-vlbl {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  padding: 0 16px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.ts-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.ts-testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow 0.22s,
    border-color 0.22s,
    transform 0.22s;
}
.ts-testi:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--border-o);
  transform: translateY(-2px);
}
.ts-testi-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 9px;
}
.ts-testi-txt {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: italic;
}
.ts-testi-auth {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ts-testi-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 0.83rem;
  color: #fff;
}
.ts-testi-name {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text);
}
.ts-testi-course {
  font-size: 0.73rem;
  color: var(--muted);
}
.ts-placed {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.09);
  border-radius: 100px;
  padding: 2px 8px;
  margin-top: 3px;
}
.ts-google-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.ts-gb {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 14px 20px;
  box-shadow: var(--sh-sm);
}
.ts-gb-score {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.ts-gb-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 2px;
}
.ts-gb-lbl {
  font-size: 0.77rem;
  color: var(--muted);
}
.ts-faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.ts-faq-item {
  border-bottom: 1px solid var(--border);
}
.ts-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  transition: color 0.18s;
}
.ts-faq-q:hover {
  color: var(--orange);
}
.ts-faq-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.18s;
}
.ts-faq-item.open .ts-faq-ic {
  transform: rotate(45deg);
  background: var(--orange-lt);
}
.ts-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}
.ts-faq-item.open .ts-faq-a {
  max-height: 260px;
  padding-bottom: 18px;
}
.ts-contact-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.ts-contact-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 56px;
  align-items: start;
}
.ts-contact-l > p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.75;
}
.ts-why-list {
  margin-bottom: 24px;
}
.ts-why-row {
  display: flex;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.ts-why-row:last-child {
  border-bottom: none;
}
.ts-why-ic {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ts-why-row h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.ts-why-row p {
  font-size: 0.8rem;
  color: var(--muted);
}
.ts-contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 30px;
  box-shadow: var(--sh-xl);
  position: sticky;
  top: 82px;
}
.ts-contact-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 3px;
}
.ts-contact-card > .ts-ccp {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.ts-batch-tag {
  background: var(--orange-lt);
  border: 1px solid var(--border-o);
  border-radius: var(--r);
  padding: 9px 14px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  text-align: center;
}
.ts-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: #fff;
  border-top: 2px solid var(--orange);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.ts-sticky.show {
  transform: translateY(0);
}
.ts-sticky p {
  font-size: 0.86rem;
  color: var(--text2);
}
.ts-sticky p strong {
  color: var(--orange);
}
.ts-sticky-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.wa-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-bubble {
  background: #fff;
  color: #1a1e35;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.25s,
    transform 0.25s;
  pointer-events: none;
}
.wa-float:hover .wa-bubble {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.wa-btn:hover {
  background: #1da851;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.wa-btn:active {
  transform: scale(0.96);
}
.wa-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
.pre-footer {
  background: #003399;
  position: relative;
  overflow: clip;
  padding: 56px 0;
}
.pre-footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -80px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 121, 32, 0.16) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.pre-footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -60px;
  bottom: -130px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.pf-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.pf-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
.pf-text h2 em {
  color: #f47920;
  font-style: normal;
}
.pf-text p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.68;
  max-width: 500px;
}
.pf-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.18s,
    box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.pf-btn-orange {
  color: #fff;
  background: #f47920;
  box-shadow: 0 4px 20px rgba(244, 121, 32, 0.4);
}
.pf-btn-orange:hover {
  background: #d9651a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 121, 32, 0.5);
}
.pf-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pf-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}
.pf-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}
.pf-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}
.pf-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  animation: dot-pulse 2.2s ease-out infinite;
}
@keyframes dot-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
footer {
  background: #0b1228;
  position: relative;
  overflow: clip;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 25%,
    rgba(0, 0, 0, 0.5) 75%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 25%,
    rgba(0, 0, 0, 0.5) 75%,
    transparent 100%
  );
}
.ft-accent {
  height: 3px;
  background: linear-gradient(
    90deg,
    #f47920 0%,
    #d9651a 35%,
    rgba(244, 121, 32, 0.15) 70%,
    transparent 100%
  );
}
.ft-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 44px;
  position: relative;
  z-index: 1;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.5fr;
  gap: 40px 36px;
  margin-bottom: 48px;
  align-items: start;
}
.ft-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.ft-logo-box {
  width: 42px;
  height: 42px;
  background: #003399;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ft-logo-name {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.ft-logo-name em {
  color: #f47920;
  font-style: normal;
}
.ft-logo-sub {
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  display: block;
  margin-top: 2px;
}
.ft-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
  margin-bottom: 20px;
}
.ft-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ft-badge svg {
  color: #f47920;
  flex-shrink: 0;
}
.ft-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ft-social {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.62);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.18s;
}
.ft-social:hover {
  color: #fff;
  transform: translateY(-3px);
}
.ft-social.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}
.ft-social.tw:hover {
  background: #000;
  border-color: #000;
}
.ft-social.li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}
.ft-social.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}
.ft-social.ig:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-color: #dc2743;
}
.ft-social.wa:hover {
  background: #25d366;
  border-color: #25d366;
}
.ft-social.wa-badge {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25d366;
}
.ft-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.ft-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 26px;
  height: 2px;
  background: #f47920;
  border-radius: 2px;
}
.ft-col h4 + h4 {
  margin-top: 28px;
}
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4px;
}
.ft-links li a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  min-height: 44px;
  transition:
    color 0.18s,
    padding-left 0.18s;
}
.ft-links li a::before {
  content: "›";
  color: #f47920;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.65;
  transition: opacity 0.18s;
}
.ft-links li a:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 4px;
}
.ft-links li a:hover::before {
  opacity: 1;
}
.ft-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.ft-ci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ft-ci-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(244, 121, 32, 0.14);
  border: 1px solid rgba(244, 121, 32, 0.22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f47920;
}
.ft-ci-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 3px;
}
.ft-ci-value,
.ft-ci-value a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}
.ft-ci-value a {
  transition: color 0.18s;
}
.ft-ci-value a:hover {
  color: #f47920;
}
.ft-ci-value .wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #25d366;
  font-weight: 600;
  transition: opacity 0.18s;
}
.ft-ci-value .wa-inline:hover {
  opacity: 0.78;
}
.ft-dir-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #f47920;
  margin-top: 5px;
  transition: opacity 0.18s;
}
.ft-dir-link:hover {
  opacity: 0.75;
}
.ft-dir-link svg {
  transition: transform 0.2s;
}
.ft-dir-link:hover svg {
  transform: translateX(3px);
}
.ft-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.ft-map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}
.ft-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11, 18, 40, 0.85));
  padding: 18px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ft-map-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.ft-map-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #f47920;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.2s;
}
.ft-map-open:hover {
  background: #d9651a;
}
.ft-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 26px;
}
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.65;
}
.ft-copy a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.18s;
}
.ft-copy a:hover {
  color: #f47920;
}
.ft-bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.ft-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 5px 13px;
  letter-spacing: 0.04em;
}
.ft-cert svg {
  color: #f47920;
  flex-shrink: 0;
}
.ft-policy {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-policy a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  padding: 4px 0;
  transition: color 0.18s;
}
.ft-policy a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.ts-hero.course-hero {
  padding: 56px 0 0;
}
.ts-hero-blob2 {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 93, 4, 0.05) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: -60px;
  pointer-events: none;
}
.ts-course-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.ts-course-hero-left {
  padding-bottom: 56px;
  animation: ts-up 0.5s ease both;
}
.course-hero .ts-hero-card {
  top: 16px;
}
.ts-contact-card.course-contact {
  top: 16px;
}
.ts-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.ts-breadcrumb a {
  color: var(--muted);
  font-weight: 500;
}
.ts-breadcrumb a:hover {
  color: var(--orange);
}
.ts-breadcrumb span {
  color: var(--muted2);
}
.ts-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--sh-sm);
}
.ts-hstat {
  text-align: center;
}
.ts-hstat-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.ts-hstat-lbl {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
}
.ts-hstat-div {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.ts-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}
.ts-tab {
  padding: 14px 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition:
    color 0.18s,
    border-color 0.18s;
}
.ts-tab:hover {
  color: var(--orange);
}
.ts-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.ts-tab-content {
  display: none;
}
.ts-tab-content.active {
  display: block;
}
.ts-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ts-overview-body p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.ts-overview-body p:last-child {
  margin-bottom: 0;
}
.ts-course-meta-card {
  background: var(--orange-lt);
  border: 1.5px solid var(--border-o);
  border-radius: var(--r2);
  padding: 24px;
  margin-bottom: 20px;
}
.ts-course-meta-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}
.ts-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-o);
}
.ts-meta-row:last-child {
  border-bottom: none;
}
.ts-meta-ic {
  font-size: 1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.ts-meta-row span {
  font-size: 0.83rem;
  color: var(--text2);
}
.ts-meta-row strong {
  font-weight: 700;
  color: var(--text);
}
.ts-curriculum-grid {
  display: grid;
  gap: 14px;
}
.ts-module {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.ts-mod-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.18s;
}
.ts-mod-head:hover {
  background: var(--bg2);
}
.ts-mod-num {
  width: 36px;
  height: 36px;
  background: var(--orange-lt);
  border: 1.5px solid var(--border-o);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--orange);
  flex-shrink: 0;
}
.ts-mod-info {
  flex: 1;
}
.ts-mod-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.ts-mod-sub {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 2px;
}
.ts-mod-arrow {
  color: var(--muted2);
  font-size: 0.9rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.ts-module.open .ts-mod-arrow {
  transform: rotate(180deg);
}
.ts-mod-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ts-module.open .ts-mod-body {
  max-height: 2000px;
}
.ts-mod-topics {
  padding: 0 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.ts-mod-topic {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted2);
  padding: 3px 0;
}
.ts-mod-topic::before {
  content: "▸";
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}
.ts-mod-desc {
  padding: 0 20px 6px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
}
.ts-mod-sub-head {
  padding: 14px 20px 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.ts-mod-sub-head:first-of-type {
  border-top: none;
  margin-top: 0;
}
.ts-mod-outcome {
  margin: 0 20px 20px;
  background: var(--orange-lt);
  border: 1px solid var(--border-o);
  border-radius: var(--r);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.7;
}
.ts-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.ts-skill-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 20px 22px;
  box-shadow: var(--sh-sm);
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.ts-skill-card:hover {
  border-color: var(--border-o);
  box-shadow: var(--sh-md);
}
.ts-skill-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.ts-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ts-stag {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text2);
}
.ts-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.ts-benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow 0.22s,
    border-color 0.22s,
    transform 0.22s;
}
.ts-benefit-card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--border-o);
  transform: translateY(-2px);
}
.ts-benefit-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-md);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.ts-benefit-body h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.ts-benefit-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.72;
}
.ts-careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.ts-career-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow 0.22s,
    border-color 0.22s,
    transform 0.22s;
}
.ts-career-card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--border-o);
  transform: translateY(-3px);
}
.ts-career-ic {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.ts-career-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.3;
}
.ts-career-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.ts-top-companies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ts-company-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text2);
  box-shadow: var(--sh-sm);
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    color 0.18s;
}
.ts-company-pill:hover {
  border-color: var(--border-o);
  color: var(--orange);
  box-shadow: var(--sh-md);
}
.ts-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.ts-related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 20px;
  text-align: center;
  transition:
    box-shadow 0.22s,
    border-color 0.22s,
    transform 0.22s;
  cursor: pointer;
  display: block;
}
.ts-related-card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--border-o);
  transform: translateY(-3px);
}
.ts-rc-ic {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.ts-rc-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 5px;
}
.ts-rc-dur {
  font-size: 0.75rem;
  color: var(--muted);
}
.ts-rc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--orange-lt);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 700;
  margin-top: 12px;
  transition: background 0.18s;
}
.ts-related-card:hover .ts-rc-btn {
  background: var(--orange-md);
}
.ts-cta-banner {
  background: linear-gradient(135deg, var(--orange), #c94f02);
  border-radius: var(--r2);
  padding: 44px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.ts-cta-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.ts-cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 40%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.ts-cta-banner h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.ts-cta-banner p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
}
.ts-cta-btn-white {
  background: #fff;
  color: var(--orange);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--r);
  font-size: 1rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 0.18s;
  flex-shrink: 0;
}
.ts-cta-btn-white:hover {
  background: #fff8f4;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.ts-cta-wa-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--r);
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ts-cta-wa-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.ts-placement-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.ts-placement-steps-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.ts-logo-partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.ts-call-box {
  background: var(--orange-lt);
  border: 1.5px solid var(--border-o);
  border-radius: var(--r2);
  padding: 20px 22px;
  margin-top: 24px;
}
.ts-call-box-inner {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.ts-call-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
}
.ts-call-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.ts-call-sub {
  font-size: 0.8rem;
  color: var(--muted);
}
.ts-content-block {
  margin-top: 18px;
  max-width: 820px;
}
.ts-content-block p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.ts-content-block p:last-child {
  margin-bottom: 0;
}
.zoho-hidden {
  display: none !important;
  visibility: hidden !important;
  position: absolute;
  left: -9999px;
}
@media (max-width: 1024px) {
  .btn-call .call-text {
    display: none;
  }
  .btn-call {
    padding: 0 12px;
  }
  .nav-links > li > a {
    padding: 0 10px;
    font-size: 12.5px;
  }
  .logo {
    margin-right: 16px;
  }
  .ts-hero-grid {
    grid-template-columns: 1fr;
  }
  .ts-hero-card {
    position: static;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .btn-call {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #mobile-drawer {
    display: flex;
  }
}
@media (max-width: 480px) {
  .nav-wrap {
    padding: 0 12px;
    height: 60px;
  }
  .logo-name {
    font-size: 16px;
  }
  .logo-domain {
    display: none;
  }
  .btn-demo {
    padding: 0 14px;
    font-size: 12px;
  }
  .notice-inner {
    padding: 0 10px;
  }
}
@media (max-width: 360px) {
  .logo-box {
    width: 34px;
    height: 34px;
  }
  .btn-demo {
    gap: 6px;
    padding: 0 12px;
  }
}
@media (max-width: 560px) {
  .n-right .n-link,
  .n-right .n-sep {
    display: none;
  }
}
@media (max-width: 380px) {
  .n-badge {
    display: none;
  }
  .n-text {
    font-size: 11px;
  }
}
@media (max-width: 1100px) {
  .ts-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ts-logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 900px) {
  .ts-hero-grid,
  .ts-placement-grid,
  .ts-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ts-hero-card,
  .ts-contact-card {
    position: static;
  }
  .ts-courses-grid {
    grid-template-columns: 1fr;
  }
  .ts-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ts-testi-grid,
  .ts-video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ts-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ts-batch-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .ts-section {
    padding: 56px 0;
  }
  .ts-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .ts-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .ts-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  .ts-stat:nth-child(even) {
    border-right: none;
  }
  .ts-testi-grid,
  .ts-video-grid {
    grid-template-columns: 1fr;
  }
  .ts-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ts-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ts-sticky {
    flex-direction: column;
    text-align: center;
    padding: 12px 16px;
  }
  .ts-sticky-btns {
    justify-content: center;
    width: 100%;
  }
  .ts-hero-btns {
    flex-direction: column;
  }
  .ts-hero-btns .ts-btn {
    width: 100%;
    justify-content: center;
  }
  .ts-google-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ts-ticker-item {
    min-width: 110px;
    height: 60px;
  }
  .ts-container {
    padding: 0 16px;
  }
  .ts-hero-grid {
    gap: 24px;
  }
  .ts-cta-inline {
    flex-direction: column;
  }
}
@media (max-width: 420px) {
  .ts-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ts-features-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .ts-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .ts-course-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ts-overview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ts-course-hero-left {
    padding-bottom: 0;
  }
  .ts-skills-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ts-benefits-grid {
    grid-template-columns: 1fr;
  }
  .ts-careers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ts-placement-stat-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ts-placement-steps-row {
    grid-template-columns: 1fr !important;
  }
  .ts-logo-partner-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .ts-section {
    padding: 48px 0;
  }
  .ts-container {
    padding: 0 16px;
  }
  .ts-hero.course-hero {
    padding: 32px 0 0;
  }
  .ts-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
  .ts-hero-sub {
    font-size: 0.9rem;
  }
  .ts-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
  }
  .ts-hstat-div {
    display: none;
  }
  .ts-hstat {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 10px 8px;
  }
  .ts-hstat-num {
    font-size: 1.2rem;
  }
  .ts-cert-row {
    gap: 6px;
  }
  .ts-cert-pill {
    font-size: 0.68rem;
    padding: 3px 10px;
  }
  .ts-tab {
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  .ts-mod-topics {
    grid-template-columns: 1fr;
  }
  .ts-mod-head {
    padding: 14px 16px;
    gap: 10px;
  }
  .ts-mod-title {
    font-size: 0.88rem;
  }
  .ts-batch-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .ts-binfo {
    min-width: unset;
    width: 100%;
  }
  .ts-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .ts-feat {
    padding: 16px;
  }
  .ts-feat-ic {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .ts-feat h3 {
    font-size: 0.88rem;
  }
  .ts-feat p {
    font-size: 0.78rem;
  }
  .ts-careers-grid {
    grid-template-columns: 1fr;
  }
  .ts-skills-grid {
    grid-template-columns: 1fr;
  }
  .ts-testi-grid {
    grid-template-columns: 1fr;
  }
  .ts-related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ts-cta-banner {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .ts-cta-banner h3 {
    font-size: 1.25rem;
  }
  .ts-cta-btn-white {
    width: 100%;
  }
  .ts-sticky {
    flex-direction: column;
    text-align: center;
    padding: 10px 14px;
    gap: 8px;
  }
  .ts-sticky-btns {
    justify-content: center;
    width: 100%;
  }
  .ts-sticky-btns .ts-btn {
    flex: 1;
    padding: 11px 10px;
    font-size: 0.82rem;
  }
  .ts-placement-stat-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .ts-logo-partner-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .ts-faq-q {
    font-size: 0.88rem;
  }
  .ts-faq-list {
    margin-top: 24px;
  }
  .ts-contact-card {
    padding: 20px;
  }
  .ts-google-row .ts-btn {
    width: 100%;
    justify-content: center;
  }
  .ts-cta-wa-btn {
    width: 100%;
    justify-content: center;
  }
  .ts-snum {
    font-size: 1.6rem;
  }
  .ts-stat {
    padding: 18px 12px;
  }
  .dropdown.two-col {
    min-width: 280px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .ts-related-grid {
    grid-template-columns: 1fr;
  }
  .ts-features-grid {
    grid-template-columns: 1fr;
  }
  .ts-logo-partner-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ts-cert-pill {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
  .ts-btn-lg {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}
@media (max-width: 1200px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ft-brand {
    grid-column: 1 / -1;
  }
  .ft-desc {
    max-width: 600px;
  }
}
@media (max-width: 860px) {
  .pf-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .pf-actions {
    width: 100%;
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ft-brand {
    grid-column: 1 / -1;
  }
  .ft-contact-col {
    grid-column: 1 / -1;
  }
  .ft-map iframe {
    height: 220px;
  }
}
@media (max-width: 640px) {
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ft-brand,
  .ft-contact-col {
    grid-column: auto;
  }
  .ft-body {
    padding: 36px 16px 32px;
  }
  .pre-footer {
    padding: 40px 0;
  }
  .pf-inner {
    padding: 0 16px;
  }
  .pf-btn {
    width: 100%;
    justify-content: center;
  }
  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .ft-bottom-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ft-policy {
    gap: 14px;
  }
  .ft-desc {
    max-width: 100%;
  }
  .wa-float {
    bottom: 100px;
    right: 16px;
  }
  .wa-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 380px) {
  .ft-badge {
    font-size: 9.5px;
    padding: 4px 8px;
  }
  .ft-social {
    width: 38px;
    height: 38px;
  }
  .wa-btn {
    width: 48px;
    height: 48px;
  }
}
.ts-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 28px;
  align-items: start;
}
.ts-about-quote {
  background: var(--orange-lt);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r2) var(--r2) 0;
  padding: 28px 28px 28px 24px;
}
.ts-about-quote p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.85;
  margin: 0;
  font-style: italic;
}
.ts-about-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 900px) {
  .ts-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.ts-abt2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
}
.ts-abt2-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ts-abt2-col:first-child {
  border-right: 1px solid var(--border);
  padding-right: 48px;
}
.ts-abt2-col:last-child {
  padding-left: 48px;
}
.ts-abt2-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.ts-abt2-item:first-child {
  padding-top: 0;
}
.ts-abt2-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-md);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.ts-abt2-item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.ts-abt2-item p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.ts-abt2-quote {
  background: var(--orange-lt);
  border-radius: var(--r2);
  padding: 24px;
  margin-top: 28px;
}
.ts-abt2-quote p {
  font-size: 0.88rem;
  color: var(--orange);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}
@media (max-width: 900px) {
  .ts-abt2-layout {
    grid-template-columns: 1fr;
  }
  .ts-abt2-col:first-child {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 28px;
  }
  .ts-abt2-col:last-child {
    padding-left: 0;
    padding-top: 28px;
  }
}
.ts-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.ts-reel-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--r2);
  background: #000;
}
.ts-reel-wrap .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: var(--r2) !important;
}
@media (max-width: 900px) {
  .ts-reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 540px) {
  .ts-reels-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ====================================================
   POPUP OVERLAY
==================================================== */
.ts-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition:
    background 0.3s ease,
    visibility 0.3s ease;
}
.ts-popup-overlay.open {
  background: rgba(0, 0, 0, 0.55);
  visibility: visible;
}
/* blur the page content when popup is open */
body.ts-popup-open > *:not(.ts-popup-overlay):not(#ts-popup-overlay) {
  filter: blur(4px);
  transition: filter 0.3s ease;
}
.ts-popup-card {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.32s ease;
}
.ts-popup-overlay.open .ts-popup-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.ts-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.18s;
}
.ts-popup-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.ts-popup-card .card-left {
  background: linear-gradient(160deg, #1a2e6b 0%, #1a56db 100%);
  color: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}
.ts-popup-card .card-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.ts-popup-card .card-left::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.ts-popup-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  width: fit-content;
  color: #fff;
}
.ts-popup-card .card-left h2 {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
  position: relative;
  z-index: 1;
  color: #fff;
}
.ts-popup-card .card-left p {
  font-size: 0.84rem;
  opacity: 0.82;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.ts-popup-card .perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.ts-popup-card .perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: #fff;
}
.ts-popup-card .perk-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.ts-popup-card .ratings-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}
.ts-popup-card .stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.ts-popup-card .ratings-text {
  font-size: 0.75rem;
  opacity: 0.75;
  color: #fff;
}
.ts-popup-card .card-right {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.ts-popup-card .form-heading {
  margin-bottom: 1.25rem;
}
.ts-popup-card .form-heading h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
}
.ts-popup-card .form-heading p {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.2rem;
}
.ts-popup-card .form-group {
  margin-bottom: 0.85rem;
}
.ts-popup-card label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.ts-popup-card .req {
  color: #ef4444;
  margin-left: 2px;
}
.ts-popup-card input,
.ts-popup-card select {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  color: #1e293b;
  background: #fff;
  outline: none;
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
}
.ts-popup-card input::placeholder {
  color: #9ca3af;
}
.ts-popup-card input:focus,
.ts-popup-card select:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.ts-popup-card input.invalid,
.ts-popup-card select.invalid {
  border-color: #ef4444;
}
.ts-popup-card .field-error {
  font-size: 0.7rem;
  color: #ef4444;
  margin-top: 0.28rem;
  display: none;
}
.ts-popup-card .field-error.show {
  display: block;
}
.ts-popup-card .btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #1a2e6b 0%, #1a56db 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.82rem 1.5rem;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
  position: relative;
  margin-top: 0.4rem;
  font-family: inherit;
}
.ts-popup-card .btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.ts-popup-card .btn-submit:active {
  transform: translateY(0);
}
.ts-popup-card .btn-submit.loading > .btn-text {
  opacity: 0;
}
.ts-popup-card .btn-submit.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ts-popup-spin 0.65s linear infinite;
}
@keyframes ts-popup-spin {
  to {
    transform: rotate(360deg);
  }
}
.ts-popup-card .form-note {
  text-align: center;
  font-size: 0.71rem;
  color: #94a3b8;
  margin-top: 0.6rem;
}
.ts-popup-card .form-note span {
  color: #10b981;
  font-weight: 600;
}
.ts-popup-card .success-state {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.ts-popup-card .success-state.show {
  display: block;
}
.ts-popup-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: #ecfdf5;
  border: 2px solid #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.ts-popup-card .success-state h3 {
  font-size: 1.2rem;
  color: #1e293b;
  font-weight: 800;
}
.ts-popup-card .success-state p {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 0.5rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .ts-popup-card {
    grid-template-columns: 1fr;
  }
  .ts-popup-card .card-left {
    border-radius: 16px 16px 0 0;
    padding: 1.75rem 1.5rem;
  }
  .ts-popup-card .card-right {
    padding: 1.75rem 1.5rem;
  }
  .ts-popup-card .card-left h2 {
    font-size: 1.2rem;
  }
  .ts-popup-close {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
    color: #fff;
  }
}

.ts-career-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin-top: 32px;
}
.ts-cs-list {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--bg2);
}
.ts-cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  position: relative;
}
.ts-cs-item:last-child {
  border-bottom: none;
}
.ts-cs-item.active {
  background: #fff;
}
.ts-cs-item.active::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
}
.ts-cs-item:hover:not(.active) {
  background: var(--orange-lt);
}
.ts-cs-lic {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}
.ts-cs-ltitle {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text2);
  line-height: 1.3;
}
.ts-cs-item.active .ts-cs-ltitle {
  font-weight: 700;
  color: var(--text);
}
.ts-cs-detail {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
}
.ts-cs-dic {
  width: 52px;
  height: 52px;
  border-radius: var(--r2);
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-cs-companies {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ts-cs-detail h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.ts-cs-detail p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}
.ts-cs-tag {
  display: inline-flex;
  background: var(--orange-lt);
  border: 1px solid var(--border-o);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  width: fit-content;
}
@media (max-width: 640px) {
  .ts-career-split {
    grid-template-columns: 1fr;
  }
  .ts-cs-list {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}
