      :root {
        --navy: #111a44;
        --blue: #374799;
        --blue-mid: #4a5bbf;
        --gold: #dca200;
        --gold-light: #f4c542;
        --gold-pale: #fff8e6;
        --off-white: #f6f7fb;
        --white: #ffffff;
        --charcoal: #1e2535;
        --body-gray: #3a3f52;
        --muted: #dfe4ff;
      }

      /* ── RESET ── */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Poppins", sans-serif;
        color: var(--charcoal);
        background: var(--white);
        line-height: 1.65;
        font-size: 16px;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        text-decoration: none;
        color: inherit;
      }

      /* ── TYPE HELPERS ── */
      .label-pill {
        display: inline-block;
        background: var(--gold);
        color: var(--navy);
        font-family: "Poppins", sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 50px;
      }
      .section-eyebrow {
        font-family: "Antonio", sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
        display: block;
      }
      .section-title-anton {
        font-family: "Anton", sans-serif;
        line-height: 1;
        letter-spacing: 0.5px;
      }
      .antonio {
        font-family: "Antonio", sans-serif;
      }

      /* ── BREADCRUMB ── */
      .breadcrumb {
        background: var(--navy);
        padding: 12px 40px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
      }
      .breadcrumb a {
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.2s;
      }
      .breadcrumb a:hover {
        color: var(--gold);
      }
      .breadcrumb .sep {
        color: rgba(255, 255, 255, 0.25);
      }
      .breadcrumb .current {
        color: var(--gold);
      }

      /* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
      .hero {
        background: linear-gradient(
          135deg,
          #0c1235 0%,
          #1a2a6c 45%,
          #374799 100%
        );
        min-height: 92vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 80px 60px;
        position: relative;
        overflow: hidden;
        gap: 60px;
      }
      /* Dot grid overlay */
      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.035) 1px,
          transparent 1px
        );
        background-size: 32px 32px;
        pointer-events: none;
      }

      /* Canvas particles live behind everything */
      #hero-canvas {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
      }

      .hero-left {
        position: relative;
        z-index: 2;
      }
      .hero-right {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .hero-label {
        margin-bottom: 20px;
      }
      .hero-h1 {
        font-family: "Anton", sans-serif;
        font-size: clamp(44px, 5.5vw, 66px);
        color: var(--white);
        line-height: 1;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
      }
      .hero-tagline {
        font-family: "Antonio", sans-serif;
        font-size: clamp(22px, 2.8vw, 34px);
        color: var(--gold);
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 24px;
      }
      .hero-intro {
        font-size: 16px;
        color: rgba(230, 235, 255, 0.85);
        line-height: 1.75;
        /*max-width: 500px;*/
        margin-bottom: 24px;
      }
      .hero-accent {
        font-family: "Kalam", cursive;
        font-size: 22px;
        color: var(--gold);
        font-weight: 700;
      }
      .hero-ctas {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 32px;
      }

      .btn-gold {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 14px;
        padding: 13px 28px;
        background: var(--gold);
        color: var(--navy);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.22s;
      }
      .btn-gold:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(220, 162, 0, 0.35);
      }
      .btn-outline-white {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 14px;
        padding: 13px 28px;
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.22s;
      }
      .btn-outline-white:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.08);
      }

      /* ── ORBIT GRAPHIC ── */
      .orbit-graphic {
        width: 420px;
        height: 420px;
        position: relative;
        flex-shrink: 0;
      }
      .orbit-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 112px;
        height: 112px;
        background: linear-gradient(
          135deg,
          var(--gold) 0%,
          var(--gold-light) 100%
        );
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 5;
        /* Pulse animation on center only */
        animation: orbit-pulse 3s ease-in-out infinite;
      }
      @keyframes orbit-pulse {
        0%,
        100% {
          box-shadow:
            0 0 0 10px rgba(220, 162, 0, 0.12),
            0 0 0 22px rgba(220, 162, 0, 0.06);
        }
        50% {
          box-shadow:
            0 0 0 16px rgba(220, 162, 0, 0.18),
            0 0 0 32px rgba(220, 162, 0, 0.08);
        }
      }
      .orbit-center-label {
        font-family: "Anton", sans-serif;
        font-size: 13px;
        color: var(--navy);
        letter-spacing: 1px;
        line-height: 1.1;
        text-align: center;
      }

      .orbit-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
      }
      .orbit-ring-1 {
        width: 200px;
        height: 200px;
        border: 1.5px solid rgba(255, 255, 255, 0.1);
      }
      .orbit-ring-2 {
        width: 340px;
        height: 340px;
        border: 1px dashed rgba(220, 162, 0, 0.2);
      }
      .orbit-ring-outer {
        width: 412px;
        height: 412px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        animation: spin-ring 50s linear infinite;
      }
      @keyframes spin-ring {
        to {
          transform: translate(-50%, -50%) rotate(360deg);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .orbit-ring-outer {
          animation: none;
        }
        .orbit-center {
          animation: none;
        }
      }

      .orbit-node {
        position: absolute;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
      }
      .orbit-dot {
        width: 46px;
        height: 46px;
        background: rgba(55, 71, 153, 0.85);
        border: 2px solid var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Antonio", sans-serif;
        font-weight: 700;
        font-size: 11px;
        color: var(--gold);
        letter-spacing: 0.5px;
        backdrop-filter: blur(4px);
        transition:
          transform 0.2s,
          background 0.2s;
      }
      .orbit-dot svg {
        width: 20px;
        height: 20px;
      }
      .orbit-dot:hover {
        transform: scale(1.18);
        background: rgba(220, 162, 0, 0.2);
      }
      .orbit-dot-label {
        font-family: "Poppins", sans-serif;
        font-size: 10px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        white-space: nowrap;
        background: rgba(17, 26, 68, 0.75);
        padding: 2px 8px;
        border-radius: 20px;
      }

      .on-vision {
        top: calc(50% - 158px);
        left: 50%;
      }
      .on-mission {
        top: calc(50% - 52px);
        left: calc(50% + 149px);
      }
      .on-po {
        top: calc(50% + 122px);
        left: calc(50% + 93px);
      }
      .on-pso {
        top: calc(50% + 122px);
        left: calc(50% - 93px);
      }
      .on-peo {
        top: calc(50% - 52px);
        left: calc(50% - 149px);
      }

      /* ══════════════════════════════════════════════════
   SHARED LAYOUT
══════════════════════════════════════════════════ */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
      }
      .section-pad {
        padding: 88px 0;
      }
      .sec-title-block {
        text-align: center;
        margin-bottom: 56px;
      }
      .gold-divider {
        width: 56px;
        height: 3px;
        background: var(--gold);
        border-radius: 2px;
        margin: 16px auto 0;
      }
      .title-white {
        color: var(--white);
      }
      .title-blue {
        color: var(--blue);
      }
      .title-navy {
        color: var(--navy);
      }
      .subtitle-navy {
        color: var(--navy);
      }

      /* ══════════════════════════════════════════════════
   VISION
══════════════════════════════════════════════════ */
      .section-vision {
        background: var(--white);
      }
      .vision-quote-card {
        background: var(--white);
        border-left: 8px solid var(--gold);
        border-radius: 22px;
        padding: 52px 56px;
        box-shadow: 0 8px 48px rgba(55, 71, 153, 0.1);
        position: relative;
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
      }
      .vision-quote-card::before {
        content: '"';
        font-family: "Anton", sans-serif;
        font-size: 260px;
        color: var(--gold);
        opacity: 0.06;
        position: absolute;
        top: -30px;
        left: 8px;
        line-height: 1;
        pointer-events: none;
      }
      .vision-statement {
        font-weight: 500;
        font-size: clamp(18px, 2vw, 23px);
        color: var(--navy);
        line-height: 1.65;
        position: relative;
        z-index: 1;
      }

      /* ══════════════════════════════════════════════════
   VISION FOCUS
══════════════════════════════════════════════════ */
      .section-vision-focus {
        background: var(--off-white);
      }
      .focus-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
      }
      .focus-card {
        background: var(--white);
        border-top: 5px solid var(--gold);
        border-radius: 18px;
        padding: 28px 20px 24px;
        box-shadow: 0 2px 16px rgba(55, 71, 153, 0.07);
        text-align: center;
        transition:
          transform 0.25s,
          box-shadow 0.25s;
      }
      .focus-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 36px rgba(55, 71, 153, 0.15);
      }
      .focus-icon {
        width: 54px;
        height: 54px;
        background: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
      }
      .focus-icon svg {
        width: 26px;
        height: 26px;
      }
      .focus-card-title {
        font-family: "Antonio", sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 8px;
      }
      .focus-card-text {
        font-size: 13px;
        color: var(--body-gray);
        line-height: 1.6;
      }

      /* ══════════════════════════════════════════════════
   MISSION
══════════════════════════════════════════════════ */
      .section-mission {
        background: var(--navy);
      }
      .mission-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .mission-card {
        background: var(--white);
        border-radius: 16px;
        padding: 22px 28px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition:
          transform 0.25s,
          box-shadow 0.25s;
      }
      .mission-card:hover {
        transform: translateX(6px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
      }
      .mission-badge {
        background: var(--gold);
        color: var(--navy);
        font-family: "Antonio", sans-serif;
        font-weight: 700;
        font-size: 17px;
        padding: 10px 18px;
        border-radius: 10px;
        flex-shrink: 0;
        letter-spacing: 1px;
        min-width: 58px;
        text-align: center;
      }
      .mission-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        margin-top: 4px;
        color: var(--blue);
      }
      .mission-icon svg {
        width: 36px;
        height: 36px;
      }
      .mission-text {
        font-weight: 500;
        font-size: 17px;
        color: var(--navy);
        line-height: 1.6;
        padding-top: 6px;
      }

      /* ══════════════════════════════════════════════════
   PROGRAMME OBJECTIVES
══════════════════════════════════════════════════ */
      .section-po {
        background: var(--off-white);
      }
      .po-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .po-card {
        background: var(--white);
        border: 1px solid #e5e8f5;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 2px 12px rgba(55, 71, 153, 0.06);
        transition: all 0.25s;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .po-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      .po-card:hover {
        border-color: var(--blue);
        transform: translateY(-4px);
        box-shadow: 0 12px 36px rgba(55, 71, 153, 0.13);
      }
      .po-card:hover::after {
        transform: scaleX(1);
      }
      .po-card.full-width {
        grid-column: 1/-1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
      }
      .po-header {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .po-badge {
        display: inline-block;
        background: var(--gold);
        color: var(--navy);
        font-family: "Antonio", sans-serif;
        font-weight: 700;
        font-size: 14px;
        padding: 5px 16px;
        border-radius: 50px;
        letter-spacing: 1px;
        white-space: nowrap;
      }
      .po-icon-circle {
        width: 38px;
        height: 38px;
        background: var(--off-white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .po-icon-circle svg {
        width: 20px;
        height: 20px;
      }
      .po-text {
        font-weight: 500;
        font-size: 15.5px;
        color: var(--charcoal);
        line-height: 1.65;
      }

      /* ══════════════════════════════════════════════════
   PSO — animated blob background
══════════════════════════════════════════════════ */
      .section-pso {
        background: linear-gradient(
          135deg,
          var(--gold) 0%,
          var(--gold-light) 100%
        );
        padding: 88px 0;
        position: relative;
        overflow: hidden;
      }
      /* Animated morphing blob */
      .pso-blob {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 600px;
        height: 600px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: blob-morph 8s ease-in-out infinite;
        pointer-events: none;
      }
      @keyframes blob-morph {
        0%,
        100% {
          border-radius: 60% 40% 55% 45%/45% 55% 40% 60%;
          transform: translate(-50%, -50%) scale(1);
        }
        33% {
          border-radius: 40% 60% 45% 55%/55% 45% 60% 40%;
          transform: translate(-50%, -50%) scale(1.06);
        }
        66% {
          border-radius: 55% 45% 60% 40%/40% 60% 45% 55%;
          transform: translate(-50%, -50%) scale(0.96);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .pso-blob {
          animation: none;
        }
      }
      .pso-card {
        background: var(--white);
        border-radius: 24px;
        padding: 48px;
        max-width: 860px;
        margin: 0 auto;
        box-shadow: 0 16px 64px rgba(17, 26, 68, 0.18);
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .pso-icon-wrap {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, var(--navy), var(--blue));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 22px;
      }
      .pso-icon-wrap svg {
        width: 34px;
        height: 34px;
      }
      .pso-statement {
        font-weight: 600;
        font-size: clamp(17px, 2vw, 21px);
        color: var(--navy);
        line-height: 1.65;
        margin-bottom: 16px;
      }
      .pso-accent {
        font-family: "Kalam", cursive;
        font-size: 24px;
        color: var(--blue);
        font-weight: 700;
      }

      /* ══════════════════════════════════════════════════
   PEO
══════════════════════════════════════════════════ */
      .section-peo {
        background: var(--white);
      }
      .peo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .peo-card {
        background: #eef2ff;
        border-radius: 20px;
        padding: 32px;
        border-bottom: 6px solid var(--blue);
        display: flex;
        flex-direction: column;
        gap: 16px;
        transition: all 0.25s;
      }
      .peo-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(55, 71, 153, 0.16);
      }
      .peo-badge {
        display: inline-block;
        background: var(--gold);
        color: var(--navy);
        font-family: "Antonio", sans-serif;
        font-weight: 700;
        font-size: 14px;
        padding: 5px 16px;
        border-radius: 50px;
        letter-spacing: 1px;
        width: fit-content;
      }
      .peo-icon {
        width: 44px;
        height: 44px;
        background: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(55, 71, 153, 0.1);
      }
      .peo-icon svg {
        width: 24px;
        height: 24px;
      }
      .peo-text {
        font-weight: 500;
        font-size: 15px;
        color: var(--charcoal);
        line-height: 1.7;
        flex: 1;
      }

      /* ══════════════════════════════════════════════════
   OUTCOME JOURNEY — line draws in on scroll
══════════════════════════════════════════════════ */
      .section-journey {
        background: var(--navy);
      }
      .journey-wrap {
        position: relative;
        padding-top: 16px;
      }

      /* The animated connector line */
      .journey-line-track {
        position: absolute;
        top: 44px;
        left: 44px;
        right: 44px;
        height: 2px;
        background: rgba(255, 255, 255, 0.06);
        overflow: hidden;
      }
      .journey-line-fill {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          var(--gold),
          var(--gold-light),
          var(--gold)
        );
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .journey-line-fill.drawn {
        transform: scaleX(1);
      }

      .journey-timeline {
        display: flex;
        align-items: flex-start;
        gap: 0;
      }
      .journey-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 6px;
      }
      .journey-icon-wrap {
        width: 88px;
        height: 88px;
        background: rgba(55, 71, 153, 0.35);
        border: 1.5px solid rgba(255, 255, 255, 0.07);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s;
      }
      .journey-icon-wrap svg {
        width: 36px;
        height: 36px;
      }
      .journey-step:hover .journey-icon-wrap {
        background: rgba(220, 162, 0, 0.14);
        border-color: rgba(220, 162, 0, 0.5);
      }
      .journey-num-dot {
        width: 44px;
        height: 44px;
        background: var(--gold);
        color: var(--navy);
        font-family: "Antonio", sans-serif;
        font-weight: 700;
        font-size: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -22px auto 20px;
        box-shadow: 0 4px 16px rgba(220, 162, 0, 0.35);
        position: relative;
        z-index: 2;
      }
      .journey-heading {
        font-family: "Antonio", sans-serif;
        font-weight: 700;
        font-size: 20px;
        color: var(--white);
        margin-bottom: 6px;
      }
      .journey-text {
        font-size: 12.5px;
        color: var(--muted);
        line-height: 1.6;
      }

      /* ══════════════════════════════════════════════════
   GROWTH MAP
══════════════════════════════════════════════════ */
      .section-growth {
        background: var(--gold-pale);
      }
      .growth-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .growth-card {
        background: var(--white);
        border-radius: 18px;
        padding: 28px;
        box-shadow: 0 2px 16px rgba(55, 71, 153, 0.07);
        transition: all 0.25s;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .growth-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gold);
        transition: background 0.25s;
      }
      .growth-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(55, 71, 153, 0.14);
      }
      .growth-card:hover::before {
        background: var(--blue);
      }
      .growth-icon {
        width: 42px;
        height: 42px;
        background: var(--off-white);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .growth-icon svg {
        width: 22px;
        height: 22px;
      }
      .growth-card-title {
        font-family: "Antonio", sans-serif;
        font-weight: 700;
        font-size: 22px;
        color: var(--blue);
      }
      .growth-card-text {
        font-size: 14px;
        color: var(--body-gray);
        line-height: 1.65;
      }

      /* ══════════════════════════════════════════════════
   CLOSING CTA
══════════════════════════════════════════════════ */
      .section-cta {
        background: linear-gradient(
          135deg,
          #1a2a6c 0%,
          #374799 50%,
          #0c1235 100%
        );
        padding: 88px 0;
        position: relative;
        overflow: hidden;
        text-align: center;
      }
      .section-cta::before {
        content: "";
        position: absolute;
        right: -60px;
        top: -80px;
        width: 380px;
        height: 380px;
        background: var(--gold);
        opacity: 0.05;
        border-radius: 50%;
        pointer-events: none;
      }
      .section-cta::after {
        content: "";
        position: absolute;
        left: -80px;
        bottom: -60px;
        width: 300px;
        height: 300px;
        background: var(--gold);
        opacity: 0.04;
        border-radius: 50%;
        pointer-events: none;
      }
      .cta-heading {
        font-family: "Anton", sans-serif;
        font-size: clamp(34px, 4.5vw, 52px);
        color: var(--white);
        line-height: 1.05;
        margin-bottom: 24px;
        position: relative;
        z-index: 1;
      }
      .cta-text {
        font-size: 16px;
        color: rgba(230, 235, 255, 0.85);
        max-width: 960px;
        margin: 0 auto 36px;
        line-height: 1.75;
        position: relative;
        z-index: 1;
      }
      .cta-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
      }
      .btn-cta-outline {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 13px;
        padding: 12px 24px;
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.35);
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.22s;
      }
      .btn-cta-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
      }

      /* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: none;
      }
      @media (prefers-reduced-motion: reduce) {
        .reveal {
          opacity: 1;
          transform: none;
          transition: none;
        }
      }

      /* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
      @media (max-width: 1024px) {
        .hero {
          grid-template-columns: 1fr;
          padding: 64px 32px;
          min-height: auto;
        }
        .hero-right {
          display: none;
        }
        .focus-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .peo-grid {
          grid-template-columns: 1fr;
        }
        .growth-grid {
          grid-template-columns: 1fr 1fr;
        }
        .po-grid {
          grid-template-columns: 1fr;
        }
        .po-card.full-width {
          grid-column: auto;
          max-width: 100%;
        }
        .journey-line-track {
          display: none;
        }
        .journey-timeline {
          flex-direction: column;
          gap: 24px;
        }
        .journey-step {
          flex-direction: row;
          text-align: left;
          gap: 16px;
          align-items: flex-start;
        }
        .journey-icon-wrap {
          width: 56px;
          height: 56px;
          flex-shrink: 0;
        }
        .journey-icon-wrap svg {
          width: 24px;
          height: 24px;
        }
        .journey-num-dot {
          margin: 0;
          flex-shrink: 0;
        }
      }
      @media (max-width: 768px) {
        .container {
          padding: 0 20px;
        }
        .section-pad {
          padding: 60px 0;
        }
        .focus-grid {
          grid-template-columns: 1fr 1fr;
        }
        .growth-grid {
          grid-template-columns: 1fr;
        }
        .vision-quote-card {
          padding: 32px 24px;
        }
        .pso-card {
          padding: 28px 20px;
        }
        .breadcrumb {
          padding: 12px 20px;
        }
        .sec-title-block {
          margin-bottom: 36px;
        }
      }
      @media (max-width: 480px) {
        .focus-grid {
          grid-template-columns: 1fr;
        }
        .hero-ctas {
          flex-direction: column;
        }
        .cta-buttons button,
        .cta-buttons a {
          width: 100%;
        }
      }
