/* ============================================================
   CCEP — Panjab University × Cambridge
   Landing page stylesheet
   Locked design tokens (sampled from reference PDF):
     red    #ED1F24   primary accent / CTAs / icons / accent text
     amber  #FFB800   left-hero CTA, X bullets, final CTA, footer accent
     navy   #071A3D   diagnostic box, focus labels/icons
     grey   #EBEBEB   "About EPC" section background
     dark   #1C1C1A   learning + footer backgrounds
   Type: Playfair Display (display serif) + DM Sans (body)
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #ED1F24;
  --red-hover: #c8151a;
  --amber: #FFB800;
  --amber-hover: #e8a700;
  --navy: #071A3D;
  --grey-bg: #EBEBEB;
  --dark-bg: #1C1C1A;
  --text-dark: #1A1A1A;
  --text-mid: #3a3a3a;
  --text-light: #6a6a6a;
  --border: #E0E0E0;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

/* Offset anchored sections so the sticky header doesn't cover headings */
:target { scroll-margin-top: 96px; }
#about-epc, #highlights, #benefits, #footer, #hero, #career-returns,
#who, #focus, #certified, #linguaskill, #channels, #why, #corporate, #learning, #final-cta {
  scroll-margin-top: 96px;
}

/* Honeypot anti-bot field — visually hidden, off-screen */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* ---- Section heading shared style ---- */
.section-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.2px;
}
.section-title span { color: var(--red); }

