:root {
  --red: #ed1c24;
  --red-dark: #c91219;
  --graphite: #6d6e71;
  --graphite-dark: #2f3033;
  --silver: #f3f4f5;
  --line: #dedfe1;
  --white: #ffffff;
  --text: #222326;
  --muted: #66686c;
  --shadow: 0 24px 70px rgba(24, 25, 27, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(109,110,113,.14);
}
.nav-wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 188px; height: 64px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 31px; font-size: 14px; font-weight: 600; color: #45464a; }
.main-nav a { transition: .2s ease; }
.main-nav a:hover { color: var(--red); }
.nav-cta { padding: 13px 19px; color: #fff !important; background: var(--red); border-radius: 7px; box-shadow: 0 10px 24px rgba(237,28,36,.18); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--graphite-dark); }

.hero {
  min-height: 790px; padding: 155px 0 80px; display: grid; place-items: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 86% 25%, rgba(237,28,36,.08), transparent 27%),
    linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .44; pointer-events: none;
  background-image:
    linear-gradient(rgba(109,110,113,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,110,113,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent, black 40%, black);
}
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--red); text-transform: uppercase; letter-spacing: .16em;
  font-size: 12px; font-weight: 800;
}
.eyebrow span { width: 34px; height: 2px; background: var(--red); }
.hero h1, .section-heading h2, .why-copy h2, .cta-copy h2, .centered h2 {
  font-family: "Manrope", sans-serif;
}
.hero h1 { margin: 22px 0; max-width: 680px; font-size: clamp(48px, 5.4vw, 76px); line-height: 1.03; letter-spacing: -.045em; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-copy > p { max-width: 630px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; margin-top: 35px; }
.btn {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 24px; border-radius: 7px; border: 1px solid transparent; cursor: pointer;
  font: 700 14px "Inter", sans-serif; transition: .25s ease;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 15px 35px rgba(237,28,36,.2); }
.btn-primary:hover { transform: translateY(-2px); background: var(--red-dark); }
.btn-secondary { background: #fff; border-color: #d8d9db; }
.btn-secondary:hover { border-color: var(--graphite); }
.trust-row { display: flex; gap: 28px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust-row div { padding-right: 26px; border-right: 1px solid var(--line); }
.trust-row div:last-child { border-right: 0; }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: 13px; }
.trust-row span { margin-top: 6px; color: var(--muted); font-size: 11px; }

.hero-panel {
  position: relative; min-height: 540px; padding: 24px;
  background: var(--graphite-dark); border-radius: 18px; box-shadow: var(--shadow);
  color: #fff; overflow: hidden;
}
.hero-panel::before {
  content: ""; position: absolute; width: 380px; height: 380px; right: -190px; top: -150px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.02);
}
.panel-top, .panel-bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.panel-top { font-size: 10px; letter-spacing: .16em; color: #c5c7ca; }
.status-dot { color: #fff; }
.status-dot::before { content:""; display:inline-block; width:7px; height:7px; margin-right:8px; border-radius:50%; background:var(--red); box-shadow:0 0 0 5px rgba(237,28,36,.14); }
.course-orbit { position: relative; height: 430px; margin-top: 12px; }
.course-orbit::before { content:""; position:absolute; width:300px; height:300px; left:50%; top:50%; transform:translate(-50%,-50%); border:1px dashed rgba(255,255,255,.16); border-radius:50%; }
.orbit-center { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); text-align:center; }
.jt-mark { width:94px; height:94px; display:grid; place-items:center; border-radius:50%; background:var(--red); font:800 31px "Manrope"; box-shadow:0 22px 50px rgba(237,28,36,.25); }
.orbit-center span { display:block; margin-top:12px; color:#c2c4c7; font-size:10px; line-height:1.5; text-transform:uppercase; letter-spacing:.12em; }
.orbit-card { position:absolute; width:205px; padding:16px; border:1px solid rgba(255,255,255,.11); border-radius:10px; background:rgba(255,255,255,.06); backdrop-filter:blur(8px); }
.orbit-card .number { color:var(--red); font-size:11px; font-weight:800; }
.orbit-card h3 { margin:8px 0 5px; font-size:14px; }
.orbit-card p { margin:0; color:#b9bbbe; font-size:10px; letter-spacing:.05em; }
.orbit-one { top:18px; left:10px; }
.orbit-two { right:3px; top:162px; }
.orbit-three { left:4px; bottom:12px; }
.panel-bottom { color:#b9bbbe; font-size:11px; letter-spacing:.12em; text-transform:uppercase; }
.panel-bottom span:nth-child(2) { color:#fff; }
.panel-bottom span:nth-child(3) { color:var(--red); }

.section-heading { display:grid; grid-template-columns:1.3fr .7fr; gap:60px; align-items:end; margin-bottom:48px; }
.section-heading h2, .why-copy h2, .centered h2 { margin:12px 0 0; font-size:clamp(34px,4vw,52px); line-height:1.12; letter-spacing:-.035em; }
.section-heading > p { margin:0; color:var(--muted); line-height:1.75; }
.programs { background:var(--silver); }
.program-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.program-card { position:relative; min-height:490px; padding:32px; background:#fff; border:1px solid #e2e3e5; border-radius:12px; transition:.3s ease; overflow:hidden; }
.program-card:hover { transform:translateY(-7px); box-shadow:0 24px 50px rgba(36,37,40,.1); border-color:transparent; }
.program-card.featured { border-top:4px solid var(--red); }
.card-index { position:absolute; right:22px; top:18px; color:#ececee; font:800 52px "Manrope"; }
.icon-box { width:50px; height:50px; display:grid; place-items:center; border-radius:9px; background:#f6f6f7; }
.icon-box svg { width:26px; fill:none; stroke:var(--red); stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.tag { display:block; margin-top:27px; color:var(--red); font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.program-card h3 { margin:11px 0 13px; font:700 24px/1.25 "Manrope"; }
.program-card p { color:var(--muted); line-height:1.65; font-size:14px; }
.program-card ul { margin:24px 0; padding:0; list-style:none; }
.program-card li { margin:12px 0; padding-left:21px; position:relative; font-size:13px; color:#47484c; }
.program-card li::before { content:""; position:absolute; left:0; top:6px; width:7px; height:7px; border:2px solid var(--red); border-radius:50%; }
.program-card > a { position:absolute; bottom:28px; color:var(--graphite-dark); font-size:13px; font-weight:800; }
.program-card > a span { color:var(--red); margin-left:7px; }

.why-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:center; }
.why-visual { position:relative; min-height:540px; }
.visual-card { position:absolute; border-radius:14px; box-shadow:var(--shadow); }
.visual-card.primary { inset:20px 70px 40px 0; padding:44px; color:#fff; background:var(--graphite-dark); overflow:hidden; }
.visual-card.primary::after { content:"JT"; position:absolute; right:-14px; bottom:-40px; font:800 210px "Manrope"; color:rgba(255,255,255,.035); }
.visual-card.primary > span { font-size:11px; letter-spacing:.15em; color:#c8c9cb; }
.visual-card.primary h3 { max-width:330px; margin:28px 0; font:700 42px/1.15 "Manrope"; }
.visual-lines { position:absolute; left:44px; right:44px; bottom:52px; display:grid; gap:14px; }
.visual-lines i { height:8px; background:rgba(255,255,255,.08); border-radius:10px; }
.visual-lines i:nth-child(1) { width:92%; } .visual-lines i:nth-child(2) { width:75%; } .visual-lines i:nth-child(3) { width:84%; } .visual-lines i:nth-child(4) { width:53%; background:var(--red); }
.visual-card.small { right:0; top:56px; width:155px; padding:23px; background:#fff; }
.visual-card.small strong, .visual-card.red strong { display:block; font:800 39px "Manrope"; }
.visual-card.small strong { color:var(--red); }
.visual-card.small span, .visual-card.red span { display:block; margin-top:6px; font-size:11px; line-height:1.5; }
.visual-card.red { right:8px; bottom:0; width:190px; padding:25px; color:#fff; background:var(--red); }
.why-copy > p { margin:23px 0 34px; color:var(--muted); line-height:1.75; }
.benefit-list { display:grid; gap:3px; }
.benefit { display:grid; grid-template-columns:46px 1fr; gap:18px; padding:20px 0; border-bottom:1px solid var(--line); }
.benefit > span { width:42px; height:42px; display:grid; place-items:center; color:var(--red); background:#fdf0f1; border-radius:50%; font-weight:800; font-size:11px; }
.benefit h4 { margin:0 0 5px; font-size:15px; }
.benefit p { margin:0; color:var(--muted); font-size:13px; line-height:1.55; }

.learning { background:#fafafa; border-top:1px solid #ededee; border-bottom:1px solid #ededee; }
.centered { display:block; max-width:790px; margin:0 auto 65px; text-align:center; }
.centered p { color:var(--muted); }
.roadmap { display:grid; grid-template-columns:1fr 80px 1fr 80px 1fr 80px 1fr; align-items:center; }
.road-step { position:relative; min-height:255px; padding:30px 25px; text-align:center; background:#fff; border:1px solid #e1e2e4; border-radius:12px; }
.step-no { position:absolute; right:14px; top:11px; color:#e4e4e6; font-weight:800; }
.step-icon { width:60px; height:60px; margin:4px auto 20px; display:grid; place-items:center; color:#fff; background:var(--graphite-dark); border-radius:50%; font:800 20px "Manrope"; }
.road-step:nth-of-type(7) .step-icon { background:var(--red); }
.road-step h3 { margin:0 0 12px; font:700 20px "Manrope"; }
.road-step p { margin:0; color:var(--muted); font-size:13px; line-height:1.65; }
.road-connector span { display:block; height:1px; background:#c9cacc; position:relative; }
.road-connector span::after { content:""; position:absolute; right:-1px; top:-4px; width:8px; height:8px; border-top:1px solid #c9cacc; border-right:1px solid #c9cacc; transform:rotate(45deg); }

.cta-section { padding-top:90px; }
.cta-card { position:relative; display:grid; grid-template-columns:1fr .9fr; gap:70px; padding:60px; color:#fff; background:var(--red); border-radius:18px; overflow:hidden; box-shadow:0 30px 70px rgba(237,28,36,.23); }
.cta-pattern { position:absolute; inset:0; opacity:.13; background-image:linear-gradient(135deg, transparent 75%, #fff 75%), linear-gradient(45deg, transparent 75%, #fff 75%); background-size:60px 60px; }
.cta-copy, .contact-form { position:relative; z-index:1; }
.section-kicker.light { color:#fff; opacity:.78; }
.cta-copy h2 { margin:15px 0 18px; font-size:46px; line-height:1.12; letter-spacing:-.03em; }
.cta-copy p { max-width:510px; margin:0; color:rgba(255,255,255,.78); line-height:1.75; }
.contact-form { display:grid; gap:14px; padding:26px; color:var(--text); background:#fff; border-radius:12px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.contact-form label { display:grid; gap:7px; }
.contact-form label span { color:#4b4c50; font-size:11px; font-weight:700; }
.contact-form input, .contact-form select { width:100%; height:46px; padding:0 13px; border:1px solid #d9dade; border-radius:6px; background:#fff; font:13px "Inter"; outline:none; }
.contact-form input:focus, .contact-form select:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(237,28,36,.08); }
.btn-white { background:var(--graphite-dark); color:#fff; margin-top:3px; }
.btn-white:hover { background:#151619; }

.site-footer { padding:70px 0 22px; color:#d0d1d3; background:#252629; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1.15fr; gap:50px; }
.footer-brand img { width:210px; height:82px; object-fit:contain; object-position:left; background:#fff; border-radius:6px; padding:5px; }
.footer-brand p { max-width:320px; color:#8f9195; font-size:13px; line-height:1.7; }
.site-footer h4 { margin:0 0 18px; color:#fff; font-size:13px; }
.site-footer a { display:block; margin:11px 0; color:#9fa1a5; font-size:12px; transition:.2s; }
.site-footer a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; margin-top:50px; padding-top:22px; border-top:1px solid rgba(255,255,255,.08); color:#77797e; font-size:11px; }

@media (max-width: 1020px) {
  .main-nav { position:absolute; top:84px; left:0; right:0; display:none; flex-direction:column; align-items:stretch; gap:0; padding:18px 20px 24px; background:#fff; border-bottom:1px solid var(--line); box-shadow:0 20px 40px rgba(0,0,0,.08); }
  .main-nav.open { display:flex; }
  .main-nav a { padding:13px 0; }
  .nav-cta { padding:13px !important; text-align:center; margin-top:8px; }
  .menu-toggle { display:block; }
  .hero-layout, .why-layout, .cta-card { grid-template-columns:1fr; }
  .hero { padding-top:135px; }
  .hero-panel { max-width:650px; width:100%; margin:auto; }
  .program-grid { grid-template-columns:1fr; }
  .program-card { min-height:430px; }
  .why-layout { gap:45px; }
  .why-visual { max-width:600px; width:100%; margin:auto; }
  .roadmap { grid-template-columns:1fr 35px 1fr; gap:15px 0; }
  .roadmap .road-step:nth-of-type(5) { grid-column:3; grid-row:3; }
  .roadmap .road-step:nth-of-type(7) { grid-column:1; grid-row:3; }
  .roadmap .road-connector:nth-of-type(4) { grid-column:1 / 4; grid-row:2; transform:rotate(90deg); width:30px; justify-self:center; }
  .roadmap .road-connector:nth-of-type(6) { grid-column:2; grid-row:3; transform:rotate(180deg); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width:min(100% - 28px, 1180px); }
  .section { padding:78px 0; }
  .brand img { width:155px; }
  .nav-wrap { height:74px; }
  .main-nav { top:74px; }
  .hero { min-height:auto; padding:118px 0 65px; }
  .hero-layout { gap:46px; }
  .hero h1 { font-size:44px; }
  .hero-copy > p { font-size:16px; }
  .hero-actions { flex-direction:column; }
  .trust-row { flex-wrap:wrap; }
  .trust-row div { width:calc(50% - 15px); }
  .hero-panel { min-height:500px; padding:18px; }
  .orbit-card { width:170px; padding:13px; }
  .orbit-one { left:0; } .orbit-two { right:0; } .orbit-three { left:0; }
  .section-heading { display:block; }
  .section-heading > p { margin-top:20px; }
  .section-heading h2, .why-copy h2, .centered h2 { font-size:36px; }
  .why-visual { min-height:470px; }
  .visual-card.primary { inset:0 40px 40px 0; padding:30px; }
  .visual-card.primary h3 { font-size:34px; }
  .visual-card.small { width:130px; right:0; }
  .visual-card.red { width:160px; }
  .roadmap { display:grid; grid-template-columns:1fr; gap:15px; }
  .roadmap .road-step, .roadmap .road-step:nth-of-type(5), .roadmap .road-step:nth-of-type(7) { grid-column:auto; grid-row:auto; }
  .road-connector { display:none; }
  .cta-card { padding:35px 22px; gap:35px; }
  .cta-copy h2 { font-size:36px; }
  .field-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:10px; }
}


/* Automotive Embedded Testing program page */
.program-page { padding-top: 84px; }
.program-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 85px;
  background:
    radial-gradient(circle at 86% 20%, rgba(237,28,36,.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8f8f9 100%);
}
.program-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(109,110,113,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,110,113,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent, black 48%, black);
}
.program-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.back-link {
  display: inline-flex;
  margin-bottom: 31px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
}
.back-link:hover { color: var(--red); }
.program-hero h1 {
  max-width: 760px;
  margin: 20px 0;
  font: 800 clamp(48px, 6vw, 78px)/1.02 "Manrope", sans-serif;
  letter-spacing: -.05em;
}
.program-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.program-hero-card {
  padding: 42px;
  color: #fff;
  background: var(--graphite-dark);
  border-radius: 17px;
  box-shadow: var(--shadow);
}
.program-label {
  color: #babcc0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.program-hero-card h2 {
  margin: 17px 0 32px;
  font: 700 31px/1.25 "Manrope", sans-serif;
}
.focus-list {
  display: grid;
  gap: 3px;
}
.focus-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.focus-list strong {
  color: var(--red);
  font-size: 12px;
}
.focus-list span {
  color: #c3c4c7;
  font-size: 13px;
}

.syllabus-section { background: var(--silver); }
.syllabus-heading { margin-bottom: 48px; }
.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.syllabus-group {
  position: relative;
  min-height: 370px;
  padding: 34px;
  background: #fff;
  border: 1px solid #e1e2e4;
  border-radius: 13px;
  overflow: hidden;
  transition: .25s ease;
}
.syllabus-group:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 22px 50px rgba(30,31,34,.09);
}
.syllabus-group::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(237,28,36,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(237,28,36,.025);
}
.syllabus-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff1f2;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
}
.syllabus-group h3 {
  margin: 23px 0 21px;
  font: 700 25px "Manrope", sans-serif;
}
.syllabus-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 25px;
}
.syllabus-group li {
  position: relative;
  break-inside: avoid;
  margin: 0 0 14px;
  padding-left: 20px;
  color: #505156;
  font-size: 13px;
  line-height: 1.45;
}
.syllabus-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--red);
  border-radius: 50%;
}
.syllabus-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 25px;
  padding: 34px 38px;
  color: #fff;
  background: var(--graphite-dark);
  border-radius: 13px;
}
.note-kicker {
  color: #c7c8cb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.syllabus-note h3 {
  margin: 10px 0 7px;
  font: 700 26px "Manrope", sans-serif;
}
.syllabus-note p {
  margin: 0;
  color: #b5b7ba;
  font-size: 13px;
}

.expert-call-section { background: #fff; }
.expert-call-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  padding: 58px;
  color: #fff;
  background: var(--red);
  border-radius: 19px;
  box-shadow: 0 30px 70px rgba(237,28,36,.22);
}
.expert-copy h2 {
  margin: 17px 0;
  font: 700 45px/1.13 "Manrope", sans-serif;
  letter-spacing: -.035em;
}
.expert-copy > p {
  max-width: 510px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
}
.call-benefits {
  display: grid;
  gap: 5px;
  margin-top: 34px;
}
.call-benefits div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.call-benefits span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.13);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}
.call-benefits p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.career-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  color: var(--text);
  background: #fff;
  border-radius: 13px;
}
.form-title span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.form-title h3 {
  margin: 7px 0 8px;
  font: 700 25px "Manrope", sans-serif;
}
.career-form label {
  display: grid;
  gap: 7px;
}
.career-form label > span {
  color: #4e4f53;
  font-size: 11px;
  font-weight: 700;
}
.career-form input,
.career-form select {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  background: #fff;
  border: 1px solid #d8d9dc;
  border-radius: 6px;
  outline: none;
  font: 13px "Inter", sans-serif;
}
.career-form input:focus,
.career-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237,28,36,.08);
}
.consent-row {
  grid-template-columns: 18px 1fr !important;
  gap: 10px !important;
  align-items: start;
}
.consent-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.consent-row span {
  line-height: 1.5;
  font-weight: 500 !important;
}
.btn-form-submit {
  width: 100%;
  color: #fff;
  background: var(--graphite-dark);
}
.btn-form-submit:hover { background: #17181a; }
.form-success {
  display: none;
  gap: 4px;
  padding: 15px;
  color: #1c5d2c;
  background: #eef9f0;
  border: 1px solid #cce8d1;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.5;
}
.form-success.show { display: grid; }

@media (max-width: 1020px) {
  .program-page { padding-top: 74px; }
  .program-hero-layout,
  .expert-call-card {
    grid-template-columns: 1fr;
  }
  .program-hero-card { max-width: 700px; }
}

@media (max-width: 700px) {
  .program-hero { padding: 72px 0 65px; }
  .program-hero h1 { font-size: 45px; }
  .program-hero-card { padding: 28px 22px; }
  .program-hero-card h2 { font-size: 27px; }
  .syllabus-grid { grid-template-columns: 1fr; }
  .syllabus-group { min-height: auto; padding: 28px 23px; }
  .syllabus-group ul { columns: 1; }
  .syllabus-note {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 23px;
  }
  .expert-call-card { padding: 35px 21px; }
  .expert-copy h2 { font-size: 36px; }
  .career-form { padding: 25px 18px; }
}



 .social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{

    width:46px;
    height:46px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#3a3b40;

    border-radius:50%;

    transition:.3s ease;

}

.social-icons img{

    width:22px;
    height:22px;

}

.social-icons a:hover{

    background:#ed1c24;

    transform:translateY(-4px);

}


/* LOGIN DROPDOWN */

.site-header,
.nav-wrap,
.main-nav {
  overflow: visible;
}

.login-dropdown {
  position: relative;
  display: inline-block;
  z-index: 9999;
}

.login-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-width: 96px;
  height: 44px;
  padding: 0 18px;

  border: none;
  border-radius: 7px;

  color: #ffffff;
  background: #ed1c24;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
}

.login-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.login-dropdown.open .login-arrow {
  transform: rotate(180deg);
}

.login-menu {
  position: absolute;

  top: calc(100% + 10px);
  right: 0;

  width: 190px;
  padding: 8px;

  background: #ffffff;
  border: 1px solid #e1e2e4;
  border-radius: 9px;

  box-shadow: 0 18px 45px rgba(20, 21, 24, 0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-8px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;

  z-index: 10000;
}

.login-dropdown.open .login-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.login-menu a {
  display: block;

  margin: 0;
  padding: 12px 14px;

  color: #333438;
  background: transparent;

  border-radius: 6px;

  font-size: 13px;
  font-weight: 600;
  text-align: left;

  white-space: nowrap;
}

.login-menu a:hover {
  color: #ffffff;
  background: #ed1c24;
}