      :root {
        --blue: #35459a;
        --navy: #1b2460;
        --yellow: #dca200;
        --yellow-light: #fff5d6;
        --bg: #f6f8fc;
        --white: #ffffff;
        --text: #1d2433;
        --muted: #64748b;
        --border: #e5eaf3;
        --blue-mid: #2a3880;

        --font-impact: "Anton", sans-serif;
        --font-head: "Antonio", sans-serif;
        --font-body: "Poppins", sans-serif;
        --font-accent: "Kalam", cursive;

        --radius-sm: 8px;
        --radius-md: 14px;
        --radius-lg: 20px;
        --shadow-card: 0 2px 16px rgba(27, 36, 96, 0.09);
        --shadow-hover: 0 12px 40px rgba(27, 36, 96, 0.18);
        --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
      }

      /* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }
      body {
        font-family: var(--font-body);
        color: var(--text);
        background: var(--white);
        line-height: 1.65;
        -webkit-font-smoothing: antialiased;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        text-decoration: none;
        color: inherit;
      }

      /* ═══════════════════════════════════════
   SKIP LINK + ACCESSIBILITY
═══════════════════════════════════════ */
      .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--yellow);
        color: var(--navy);
        padding: 8px 16px;
        font-family: var(--font-head);
        font-weight: 700;
        z-index: 9999;
        transition: top 0.2s;
      }
      .skip-link:focus {
        top: 0;
      }

      /* ═══════════════════════════════════════
   MINI HEADER (breadcrumb / context bar)
═══════════════════════════════════════ */
      .mini-header {
        background: var(--navy);
        padding: 0 clamp(20px, 5vw, 80px);
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--font-head);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.4px;
      }
      .mini-header .logo-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--white);
      }
      .logo-mark {
        width: 36px;
        height: 36px;
        background: var(--yellow);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-impact);
        font-size: 18px;
        color: var(--navy);
        flex-shrink: 0;
      }
      .logo-text-sm {
        font-family: var(--font-head);
        font-weight: 600;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.2;
      }
      .logo-text-sm span {
        display: block;
        font-size: 10px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }
      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
      }
      .breadcrumb a {
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.2s;
      }
      .breadcrumb a:hover {
        color: var(--yellow);
      }
      .breadcrumb .sep {
        opacity: 0.4;
      }
      .breadcrumb .current {
        color: var(--yellow);
      }
      .mini-header-cta {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .btn-sm {
        font-family: var(--font-head);
        font-size: 12px;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 6px;
        cursor: pointer;
        letter-spacing: 0.3px;
        transition: var(--transition);
        border: none;
      }
      .btn-sm-outline {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.8);
      }
      .btn-sm-outline:hover {
        border-color: var(--yellow);
        color: var(--yellow);
      }
      .btn-sm-yellow {
        background: var(--yellow);
        color: var(--navy);
      }
      .btn-sm-yellow:hover {
        background: #f5c500;
      }

      /* ═══════════════════════════════════════
   REUSABLE UTILITIES
═══════════════════════════════════════ */
      .section-wrap {
        padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
      }
      .section-wrap-tight {
        padding: clamp(48px, 6vw, 80px) clamp(20px, 6vw, 80px);
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .eyebrow {
        font-family: var(--font-head);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--yellow);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .eyebrow::before {
        content: "";
        display: block;
        width: 28px;
        height: 2px;
        background: var(--yellow);
        flex-shrink: 0;
      }
      .eyebrow-dark {
        color: var(--blue);
      }
      .eyebrow-dark::before {
        background: var(--blue);
      }

      .section-heading {
        font-family: var(--font-impact);
        font-size: clamp(28px, 4vw, 44px);
        color: var(--navy);
        line-height: 1.08;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
      }
      .section-heading-white {
        color: var(--white);
      }

      .section-sub {
        font-family: var(--font-body);
        font-size: 15px;
        color: var(--muted);
        max-width: 580px;
        line-height: 1.75;
        margin-bottom: 40px;
      }
      .section-sub-white {
        color: rgba(200, 215, 255, 0.75);
      }

      /* fade-up animation */
      .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.55s ease,
          transform 0.55s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
      .hero {
        background: linear-gradient(
          140deg,
          var(--navy) 0%,
          var(--blue) 60%,
          #3a56c0 100%
        );
        min-height: 88vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      /* Background watermark */
      .hero::before {
        content: "MCA";
        position: absolute;
        right: -40px;
        bottom: -60px;
        font-family: var(--font-impact);
        font-size: clamp(200px, 28vw, 380px);
        color: rgba(255, 255, 255, 0.03);
        letter-spacing: -10px;
        pointer-events: none;
        user-select: none;
        line-height: 1;
      }

      /* Diagonal stripe accent */
      .hero::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.02);
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        pointer-events: none;
      }

      .hero-left {
        padding: clamp(48px, 7vw, 90px) clamp(24px, 5vw, 80px);
        position: relative;
        z-index: 2;
      }

      .hero-programme-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(220, 162, 0, 0.15);
        border: 1px solid rgba(220, 162, 0, 0.45);
        border-radius: 6px;
        padding: 5px 14px;
        font-family: var(--font-head);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2.5px;
        color: var(--yellow);
        text-transform: uppercase;
        margin-bottom: 24px;
      }
      .hero-programme-badge svg {
        width: 14px;
        height: 14px;
      }

      .hero-h1 {
        font-family: var(--font-impact);
        font-size: clamp(32px, 5vw, 58px);
        color: var(--white);
        line-height: 1.05;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
      }

      .hero-h1 em {
        font-style: normal;
        color: var(--yellow);
      }

      .hero-accent-line {
        font-family: var(--font-head);
        font-size: clamp(14px, 1.6vw, 18px);
        font-weight: 600;
        color: rgba(200, 215, 255, 0.85);
        letter-spacing: 0.5px;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .hero-accent-line::before {
        content: "";
        width: 32px;
        height: 2px;
        background: var(--yellow);
        flex-shrink: 0;
      }

      .hero-body {
        font-family: var(--font-body);
        font-size: 15px;
        color: rgba(200, 215, 255, 0.75);
        line-height: 1.8;
        /*max-width: 500px;*/
        margin-bottom: 36px;
      }
      .hero-body strong {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
      }

      .hero-ctas {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .btn-primary-hero {
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 14px 28px;
        background: var(--yellow);
        color: var(--navy);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .btn-primary-hero:hover {
        background: #f5c500;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(220, 162, 0, 0.35);
      }
      .btn-outline-hero {
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 13px 28px;
        background: transparent;
        color: rgba(255, 255, 255, 0.85);
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        border-radius: var(--radius-sm);
        cursor: pointer;
        transition: var(--transition);
      }
      .btn-outline-hero:hover {
        border-color: var(--yellow);
        color: var(--yellow);
      }

      /* Hero right — tech visual */
      .hero-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 48px 40px 48px 0;
        z-index: 2;
      }

      .hero-visual {
        position: relative;
        width: 100%;
        max-width: 480px;
      }

      .hero-visual svg {
        width: 100%;
        height: auto;
      }

      /* Floating stats cards on hero visual */
      .hero-float-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: var(--radius-md);
        padding: 14px 18px;
        font-family: var(--font-head);
        color: var(--white);
      }
      .hero-float-card .hfc-num {
        font-family: var(--font-impact);
        font-size: 26px;
        color: var(--yellow);
        line-height: 1;
        margin-bottom: 2px;
      }
      .hero-float-card .hfc-label {
        font-size: 11px;
        font-weight: 400;
        color: rgba(200, 215, 255, 0.7);
        letter-spacing: 0.5px;
      }
      .hfc-1 {
        top: 10%;
        left: -16px;
      }
      .hfc-2 {
        bottom: 14%;
        right: -10px;
      }
      .hfc-3 {
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
      }

      /* ═══════════════════════════════════════
   IDENTITY STRIP
═══════════════════════════════════════ */
      .identity-strip {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 0 clamp(20px, 6vw, 80px);
        box-shadow: 0 2px 16px rgba(27, 36, 96, 0.07);
        position: relative;
        z-index: 10;
      }
      .identity-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-left: 1px solid var(--border);
      }
      .identity-card {
        padding: 28px 24px;
        border-right: 1px solid var(--border);
        display: flex;
        align-items: flex-start;
        gap: 14px;
        transition: var(--transition);
      }
      .identity-card:hover {
        background: var(--bg);
      }
      .identity-card:hover .id-icon {
        color: var(--yellow);
      }
      .id-icon {
        color: var(--blue);
        flex-shrink: 0;
        margin-top: 2px;
        transition: color 0.25s;
      }
      .id-icon svg {
        width: 22px;
        height: 22px;
      }
      .id-content {
      }
      .id-label {
        font-family: var(--font-head);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 4px;
      }
      .id-value {
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.4;
      }
      .id-top-border {
        border-top: 3px solid var(--yellow);
      }

      /* ═══════════════════════════════════════
   DEPARTMENT OVERVIEW
═══════════════════════════════════════ */
      .dept-section {
        background: var(--bg);
      }
      .dept-grid {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 60px;
        align-items: start;
      }
      .dept-body {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.85;
        margin-bottom: 0;
      }
      .dept-body p {
        margin-bottom: 16px;
      }
      .dept-body p:last-child {
        margin-bottom: 0;
      }
      .dept-body strong {
        color: var(--navy);
        font-weight: 600;
      }

      .focus-card {
        background: var(--white);
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
        border-top: 4px solid var(--yellow);
        padding: 28px;
        box-shadow: var(--shadow-card);
      }
      .focus-card-title {
        font-family: var(--font-head);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .focus-card-title svg {
        width: 16px;
        height: 16px;
      }
      .focus-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .focus-tag {
        font-family: var(--font-head);
        font-size: 13px;
        font-weight: 500;
        color: var(--blue);
        background: rgba(53, 69, 154, 0.08);
        border: 1px solid rgba(53, 69, 154, 0.15);
        border-radius: 6px;
        padding: 7px 14px;
        transition: var(--transition);
        cursor: default;
      }
      .focus-tag:hover {
        background: var(--blue);
        color: var(--white);
        border-color: var(--blue);
        transform: translateY(-2px);
      }

      /* ═══════════════════════════════════════
   VISION SECTION
═══════════════════════════════════════ */
      .vision-section {
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .vision-section::before {
        content: "VISION";
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-impact);
        font-size: clamp(80px, 14vw, 180px);
        color: rgba(255, 255, 255, 0.03);
        letter-spacing: 8px;
        pointer-events: none;
        user-select: none;
        line-height: 1;
      }
      .vision-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
        position: relative;
        z-index: 2;
      }
      .vision-left {
      }
      .vision-left .eyebrow {
        color: var(--yellow);
      }
      .vision-left .eyebrow::before {
        background: var(--yellow);
      }
      .vision-left h2 {
        font-family: var(--font-impact);
        font-size: clamp(28px, 4vw, 46px);
        color: var(--white);
        line-height: 1.08;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
      }
      .vision-icon-wrap {
        width: 64px;
        height: 64px;
        border: 1.5px solid rgba(220, 162, 0, 0.4);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
      }
      .vision-icon-wrap svg {
        width: 30px;
        height: 30px;
        color: var(--yellow);
      }

      .vision-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 4px solid var(--yellow);
        border-radius: var(--radius-md);
        padding: 36px 32px;
        backdrop-filter: blur(8px);
      }
      .vision-card-label {
        font-family: var(--font-head);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        color: var(--yellow);
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .vision-statement {
        font-family: var(--font-head);
        font-size: clamp(16px, 2vw, 20px);
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.65;
      }
      .vision-statement em {
        font-style: italic;
        color: var(--yellow);
      }

      /* ═══════════════════════════════════════
   MISSION SECTION
═══════════════════════════════════════ */
      .mission-section {
        background: var(--white);
      }
      .mission-intro {
        max-width: 700px;
        font-size: 15px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 48px;
      }
      .mission-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .mission-grid > :last-child:nth-child(3n + 1) {
        grid-column: span 3;
        max-width: 380px;
      }
      .mission-grid > :nth-last-child(2):nth-child(3n + 2),
      .mission-grid > :last-child:nth-child(3n + 2) {
        grid-column: span 1;
      }

      /* Actually let's do 5 cards in a specific layout */
      .mission-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 20px;
      }
      .mission-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 28px 24px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
      }
      .mission-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }
      .mission-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-5px);
        background: var(--white);
        border-color: rgba(53, 69, 154, 0.2);
      }
      .mission-card:hover::after {
        transform: scaleX(1);
      }
      .mission-card:hover .mc-icon-wrap {
        background: var(--blue);
      }
      .mission-card:hover .mc-icon-wrap svg {
        color: var(--white);
      }

      .mc-icon-wrap {
        width: 48px;
        height: 48px;
        background: rgba(53, 69, 154, 0.09);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: var(--transition);
      }
      .mc-icon-wrap svg {
        width: 22px;
        height: 22px;
        color: var(--blue);
        transition: color 0.25s;
      }
      .mc-num {
        font-family: var(--font-impact);
        font-size: 11px;
        letter-spacing: 2px;
        color: var(--yellow);
        margin-bottom: 8px;
        display: block;
      }
      .mc-title {
        font-family: var(--font-head);
        font-size: 17px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
        line-height: 1.3;
      }
      .mc-desc {
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--muted);
        line-height: 1.75;
      }

      /* Row 2: last 2 cards wider */
      .mission-card:nth-child(4),
      .mission-card:nth-child(5) {
        /* Handled by explicit placement below */
      }

      /* ═══════════════════════════════════════
   PEO SECTION
═══════════════════════════════════════ */
      .peo-section {
        background: var(--bg);
        position: relative;
        overflow: hidden;
      }
      .peo-section::before {
        content: "PEO";
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-impact);
        font-size: clamp(100px, 18vw, 220px);
        color: rgba(53, 69, 154, 0.045);
        pointer-events: none;
        line-height: 1;
      }
      .peo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        position: relative;
        z-index: 2;
      }
      .peo-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--border);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
      }
      .peo-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-6px);
        border-color: rgba(220, 162, 0, 0.4);
      }
      .peo-card:hover .peo-icon-wrap {
        background: var(--yellow);
      }
      .peo-card:hover .peo-icon-wrap svg {
        color: var(--navy);
      }
      .peo-num-badge {
        display: inline-block;
        font-family: var(--font-impact);
        font-size: 10px;
        letter-spacing: 2.5px;
        color: var(--white);
        background: var(--blue);
        padding: 3px 10px;
        border-radius: 4px;
        margin-bottom: 20px;
      }
      .peo-icon-wrap {
        width: 54px;
        height: 54px;
        background: rgba(53, 69, 154, 0.09);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: var(--transition);
      }
      .peo-icon-wrap svg {
        width: 26px;
        height: 26px;
        color: var(--blue);
        transition: color 0.25s;
      }
      .peo-title {
        font-family: var(--font-head);
        font-size: 20px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
        line-height: 1.25;
      }
      .peo-desc {
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--muted);
        line-height: 1.8;
        flex: 1;
      }

      /* ═══════════════════════════════════════
   PROGRAMME OUTCOMES
═══════════════════════════════════════ */
      .po-section {
        background: var(--white);
      }
      .po-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .po-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 22px 24px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        transition: var(--transition);
      }
      .po-card:hover {
        border-color: rgba(53, 69, 154, 0.3);
        background: var(--white);
        box-shadow: var(--shadow-card);
      }
      .po-card:hover .po-num {
        background: var(--blue);
        color: var(--white);
      }
      .po-num {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(53, 69, 154, 0.09);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-impact);
        font-size: 14px;
        color: var(--blue);
        transition: var(--transition);
        margin-top: 2px;
      }
      .po-content {
      }
      .po-title {
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
        line-height: 1.3;
      }
      .po-desc {
        font-family: var(--font-body);
        font-size: 13px;
        color: var(--muted);
        line-height: 1.7;
      }

      /* ═══════════════════════════════════════
   GRADUATE PROFILE
═══════════════════════════════════════ */
      .grad-section {
        background: linear-gradient(
          135deg,
          var(--navy) 0%,
          var(--blue-mid) 50%,
          var(--blue) 100%
        );
        position: relative;
        overflow: hidden;
        text-align: center;
      }
      .grad-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          radial-gradient(
            circle at 20% 50%,
            rgba(220, 162, 0, 0.07) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 45%
          );
      }
      .grad-section .container {
        position: relative;
        z-index: 2;
      }
      .grad-section .eyebrow {
        justify-content: center;
        color: var(--yellow);
      }
      .grad-section .eyebrow::before {
        background: var(--yellow);
      }
      .grad-section h2 {
        color: var(--white);
        margin-bottom: 14px;
      }
      .grad-body {
        font-family: var(--font-body);
        font-size: 15px;
        color: rgba(200, 215, 255, 0.75);
        max-width: 600px;
        margin: 0 auto 44px;
        line-height: 1.8;
      }
      .capability-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
      }
      .capability-chip {
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.88);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 40px;
        padding: 11px 22px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition);
        cursor: default;
      }
      .capability-chip svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
      }
      .capability-chip:hover {
        background: var(--yellow);
        color: var(--navy);
        border-color: var(--yellow);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(220, 162, 0, 0.3);
      }
      .capability-chip:hover svg {
        color: var(--navy);
      }

      /* ═══════════════════════════════════════
   CLOSING CTA SECTION
═══════════════════════════════════════ */
      .cta-section {
        background: var(--bg);
        border-top: 1px solid var(--border);
        position: relative;
        overflow: hidden;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(53, 69, 154, 0.04) 0%,
          transparent 60%
        );
      }
      .cta-inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 48px;
        align-items: center;
      }
      .cta-content {
      }
      .cta-tagline {
        font-family: var(--font-accent);
        font-size: 13px;
        font-weight: 700;
        color: var(--yellow);
        letter-spacing: 0.5px;
        margin-bottom: 8px;
      }
      .cta-h2 {
        font-family: var(--font-impact);
        font-size: clamp(26px, 3.5vw, 42px);
        color: var(--navy);
        line-height: 1.08;
        margin-bottom: 16px;
        letter-spacing: 0.5px;
      }
      .cta-h2 em {
        font-style: normal;
        color: var(--blue);
      }
      .cta-body {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.8;
        max-width: 620px;
        margin-bottom: 12px;
      }
      .cta-body strong {
        color: var(--navy);
        font-weight: 600;
      }
      .cta-brand-line {
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 600;
        color: var(--blue);
        letter-spacing: 0.5px;
      }
      .cta-brand-line span {
        font-family: var(--font-accent);
        color: var(--yellow);
      }
      .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-width: 220px;
      }
      .btn-cta-primary {
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 14px 28px;
        background: var(--yellow);
        color: var(--navy);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        text-align: center;
        transition: var(--transition);
        white-space: nowrap;
      }
      .btn-cta-primary:hover {
        background: #f5c500;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 162, 0, 0.3);
      }
      .btn-cta-secondary {
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
        padding: 13px 28px;
        background: transparent;
        color: var(--blue);
        border: 1.5px solid var(--blue);
        border-radius: var(--radius-sm);
        cursor: pointer;
        text-align: center;
        transition: var(--transition);
        white-space: nowrap;
      }
      .btn-cta-secondary:hover {
        background: var(--blue);
        color: var(--white);
      }
      .btn-cta-ghost {
        font-family: var(--font-head);
        font-size: 13px;
        font-weight: 600;
        padding: 10px 20px;
        background: transparent;
        color: var(--muted);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        cursor: pointer;
        text-align: center;
        transition: var(--transition);
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
      }
      .btn-cta-ghost:hover {
        border-color: var(--blue);
        color: var(--blue);
      }

      /* ═══════════════════════════════════════
   MINI FOOTER
═══════════════════════════════════════ */
      .mini-footer {
        background: var(--navy);
        padding: 24px clamp(20px, 6vw, 80px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }
      .mini-footer p {
        font-family: var(--font-body);
        font-size: 12px;
        color: rgba(200, 215, 255, 0.45);
      }
      .mini-footer-links {
        display: flex;
        gap: 20px;
        font-family: var(--font-head);
        font-size: 12px;
        font-weight: 600;
      }
      .mini-footer-links a {
        color: rgba(200, 215, 255, 0.5);
        transition: color 0.2s;
      }
      .mini-footer-links a:hover {
        color: var(--yellow);
      }

      /* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
      @media (max-width: 1024px) {
        .dept-grid {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .focus-card {
          max-width: 480px;
        }
        .mission-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .mission-card:nth-child(5) {
          grid-column: 1 / -1;
        }
      }

      @media (max-width: 900px) {
        .hero {
          grid-template-columns: 1fr;
          min-height: auto;
        }
        .hero-right {
          display: none;
        }
        .hero-left {
          padding: clamp(48px, 8vw, 72px) clamp(20px, 5vw, 48px);
        }
        .identity-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .identity-card:nth-child(2n) {
          border-right: none;
        }
        .identity-card:nth-child(3),
        .identity-card:nth-child(4) {
          border-top: 1px solid var(--border);
        }
        .vision-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .peo-grid {
          grid-template-columns: 1fr 1fr;
        }
        .cta-inner {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .cta-buttons {
          flex-direction: row;
          flex-wrap: wrap;
        }
      }

      @media (max-width: 640px) {
        .mini-header .breadcrumb {
          display: none;
        }
        .mini-header-cta .btn-sm-outline {
          display: none;
        }
        .identity-grid {
          grid-template-columns: 1fr;
          border-left: none;
        }
        .identity-card {
          border-right: 1px solid var(--border);
          border-top: 1px solid var(--border);
          border-left: 1px solid var(--border);
          border-radius: 0;
        }
        .identity-card:first-child {
          border-top: none;
        }
        .mission-grid {
          grid-template-columns: 1fr;
        }
        .mission-card:nth-child(5) {
          grid-column: auto;
        }
        .peo-grid {
          grid-template-columns: 1fr;
        }
        .po-grid {
          grid-template-columns: 1fr;
        }
        .capability-chip {
          font-size: 13px;
          padding: 9px 16px;
        }
        .cta-buttons {
          flex-direction: column;
        }
        .mini-footer {
          flex-direction: column;
          text-align: center;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .fade-up {
          opacity: 1;
          transform: none;
          transition: none;
        }
        * {
          transition: none !important;
          animation: none !important;
        }
      }
    