:root {
  --red: #d0201a;
  --red-dark: #a8180f;
  --red-light: #fef0f0;
  --bg: #f4f6f9;
  --white: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
  --r: 12px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--red-light);
  color: var(--red);
  font-weight: 600;
}
.nav-links a.active i,
.nav-links a:hover i {
  color: var(--red);
}
.nav-links .nav-label {
  display: inline;
}
.nav-links .nav-icon {
  display: none;
}
.btn-nav {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(208, 32, 26, 0.3);
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
/* HERO */
#hero {
  padding: 150px 5% 70px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    #d0201a18 1.5px,
    transparent 1.5px
  );
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(208, 32, 26, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 22px;
}
.hero h1 span {
  color: var(--red);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 640px;
}
.job-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  margin-bottom: 24px;
  width: 100%;
  box-shadow: var(--shadow);
}
.hs-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  min-width: 0;
}
.hs-field.hs-grow {
  flex: 1;
}
.hs-field i {
  color: var(--muted);
  font-size: 13px;
  flex-shrink: 0;
}
.job-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: transparent;
}
.job-search button {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.15s;
}
.job-search button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.hero-cta .btn-red,
.hero-cta .btn-white {
  padding: 14px 28px;
  font-size: 14px;
}
.hero-stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 32px;
  box-shadow: var(--shadow);
}
.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.hero-stat-ic {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
  flex-shrink: 0;
}
.hstat-val {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
}
.hstat-lbl {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
  white-space: nowrap;
}
/* BUTTONS */
.btn-red {
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(208, 32, 26, 0.35);
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--text);
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-white:hover {
  border-color: var(--red);
  color: var(--red);
}
/* SECTIONS */
section {
  padding: 84px 5%;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h2.st {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 14px;
}
h2.st span {
  color: var(--red);
}
p.ss {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}
/* WHY JOIN */
#why-join {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(208, 32, 26, 0.2);
}
.why-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.why-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
/* BENEFITS */
#benefits {
  background: var(--white);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.prod-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.prod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(208, 32, 26, 0.2);
}
.prod-card:hover::before {
  transform: scaleX(1);
}
.prod-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.prod-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.prod-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.prod-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
}
/* OPENINGS */
#openings {
  background: var(--bg);
}
.openings-layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}
.openings-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.sidebar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.sidebar-head h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.filter-clear {
  background: none;
  border: none;
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  padding: 0;
}
.filter-clear:hover {
  text-decoration: underline;
}
.filter-group {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.filter-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.filter-group h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  margin-bottom: 12px;
}
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}
.filter-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.filter-check .filter-label {
  flex: 1;
  line-height: 1.3;
}
.filter-check .filter-count {
  color: var(--muted);
  font-size: 11.5px;
  flex-shrink: 0;
}
.filter-check:hover .filter-label {
  color: var(--red);
}
.job-count-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.job-count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.job-count strong {
  color: var(--text);
}
.job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.job-card:hover {
  border-color: rgba(208, 32, 26, 0.3);
  box-shadow: var(--shadow-md);
}
.job-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.job-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 8px;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.job-meta i {
  color: var(--red);
}
.job-stipend {
  color: var(--red);
  font-weight: 700;
}
.stipend-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 12px 0 0;
}
.job-count-row + .stipend-note {
  margin: -8px 0 20px;
}
.job-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}
.job-actions {
  flex-shrink: 0;
}
.no-jobs {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 14px;
  display: none;
}
/* PROCESS */
#process {
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.process-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 22px;
  text-align: center;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  margin: 0 auto 16px;
}
.process-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
/* FAQ */
#faq {
  background: var(--white);
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
/* FOOTER */
footer {
  background: var(--text);
  color: #9ca3af;
  padding: 48px 5% 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-brand img {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
}
/* ANIMATE */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  #hero {
    padding: 120px 5% 48px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .openings-layout {
    grid-template-columns: 1fr;
  }
  .openings-sidebar {
    position: static;
    max-height: none;
  }
  .filter-group {
    padding: 14px 0;
  }
  .hero-stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
  }
  .hero-stat-divider {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-links .nav-label {
    display: none;
  }
  .nav-links a {
    padding: 8px 10px;
    font-size: 16px;
  }
  .btn-nav .btn-label {
    display: none;
  }
  .btn-nav {
    padding: 8px 10px;
    min-width: auto;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .job-actions {
    width: 100%;
  }
  .job-actions .btn-white {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  section {
    padding: 56px 5%;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-cta .btn-red,
  .hero-cta .btn-white {
    justify-content: center;
  }
  .job-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }
  .hs-field {
    width: 100%;
  }
  .job-search button {
    width: 100%;
    margin-top: 4px;
    padding: 14px;
  }
}
/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  z-index: 1001;
}
/* NAV SHRINK ON SCROLL */
nav {
  transition:
    height 0.3s ease,
    box-shadow 0.3s ease;
}
nav.scrolled {
  height: 64px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.nav-logo img {
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img {
  height: 54px;
}
/* TICKER */
.ticker {
  background: var(--red);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 26s linear infinite;
}
.ticker-track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 28px;
}
.ticker-track span::after {
  content: " \25C6 ";
  opacity: 0.45;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* STAGGERED REVEAL */
.why-grid > .reveal:nth-child(1),
.prod-grid > .reveal:nth-child(1),
.job-list > .reveal:nth-child(1),
.process-grid > .reveal:nth-child(1) {
  transition-delay: 0s;
}
.why-grid > .reveal:nth-child(2),
.prod-grid > .reveal:nth-child(2),
.job-list > .reveal:nth-child(2),
.process-grid > .reveal:nth-child(2) {
  transition-delay: 0.07s;
}
.why-grid > .reveal:nth-child(3),
.prod-grid > .reveal:nth-child(3),
.job-list > .reveal:nth-child(3),
.process-grid > .reveal:nth-child(3) {
  transition-delay: 0.14s;
}
.why-grid > .reveal:nth-child(4),
.prod-grid > .reveal:nth-child(4),
.job-list > .reveal:nth-child(4),
.process-grid > .reveal:nth-child(4) {
  transition-delay: 0.21s;
}
.why-grid > .reveal:nth-child(5),
.prod-grid > .reveal:nth-child(5),
.job-list > .reveal:nth-child(5) {
  transition-delay: 0.28s;
}
.why-grid > .reveal:nth-child(6),
.prod-grid > .reveal:nth-child(6),
.job-list > .reveal:nth-child(6) {
  transition-delay: 0.35s;
}
.job-list > .reveal:nth-child(7) {
  transition-delay: 0.42s;
}
.job-list > .reveal:nth-child(n + 8) {
  transition-delay: 0.49s;
}
/* CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 48px;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--text);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
  z-index: 5;
}
.car-arrow:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.car-prev {
  left: 16px;
}
.car-next {
  right: 16px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.car-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    width 0.2s;
}
.car-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 5px;
}
/* LIFE AT BSH CAROUSEL */
#life {
  background: var(--bg);
}
.life-slide {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 56px 64px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.life-slide::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.life-slide-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  z-index: 1;
}
.life-slide h3 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.life-slide p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 540px;
  opacity: 0.92;
  position: relative;
  z-index: 1;
}
/* TESTIMONIALS CAROUSEL */
#testimonials {
  background: var(--bg);
}
.testi-slide {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.testi-quote-ic {
  font-size: 26px;
  color: var(--red);
  opacity: 0.4;
}
.testi-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  max-width: 680px;
  font-style: italic;
}
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testi-role {
  font-size: 12.5px;
  color: var(--muted);
}
@media (max-width: 768px) {
  .life-slide {
    padding: 56px 52px 40px;
    min-height: 320px;
  }
  .life-slide h3 {
    font-size: 20px;
  }
  .testi-slide {
    padding: 56px 44px 36px;
  }
  .car-arrow {
    width: 32px;
    height: 32px;
    top: 28px;
    transform: none;
  }
  .car-arrow:hover {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none !important;
  }
  .reveal,
  .carousel-track {
    transition: none !important;
  }
}
/* JOB DETAILS MODAL */
body.modal-open {
  overflow: hidden;
}
.job-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.job-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.job-modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-md);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s ease;
}
.job-modal-overlay.open .job-modal {
  transform: scale(1) translateY(0);
}
.job-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition:
    background 0.2s,
    color 0.2s;
  z-index: 2;
}
.job-modal-close:hover {
  background: var(--red-light);
  color: var(--red);
}
.job-modal-header {
  padding: 36px 56px 24px 36px;
  border-bottom: 1px solid var(--border);
}
.job-modal-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 10px 0 14px;
}
.job-modal-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.job-modal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.job-modal-meta i {
  color: var(--red);
}
.jm-stipend {
  color: var(--red);
  font-weight: 700;
}
.job-modal-body {
  padding: 28px 36px;
}
.jm-section {
  margin-bottom: 26px;
}
.jm-section:last-child {
  margin-bottom: 0;
}
.jm-section h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text);
  margin-bottom: 12px;
}
.jm-section p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
.jm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jm-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}
.jm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.jm-skills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.jm-skill-tag {
  background: var(--red-light);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.job-modal-footer {
  padding: 22px 36px 32px;
  border-top: 1px solid var(--border);
}
.job-modal-footer .btn-red {
  width: 100%;
  justify-content: center;
}
@media (max-width: 600px) {
  .job-modal {
    max-height: 92vh;
  }
  .job-modal-header {
    padding: 30px 48px 20px 22px;
  }
  .job-modal-body {
    padding: 22px;
  }
  .job-modal-footer {
    padding: 18px 22px 26px;
  }
}
