    /* ==================================================================
       EDUK8U® Brand Tokens
       ================================================================== */
    :root {
      --brand-navy: #052A65;
      --brand-navy-700: #1F345F;
      --brand-navy-600: #18315A;
      --brand-navy-900: #0A1428;
      --brand-orange: #DD5426;
      --brand-orange-600: #E5622A;
      --brand-orange-50: #FDF1EB;
      --ink-900: #0B1730;
      --ink-700: #2C3656;
      --ink-500: #5A6587;
      --ink-400: #8089A8;
      --ink-300: #A8AFC6;
      --paper: #FAF7F2;
      --paper-warm: #F4EFE6;
      --line: #E7E2D6;
      --white: #FFFFFF;
      --green: #1F7A4D;
      --gold: #B58A2B;

      --font-display: "Playfair Display", "Times New Roman", serif;
      --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      --container: 1320px;
      --container-narrow: 1080px;

      --r-sm: 8px;
      --r: 12px;
      --r-lg: 20px;
      --r-xl: 28px;
      --r-pill: 999px;

      --shadow-sm: 0 1px 2px rgba(11, 23, 48, .06), 0 1px 1px rgba(11, 23, 48, .04);
      --shadow: 0 8px 24px -8px rgba(11, 23, 48, .18), 0 2px 6px rgba(11, 23, 48, .08);
      --shadow-lg: 0 24px 60px -16px rgba(11, 23, 48, .28);
    }

    /* Reset & base */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      -webkit-text-size-adjust: 100%;
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink-900);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body.eduk8u-landing:not(.eduk8u-404) {
      overflow-x: clip;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: 0;
      background: none;
      color: inherit;
    }

    input,
    select {
      font: inherit;
      color: inherit;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.1;
      margin: 0 0 .5em;
      color: var(--ink-900);
    }

    p {
      margin: 0 0 1em;
    }


    .pathway-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }


    .pathway-step {
      position: relative;
      overflow: hidden;
      background: #f5f7fb;
      padding: 40px 30px;
      transition: transform 0.35s ease;
      z-index: 1;
      box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
    }

    .pathway-step::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 0;
      background: #ffffff;
      z-index: -1;
      transition: width 0.45s ease, height 0.45s ease;
    }

    .pathway-step:hover::after {
      width: 100%;
      height: 100%;
    }

    /* Hover */
    .pathway-step:hover {
      background: #ffffff;
      transform: translateY(-10px);

    }

    /* Top Border Animation */
    .pathway-step::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 3px !important;
      height: 0px;
      background: #dd5426;
      transition: width 0.35s ease;
    }

    .pathway-step:hover::before {
      height: 100%;
    }

    /* Text Styles */
    .step-num {
      font-size: 13px;
      font-weight: 600;
      color: #888;
      margin-bottom: 16px;
      letter-spacing: 1px;
      transition: color 0.35s ease;
    }

    .pathway-step h4 {
      font-size: 26px;
      font-weight: 700;
      color: #111;
      margin-bottom: 18px;
      transition: color 0.35s ease;
    }

    .pathway-step p {
      font-size: 15px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 22px;
      transition: color 0.35s ease;
    }

    .duration {
      font-size: 14px;
      font-weight: 600;
      color: #111;
      transition: color 0.35s ease;
    }

    /* Force Black Text on Hover */
    .pathway-step:hover h4,
    .pathway-step:hover p,
    .pathway-step:hover .duration,
    .pathway-step:hover .step-num {
      color: #dd5426;
    }

    /* Layout helpers */
    .wrap {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    .wrap-narrow {
      width: 100%;
      max-width: var(--container-narrow);
      margin: 0 auto;
      padding: 0 20px;
    }

    @media (min-width: 768px) {

      .wrap,
      .wrap-narrow {
        padding: 0 32px;
      }
    }

    @media (min-width: 1280px) {

      .wrap,
      .wrap-narrow {
        padding: 0 40px;
      }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brand-orange);
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1.5px;
      background: var(--brand-orange);
      display: inline-block;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 22px;
      border-radius: var(--r-pill);
      font-weight: 600;
      font-size: 15px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--brand-orange);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--brand-orange-600);
      transform: translateY(-1px);
      box-shadow: var(--shadow);
    }

    .btn-secondary {
      background: var(--brand-navy);
      color: #fff;
    }

    .btn-secondary:hover {
      background: var(--brand-navy-700);
    }

    .btn-ghost {
      background: transparent;
      color: var(--brand-navy);
      border: 1.5px solid var(--brand-navy);
    }

    .btn-ghost:hover {
      background: var(--brand-navy);
      color: #fff;
    }

    .btn-whatsapp {
      background: #25D366;
      color: #fff;
    }

    .btn-whatsapp:hover {
      background: #1FB755;
    }

    .btn-lg {
      height: 56px;
      padding: 0 28px;
      font-size: 16px;
    }

    .btn-sm {
      padding: 10px 16px;
      font-size: 13.5px;
    }

    /* ==================================================================
       Announcement bar
       ================================================================== */
    .announce {
      background: var(--brand-navy);
      color: #fff;
      font-size: 13px;
      padding: 9px 0;
      letter-spacing: 0.01em;
    }

    .announce__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-align: center;
      flex-wrap: wrap;
    }

    .announce strong {
      color: #FFD7A8;
      font-weight: 600;
    }

    .announce a {
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: rgba(255, 255, 255, .4);
    }

    .announce-flags span {
      font-size: 13px;
    }

    /* ==================================================================
       Header
       ================================================================== */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .hdr-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--brand-navy);
      color: var(--brand-orange);
      display: grid;
      place-items: center;
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 16px;
    }

    .brand-name {
      display: none;
      line-height: 1.05;
    }

    .brand-name b {
      display: block;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 19px;
      letter-spacing: -0.01em;
      color: var(--brand-navy);
    }

    .brand-name span {
      display: block;
      font-size: 10.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-500);
      margin-top: 2px;
    }

    @media (min-width: 1024px) {
      .brand-name {
        display: block;
      }
    }

    .search {
      display: none;
      position: relative;
      max-width: 520px;
      width: 100%;
      justify-self: center;
    }

    .search input {
      width: 100%;
      height: 44px;
      padding: 0 16px 0 46px;
      border: 1px solid var(--line);
      border-radius: var(--r-pill);
      background: #fff;
      font-size: 14.5px;
      color: var(--ink-900);
      transition: border-color .15s, box-shadow .15s;
    }

    .search input::placeholder {
      color: var(--ink-500);
    }

    .search input:focus {
      outline: 0;
      border-color: var(--brand-navy);
      box-shadow: 0 0 0 3px rgba(5, 42, 101, .12);
    }

    .search svg {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--ink-500);
    }

    @media (min-width: 768px) {
      .search {
        display: block;
      }
    }

    .hdr-tools {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      justify-self: end;
    }

    .tool {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      height: 40px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: var(--r-pill);
      background: #fff;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink-900);
      transition: border-color .15s, background .15s;
    }

    .tool:hover {
      border-color: var(--brand-navy);
      background: var(--paper-warm);
    }

    .tool select {
      border: 0;
      background: transparent;
      font-weight: 600;
      padding-right: 4px;
      outline: 0;
      cursor: pointer;
    }

    .tool--cta {
      background: var(--brand-orange);
      color: #fff;
      border-color: var(--brand-orange);
      padding: 0 16px;
      font-weight: 600;
    }

    .tool--cta:hover {
      background: var(--brand-orange-600);
      border-color: var(--brand-orange-600);
      color: #fff;
    }

    .tool--cta span {
      display: none;
    }

    @media (min-width: 640px) {
      .tool--cta span {
        display: inline;
      }
    }

    .menubtn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: var(--r-pill);
      background: #fff;
    }

    @media (max-width: 767px) {
      .hdr-row {
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 18px;
      }

      .hdr-tools {
        gap: 12px;
        margin-left: auto;
      }

      .tool--cta {
        width: 40px;
        padding: 0;
        justify-content: center;
      }
    }

    @media (min-width: 1024px) {
      .menubtn {
        display: none;
      }
    }

    /* Sub-nav (programme categories) */
    .nav {
      display: none;
      border-top: 1px solid var(--line);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 48px;
      overflow: visible;
      flex-wrap: wrap;
      user-select: none;
    }

    .nav-inner.is-dragging {
      cursor: grabbing;
      scroll-behavior: auto;
    }

    .nav-inner::-webkit-scrollbar {
      display: none;
    }

    .nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-700);
      padding: 8px 14px;
      border-radius: var(--r-pill);
      white-space: nowrap;
      transition: color .15s, background .15s;
      -webkit-user-drag: none;
      user-select: none;
    }

    .nav a:hover {
      color: var(--brand-navy);
      background: var(--paper-warm);
    }

    .nav a.is-active {
      color: var(--brand-navy);
    }

    .nav-sep {
      flex: 1;
    }

    .nav-deal {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand-orange);
      white-space: nowrap;
      padding-left: 14px;
    }

    /* Dropdown submenus on the primary nav */
    .nav-item.has-submenu {
      position: relative;
    }

    .nav-item__link {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-700);
      padding: 8px 14px;
      border-radius: var(--r-pill);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .15s, background .15s;
      cursor: pointer;
    }

    .nav-item.has-submenu:hover .nav-item__link,
    .nav-item.has-submenu:focus-within .nav-item__link,
    .nav-item.has-submenu.is-active .nav-item__link {
      color: var(--brand-navy);
      background: var(--paper-warm);
    }

    .nav-item__chev {
      font-size: 11px;
      line-height: 1;
      transition: transform .15s ease;
    }

    .nav-item.has-submenu:hover .nav-item__chev,
    .nav-item.has-submenu:focus-within .nav-item__chev {
      transform: rotate(180deg);
    }

    .sub-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: 0 12px 40px rgba(5, 42, 101, 0.12);
      padding: 8px;
      min-width: 220px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
      z-index: 1000;
    }

    .nav-item.has-submenu:hover .sub-menu,
    .nav-item.has-submenu:focus-within .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .sub-menu__item {
      display: block;
      padding: 9px 12px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-700);
      border-radius: 8px;
      text-decoration: none;
      white-space: nowrap;
      transition: background .15s, color .15s;
    }

    .sub-menu__item:hover,
    .sub-menu__item:focus-visible {
      color: var(--brand-navy);
      background: var(--paper-warm);
    }

    @media (min-width: 1024px) {
      .nav {
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .nav-inner {
        flex: 1;
        justify-content: center;
      }
    }

    /* ==================================================================
       MOBILE NAV DRAWER
       The .nav block is hidden on mobile until .menubtn is clicked, which
       toggles .nav-open on <body>. When open, .nav becomes a vertical drawer
       below the header. Submenu items inline (always expanded) on mobile —
       no hover/tap state to manage.
       ================================================================== */
    body.nav-open .nav {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      padding: 12px 0;
      background: #fff;
    }

    body.nav-open .nav-inner {
      flex-direction: column;
      align-items: stretch;
      height: auto;
      gap: 2px;
    }

    body.nav-open .nav a,
    body.nav-open .nav-item__link {
      text-align: left;
      padding: 12px 16px;
      border-radius: 0;
    }

    body.nav-open .nav-item.has-submenu {
      position: static;
    }

    body.nav-open .sub-menu {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      box-shadow: none;
      border: 0;
      border-left: 3px solid var(--brand-navy, #052A65);
      border-radius: 0;
      margin: 0 0 0 16px;
      padding: 4px 0;
      min-width: 0;
    }

    body.nav-open .nav-item__chev {
      display: none;
    }

    /* Lock background scroll while drawer is open */
    body.nav-open {
      overflow: hidden;
    }

    /* ==================================================================
       HEADER CART ICON
       Lives at the right end of .nav row on desktop. Inside the mobile
       drawer, it sits at the bottom. The .cart-count span is replaced by
       WC's wc-cart-fragments script after add-to-cart, no reload needed.
       The fragments selector is `span.cart-count` — keep that markup intact.
       ================================================================== */
    .nav-cart {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      margin-right: 8px;
      border-radius: var(--r-pill, 999px);
      color: var(--ink-700, #1a1a1a);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: color .15s, background .15s;
      position: relative;
    }

    .nav-cart:hover,
    .nav-cart:focus-visible {
      color: var(--brand-navy, #052A65);
      background: var(--paper-warm, #f6efe5);
    }

    .nav-cart svg {
      flex: 0 0 auto;
    }

    .cart-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 18px;
      height: 18px;
      padding: 0 6px;
      border-radius: 999px;
      background: var(--brand-orange, #DD5426);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      line-height: 1;
    }

    .cart-count--empty {
      display: none;
    }

    body.nav-open .nav-cart {
      justify-content: flex-start;
      padding: 12px 16px;
      margin-right: 0;
      border-radius: 0;
      border-top: 1px solid var(--line, #e6e3dc);
      margin-top: 4px;
    }

    /* ==================================================================
       HERO
       ================================================================== */
    .hero {
      position: relative;
      padding: 48px 0 56px;
      background:
        radial-gradient(ellipse at 80% -10%, rgba(221, 84, 38, .10), transparent 50%),
        radial-gradient(ellipse at 0% 110%, rgba(5, 42, 101, .08), transparent 60%),
        linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 80px 80px;
      opacity: .35;
      mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      gap: 40px;
      grid-template-columns: 1fr;
      position: relative;
      z-index: 1;
      min-width: 0;
    }

    .hero-copy,
    .featured-card {
      min-width: 0;
      max-width: 100%;
    }

    .region-selector {
      display: inline-flex;
      gap: 4px;
      background: #fff;
      padding: 6px;
      border-radius: var(--r-pill);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      overflow-x: auto;
      max-width: 100%;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .region-selector::-webkit-scrollbar {
      display: none;
    }

    .region-selector a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: var(--r-pill);
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-700);
      white-space: nowrap;
      text-decoration: none;
      transition: all .15s ease;
    }

    .region-selector a[aria-current="page"] {
      background: var(--brand-navy);
      color: #fff;
    }

    .region-selector a:hover:not([aria-current="page"]) {
      background: var(--paper-warm);
      color: var(--brand-navy);
    }

    .hero h1 {
      font-size: clamp(36px, 5.6vw, 64px);
      font-weight: 700;
      line-height: 1.04;
      letter-spacing: -0.025em;
      margin: 24px 0 18px;
      color: var(--brand-navy);
      overflow-wrap: anywhere;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--brand-orange);
      font-weight: 600;
    }

    .hero h1 .underline-mark {
      position: relative;
      display: inline-block;
    }

    .hero h1 .underline-mark::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -2px;
      height: 8px;
      background: var(--brand-orange);
      opacity: .25;
      transform: skewX(-8deg);
    }

    .hero-lede {
      font-size: 17.5px;
      color: var(--ink-700);
      max-width: 560px;
      margin-bottom: 24px;
      line-height: 1.55;
      overflow-wrap: anywhere;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 22px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
      font-size: 13px;
      color: var(--ink-500);
      align-items: center;
    }

    .hero-trust span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-trust span::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green);
    }

    /* Hero featured product card */
    .featured-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }

    .featured-visual {
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-600) 60%, var(--brand-orange) 130%);
      position: relative;
      overflow: hidden;
    }

    .featured-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(800px 400px at 70% -10%, rgba(255, 180, 120, .35), transparent 60%),
        radial-gradient(600px 300px at 10% 110%, rgba(31, 52, 95, .6), transparent 50%);
    }

    .featured-visual::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 60%;
      height: 60%;
      background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='white' stroke-width='1' stroke-opacity='0.18'><circle cx='100' cy='100' r='90'/><circle cx='100' cy='100' r='70'/><circle cx='100' cy='100' r='50'/><circle cx='100' cy='100' r='30'/><path d='M10 100 H190 M100 10 V190'/></svg>") center/contain no-repeat;
    }

    .featured-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--brand-orange);
      color: #fff;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 7px 12px;
      border-radius: var(--r-pill);
      z-index: 2;
    }

    .featured-crest {
      position: absolute;
      left: 50%;
      bottom: 24px;
      transform: translateX(-50%);
      font-family: var(--font-display);
      font-style: italic;
      color: rgba(255, 255, 255, .85);
      font-size: 15px;
      letter-spacing: 0.02em;
      z-index: 2;
      white-space: nowrap;
    }

    .featured-body {
      padding: 24px;
    }

    .featured-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .featured-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--brand-navy);
      background: var(--brand-orange-50);
      padding: 5px 10px;
      border-radius: var(--r-pill);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      min-width: 0;
      white-space: normal;
      overflow-wrap: anywhere;
    }

    .featured-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 24px;
      line-height: 1.2;
      letter-spacing: -0.015em;
      color: var(--brand-navy);
      margin: 0 0 6px;
      overflow-wrap: anywhere;
    }

    .featured-sub {
      font-size: 13.5px;
      color: var(--ink-500);
      margin: 0 0 16px;
      overflow-wrap: anywhere;
    }

    .featured-priceRow {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding-top: 16px;
      border-top: 1px dashed var(--line);
    }

    .featured-price {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .featured-price .from {
      font-size: 11px;
      color: var(--ink-500);
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .featured-price .now {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 26px;
      color: var(--brand-navy);
      letter-spacing: -0.01em;
    }

    .featured-price .per {
      font-size: 12px;
      font-weight: 500;
      color: var(--ink-500);
      letter-spacing: 0.02em;
      margin-left: 8px;
      text-transform: none;
    }

    .featured-price .now,
    .price__now {
      display: inline-block;
      min-width: max-content;
      transition: opacity .18s ease, transform .18s ease;
      will-change: opacity, transform;
    }

    .featured-price .now.is-changing,
    .price__now.is-changing {
      opacity: 0;
      transform: translateY(5px);
    }

    @media (max-width: 767px) {
      .hero {
        padding: 36px 0 44px;
      }

      .hero-grid {
        gap: 28px;
        width: 100%;
        overflow: hidden;
      }

      .region-selector {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
        gap: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
      }

      .region-selector a {
        justify-content: center;
        min-width: 0;
        min-height: 42px;
        padding: 9px 10px;
        border: 1px solid rgba(5, 42, 101, .12);
        border-radius: 999px;
        background: rgba(255, 255, 255, .86);
        box-shadow: 0 10px 24px rgba(11, 23, 48, .06);
        white-space: normal;
        text-align: center;
        line-height: 1.2;
      }

      .hero h1 {
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.02;
        margin-top: 20px;
      }

      .hero h1 br {
        display: none;
      }

      .hero-lede {
        font-size: 16px;
      }

      .hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }

      .hero-cta .btn {
        width: 100%;
        min-height: 54px;
        height: auto;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
      }

      .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .hero-trust span {
        align-items: flex-start;
        min-width: 0;
      }

      .featured-body {
        padding: 18px;
        min-width: 0;
      }

      .featured-badge {
        max-width: calc(100% - 32px);
        white-space: normal;
        line-height: 1.25;
      }

      .featured-crest {
        width: calc(100% - 32px);
        text-align: center;
        white-space: normal;
        line-height: 1.25;
      }

      .featured-title {
        font-size: 22px;
      }

      .featured-priceRow {
        flex-direction: column;
        align-items: stretch;
      }

      .featured-price {
        align-items: center;
        text-align: center;
      }

      .featured-priceRow .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
        min-width: 0;
      }
    }

    @media (min-width: 1024px) {
      .hero {
        padding: 72px 0 80px;
      }

      .hero-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 56px;
        align-items: center;
      }
    }

    /* ==================================================================
       Trust strip
       ================================================================== */
    .trust {
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 28px 0;
    }

    .trust-inner {
      display: flex;
      align-items: center;
      gap: 32px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .trust-inner::-webkit-scrollbar {
      display: none;
    }

    .trust-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-500);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .trust-item {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      color: var(--brand-navy);
      white-space: nowrap;
      flex-shrink: 0;
      display: inline-flex;
      flex-direction: column;
      gap: 2px;
    }

    .trust-item small {
      font-family: var(--font-body);
      font-size: 10.5px;
      font-weight: 600;
      color: var(--ink-500);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    @media (max-width: 767px) {
      .trust {
        padding: 20px 0;
      }

      .trust-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
        width: 100%;
        max-width: 100%;
      }

      .trust-label {
        grid-column: 1 / -1;
        white-space: normal;
      }

      .trust-item {
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 12px;
        background: var(--paper);
        font-size: 16px;
        line-height: 1.15;
        overflow-wrap: anywhere;
      }

      .trust-item small {
        line-height: 1.25;
      }
    }

    @media (max-width: 420px) {
      .trust-inner {
        grid-template-columns: 1fr;
      }
    }

    /* ==================================================================
       Section base
       ================================================================== */
    section.section {
      padding: 64px 0;
    }

    @media (min-width: 1024px) {
      section.section {
        padding: 96px 0;
      }
    }

    .section--paper {
      background: var(--paper);
    }

    .section--warm {
      background: var(--paper-warm);
    }

    .section--white {
      background: #fff;
    }

    .section--navy {
      background: var(--brand-navy);
      color: #fff;
    }

    .section-head {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 36px;
    }

    .section-head--center {
      text-align: center;
      justify-content: center;
    }

    .section-head--center>div {
      max-width: 720px;
      margin: 0 auto;
    }

    .section-head h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(28px, 3.6vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--brand-navy);
      margin: 8px 0 0;
      max-width: 24ch;
    }

    .section-head h2 em {
      font-style: italic;
      color: var(--brand-orange);
      font-weight: 600;
    }

    .section-head p {
      font-size: 16px;
      color: var(--ink-500);
      max-width: 52ch;
      margin: 10px 0 0;
    }
    .pathways .section-head p{
      color:#ffffffb3;
    }

    .section-head--center p {
      margin-left: auto;
      margin-right: auto;
    }

    .section--navy .section-head h2 {
      color: #fff;
    }

    .section--navy .section-head h2 em {
      color: #FFB48A;
    }

    .section--navy .section-head p {
      color: rgba(255, 255, 255, .75);
    }

    .section-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--brand-navy);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1.5px solid var(--brand-orange);
      padding-bottom: 2px;
      align-self: center;
      white-space: nowrap;
    }

    /* ==================================================================
       Region grid
       ================================================================== */
    .regions {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    @media (min-width: 640px) {
      .regions {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .regions {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
      }
    }

    .region {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 18px;
      transition: all .15s;
      display: block;
    }

    .region:hover {
      border-color: var(--brand-navy);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .region__flag {
      font-size: 32px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .region__name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 17px;
      color: var(--brand-navy);
      letter-spacing: -0.01em;
      margin: 0 0 2px;
    }

    .region__count {
      font-size: 12px;
      color: var(--ink-500);
    }

    /* ==================================================================
       Filter chips
       ================================================================== */
    .chips {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 0 0 12px;
      -webkit-overflow-scrolling: touch;
      margin-bottom: 24px;
      scrollbar-width: none;
    }

    .chips::-webkit-scrollbar {
      display: none;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 40px;
      padding: 0 16px;
      border: 1px solid var(--line);
      border-radius: var(--r-pill);
      background: #fff;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink-700);
      white-space: nowrap;
      cursor: pointer;
      transition: all .15s;
    }

    .chip:hover {
      border-color: var(--brand-navy);
      color: var(--brand-navy);
    }

    .chip[aria-pressed="true"] {
      background: var(--brand-navy);
      color: #fff;
      border-color: var(--brand-navy);
    }

    .chip[aria-pressed="true"] .chip__count {
      color: rgba(255, 255, 255, .7);
    }

    .chip__count {
      font-size: 11.5px;
      color: var(--ink-500);
      font-weight: 500;
    }

    /* ==================================================================
       Product grid (programme cards)
       ================================================================== */
    .grid-products {
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
    }

    @media (min-width: 560px) {
      .grid-products {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .grid-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
    }

    @media (min-width: 1280px) {
      .grid-products {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .card {
      position: relative;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }

    /* Chip filter relies on the `hidden` attribute; this overrides .card { display: flex }. */
    .card[hidden] {
      display: none;
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
      border-color: transparent;
    }

    .card__visual {
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    /* Product cards with an uploaded featured image: hide the gradient + SVG decorations
       and let the image cover the whole visual area. */
    .card__visual--image {
      background: #eef0f3;
      text-decoration: none;
    }
    .card__visual--image::before,
    .card__visual--image::after {
      display: none;
    }
    .card__visual--image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card__visual--engineering {
      background: linear-gradient(135deg, #1F345F 0%, #052A65 60%, #0a1c45 100%);
    }

    .card__visual--nursing {
      background: linear-gradient(135deg, #0B4F6C 0%, #052A65 65%, #1F7A4D 130%);
    }

    .card__visual--leadership {
      background: linear-gradient(135deg, #B8842C 0%, #DD5426 70%, #a83817 100%);
    }

    .card__visual--hrm {
      background: linear-gradient(135deg, #3a2a5e 0%, #052A65 65%, #1F345F 100%);
    }

    .card__visual--ielts {
      background: linear-gradient(135deg, #0F6F84 0%, #0B4F6C 60%, #052A65 100%);
    }

    .card__visual--executive {
      background: linear-gradient(135deg, #2C1F4E 0%, #1F345F 60%, #052A65 100%);
    }

    .card__visual--payroll {
      background: linear-gradient(135deg, #4a3010 0%, #7a4f1a 60%, #DD5426 130%);
    }

    .card__visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(400px 240px at 80% 0%, rgba(255, 255, 255, .15), transparent 60%);
    }

    .card__visual::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 62%;
      height: 62%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      opacity: .92;
    }

    .card__visual--engineering::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-opacity='.78' stroke-width='1.4'><rect x='15' y='15' width='70' height='70' rx='3'/><path d='M15 32 H85 M15 50 H85 M15 68 H85 M32 15 V85 M50 15 V85 M68 15 V85'/><circle cx='50' cy='50' r='10' fill='white' fill-opacity='.18'/></svg>");
    }

    .card__visual--nursing::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'><circle cx='50' cy='50' r='40' stroke='white' stroke-opacity='.55' stroke-width='1.2'/><path d='M50 28 V72 M28 50 H72' stroke='white' stroke-width='5' stroke-linecap='round'/></svg>");
    }

    .card__visual--leadership::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='1.6' stroke-opacity='.85'><path d='M20 80 L50 20 L80 80 Z'/><path d='M35 60 H65'/><circle cx='50' cy='44' r='3' fill='white'/></svg>");
    }

    .card__visual--hrm::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-opacity='.75' stroke-width='1.4'><circle cx='35' cy='40' r='9'/><circle cx='65' cy='40' r='9'/><path d='M22 75 c0 -8 5 -16 13 -16 s13 8 13 16'/><path d='M52 75 c0 -8 5 -16 13 -16 s13 8 13 16'/></svg>");
    }

    .card__visual--ielts::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-opacity='.78' stroke-width='1.4'><path d='M22 30 H78 V70 H22 Z'/><path d='M30 42 H62 M30 50 H70 M30 58 H56'/><circle cx='75' cy='73' r='10' fill='white' fill-opacity='.18'/><path d='M71 73 L74 76 L80 70' stroke-width='2'/></svg>");
    }

    .card__visual--executive::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-opacity='.8' stroke-width='1.5'><path d='M50 18 L72 32 V58 L50 72 L28 58 V32 Z'/><circle cx='50' cy='45' r='10'/><path d='M50 55 V72'/></svg>");
    }

    .card__visual--payroll::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-opacity='.8' stroke-width='1.4'><circle cx='50' cy='50' r='28'/><path d='M50 35 V65 M42 42 H58 a4 4 0 0 1 0 8 H42 a4 4 0 0 0 0 8 H58' stroke-width='2.2'/></svg>");
    }

    .card__chip {
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: var(--r-pill);
      z-index: 2;
      backdrop-filter: blur(6px);
    }

    .card__chip--bestseller {
      background: var(--brand-orange);
      color: #fff;
    }

    .card__chip--new {
      background: #fff;
      color: var(--brand-navy);
    }

    .card__chip--hot {
      background: var(--green);
      color: #fff;
    }

    .card__chip--limited {
      background: rgba(255, 255, 255, .95);
      color: var(--ink-900);
    }

    .card__body {
      padding: 18px 18px 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .card__cred {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }

    .card__cred span {
      font-size: 10.5px;
      font-weight: 700;
      color: var(--brand-orange);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--brand-orange-50);
      padding: 4px 8px;
      border-radius: var(--r-pill);
    }

    .card__title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      line-height: 1.22;
      letter-spacing: -0.012em;
      color: var(--brand-navy);
      margin: 0;
    }

    .card__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12.5px;
      color: var(--ink-500);
      align-items: center;
    }

    .card__meta span {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .card__meta svg {
      color: var(--ink-400);
    }

    .card__foot {
      padding: 14px 18px;
      border-top: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      background: #fff;
    }

    .price {
      display: flex;
      flex-direction: column;
      gap: 1px;
      line-height: 1.1;
    }

    .price__from {
      font-size: 10.5px;
      color: var(--ink-500);
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 1px;
    }

    .price__now {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 21px;
      color: var(--brand-navy);
      letter-spacing: -0.01em;
    }

    @media (prefers-reduced-motion: reduce) {

      .featured-price .now,
      .price__now {
        transition: none;
      }

      .featured-price .now.is-changing,
      .price__now.is-changing {
        opacity: 1;
        transform: none;
      }
    }

    .card__cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 40px;
      padding: 0 16px;
      background: var(--brand-navy);
      color: #fff;
      border-radius: var(--r-pill);
      font-size: 13.5px;
      font-weight: 600;
      transition: background .15s;
    }

    .card__cta:hover {
      background: var(--brand-orange);
    }

    .card__cta svg {
      transition: transform .15s;
    }

    .card__cta:hover svg {
      transform: translateX(2px);
    }

    /* Hybrid pattern — subject list inside cluster card */
    .card__subjects {
      padding: 12px 18px 0;
      border-top: 1px dashed var(--line);
      margin-top: 4px;
    }

    .card__subjects-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-500);
      margin: 0 0 8px;
    }

    .card__subjects-head .count {
      color: var(--brand-orange);
      font-weight: 700;
    }

    .card__subjects-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .card__subjects-list li {
      display: block;
    }

    .card__subjects-list a {
      display: block;
      font-size: 13px;
      line-height: 1.45;
      color: var(--ink-700);
      padding: 5px 0;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color .15s, border-color .15s, padding .15s;
    }

    .card__subjects-list a:hover,
    .card__subjects-list a:focus-visible {
      color: var(--brand-navy);
      border-bottom-color: var(--brand-orange);
    }

    .card__subjects-list .qual {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      color: var(--ink-400);
      letter-spacing: 0.04em;
      margin-left: 4px;
      font-family: var(--font-display, Georgia, serif);
      font-style: italic;
    }

    .card__viewall {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--brand-orange);
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: color .15s, gap .15s;
    }

    .card__viewall:hover {
      color: var(--brand-navy);
      gap: 10px;
    }

    .price__per {
      font-size: 10.5px;
      font-weight: 500;
      color: var(--ink-500);
      letter-spacing: 0.02em;
      text-transform: none;
      margin-top: 2px;
    }

    /* RBA / Manufacturing compliance visual (8th cluster) */
    .card__visual--rba {
      background: linear-gradient(135deg, #3D4F5C 0%, #1F2B36 50%, #4A6B7C 100%);
    }

    .card__visual--rba::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 25%, rgba(255, 200, 100, 0.12), transparent 45%),
        radial-gradient(circle at 75% 80%, rgba(180, 220, 255, 0.10), transparent 45%);
    }

    /* ==================================================================
       Pathways block (regional)
       ================================================================== */
    .pathways {
      background: var(--brand-navy);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .pathways::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 15% 30%, rgba(221, 84, 38, .12), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, .05), transparent 40%);
      pointer-events: none;
    }

    .pathways .section-head h2 {
      color: #fff;
    }

    .pathway-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .pathway-tabs button {
      padding: 10px 18px;
      border-radius: var(--r-pill);
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
      font-weight: 500;
      border: 1px solid rgba(255, 255, 255, .1);
      transition: all .15s ease;
    }

    .pathway-tabs button[aria-pressed="true"] {
      background: var(--brand-orange);
      color: #fff;
      border-color: var(--brand-orange);
    }

    .pathway-tabs button:hover:not([aria-pressed="true"]) {
      background: rgba(255, 255, 255, .12);
      color: #fff;
    }

    .pathway-content {
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
      position: relative;
      z-index: 1;
    }

    .pathway-step {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--r-lg);
      padding: 24px;
      position: relative;
    }

    .pathway-step .step-num {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      color: var(--brand-orange);
      letter-spacing: 0.1em;
    }

    .pathway-step h4 {
      color: #fff;
      font-size: 22px;
      margin: 6px 0 8px;
      line-height: 1.2;
    }

    .pathway-step p {
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
      margin: 0;
    }

    .pathway-step .duration {
      display: inline-block;
      margin-top: 14px;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: var(--r-pill);
      background: rgba(221, 84, 38, .18);
      color: var(--brand-orange);
      font-weight: 600;
    }

    @media (min-width: 768px) {
      .pathway-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .pathway-content {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* ==================================================================
       Why strip
       ================================================================== */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .why-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .why-cell {
      background: #fff;
      padding: 52px 24px;
      text-align: center;
    }

    .why-cell:hover {
      background: #fdf1eb;
    }

    .why-num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 48px;
      color: var(--brand-orange);
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .why-num em {
      font-style: italic;
      color: var(--brand-navy);
      font-weight: 600;
      font-size: 28px;
      margin-left: 4px;
    }

    .why-lbl {
      font-size: 14px;
      color: var(--ink-700);
      font-weight: 500;
      line-height: 1.45;
    }

    /* ==================================================================
       Testimonials
       ================================================================== */
    .reviews {
      display: grid;
      gap: 26px;
      min-width: 0;
    }

    .reviews-hero {
      background: var(--brand-navy);
      border-radius: var(--r-lg);
      box-shadow: 0 24px 70px -34px rgba(11, 23, 48, .48);
      color: #fff;
      display: grid;
      gap: 24px;
      grid-template-columns: 1fr;
      min-height: 238px;
      overflow: hidden;
      padding: clamp(26px, 4vw, 44px);
      position: relative;
    }

    .reviews-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(221, 84, 38, .22), transparent 42%),
        radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .12), transparent 28%);
      pointer-events: none;
    }

    .reviews-quote-mark {
      color: rgba(255, 255, 255, .82);
      font-family: var(--font-display);
      font-size: clamp(86px, 11vw, 140px);
      line-height: .68;
      position: relative;
      z-index: 1;
    }

    .reviews-hero__copy {
      align-items: start;
      display: grid;
      gap: 18px;
      grid-template-columns: auto minmax(0, 1fr);
      position: relative;
      z-index: 1;
    }

    .reviews-hero__quote {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.2vw, 42px);
      font-weight: 700;
      line-height: 1.16;
      margin: 0;
      max-width: 760px;
    }

    .reviews-hero__side {
      align-self: center;
      display: grid;
      gap: 14px;
      min-width: 0;
      position: relative;
      z-index: 1;
    }

    .reviews-label {
      color: var(--brand-orange);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .reviews-stars {
      color: var(--brand-orange);
      font-size: 17px;
      letter-spacing: .09em;
      line-height: 1;
    }

    .reviews-person {
      align-items: center;
      display: flex;
      gap: 12px;
      min-width: 0;
    }

    .reviews-avatar {
      align-items: center;
      background: var(--brand-orange);
      border-radius: 50%;
      color: #fff;
      display: flex;
      flex: 0 0 auto;
      font-weight: 800;
      height: 52px;
      justify-content: center;
      width: 52px;
    }

    .reviews-name {
      color: #fff;
      display: block;
      font-weight: 800;
      line-height: 1.2;
    }

    .reviews-role {
      color: rgba(255, 255, 255, .72);
      display: block;
      font-size: 12px;
      line-height: 1.4;
      margin-top: 3px;
      overflow-wrap: anywhere;
    }

    .reviews-carousel {
      min-width: 0;
      padding: 28px 0 56px;
      position: relative;
    }

    .reviews-arrow {
      align-items: center;
      background: var(--brand-orange-50);
      border-radius: 50%;
      color: var(--brand-orange);
      display: flex;
      font-size: 28px;
      height: 44px;
      justify-content: center;
      line-height: 1;
      position: absolute;
      top: calc(50% - 22px);
      transition: background .2s ease, color .2s ease, transform .2s ease;
      width: 44px;
      z-index: 3;
    }

    .reviews-arrow--prev {
      left: -22px;
    }

    .reviews-arrow--next {
      right: -22px;
    }

    .reviews-arrow:hover {
      background: var(--brand-orange);
      color: #fff;
      transform: translateY(-2px);
    }

    .reviews-track {
      display: flex;
      gap: 20px;
      max-width: 100%;
      min-width: 0;
      overflow-x: auto;
      margin: -28px 0 -56px;
      overflow-y: hidden;
      padding: 28px 0 56px;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
      width: 100%;
    }

    .reviews-track.is-dragging {
      cursor: grabbing;
      scroll-behavior: auto;
      scroll-snap-type: none;
    }

    .reviews-track::-webkit-scrollbar {
      display: none;
    }

    .review-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r);
      box-shadow: 0 18px 48px -34px rgba(11, 23, 48, .5);
      cursor: pointer;
      display: grid;
      flex: 0 0 calc((100% - 40px) / 3);
      grid-template-rows: auto auto 1fr auto;
      min-height: 254px;
      min-width: 0;
      padding: 26px 26px 22px;
      scroll-snap-align: start;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .review-card:hover {
      border-color: rgba(221, 84, 38, .38);
      box-shadow: 0 22px 54px -34px rgba(11, 23, 48, .56);
      transform: translateY(-3px);
    }

    .review-card__title {
      color: var(--ink-900);
      font-family: var(--font-display);
      font-size: 26px;
      line-height: 1.08;
      margin: 0 0 14px;
    }

    .review-card__quote {
      color: var(--ink-700);
      font-size: 13.5px;
      font-weight: 500;
      line-height: 1.58;
      margin: 16px 0 22px;
    }

    .review-card__person {
      align-items: center;
      border-top: 1px solid var(--line);
      display: flex;
      gap: 12px;
      padding-top: 16px;
    }

    .review-card .reviews-avatar {
      background: linear-gradient(135deg, var(--brand-navy), var(--brand-orange));
      font-size: 13px;
      height: 40px;
      width: 40px;
    }

    .review-card .reviews-name {
      color: var(--brand-navy);
      font-size: 13.5px;
    }

    .review-card .reviews-role {
      color: var(--ink-500);
      font-size: 11.5px;
    }

    @media (min-width: 900px) {
      .reviews-hero {
        grid-template-columns: minmax(0, 1fr) 285px;
      }

      .reviews-hero__side {
        justify-self: end;
      }
    }

    @media (max-width: 899px) {
      .reviews-hero__copy {
        grid-template-columns: 54px minmax(0, 1fr);
      }

      .reviews-quote-mark {
        font-size: 96px;
      }
    }

    @media (max-width: 719px) {
      .reviews-carousel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding-bottom: 0;
      }

      .reviews-track {
        grid-column: 1 / -1;
        grid-row: 1;
        margin: -24px 0 -48px;
        padding: 24px 0 48px;
        width: 100%;
      }

      .review-card {
        flex-basis: 86%;
      }

      .reviews-arrow {
        grid-row: 2;
        position: static;
      }

      .reviews-arrow--next {
        justify-self: end;
      }

      .reviews-hero__copy {
        gap: 10px;
        grid-template-columns: 42px minmax(0, 1fr);
      }

      .reviews-quote-mark {
        font-size: 76px;
      }
    }

    /* ==================================================================
       FAQ
       ================================================================== */
    .faq-list {
      max-width: 880px;
      margin: 0 auto;
    }

    .faq-item {
      background: #fff;
      border-radius: var(--r);
      border: 1px solid var(--line);
      margin-bottom: 12px;
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 17px;
      color: var(--brand-navy);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      font-family: var(--font-body);
      font-size: 22px;
      font-weight: 400;
      color: var(--brand-orange);
      transition: transform .2s ease;
      flex-shrink: 0;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-item .answer {
      padding: 0 24px 24px;
      color: var(--ink-700);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ==================================================================
       Newsletter
       ================================================================== */
    .news {
      background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-700) 100%);
      color: #fff;
      border-radius: var(--r-lg);
      padding: 44px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .news::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(700px 350px at 80% -10%, rgba(221, 84, 38, .4), transparent 60%),
        radial-gradient(500px 300px at 10% 110%, rgba(255, 255, 255, .06), transparent 60%);
      pointer-events: none;
    }

    .news h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(26px, 3.4vw, 36px);
      line-height: 1.15;
      letter-spacing: -0.015em;
      margin: 0 0 12px;
      position: relative;
      color: #fff;
    }

    .news h2 em {
      font-style: italic;
      color: #FFB48A;
      font-weight: 600;
    }

    .news p {
      margin: 0 0 24px;
      font-size: 15.5px;
      color: rgba(255, 255, 255, .8);
      max-width: 50ch;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    .news__form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      max-width: 520px;
      margin: 0 auto;
      position: relative;
    }

    .news__form input {
      flex: 1;
      min-width: 240px;
      height: 50px;
      padding: 0 18px;
      border-radius: var(--r-pill);
      border: 0;
      background: rgba(255, 255, 255, .95);
      color: var(--ink-900);
      font-size: 15px;
    }

    .news__form input:focus {
      outline: 0;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(221, 84, 38, .4);
    }

    .news__form button {
      height: 50px;
      padding: 0 26px;
      border-radius: var(--r-pill);
      background: var(--brand-orange);
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      transition: background .15s;
    }

    .news__form button:hover {
      background: var(--brand-orange-600);
    }

    /* ==================================================================
       CTA Final
       ================================================================== */
    .cta-final {
      background:
        radial-gradient(ellipse at 80% 20%, rgba(221, 84, 38, .18), transparent 40%),
        var(--brand-navy);
      color: #fff;
      text-align: center;
      padding: 80px 0;
    }

    .cta-final h2 {
      color: #fff;
      font-size: clamp(32px, 5vw, 52px);
      margin-bottom: 16px;
    }

    .cta-final h2 em {
      font-style: italic;
      color: var(--brand-orange);
      font-weight: 500;
    }

    .cta-final>.wrap>p {
      color: rgba(255, 255, 255, .75);
      font-size: 17.5px;
      max-width: 580px;
      margin: 0 auto 32px;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
      max-width: 100%;
    }

    .cta-final .btn {
      max-width: 100%;
      min-width: 0;
      height: auto;
      min-height: 56px;
      white-space: normal;
      text-align: center;
      line-height: 1.25;
      overflow-wrap: anywhere;
    }

    .cta-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      margin-top: 40px;
    }

    .cta-contact {
      text-align: left;
    }

    .cta-contact .label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brand-orange);
    }

    .cta-contact .num {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      margin-top: 4px;
      color: #fff;
      overflow-wrap: anywhere;
    }

    .cta-contact .meta {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .6);
      margin-top: 2px;
      overflow-wrap: anywhere;
    }

    @media (max-width: 520px) {
      .cta-final {
        padding: 56px 0;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }

      .cta-buttons .btn {
        width: 100%;
        padding: 14px 18px;
      }

      .cta-contacts {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .cta-contact {
        text-align: center;
        min-width: 0;
      }
    }

    /* ==================================================================
       Footer
       ================================================================== */
    footer.site-footer {
      background: var(--brand-navy-900);
      color: rgba(255, 255, 255, .78);
      padding: 56px 0 28px;
      font-size: 14px;
    }

    footer.site-footer a {
      color: rgba(255, 255, 255, .78);
      transition: color .15s;
    }

    footer.site-footer a:hover {
      color: #fff;
    }

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

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
      }
    }

    .footer-brand b {
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 19px;
      display: block;
      margin-bottom: 6px;
    }

    .footer-brand p {
      margin: 0 0 14px;
      font-size: 13.5px;
      line-height: 1.6;
      color: rgba(255, 255, 255, .65);
    }

    .footer-group {
      font-size: 12px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.7;
    }

    .footer-group b {
      color: rgba(255, 255, 255, .85);
      font-weight: 600;
      font-size: 12.5px;
      display: block;
      margin-bottom: 4px;
    }

    footer.site-footer h6 {
      margin: 0 0 14px;
      font-size: 11.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      font-weight: 600;
    }

    footer.site-footer ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-bar {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .5);
    }

    .footer-bar a {
      font-size: 12.5px;
    }

    /* ==================================================================
       Floating WhatsApp
       ================================================================== */
    .float-wa {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 50;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 6px 18px rgba(37, 211, 102, .45);
      transition: transform .15s;
    }

    .float-wa:hover {
      transform: scale(1.08);
    }

    .float-wa svg {
      width: 28px;
      height: 28px;
    }

    @media (min-width: 768px) {
      .float-wa {
        right: 28px;
        bottom: 28px;
        width: 60px;
        height: 60px;
      }
    }

    /* Utilities */
    .sr {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: var(--brand-navy);
      color: #fff;
      padding: 8px 16px;
      z-index: 200;
    }

    .skip-link:focus {
      top: 0;
    }


