.skip-link{position:absolute;top:-40px;left:0;background:#00bcd4;color:#0a1929;padding:8px 16px;z-index:10000;font-weight:600;font-size:.9rem;text-decoration:none;border-radius:0 0 8px 0;transition:top .2s}.skip-link:focus{top:0}
    .mobile-nav-overlay{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(26,39,68,0.98);flex-direction:column;align-items:center;justify-content:center;gap:24px;z-index:998;padding:80px 20px}
    .mobile-nav-overlay.active{display:flex}
    .mobile-nav-overlay a{color:#fff;text-decoration:none;font-size:18px;font-weight:500;padding:8px 20px;border-radius:8px;transition:all 0.3s ease}
    .mobile-nav-overlay a:hover{background:rgba(0,165,160,0.2);color:#4dd9d4}
    .mobile-nav-overlay .cta-button{background:linear-gradient(135deg,#00a5a0,#4dd9d4)!important;color:#fff!important;padding:12px 28px;font-weight:600}
    :root {
      --navy: #1a2744;
      --navy-light: #243352;
      --teal: #00a5a0;
      --teal-light: #4dd9d4;
      --cyan: #00b4a6;
      --blue-deep: #1e3a5f;
      --blue-electric: #2979ff;
      --green: #00a551;
      --coral: #e8604c;
      --indigo: #1a1a3e;
      --white: #ffffff;
      --gray-light: #f5f7fa;
      --gray-medium: #e0e7ff;
      --gray-dark: #2c3e50;
      --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth; scroll-padding-top: 80px;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--gray-dark);
      background: var(--white);
      line-height: 1.6;
      padding-top: 80px;
    }

    /* PREMIUM HEADER */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(26, 39, 68, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
      padding: 16px 0;
    }

    .site-header.scrolled {
      padding: 10px 0;
      background: rgba(26, 39, 68, 0.98);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo-img {
      height: 44px;
      width: auto;
      transition: height 0.3s ease;
    }

    .site-header.scrolled .logo-img {
      height: 36px;
    }

    .header-nav {
      display: flex;
      gap: 32px;
    }

    .header-nav a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.3px;
      transition: color 0.3s ease;
      position: relative;
    }

    .header-nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--teal);
      transition: width 0.3s ease;
    }

    .header-nav a:hover {
      color: var(--white);
    }

    .header-nav a:hover::after {
      width: 100%;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      padding: 10px 24px;
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    }

    .header-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(0, 188, 212, 0.4);
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      margin: 5px 0;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    @media (max-width: 1024px) {
      .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 39, 68, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        z-index: 999;
      }

      .header-nav.active {
        display: flex;
      }

      .header-nav a {
        font-size: 20px;
      }

      .header-cta {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .header-container {
        padding: 0 20px;
      }
    }

    /* HERO SECTION */
    .auto-hero {
      position: relative;
      min-height: auto;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(135deg, #1a2744 0%, #1e3a5f 35%, #00a5a0 100%);
      color: var(--white);
      padding: 40px 20px 56px;
    }

    .auto-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 165, 160, 0.25) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
      pointer-events: none;
      z-index: 1;
    }

    .auto-hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(41, 121, 255, 0.2) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite reverse;
      pointer-events: none;
      z-index: 1;
    }

    .auto-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      text-align: center;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Scroll-triggered reveal */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .auto-hero-subtitle {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      opacity: 0.9;
      margin-bottom: 20px;
    }

    .auto-hero-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(36px, 8vw, 72px);
      font-weight: 800;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .auto-hero-tagline {
      font-size: clamp(20px, 4vw, 32px);
      font-weight: 300;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .auto-hero-description {
      font-size: 18px;
      line-height: 1.8;
      max-width: 700px;
      margin: 0 auto 50px;
      opacity: 0.95;
    }

    .auto-hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin: 50px 0 0;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      overflow: hidden;
    }

    .auto-hero-stat {
      text-align: center;
      padding: 28px 16px;
      position: relative;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .auto-hero-stat:nth-child(3n) {
      border-right: none;
    }

    .auto-hero-stat:nth-child(n+4) {
      border-bottom: none;
    }

    .auto-hero-stat-icon {
      margin-bottom: 10px;
      opacity: 0.9;
    }

    .auto-hero-stat-icon svg {
      width: 28px;
      height: 28px;
    }

    .auto-hero-stat-value {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .auto-hero-stat-label {
      font-size: 12px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      opacity: 0.75;
    }
    /* Two-column hero layout */
    .auto-hero-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      width: 100%;
    }

    .auto-hero-content h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      animation: slideInLeft 1s ease-out;
    }

    .auto-hero-content p {
      font-size: 1.25rem;
      line-height: 1.8;
      opacity: 0.95;
      margin-bottom: 2rem;
      animation: slideInLeft 1s ease-out 0.2s both;
    }

    .auto-hero-visual {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      animation: slideInRight 1s ease-out 0.3s both;
    }

    .auto-hero-card {
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: var(--gray-dark);
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .auto-hero-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Hero card 1, impact stats */
    .auto-hero-card-1 { position: relative; overflow: hidden; }
    .auto-hero-card-1::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 120px;
      height: 120px;
      background: linear-gradient(135deg, rgba(0,165,160,0.08), rgba(77,217,212,0.12));
      border-radius: 50%;
      pointer-events: none;
    }
    .auto-hero-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .auto-hero-stat {
      text-align: center;
      padding: 0.75rem 0.5rem;
      border-radius: 12px;
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
      border: 1px solid #e2e8f0;
    }
    .auto-hero-stat-number {
      font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1.1;
      background: linear-gradient(135deg, #0a1929, #0d47a1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .auto-hero-stat-label {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #64748b;
      margin-top: 0.2rem;
    }
    .auto-hero-stat--highlight {
      background: linear-gradient(135deg, #0a1929, #0d3a6d);
      border-color: transparent;
    }
    .auto-hero-stat--highlight .auto-hero-stat-number {
      background: linear-gradient(135deg, #4dd9d4, #00bcd4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .auto-hero-stat--highlight .auto-hero-stat-label { color: rgba(255,255,255,0.7); }
    .auto-hero-card-tagline {
      text-align: center;
      font-size: 0.82rem;
      color: #64748b;
      margin-top: 1rem;
      padding-top: 0.85rem;
      border-top: 1px solid #e2e8f0;
      font-weight: 500;
    }
    .auto-hero-card-tagline strong { color: #0a1929; }

    /* Hero card 2, qualifications */
    .auto-hero-card-2 {
      background: linear-gradient(135deg, #0a1929 0%, #0d3a6d 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .auto-hero-card-2::before {
      content: '';
      position: absolute;
      bottom: -30px;
      left: -30px;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(0,188,212,0.15), transparent 70%);
      pointer-events: none;
    }
    .auto-hero-card-2 h3 { color: #fff; }
    .qual-stack { display: flex; flex-direction: column; gap: 0.55rem; }
    .qual-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.55rem 0.7rem;
      border-radius: 10px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      transition: background 0.2s;
    }
    .qual-row:hover { background: rgba(255,255,255,0.12); }
    .qual-row-icon {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 800;
      color: #fff;
    }
    .qual-row-text { font-size: 0.85rem; font-weight: 600; flex: 1; }
    .qual-row-tag {
      font-size: 0.68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 2px 8px;
      border-radius: 100px;
      white-space: nowrap;
    }
    .qual-row--ms .qual-row-icon { background: #2563eb; }
    .qual-row--ms .qual-row-tag { background: rgba(37,99,235,0.2); color: #93c5fd; }
    .qual-row--google .qual-row-icon { background: linear-gradient(135deg, #ea4335, #fbbc04, #34a853, #4285f4); }
    .qual-row--google .qual-row-tag { background: rgba(251,188,4,0.15); color: #fde68a; }
    .qual-row--ncfe .qual-row-icon { background: #0d9488; }
    .qual-row--ncfe .qual-row-tag { background: rgba(13,148,136,0.2); color: #5eead4; }
    .qual-row--std .qual-row-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); }
    .qual-row--std .qual-row-tag { background: rgba(124,58,237,0.2); color: #c4b5fd; }
    .qual-row--bcs .qual-row-icon { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
    .qual-row--bcs .qual-row-tag { background: rgba(37,99,235,0.15); color: #93c5fd; font-style: italic; }
    .qual-or-split {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin: 0.1rem 0;
    }
    .qual-or-split span {
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,0.35);
    }
    .qual-or-split::before, .qual-or-split::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.1);
    }
    .qual-funded-line {
      text-align: center;
      margin-top: 0.7rem;
      padding-top: 0.65rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
    }
    .qual-funded-line strong {
      color: #4dd9d4;
      font-weight: 700;
    }

    .accent-text {
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-accent {
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Key metrics section */
    .key-metrics {
      position: relative;
      margin-top: -60px;
      padding: 0 40px 80px;
      z-index: 10;
      background: linear-gradient(180deg, transparent 0%, #f0faf9 40%, white 100%);
    }

    .metrics-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .metric-card {
      text-align: center;
      padding: 2.5rem 1.5rem 2rem;
      background: white;
      border-radius: 0;
      transition: all 0.4s ease;
      opacity: 0;
      animation: fadeInUp 0.8s ease-out forwards;
      position: relative;
      overflow: hidden;
    }

    .metric-card:first-child {
      border-radius: 20px 0 0 20px;
    }

    .metric-card:last-child {
      border-radius: 0 20px 20px 0;
    }

    .metric-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--teal), var(--teal-light));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .metric-card:hover::before {
      transform: scaleX(1);
    }

    .metric-card + .metric-card {
      border-left: 1px solid #e8eff5;
    }

    .metric-card:nth-child(1) { animation-delay: 0.1s; }
    .metric-card:nth-child(2) { animation-delay: 0.2s; }
    .metric-card:nth-child(3) { animation-delay: 0.3s; }
    .metric-card:nth-child(4) { animation-delay: 0.4s; }

    .metric-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 165, 160, 0.15);
      z-index: 2;
      border-radius: 16px;
    }

    .metrics-grid {
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      overflow: hidden;
    }

    .metric-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
    }

    .metric-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 0.4rem;
      line-height: 1;
    }

    .metric-label {
      font-size: 0.9rem;
      color: #64748b;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .metric-card:nth-child(1) .metric-icon {
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
    }

    .metric-card:nth-child(2) .metric-icon {
      background: linear-gradient(135deg, #1e3a5f, #2979ff);
    }

    .metric-card:nth-child(3) .metric-icon {
      background: linear-gradient(135deg, #10b981, #34d399);
    }

    .metric-card:nth-child(4) .metric-icon {
      background: linear-gradient(135deg, #f59e0b, #e8604c);
    }

    
    /* Gradient icon circles */
    .dept-card-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.8rem;
    }

    .dept-card:nth-child(1) .dept-card-icon {
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
    }

    .dept-card:nth-child(2) .dept-card-icon {
      background: linear-gradient(135deg, #e8604c, #f59e0b);
    }

    .dept-card:nth-child(3) .dept-card-icon {
      background: linear-gradient(135deg, #1e3a5f, #00a5a0);
    }

    .dept-card:nth-child(4) .dept-card-icon {
      background: linear-gradient(135deg, #00b4a6, #00a551);
    }

    .dept-card:nth-child(5) .dept-card-icon {
      background: linear-gradient(135deg, #2979ff, #00a5a0);
    }

    .dept-card:nth-child(6) .dept-card-icon {
      background: linear-gradient(135deg, #00a5a0, #1e3a5f);
    }

    /* Qualification card borders */
    .qual-card {
      border-left: 5px solid transparent;
      transition: all 0.3s ease;
    }

    .qual-card:nth-child(1) {
      border-left-color: var(--teal);
    }

    .qual-card:nth-child(2) {
      border-left-color: var(--cyan);
    }

    .qual-card:nth-child(3) {
      border-left-color: var(--blue-electric);
    }

    .qual-card:nth-child(4) {
      border-left-color: var(--green);
    }

    .qual-card:nth-child(5) {
      border-left-color: var(--indigo);
    }

    .qual-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 165, 160, 0.2);
    }

    /* Module number gradient circles */
        .module-num {
      color: #00a5a0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 8px;
    }

    /* Why choose card hover effects */
    .why-card {
      transition: all 0.3s ease;
    }

    .why-card:hover {
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
      color: white;
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0, 165, 160, 0.2);
    }

    .why-card:hover h3 {
      color: white;
    }

    .why-card:hover p {
      color: rgba(255, 255, 255, 0.95);
    }

    /* Section background gradients */
    .departments-section {
      background: linear-gradient(135deg, #f8fafc 0%, #e0f7fa 100%);
    }

    .qualifications-section {
      background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    }

    .why-choose-section {
      background: linear-gradient(135deg, #f8fafc 0%, #e0f7fa 100%);
    }

    /* Counter animation */
    .counter {
      animation: countUp 2s ease-out;
    }

    @keyframes countUp {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    /* CTA section gradient */
    .cta-section { background: linear-gradient(135deg, #1e3a5f 0%, #00a5a0 50%, #4dd9d4 100%) !important; }

    /* SECTION HEADERS & STYLING */
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--gray-dark);
      opacity: 0.8;
      max-width: 600px;
      margin: 0 auto;
    }

    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      text-align: center;
      color: var(--gray-dark);
      opacity: 0.8;
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }

    /* DEPARTMENT CARDS */
    .departments-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .dept-card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      text-align: center;
    }

    .dept-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 165, 160, 0.2);
    }

    .dept-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--navy);
    }

    .dept-card p {
      color: var(--gray-dark);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    @media (max-width: 1024px) {
      .departments-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .departments-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 1.8rem;
      }
    }

    /* QUALIFICATIONS SECTION */
    .qual-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .qual-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .qual-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--navy);
    }

    .qual-card p {
      color: var(--gray-dark);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .qual-cards-grid {
        grid-template-columns: 1fr;
      }
    }

    /* WHY CHOOSE CARDS */
    .why-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .why-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .why-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--navy);
    }

    .why-card p {
      color: var(--gray-dark);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .why-cards-grid {
        grid-template-columns: 1fr;
      }
    }

    /* MODULES */
    .modules-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .module {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      display: flex;
      gap: 1.5rem;
    }

        .module-num {
      color: #00a5a0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 8px;
    }

    .module h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--navy);
    }

    .module p {
      color: var(--gray-dark);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .modules-grid {
        grid-template-columns: 1fr;
      }
    }


@media (max-width: 768px) {
      .auto-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .auto-hero-content h1 {
        font-size: 2.5rem;
      }

      .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .metric-card {
        padding: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .metrics-grid {
        grid-template-columns: 1fr;
      }
    }


    .auto-hero-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .btn {
      padding: 16px 40px;
      border-radius: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: var(--white);
      color: var(--indigo);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
    }

    /* TRUST BADGES */
    .trust-badges {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.1);
      padding: 10px 18px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(5px);
    }

    .trust-badge-icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-badge-icon svg {
      width: 22px;
      height: 22px;
    }

    .trust-badge-text {
      display: flex;
      flex-direction: column;
      line-height: 1.3;
    }

    .trust-badge-rating {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 800;
      color: var(--white);
    }

    .trust-badge-source {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      opacity: 0.7;
    }

    .badge-source {
      font-size: 13px;
      opacity: 0.85;
      letter-spacing: 0.5px;
    }

    /* DEPARTMENTS SECTION */
    .section {
      padding: 80px 20px;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(32px, 6vw, 48px);
      font-weight: 800;
      margin-bottom: 20px;
      color: var(--navy);
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--gray-dark);
      margin: 0 auto 50px;
      max-width: 600px;
    }

    .departments-section {
      background: var(--gray-light);
    }

    .departments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .dept-card {
      background: var(--white);
      border-radius: 16px;
      padding: 40px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      border-left: 5px solid var(--cyan);
      opacity: 0;
      animation: slideInUp 0.6s ease-out forwards;
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .dept-card:nth-child(1) { animation-delay: 0.1s; border-left-color: #00a5a0; }
    .dept-card:nth-child(2) { animation-delay: 0.2s; border-left-color: #e8604c; }
    .dept-card:nth-child(3) { animation-delay: 0.3s; border-left-color: #1e3a5f; }
    .dept-card:nth-child(4) { animation-delay: 0.4s; border-left-color: #00b4a6; }
    .dept-card:nth-child(5) { animation-delay: 0.5s; border-left-color: #2979ff; }
    .dept-card:nth-child(6) { animation-delay: 0.6s; border-left-color: #00a5a0; }

    .dept-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 165, 160, 0.25);
      border-left-color: var(--teal);
      background: linear-gradient(135deg, rgba(0, 165, 160, 0.05), rgba(77, 217, 212, 0.05));
    }

    /* dept-card-icon gradient styles defined above */

    .dept-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--navy);
    }

    .dept-description {
      font-size: 15px;
      line-height: 1.8;
      color: var(--gray-dark);
    }

    /* IDEAL LEARNER SIDEBAR */
    /* WHY AI & AUTOMATION, BENEFITS GRID */
    .benefits-section {
      margin: 60px 0;
    }

    .benefits-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .benefits-header h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .benefits-header p {
      font-size: 1.1rem;
      color: #64748b;
      max-width: 700px;
      margin: 0 auto;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .benefit-card {
      background: white;
      border-radius: 16px;
      padding: 32px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      border: 1px solid #f0f4f8;
      transition: all 0.3s ease;
      opacity: 0;
      animation: fadeInUp 0.6s ease-out forwards;
    }

    .benefit-card:nth-child(1) { animation-delay: 0.05s; }
    .benefit-card:nth-child(2) { animation-delay: 0.1s; }
    .benefit-card:nth-child(3) { animation-delay: 0.15s; }
    .benefit-card:nth-child(4) { animation-delay: 0.2s; }
    .benefit-card:nth-child(5) { animation-delay: 0.25s; }
    .benefit-card:nth-child(6) { animation-delay: 0.3s; }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 165, 160, 0.12);
      border-color: rgba(0, 165, 160, 0.3);
    }

    .benefit-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.5rem;
    }

    .benefit-card:nth-child(1) .benefit-icon { background: linear-gradient(135deg, #00a5a0, #4dd9d4); }
    .benefit-card:nth-child(2) .benefit-icon { background: linear-gradient(135deg, #2979ff, #64b5f6); }
    .benefit-card:nth-child(3) .benefit-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
    .benefit-card:nth-child(4) .benefit-icon { background: linear-gradient(135deg, #e8604c, #f87171); }
    .benefit-card:nth-child(5) .benefit-icon { background: linear-gradient(135deg, #10b981, #34d399); }
    .benefit-card:nth-child(6) .benefit-icon { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }

    .benefit-icon svg {
      width: 26px;
      height: 26px;
      stroke: white;
      fill: none;
    }

    .benefit-text h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .benefit-text p {
      font-size: 0.92rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .benefits-grid {
        grid-template-columns: 1fr;
      }
    }

    /* NO TECH BACKGROUND CALLOUT */
    .callout-box {
      background: linear-gradient(135deg, #1e3a5f, #00a5a0);
      color: var(--white);
      border-radius: 16px;
      padding: 50px 40px;
      margin: 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .callout-box::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .callout-content {
      position: relative;
      z-index: 2;
    }

    .callout-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .callout-text {
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .callout-tagline {
      font-size: 20px;
      font-weight: 700;
      color: var(--cyan);
    }

    /* QUALIFICATIONS SECTION */
    .qualifications-section {
      background: var(--navy);
      color: var(--white);
    }
    .qualifications-section .section-title { color: var(--white); }
    .qualifications-section .section-subtitle { color: rgba(255,255,255,0.75); }

    .qual-intro {
      background: rgba(0,212,255,0.08);
      border-left: 4px solid var(--cyan);
      padding: 24px 28px;
      border-radius: 8px;
      margin-bottom: 48px;
      font-size: 15px;
      line-height: 1.75;
      color: rgba(255,255,255,0.9);
    }

    /*, Core quals: 3 even columns, */
    .qual-core-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    @media (max-width: 768px) { .qual-core-grid { grid-template-columns: 1fr; } }

    .qual-card-v2 {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 32px 28px 28px;
      transition: all 0.35s ease;
      cursor: pointer;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .qual-card-v2:hover {
      background: rgba(0,212,255,0.08);
      border-color: rgba(0,212,255,0.4);
      transform: translateY(-4px);
    }
    .qual-card-v2 .qual-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 16px;
      width: fit-content;
    }
    .qual-badge--ncfe {
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
      color: #fff;
    }
    .qual-badge--ms {
      background: linear-gradient(135deg, #0078d4, #50e6ff);
      color: #fff;
    }
    .qual-badge--google {
      background: linear-gradient(135deg, #4285f4, #34a853);
      color: #fff;
    }
    .qual-badge--bcs {
      background: linear-gradient(135deg, #7c3aed, #a78bfa);
      color: #fff;
    }
    .qual-card-v2 h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .qual-card-v2 .qual-summary {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,0.7);
      flex: 1;
    }
    .qual-card-v2 .qual-expand-hint {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--cyan);
      margin-top: 16px;
      transition: gap 0.2s;
    }
    .qual-card-v2:hover .qual-expand-hint { gap: 10px; }
    .qual-card-v2 .qual-expand-hint .arrow { transition: transform 0.3s; }
    .qual-card-v2.expanded .qual-expand-hint .arrow { transform: rotate(90deg); }
    .qual-detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 0;
    }
    .qual-card-v2.expanded .qual-detail {
      max-height: 400px;
      padding: 16px 0 0;
    }
    .qual-detail-inner {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 16px;
    }
    .qual-detail-inner h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 10px;
    }
    .qual-detail-inner ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .qual-detail-inner li {
      font-size: 13.5px;
      line-height: 1.6;
      color: rgba(255,255,255,0.85);
      padding-left: 20px;
      position: relative;
      margin-bottom: 6px;
    }
    .qual-detail-inner li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #4dd9d4;
      font-weight: 700;
    }

    /*, Ecosystem cert section, */
    .qual-ecosystem {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 32px;
    }
    @media (max-width: 768px) { .qual-ecosystem { grid-template-columns: 1fr; } }
    .qual-eco-card {
      border-radius: 16px;
      padding: 32px 28px 28px;
      transition: all 0.35s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .qual-eco-card:hover { transform: translateY(-4px); }
    .qual-eco-card--ms {
      background: rgba(0,120,212,0.1);
      border: 1px solid rgba(0,120,212,0.3);
    }
    .qual-eco-card--ms:hover { border-color: rgba(0,120,212,0.6); }
    .qual-eco-card--google {
      background: rgba(66,133,244,0.08);
      border: 1px solid rgba(66,133,244,0.25);
    }
    .qual-eco-card--google:hover { border-color: rgba(66,133,244,0.55); }
    .qual-eco-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .qual-eco-card .qual-summary { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); flex: 1; }
    .qual-eco-card .qual-expand-hint {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--cyan); margin-top: 16px; transition: gap 0.2s;
    }
    .qual-eco-card:hover .qual-expand-hint { gap: 10px; }
    .qual-eco-card .qual-expand-hint .arrow { transition: transform 0.3s; }
    .qual-eco-card.expanded .qual-expand-hint .arrow { transform: rotate(90deg); }
    .qual-eco-card .qual-detail { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
    .qual-eco-card.expanded .qual-detail { max-height: 400px; padding: 16px 0 0; }
    .eco-or-divider {
      display: none;
    }
    @media (min-width: 769px) {
      .eco-or-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--navy);
        border: 2px solid rgba(255,255,255,0.15);
        font-size: 13px;
        font-weight: 700;
        color: rgba(255,255,255,0.5);
        z-index: 2;
      }
    }

    /*, BCS stretch callout, */
    .qual-stretch {
      margin-top: 32px;
      background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(167,139,250,0.06));
      border: 1px dashed rgba(167,139,250,0.35);
      border-radius: 16px;
      padding: 28px 32px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      cursor: pointer;
      transition: all 0.35s;
    }
    .qual-stretch:hover {
      border-color: rgba(167,139,250,0.6);
      background: rgba(124,58,237,0.12);
    }
    @media (max-width: 600px) { .qual-stretch { flex-direction: column; } }
    .qual-stretch-icon {
      font-size: 28px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .qual-stretch-body { flex: 1; }
    .qual-stretch-body h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #c4b5fd;
      margin-bottom: 6px;
    }
    .qual-stretch-body .qual-summary {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,0.65);
    }
    .qual-stretch .qual-expand-hint {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: #a78bfa; margin-top: 12px; transition: gap 0.2s;
    }
    .qual-stretch:hover .qual-expand-hint { gap: 10px; }
    .qual-stretch .qual-expand-hint .arrow { transition: transform 0.3s; }
    .qual-stretch.expanded .qual-expand-hint .arrow { transform: rotate(90deg); }
    .qual-stretch .qual-detail { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .qual-stretch.expanded .qual-detail { max-height: 400px; padding: 12px 0 0; }
    .qual-stretch .qual-detail-inner { border-top: 1px solid rgba(167,139,250,0.2); padding-top: 14px; }
    .qual-stretch .qual-detail-inner li::before { color: #a78bfa; }

    /* COMPARISON TABLE */
    .comparison-section {
      background: var(--white);
    }

    /* COMPARISON SECTION */
    .comparison-section {
      background: var(--white);
    }

    .comparison-visual {
      display: flex;
      align-items: stretch;
      gap: 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .comparison-col {
      flex: 1;
      border-radius: 20px;
      overflow: hidden;
    }

    .comparison-col-header {
      padding: 24px;
      text-align: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
    }

    .tess-col {
      background: var(--white);
      border: 2px solid var(--teal);
      box-shadow: 0 8px 40px rgba(0, 188, 212, 0.15);
    }

    .tess-col .comparison-col-header {
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
    }

    .others-col {
      background: #fafafa;
      border: 2px solid #e5e7eb;
    }

    .others-col .comparison-col-header {
      background: #6b7280;
    }

    .comparison-item-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 24px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      font-size: 15px;
      line-height: 1.5;
      color: var(--gray-dark);
    }

    .comparison-item-row svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .comparison-vs {
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--navy);
      padding: 0 30px;
      opacity: 0.3;
    }

    .comparison-cta {
      text-align: center;
      margin-top: 50px;
    }

    @media (max-width: 768px) {
      .comparison-visual {
        flex-direction: column;
        gap: 20px;
      }

      .comparison-vs {
        padding: 10px 0;
      }
    }

    /* MODULES SECTION */
    .modules-section {
      background: var(--gray-light);
    }

    .modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

        .module-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      border: 1px solid #e5e7eb;
      border-left: 4px solid #00a5a0;
      transition: all 0.4s ease;
      opacity: 0;
      animation: fadeInUp 0.6s ease-out forwards;
    }

    .module-card:nth-child(1) { animation-delay: 0.05s; }
    .module-card:nth-child(2) { animation-delay: 0.1s; }
    .module-card:nth-child(3) { animation-delay: 0.15s; }
    .module-card:nth-child(4) { animation-delay: 0.2s; }
    .module-card:nth-child(5) { animation-delay: 0.25s; }
    .module-card:nth-child(6) { animation-delay: 0.3s; }
    .module-card:nth-child(7) { animation-delay: 0.35s; }
    .module-card:nth-child(8) { animation-delay: 0.4s; }
    .module-card:nth-child(9) { animation-delay: 0.45s; }
    .module-card:nth-child(10) { animation-delay: 0.5s; }
    .module-card:nth-child(11) { animation-delay: 0.55s; }
    .module-card:nth-child(12) { animation-delay: 0.6s; }

    .module-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(0, 165, 160, 0.15);
      border-left-color: #4dd9d4;
    }

    .module-card:nth-child(odd) {
      border-top-color: var(--cyan);
    }

    .module-card:nth-child(3n) {
      border-top-color: var(--green);
    }

    .module-card:nth-child(5n) {
      border-top-color: var(--indigo);
    }

    .module-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .module-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue-electric);
      margin-bottom: 10px;
    }

    .module-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--navy);
    }

    .module-description {
      font-size: 14px;
      line-height: 1.7;
      color: var(--gray-dark);
      margin-bottom: 15px;
    }


    /* Expandable module detail */
    .module-card { cursor: pointer; position: relative; }
    .module-card::after {
      content: 'Click for details ▾';
      display: block;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #94a3b8;
      margin-top: 10px;
      transition: all 0.3s;
    }
    .module-card.expanded::after { content: 'Close ▴'; color: var(--teal); }
    .module-card--no-expand { cursor: default; }
    .module-card--no-expand::after { display: none; }
    .module-detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, margin 0.3s ease;
      margin-top: 0;
    }
    .module-card.expanded .module-detail {
      max-height: 500px;
      margin-top: 14px;
    }
    .module-detail-inner {
      border-top: 1px solid #e5e7eb;
      padding-top: 14px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    @media(max-width:600px) { .module-detail-inner { grid-template-columns: 1fr; } }
    .module-benefit {
      font-size: 0.8rem;
      line-height: 1.55;
      color: #475569;
    }
    .module-benefit-title {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 5px;
    }
    .module-benefit-title--learner { color: var(--teal); }
    .module-benefit-title--employer { color: var(--deep-blue); }
    .module-example {
      grid-column: 1 / -1;
      background: #f8fafc;
      border-radius: 8px;
      padding: 10px 12px;
      font-size: 0.78rem;
      color: #64748b;
      font-style: italic;
      border-left: 3px solid var(--teal);
    }


    /* LEARNER JOURNEY SECTION */
    .journey-section {
      background: linear-gradient(135deg, var(--indigo), var(--blue-electric));
      color: var(--white);
    }

    .journey-section .section-title {
      color: var(--white);
    }

    .journey-section .section-subtitle {
      color: rgba(255, 255, 255, 0.9);
    }

    .timeline {
      position: relative;
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .timeline-item {
      opacity: 0;
      animation: fadeInUp 0.6s ease-out forwards;
    }

    .timeline-item:nth-child(1) { animation-delay: 0.1s; }
    .timeline-item:nth-child(2) { animation-delay: 0.2s; }
    .timeline-item:nth-child(3) { animation-delay: 0.3s; }
    .timeline-item:nth-child(4) { animation-delay: 0.4s; }
    .timeline-item:nth-child(5) { animation-delay: 0.5s; }
    .timeline-item:nth-child(6) { animation-delay: 0.6s; }

    .timeline-content {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(0, 212, 255, 0.2);
      border-radius: 16px;
      padding: 30px;
      backdrop-filter: blur(10px);
      height: 100%;
      transition: all 0.3s ease;
    }

    .timeline-content:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      border-color: rgba(0, 212, 255, 0.4);
    }

    .timeline-dot {
      display: none;
    }

    .timeline-period {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--teal-light);
      margin-bottom: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: linear-gradient(135deg, rgba(0, 165, 160, 0.3), rgba(77, 217, 212, 0.3));
      display: inline-block;
      padding: 4px 14px;
      border-radius: 20px;
    }

    .timeline-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: white;
    }

    .timeline-description {
      font-size: 15px;
      line-height: 1.8;
      opacity: 0.95;
      color: rgba(255, 255, 255, 0.85);
    }

    @media (max-width: 768px) {
      .timeline {
        grid-template-columns: 1fr;
      }
    }

    /* EPA SECTION */
    .epa-section {
      background: var(--gray-light);
    }

    .epa-overview {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-bottom: 60px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .epa-overview-card {
      flex: 1;
      background: var(--white);
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      text-align: center;
    }

    .epa-overview-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
    }

    .epa-overview-card h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .epa-badge {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .epa-badge.mandatory {
      background: rgba(0, 165, 81, 0.12);
      color: var(--green);
    }

    .epa-badge.additional {
      background: rgba(0, 188, 212, 0.12);
      color: var(--teal);
    }

    .epa-overview-card p {
      font-size: 15px;
      line-height: 1.7;
      color: #64748b;
    }

    .epa-plus {
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--teal);
      padding: 0 24px;
      flex-shrink: 0;
    }

    .epa-methods {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 16px;
    }

    .epa-methods span {
      padding: 6px 14px;
      background: var(--gray-light);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--navy);
    }

    .epa-sub-heading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--navy);
      text-align: center;
      margin-bottom: 8px;
    }

    .epa-sub-text {
      text-align: center;
      font-size: 16px;
      color: #64748b;
      margin-bottom: 40px;
    }

    .ao-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .ao-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 24px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
      border-left: 4px solid var(--teal);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ao-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .ao-number {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--teal);
      background: rgba(0, 188, 212, 0.1);
      padding: 4px 10px;
      border-radius: 6px;
      margin-bottom: 12px;
    }

    .ao-card h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .ao-card p {
      font-size: 14px;
      line-height: 1.6;
      color: #64748b;
    }

    @media (max-width: 768px) {
      .epa-overview {
        flex-direction: column;
        gap: 20px;
      }

      .epa-plus {
        padding: 0;
        font-size: 24px;
      }

      .ao-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1024px) {
      .ao-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* WHY CHOOSE SECTION */
    .why-section {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .why-card {
      background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(41, 121, 255, 0.1));
      border-radius: 12px;
      padding: 40px;
      border: 1px solid rgba(0, 212, 255, 0.2);
      transition: all 0.3s ease;
      opacity: 0;
      animation: slideInUp 0.6s ease-out forwards;
    }

    .why-card:nth-child(1) { animation-delay: 0.1s; }
    .why-card:nth-child(2) { animation-delay: 0.2s; }
    .why-card:nth-child(3) { animation-delay: 0.3s; }
    .why-card:nth-child(4) { animation-delay: 0.4s; }
    .why-card:nth-child(5) { animation-delay: 0.5s; }
    .why-card:nth-child(6) { animation-delay: 0.6s; }

    .why-card:hover {
      background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(41, 121, 255, 0.2));
      border-color: var(--cyan);
      transform: translateY(-8px);
    }

    .why-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .why-icon svg {
      width: 28px;
      height: 28px;
      stroke: white;
    }

    .why-card:nth-child(1) .why-icon { background: linear-gradient(135deg, #00a5a0, #4dd9d4); }
    .why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, #f59e0b, #e8604c); }
    .why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, #1e3a5f, #00a5a0); }
    .why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, #00b4a6, #00a551); }
    .why-card:nth-child(5) .why-icon { background: linear-gradient(135deg, #2979ff, #00b4a6); }
    .why-card:nth-child(6) .why-icon { background: linear-gradient(135deg, #e8604c, #f59e0b); }

    .why-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--navy);
    }

    .why-text {
      font-size: 15px;
      line-height: 1.7;
      color: var(--gray-dark);
    }

    /* FAQ SECTION */
    .faq-section {
      background: var(--gray-light);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border-radius: 12px;
      margin-bottom: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }

    .faq-question {
      padding: 25px 30px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      background: var(--gray-light);
    }

    .faq-question-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
    }

    .faq-toggle {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--blue-electric);
      color: var(--white);
      border-radius: 50%;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .faq-item.active .faq-toggle {
      transform: rotate(180deg);
      background: linear-gradient(135deg, #00a5a0, #4dd9d4);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--gray-light);
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
    }

    .faq-answer-content {
      padding: 25px 30px;
      font-size: 15px;
      line-height: 1.8;
      color: var(--gray-dark);
    }

    /* ROI SECTION */
    .roi-section {
      background: linear-gradient(135deg, var(--navy) 0%, #0d4d4f 100%);
      color: white;
      padding: 80px 40px;
    }

    .roi-intro {
      text-align: center;
      margin-bottom: 3rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .roi-intro h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: white;
      margin-bottom: 12px;
    }

    .roi-intro p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1rem;
    }

    .roi-grid {
      max-width: 1200px;
      margin: 0 auto 3rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .roi-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      text-align: center;
      opacity: 0;
      animation: fadeInUp 0.8s ease-out forwards;
      transition: all 0.3s ease;
    }

    .roi-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-6px);
      border-color: rgba(0, 165, 160, 0.4);
    }

    .roi-card:nth-child(1) { animation-delay: 0.1s; }
    .roi-card:nth-child(2) { animation-delay: 0.2s; }
    .roi-card:nth-child(3) { animation-delay: 0.3s; }
    .roi-card:nth-child(4) { animation-delay: 0.4s; }

    .roi-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1rem;
    }

    .roi-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--teal-light), #fff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .roi-label {
      font-size: 0.95rem;
      opacity: 0.9;
      line-height: 1.5;
    }

    .roi-chart {
      max-width: 1200px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.08);
      padding: 2.5rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .chart-heading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 2rem;
      color: white;
    }

    .progress-bars {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .progress-item {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .progress-label {
      width: 200px;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .progress-bar-container {
      flex: 1;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      overflow: hidden;
    }

    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--teal), var(--teal-light));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 1rem;
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
      width: 0;
      animation: barGrow 1.5s ease-out forwards;
    }

    @keyframes barGrow {
      from { width: 0; }
    }

    .progress-item:nth-child(1) .progress-bar-fill { animation-delay: 0.3s; }
    .progress-item:nth-child(2) .progress-bar-fill { animation-delay: 0.5s; }
    .progress-item:nth-child(3) .progress-bar-fill { animation-delay: 0.7s; }

    @media (max-width: 768px) {
      .roi-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .progress-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .progress-label {
        width: 100%;
      }
    }

    /* COMPETITIVE ADVANTAGE SECTION */
    .advantage-section {
      background: linear-gradient(135deg, #f8fafc 0%, #dff7f8 100%);
      padding: 80px 40px;
    }

    .advantage-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: center;
    }

    .advantage-visual {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .advantage-badge {
      background: white;
      padding: 1.5rem;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      opacity: 0;
      animation: slideInLeft 0.8s ease-out forwards;
    }

    .advantage-badge:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .advantage-badge:nth-child(1) { animation-delay: 0.1s; }
    .advantage-badge:nth-child(2) { animation-delay: 0.2s; }
    .advantage-badge:nth-child(3) { animation-delay: 0.3s; }

    .badge-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .badge-content h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .badge-content p {
      font-size: 0.9rem;
      color: #64748b;
      margin: 0;
    }

    .advantage-content h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 2rem;
      line-height: 1.3;
    }

    .advantage-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .advantage-item {
      display: flex;
      gap: 1rem;
      opacity: 0;
      animation: slideInRight 0.8s ease-out forwards;
    }

    .advantage-item:nth-child(1) { animation-delay: 0.2s; }
    .advantage-item:nth-child(2) { animation-delay: 0.4s; }
    .advantage-item:nth-child(3) { animation-delay: 0.6s; }

    .advantage-checkmark {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      flex-shrink: 0;
      font-size: 1.2rem;
    }

    .advantage-text h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .advantage-text p {
      font-size: 0.95rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .advantage-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .advantage-badge:nth-child(2) {
        align-self: flex-start;
      }
    }

    /* TESTIMONIAL SECTION */
    .testimonial-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
      color: white !important;
      padding: 40px 40px;
    }

    .testimonial-section .testimonial-quote,
    .testimonial-section .testimonial-name,
    .testimonial-section .testimonial-role,
    .testimonial-section .testimonial-avatar {
      color: white !important;
      -webkit-text-fill-color: white !important;
    }

    .testimonial-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .testimonial-quote {
      font-size: 1.15rem;
      font-style: italic;
      margin-bottom: 1rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.95);
      opacity: 0;
      animation: fadeInUp 1s ease-out forwards;
    }

    .testimonial-quote::before {
      content: '\201C';
      font-size: 2.2rem;
      margin-right: 0.15rem;
      opacity: 0.3;
      vertical-align: -0.15em;
    }

    .testimonial-avatar {
      font-size: 1.8rem;
      margin-bottom: 0.4rem;
    }

    .testimonial-name {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 0.15rem;
    }

    .testimonial-role {
      font-size: 0.8rem;
      opacity: 0.7;
    }

    /* CTA SECTION */
    .cta-section {
      background: linear-gradient(135deg, #1a2744 0%, #1e3a5f 25%, #00a5a0 50%, #4dd9d4 75%, #00a5a0 100%) !important;
      background-size: 200% 200% !important;
      animation: gradientShift 8s ease infinite !important;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(32px, 6vw, 48px);
      font-weight: 800;
      margin-bottom: 20px;
      color: white !important;
    }

    .cta-description {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 40px;
      opacity: 0.95;
      color: rgba(255, 255, 255, 0.95) !important;
    }

    .cta-button {
      padding: 18px 50px;
      background: var(--white);
      color: var(--indigo);
      border-radius: 12px;
      font-weight: 700;
      font-size: 16px;
      border: none;
      cursor: pointer;
      display: inline-block;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    /* PARTNERS & AWARDING BODIES */
    .partners-section {
      padding: 80px 20px 60px;
      text-align: center;
      background: var(--gray-light);
    }
    .partners-subtitle {
      font-size: 17px;
      color: var(--gray-dark);
      opacity: 0.7;
      margin-top: 12px;
      margin-bottom: 40px;
    }
    .partners-logo-grid {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      max-width: 900px;
      margin: 0 auto;
    }
    .partner-logo-card {
      background: var(--white);
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 28px 20px 20px;
      width: 155px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .partner-logo-card:hover {
      border-color: var(--teal);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,165,160,0.12);
    }
    .partner-logo-card img {
      height: 52px;
      width: auto;
      margin-bottom: 4px;
      transition: transform 0.3s;
    }
    .partner-logo-card:hover img { transform: scale(1.06); }
    .partner-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }
    .partner-sublabel {
      font-size: 11px;
      color: var(--gray-dark);
      opacity: 0.6;
      font-weight: 500;
    }

    /* CLIENT LOGO STRIP */
    .client-logos-section {
      padding: 60px 20px 50px;
      text-align: center;
      background: var(--white);
      overflow: hidden;
    }
    .client-logos-label {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gray-dark);
      opacity: 0.5;
      margin-bottom: 32px;
    }
    .client-logos-track {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      max-width: 1100px;
      margin: 0 auto;
    }
    .client-logos-track img {
      height: 34px;
      width: auto;
      opacity: 0.45;
      filter: grayscale(100%);
      transition: all 0.4s ease;
    }
    .client-logos-track img:hover {
      opacity: 0.85;
      filter: grayscale(0%);
    }
    @media (max-width: 768px) {
      .client-logos-track {
        gap: 32px;
      }
      .client-logos-track img {
        height: 26px;
      }
    }

    /* ===== EXPLORE PROGRAMMES ===== */
    .explore-programmes {
        padding: 5rem 2rem;
        background: var(--light-bg, #f8f9fb);
    }

    .explore-programmes .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .explore-programmes .section-header h2 {
        font-size: 2rem;
        color: var(--navy, #1a2f6b);
        margin-bottom: 0.5rem;
    }

    .explore-programmes .section-header p {
        color: #666;
        font-size: 1.1rem;
    }

    .explore-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .explore-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        text-decoration: none;
        color: inherit;
        border: 1px solid #e8ecf2;
        transition: all 0.3s;
        display: flex;
        flex-direction: column;
    }

    .explore-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        border-color: var(--teal, #00a5a0);
    }

    .explore-card.current {
        border: 2px solid var(--teal, #00a5a0);
        background: linear-gradient(135deg, rgba(0,165,160,0.05), rgba(0,165,160,0.02));
    }

    .explore-card-level {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--teal, #00a5a0);
        margin-bottom: 0.5rem;
    }

    .explore-card h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--navy, #1a2f6b);
        margin-bottom: 0.5rem;
    }

    .explore-card p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        flex-grow: 1;
    }

    .explore-card-meta {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e8ecf2;
        font-size: 0.8rem;
        color: #999;
    }

    .explore-home-link {
        text-align: center;
        margin-top: 2rem;
    }

    .explore-home-link a {
        color: var(--teal, #00a5a0);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: color 0.3s;
    }

    .explore-home-link a:hover {
        color: var(--navy, #1a2f6b);
    }

    /* FOOTER */
    footer {
      background: var(--navy);
      color: var(--white);
      padding: 0;
      margin-top: 0;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 24px 30px;
    }

    .footer-accred {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
      padding-bottom: 40px;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-accred img {
      height: 28px;
      width: auto;
      opacity: 0.55;
      transition: opacity 0.3s;
    }

    .footer-accred img:hover {
      opacity: 0.85;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 480px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,0.55);
      margin-top: 12px;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      line-height: 2;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-col a:hover {
      color: var(--cyan);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
    }

    .accreditation-logos {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 30px;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 600;
      letter-spacing: 0.5px;
      background: rgba(255, 255, 255, 0.06);
      padding: 8px 16px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .logo-badge svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .auto-hero {
        padding: 60px 20px 40px;
      }

      .auto-hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .auto-hero-stat:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
      }

      .auto-hero-stat:nth-child(2n) {
        border-right: none;
      }

      .auto-hero-stat:nth-child(n+5) {
        border-bottom: none;
      }

      .auto-hero-stat:nth-child(n+4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .auto-hero-stat-value {
        font-size: 26px;
      }

      .trust-badges {
        gap: 12px;
      }

      .trust-badge {
        padding: 8px 14px;
      }

      .section {
        padding: 60px 20px;
      }

      .comparison-table {
        font-size: 13px;
      }

      .comparison-table th,
      .comparison-table td {
        padding: 12px;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .cta-section { background: linear-gradient(135deg, #1e3a5f 0%, #00a5a0 50%, #4dd9d4 100%) !important; }

      .cta-title {
        font-size: 32px;
      }
    }

    /* SCROLL ANIMATIONS */
    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-out;
    }

    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* SVG INLINE */
    svg {
      fill: currentColor;
      width: 24px;
      height: 24px;
    }

    /* ANIMATED PROGRESS BARS */
    .chart-bars {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 2rem;
    }

    .bar-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .bar-label {
      flex: 0 0 150px;
      font-weight: 600;
      color: var(--gray-dark);
    }

    .bar-container {
      flex: 1;
      height: 30px;
      background: #e5e7eb;
      border-radius: 15px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--teal), var(--cyan));
      width: 0;
      transition: width 2s ease-out;
      border-radius: 15px;
    }

    .bar-value {
      flex: 0 0 50px;
      text-align: right;
      font-weight: 700;
      color: var(--gray-dark);
    }

    .bar-fill.animate {
      animation: fillBar 2s ease-out forwards;
    }

    @keyframes fillBar {
      to {
        width: var(--width);
      }
    }

    /* ECOSYSTEM SELECTOR */
    .ecosystem-section {
      padding: 60px 40px;
      background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
      text-align: center;
    }
    .ecosystem-section .eco-eyebrow {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }
    .ecosystem-section h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .ecosystem-section .eco-sub {
      font-size: 0.95rem;
      color: #64748b;
      max-width: 640px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .eco-cards {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .eco-card {
      background: #fff;
      border: 2px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      min-width: 260px;
      max-width: 320px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .eco-card:hover {
      border-color: var(--teal);
      box-shadow: 0 8px 32px rgba(0,165,160,0.1);
    }
    .eco-card img {
      height: 48px;
      width: auto;
    }
    .eco-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0;
    }
    .eco-card .eco-tools {
      font-size: 0.82rem;
      color: #64748b;
      line-height: 1.6;
    }
    .eco-card .eco-cert {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: 0.05em;
      padding: 6px 14px;
      background: rgba(0,165,160,0.08);
      border-radius: 20px;
    }
    .eco-note {
      font-size: 0.85rem;
      color: #94a3b8;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.6;
    }
    @media (max-width: 640px) {
      .eco-cards { flex-direction: column; align-items: center; }
      .eco-card { min-width: unset; width: 100%; max-width: 340px; }
      .ecosystem-section { padding: 40px 20px; }
      .ecosystem-section h2 { font-size: 1.5rem; }
    }