/* ---- Shared buttons ---- */
.btn-red, .btn-amber, .btn-dark, .btn-white, .btn-enroll {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: var(--font);
  font-weight: 700; border-radius: 7px; white-space: nowrap;
  transition: background .2s, color .2s, transform .15s;
  width: fit-content;
}
.btn-red   { background: var(--red);   color: #fff; padding: 12px 26px; font-size: 15px; }
.btn-red:hover   { background: var(--red-hover); }
.btn-red::after  { content: '›'; font-size: 18px; line-height: 1; }
.btn-amber { background: var(--amber); color: #1c1c1c; padding: 12px 26px; font-size: 15px; }
.btn-amber:hover { background: var(--amber-hover); }
.btn-amber::after{ content: '›'; font-size: 18px; line-height: 1; }
.btn-dark  { background: #111; color: var(--amber); padding: 14px 30px; font-size: 15px; }
.btn-dark:hover  { background: #000; }
.btn-dark::after { content: '›'; font-size: 18px; line-height: 1; color: var(--amber); }
.btn-white { background: #fff; color: var(--navy); padding: 13px 24px; font-size: 14px; }
.btn-white:hover { background: #f0f0f0; }
.btn-white::after{ content: '›'; font-size: 16px; line-height: 1; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 600;
}
.navbar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  height: 86px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.navbar-brand img { height: 56px; width: auto; }
.navbar-nav { display: flex; align-items: center; gap: 34px; }
.navbar-nav a { font-size: 15px; font-weight: 500; color: #2a2a2a; transition: color .2s; }
.navbar-nav a:hover { color: var(--red); }
.btn-enroll { background: var(--red); color: #fff; padding: 11px 24px; font-size: 15px; }
.btn-enroll::after { content: '›'; font-size: 16px; line-height: 1; }
.btn-enroll:hover { background: var(--red-hover); }

/* hamburger (mobile) */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: #222; border-radius: 2px; transition: .25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.navbar-mobile { display: none; }

/* ============================================================
   HERO
============================================================ */
.hero { position: relative; width: 100%; line-height: 0; }
.hero-bg-img { width: 100%; height: 520px; object-fit: cover; object-position: center; display: block; }
.hero-overlay { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; line-height: 1.5; }

.hero-left-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 6% 0 clamp(40px, 7vw, 120px);
  background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 60%, rgba(0,0,0,0) 100%);
}
.hero-right-text {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 clamp(40px, 6vw, 110px) 0 clamp(220px, 24vw, 460px);
}

.hero-heading { font-family: var(--serif); font-weight: 600; line-height: 1.14; }
.hero-left-text h1 { font-size: clamp(26px, 2.5vw, 38px); color: #fff; max-width: 460px; margin-bottom: 26px; }
.hero-left-text h1 span { color: var(--amber); }
.hero-right-text h2 { font-size: clamp(26px, 2.5vw, 38px); color: #1c1c1c; max-width: 380px; margin-bottom: 24px; }
.hero-right-text h2 span { color: var(--red); }

.hero-pain, .hero-benefits { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.hero-pain li { display: flex; align-items: flex-start; gap: 11px; color: #fff; font-size: 15px; font-weight: 500; line-height: 1.35; max-width: 320px; }
.hero-benefits li { display: flex; align-items: flex-start; gap: 11px; color: #1c1c1c; font-size: 15px; font-weight: 500; line-height: 1.35; max-width: 300px; }
.icon-x {
  width: 20px; height: 20px; border-radius: 50%; background: var(--amber); color: #1c1c1c;
  font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; line-height: 1;
}
.icon-check {
  width: 20px; height: 20px; border-radius: 50%; border: 1.6px solid #2a2a2a; color: #2a2a2a;
  font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; line-height: 1;
}

/* Mobile hero (hidden on desktop) */
.hero-mobile { display: none; }
.hero-mob-card { position: relative; }
.hero-mob-card img { width: 100%; display: block; }
.hero-mob-card figcaption { padding: 28px 24px 34px; }
.hero-mob-dark { background: #161310; }
.hero-mob-dark figcaption h1 { font-family: var(--serif); font-weight: 600; font-size: 26px; line-height: 1.18; color: #fff; margin-bottom: 18px; }
.hero-mob-dark figcaption h1 span { color: var(--amber); }
.hero-mob-light { background: #f6efe4; }
.hero-mob-light figcaption h2 { font-family: var(--serif); font-weight: 600; font-size: 26px; line-height: 1.18; color: #1c1c1c; margin-bottom: 18px; }
.hero-mob-light figcaption h2 span { color: var(--red); }

/* ============================================================
   CAREER RETURNS
============================================================ */
.career-returns { padding: 70px 0 64px; background: #fff; }
.career-returns .section-title { margin-bottom: 52px; }
.career-grid { display: flex; justify-content: center; gap: 0; max-width: 1080px; margin: 0 auto; }
.career-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 0 14px; text-align: center; }
.career-item img { width: 54px; height: 54px; object-fit: contain; }
.career-item p { font-size: 16px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }

/* ============================================================
   ABOUT EPC (CCEP intro) — grey band
============================================================ */
.about-epc { background: var(--grey-bg); padding: 64px 0 72px; text-align: center; }
.about-lockup {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 26px; margin: 0 auto 28px;
}
.about-logo-pu { height: 76px; width: auto; }
.about-lockup-divider { width: 1.5px; height: 60px; background: #c9c9c9; flex-shrink: 0; }
.about-lockup-cambridge { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.about-collab-label { font-size: 14px; color: var(--text-mid); font-weight: 400; }
.about-logo-cam { height: 50px; width: auto; }
.about-eyebrow { font-size: 19px; color: var(--text-mid); margin-bottom: 8px; font-weight: 400; }
.about-title { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 28px; }
.about-title span { color: var(--red); }
.about-desc { max-width: 1080px; margin: 0 auto 34px; font-size: 16px; color: var(--text-mid); line-height: 1.85; text-align: center; }
.venue-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 18px; line-height: 1.4;
  padding: 13px 28px;
  border: 1.5px solid rgba(237,31,36,.35);
  border-radius: 12px;
  background: rgba(237,31,36,.05);
}
.venue-pin { display: inline-flex; flex-shrink: 0; }
.venue-pin svg { width: 22px; height: 22px; }
.venue-label { color: var(--text-mid); font-weight: 600; }
.venue-place { color: var(--red); font-weight: 700; }

/* ============================================================
   WHO IS THIS FOR
============================================================ */
.who { padding: 72px 0; background: #fff; }
.who .section-title { margin-bottom: 56px; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.who-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.who-card img { width: 50px; height: 50px; object-fit: contain; }
.who-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); }
.who-card p { font-size: 15px; color: var(--text-light); line-height: 1.55; max-width: 240px; }

/* ============================================================
   PROGRAMME HIGHLIGHTS
============================================================ */
.highlights { padding: 64px 0 78px; background: #fff; }
.highlights .section-title { margin-bottom: 26px; }
.highlights-sub { text-align: center; font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 56px; }
.highlights-sub span { color: var(--red); }
.highlights-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.highlight-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.highlight-img { width: 96px; height: 96px; object-fit: contain; flex-shrink: 0; }
.highlight-item p { font-size: 15px; color: var(--text-dark); line-height: 1.45; max-width: 180px; }

/* ============================================================
   BENEFIT TO PARTICIPANTS
============================================================ */
.benefits { padding: 56px 0 72px; background: #fff; }
.benefits .section-title { margin-bottom: 52px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.benefit-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.benefit-item img { width: 60px; height: 60px; object-fit: contain; }
.benefit-item p { font-size: 15px; color: var(--text-dark); line-height: 1.5; max-width: 250px; }

/* ============================================================
   FOCUS AREA + DIAGNOSTIC CTA
============================================================ */
.focus { padding: 24px 0 80px; background: #fff; }
.focus-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.focus-left { text-align: center; }
.focus-title { text-align: center; margin-bottom: 14px; }
.focus-sub { font-size: 16px; color: var(--text-mid); margin-bottom: 36px; }
.focus-skills { display: flex; justify-content: center; }
.focus-skill { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 4px 8px; position: relative; }
.focus-skill + .focus-skill::before {
  content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: var(--red);
}
.focus-skill img { width: 48px; height: 48px; object-fit: contain; }
.focus-skill span { font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: .04em; }

.focus-cta {
  background: var(--navy); border-radius: 16px; padding: 40px 40px;
  display: flex; align-items: center; gap: 28px; color: #fff;
}
.focus-cta-icon { flex-shrink: 0; }
.focus-cta-icon svg { width: 84px; height: 84px; }
.focus-cta-body h3 { font-family: var(--serif); font-weight: 500; font-size: 25px; line-height: 1.25; margin-bottom: 22px; }
.focus-cta-body h3 em { font-style: normal; color: #dfe6f2; }

/* ============================================================
   GET CERTIFIED / CERTIFICATE
============================================================ */
.certified { padding: 64px 0 72px; background: #fff; }
.certified .section-title { margin-bottom: 44px; }
.certified-title span { color: var(--red); }
.certified-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.certified-text p { font-size: 18px; color: var(--text-mid); line-height: 1.7; }
.certified-image img { width: 100%; border-radius: 6px; box-shadow: 0 18px 50px rgba(0,0,0,.14); }

/* ============================================================
   LINGUASKILL CERTIFICATION
============================================================ */
.linguaskill { padding: 56px 0 64px; background: #fff; }
.linguaskill-title { margin-bottom: 40px; max-width: 980px; margin-left: auto; margin-right: auto; }
.linguaskill-q { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.linguaskill-desc { font-size: 16px; color: var(--text-mid); line-height: 1.85; max-width: 1080px; }

/* ============================================================
   ASSESSMENT CHANNELS
============================================================ */
.channels { padding: 56px 0 64px; background: #fff; text-align: center; }
.channels .section-title { margin-bottom: 44px; }
.channels-logos { display: flex; align-items: center; justify-content: center; gap: 56px; margin-bottom: 30px; }
.channel-logo { object-fit: contain; }
.channel-cambridge { height: 92px; width: auto; }
.channel-upskill { height: 78px; width: auto; }
.channels-amp { font-size: 30px; color: var(--text-light); font-weight: 400; }
.channels-desc { max-width: 880px; margin: 0 auto; font-size: 16px; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   WHY CHOOSE CAMBRIDGE LINGUASKILL
============================================================ */
.why { padding: 56px 0 72px; background: #fff; }
.why .section-title { margin-bottom: 52px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.why-item img { width: 46px; height: 46px; object-fit: contain; margin-bottom: 4px; }
.why-stat { font-size: 24px; font-weight: 800; color: var(--text-dark); line-height: 1.1; }
.why-label { font-size: 15px; color: var(--text-mid); line-height: 1.5; max-width: 240px; }

/* ============================================================
   CORPORATE LOGOS (marquee)
============================================================ */
.corporate { padding: 56px 0 60px; background: #fff; }
.corporate .section-title { margin-bottom: 44px; }
.corp-marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.corp-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: corp-scroll 46s linear infinite; }
.corp-track img { height: 42px; width: auto; object-fit: contain; flex-shrink: 0; }
.corp-track:hover { animation-play-state: paused; }
@keyframes corp-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   LEARNING EXPERIENCES — dark band
============================================================ */
.learning { padding: 60px 0 64px; background: var(--dark-bg); }
.learning-title { color: #fff; margin-bottom: 48px; }
.learning-title span { color: var(--red); }
.learning-grid { display: flex; justify-content: center; }
.learning-item { flex: 1; display: flex; align-items: center; gap: 16px; padding: 8px 20px; position: relative; }
.learning-item + .learning-item::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(255,255,255,.18);
}
.learning-item img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.learning-item p { font-size: 14.5px; color: #fff; line-height: 1.35; font-weight: 500; }

/* ============================================================
   FINAL CTA — amber band
============================================================ */
.final-cta { background: var(--amber); padding: 56px 0; }
.final-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta-text h2 { font-family: var(--serif); font-size: 38px; font-weight: 600; color: #1c1c1c; line-height: 1.15; margin-bottom: 10px; letter-spacing: .5px; }
.final-cta-text p { font-size: 16px; font-weight: 600; color: #2a2a2a; line-height: 1.6; max-width: 620px; }

/* ============================================================
   FOOTER — dark band
============================================================ */
.footer { background: var(--dark-bg); padding: 56px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; margin-bottom: 40px; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 18px; }
.footer-brand-desc { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 14px; max-width: 280px; }
.footer-tagline { font-size: 15px; color: var(--amber); font-weight: 600; }

/* Footer social icons — amber glyph in white circle (locked to screenshot) */
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.social-ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
  color: var(--amber);            /* icon colour (SVG uses currentColor) */
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-ico svg { width: 22px; height: 22px; display: block; }
.social-ico-fb svg { width: 26px; height: 26px; }  /* FB roundel fills the circle */
.social-ico:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,184,0,.35); }
.social-ico:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col ul li a { font-size: 15px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-powered { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-powered a { color: var(--amber); }

/* ============================================================
   POPUP MODAL
============================================================ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s; padding: 20px;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup-box {
  background: #fff; border-radius: 14px; width: 100%; max-width: 500px;
  max-height: 92vh; overflow-y: auto; padding: 40px; position: relative;
  transform: translateY(24px); transition: transform .25s;
}
.popup-overlay.open .popup-box { transform: translateY(0); }
.popup-close { position: absolute; top: 14px; right: 18px; font-size: 26px; color: var(--text-light); cursor: pointer; background: none; border: none; line-height: 1; transition: color .2s; }
.popup-close:hover { color: var(--red); }
.popup-box h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.popup-sub { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-field input, .form-field select {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 7px;
  font-size: 14px; font-family: var(--font); color: var(--text-dark); outline: none;
  transition: border-color .2s; background: #fff;
}
.form-field input:focus, .form-field select:focus { border-color: var(--red); }
.form-msg { font-size: 13px; padding: 10px 14px; border-radius: 7px; margin-bottom: 12px; display: none; }
.form-msg.success { background: #e6f7ee; color: #1a7a45; display: block; }
.form-msg.error { background: #fde8e8; color: #b91c1c; display: block; }
.captcha-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; background: #f9f9f9;
  padding: 11px 14px; border-radius: 8px; border: 1.5px solid var(--border);
}
.captcha-q { font-size: 15px; font-weight: 700; color: var(--text-dark); flex: 1; }
.captcha-input { width: 64px !important; text-align: center; margin-bottom: 0 !important; }
.captcha-refresh {
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--text-light); line-height: 1; padding: 4px; transition: color .2s;
}
.captcha-refresh:hover { color: var(--red); }
.captcha-input {
  padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 7px;
  font-size: 14px; font-family: var(--font); color: var(--text-dark); outline: none; transition: border-color .2s;
}
.captcha-input:focus { border-color: var(--red); }

.btn-submit {
  width: 100%; background: var(--red); color: #fff; border: none; padding: 14px; border-radius: 7px;
  font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background .2s;
}
.btn-submit:hover { background: var(--red-hover); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 22px; }
  .focus-cta-body h3 { font-size: 22px; }
}

@media (max-width: 960px) {
  .navbar-nav { display: none; }
  .nav-toggle { display: flex; }
  .navbar-mobile.open { display: flex; flex-direction: column; gap: 6px; padding: 16px 40px 24px; background: #fff; border-top: 1px solid rgba(0,0,0,.06); }
  .navbar-mobile.open a { padding: 10px 0; font-size: 16px; font-weight: 500; color: #2a2a2a; }
  .navbar-mobile.open .btn-enroll { margin-top: 8px; }

  /* swap to stacked mobile hero */
  .hero { display: none; }
  .hero-mobile { display: block; }

  .who-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; }

  .focus-wrap { grid-template-columns: 1fr; gap: 40px; }
  .certified-wrap { grid-template-columns: 1fr; gap: 32px; }
  .certified-text { text-align: center; }

  .learning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 8px; }
  .learning-item { flex: none; }
  .learning-item::before { display: none !important; }

  .final-cta .container { flex-direction: column; text-align: center; align-items: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .navbar-inner { padding: 0 22px; height: 72px; }
  .navbar-brand img { height: 42px; }
  .navbar-mobile.open { padding: 16px 22px 24px; }

  .section-title { font-size: 28px; }

  .career-grid { flex-wrap: wrap; gap: 32px 0; }
  .career-item { flex: 0 0 50%; }

  .about-title { font-size: 30px; }
  .about-lockup { gap: 16px; flex-wrap: wrap; }
  .about-lockup-divider { display: none; }
  .about-logo-pu { height: 54px; }
  .about-logo-cam { height: 38px; }
  .about-collab-label { font-size: 12px; }
  .about-desc { font-size: 15px; }
  .venue-line { font-size: 15px; flex-wrap: wrap; justify-content: center; }

  .who-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }

  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 40px 18px; }
  .highlights-sub { font-size: 15px; }

  .focus-cta { flex-direction: column; text-align: center; padding: 32px 26px; gap: 20px; }
  .focus-cta-body h3 { font-size: 21px; }
  .btn-white { margin: 0 auto; }

  .channels-logos { gap: 26px; flex-wrap: wrap; }
  .channel-cambridge { height: 70px; }
  .channel-upskill { height: 58px; }

  .learning-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 10px; }
  .learning-item { padding: 4px 6px; }

  .final-cta-text h2 { font-size: 28px; }

  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .popup-box { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .corp-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--red); outline-offset: 2px;
}