/* ===================================================================
   Testimonial section
   (originally embedded in wp-block-library-theme-inline-css block)
   =================================================================== */
    .testimonial-section {
      width: 100%;
      max-width: 1000px;
      text-align: center;
      position: relative;
      margin: auto;
    }

    .small-title {
      color: #dd5426;
      font-size: 15px;
      letter-spacing: 2px;
      margin-bottom: 10px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .main-title {
      font-size: 52px;
      font-weight: 700;
      margin-bottom: 50px;
      color: white;
    }

    /* TOP IMAGES — 3-visible carousel; .clients is the sliding track. */
    .clients-viewport {
      /* Exactly 3 × 120px + 2 × 25px gap = 410px inner. Plus 8px side padding × 2 = 426px. */
      max-width: 426px;
      margin: 0 auto 45px;
      overflow: hidden;
      padding: 18px 8px;      /* vertical breathing room for the active scale */
      box-sizing: border-box;
    }

    .clients {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 25px;
      position: relative;
      transition: transform .35s ease;
      will-change: transform;
    }

    .client-img {
      width: 120px;
      height: 120px;
      flex: 0 0 120px;         /* don't shrink — keeps the carousel math predictable */
      border-radius: 50%;
      overflow: hidden;
      cursor: pointer;
      transition: 0.4s ease;
      border: 4px solid rgba(255, 255, 255, 0.15);
      opacity: 0.6;
      transform: scale(0.9);
    }

    .client-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ACTIVE CENTER IMAGE */
    .client-img.active {
      transform: scale(1.15);
      opacity: 1;
      border: 5px solid #ffffff;
    }

    /* TESTIMONIAL CONTENT */
    .testimoniall {
      padding: 50px 0px;
      background-color: #052a65;
    }

    .testimonial-box {
      max-width: 920px;
      margin: auto;
      position: relative;
      min-height: 180px;
      padding: 0 70px;          /* breathing room so text never sits under the nav arrows */
    }

    .testimonial {
      display: none;
      animation: fade 0.5s ease;
    }

    .testimonial.active {
      display: block;
    }

    @keyframes fade {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .testimonial p {
      font-size: 30px;
      line-height: 1.7;
      color: #fff;
      margin-bottom: 30px;
    }

    .name {
      color: #dd5426;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      text-transform: capitalize;
    }

    .designation {
      color: #ddd;
      font-size: 16px;
    }

    /* ARROWS */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      transition: 0.3s;
    }

    .nav-btn:hover {
      background: #dd5426;
      color: #ffffff;
    }

    .prev {
      left: 8px;
    }

    .next {
      right: 8px;
    }

    @media(max-width:768px) {

      .main-title {
        font-size: 36px;
      }

      .client-img {
        width: 80px;
        height: 80px;
        flex: 0 0 80px;
      }

      .clients-viewport {
        /* 3 × 80px + 2 × 15px = 270px inner. Plus 6px side padding × 2 = 282px. */
        max-width: 282px;
        padding: 12px 6px;
      }

      .testimonial p {
        font-size: 20px;
      }

      .name {
        font-size: 22px;
      }

      .clients {
        gap: 15px;
      }

      .testimonial-box {
        padding: 0 56px;
      }

      .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }
    }

    /* ==================================================================
       Header search — live results dropdown (WC Store API)
       ================================================================== */
    .search {
      position: relative;
    }

    .search-results {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
      max-height: 480px;
      overflow-y: auto;
      z-index: 200;
      padding: 6px;
    }

    .search-result {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: var(--r-sm);
      text-decoration: none;
      color: inherit;
      transition: background .12s ease;
    }

    .search-result + .search-result {
      border-top: 1px solid var(--line);
    }

    .search-result:hover,
    .search-result:focus-visible {
      background: var(--paper-warm);
      outline: none;
    }

    .search-result__thumb {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: var(--r-sm);
      overflow: hidden;
      background: var(--paper-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-400);
      font-size: 11px;
    }

    .search-result__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .search-result__body {
      min-width: 0;
      flex: 1;
    }

    .search-result__name {
      font-size: 13px;
      font-weight: 600;
      color: var(--brand-navy);
      line-height: 1.3;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .search-result__price {
      font-size: 12px;
      color: var(--ink-700);
      margin-top: 4px;
    }

    .search-result__price ins,
    .search-result__price del,
    .search-result__price .woocommerce-Price-amount {
      background: transparent;
      text-decoration: none;
      color: inherit;
    }

    .search-result__price del {
      opacity: .55;
      margin-right: 6px;
    }

    .search-empty {
      padding: 18px 12px;
      text-align: center;
      font-size: 13px;
      color: var(--ink-500);
    }
    #programmes .section-link{
      display: none;
    }
.section--white{
  display: none;
}