      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        /* TrieDatum site palette — matched from service.html */
        --navy: #1e2a4a; /* nav bar, headings */
        --navy-mid: #253258; /* hover states */
        --navy-light: #2e3d6b; /* subtle dark accents */
        --blue: #3b5bdb; /* primary accent — matches site buttons/icons */
        --blue-light: #4f6fef; /* hover */
        --blue-dim: #2d4ac7; /* pressed/active */
        --blue-pale: #e8edff; /* light blue tint for badges/chips */
        --white: #ffffff;
        --page-bg: #f0f2f7; /* site page background — light blue-grey */
        --offwhite: #f5f7fb; /* slightly lighter surface */
        --gray-100: #e8ecf4; /* card borders */
        --gray-300: #c5cedf; /* dividers */
        --gray-500: #6b7a99; /* muted text */
        --gray-700: #3d4f6b; /* secondary text */
        --accent: #e8a020;

        /* Keep teal as a very minor accent for the one teal badge style */
        --teal: #007a72;
        --teal-light: #00a99d;
        --teal-dim: #006b64;

        --font-display: var(--title-font);
        --font-body: var(--body-font);
        --radius-sm: 6px;
        --radius-md: 12px;
        --radius-lg: 20px;
        --shadow-card:
          0 2px 16px rgba(30, 42, 74, 0.07), 0 1px 4px rgba(30, 42, 74, 0.05);
        --shadow-hover:
          0 6px 32px rgba(30, 42, 74, 0.13), 0 2px 8px rgba(30, 42, 74, 0.07);
      }
      html {
        scroll-behavior: smooth;
        scroll-padding-top: 120px;
      }
      body {
        font-family: var(--font-body);
        background: var(--white);
        color: var(--navy);
        line-height: 1.6;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
      }

      /* NAV */
      .site-nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--navy);
        border-bottom: 1px solid var(--navy-light);
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
      }
      .nav-logo {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--white);
        text-decoration: none;
        letter-spacing: -0.02em;
      }
      .nav-logo span {
        color: var(--teal);
      }
      .nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
      }
      .nav-links a {
        color: var(--gray-300);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        transition: color 0.2s;
      }
      .nav-links a:hover,
      .nav-links a.active {
        color: var(--teal-light);
      }
      .nav-cta {
        background: var(--blue);
        color: var(--white) !important;
        padding: 8px 20px;
        border-radius: var(--radius-sm);
        transition: background 0.2s !important;
      }
      .nav-cta:hover {
        background: var(--blue-light) !important;
      }

      /* HERO */
      .hero {
        background: var(--navy);
        position: relative;
        overflow: hidden;
        padding: 88px 40px 80px;
        text-align: center;
      }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 60% 50% at 50% 0%,
            rgba(59, 91, 219, 0.2) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 40% 60% at 85% 100%,
            rgba(59, 91, 219, 0.1) 0%,
            transparent 60%
          );
        pointer-events: none;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(59, 91, 219, 0.18);
        border: 1px solid rgba(59, 91, 219, 0.35);
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #a5b8ff;
        margin-bottom: 28px;
      }
      .hero-eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        background: #a5b8ff;
        border-radius: 50%;
      }
      .hero h1 {
        font-family: var(--font-display);
        font-size: clamp(2.4rem, 5vw, 3.8rem);
        color: var(--white);
        line-height: 1.1;
        letter-spacing: -0.03em;
        max-width: 900px;
        margin: 0 auto 24px;
      }
      .hero h1 em {
        font-style: italic;
        color: #a5b8ff;
      }
      .hero-sub {
        font-size: 1.125rem;
        color: var(--gray-300);
        max-width: 720px;
        margin: 0 auto 44px;
        line-height: 1.7;
      }
      .hero-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .btn-primary {
        background: var(--blue);
        color: var(--white);
        padding: 14px 32px;
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 0.9375rem;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition:
          background 0.2s,
          transform 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-primary:hover {
        background: var(--blue-light);
        transform: translateY(-1px);
      }
      .btn-ghost {
        background: transparent;
        color: var(--white);
        padding: 14px 32px;
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 0.9375rem;
        text-decoration: none;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition:
          border-color 0.2s,
          background 0.2s;
      }
      .btn-ghost:hover {
        border-color: var(--blue-light);
        background: rgba(59, 91, 219, 0.1);
      }

      /* TRUST BAR */
      .trust-bar {
        background: var(--white);
        border-top: 1px solid var(--gray-100);
        border-bottom: 1px solid var(--gray-100);
        padding: 20px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--gray-700);
        font-size: 0.8125rem;
        font-weight: 500;
        letter-spacing: 0.02em;
      }
      .trust-icon {
        width: 28px;
        height: 28px;
        background: var(--blue-pale);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .trust-icon svg {
        width: 14px;
        height: 14px;
        fill: var(--blue);
      }

      /* SECTIONS */
      section {
        padding: 88px 40px;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
      }
      .section-label {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 12px;
      }
      .section-title {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 3.5vw, 2.75rem);
        line-height: 1.15;
        letter-spacing: -0.025em;
        color: var(--navy);
        margin-bottom: 18px;
      }
      .section-title em {
        font-style: italic;
        color: var(--blue-dim);
      }
      .section-intro {
        font-size: 1.0625rem;
        color: var(--gray-700);
        max-width: 680px;
        line-height: 1.7;
      }
      .section-header {
        margin-bottom: 56px;
      }

      /* TWO-TIER EXPLAINER */
      .how-section {
        background: var(--page-bg);
        padding: 72px 40px;
      }
      .how-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .how-intro {
        font-size: 1.0625rem;
        color: var(--gray-700);
        max-width: 700px;
        line-height: 1.7;
        margin-bottom: 48px;
      }
      .how-tiers {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .tier-card {
        border-radius: var(--radius-md);
        padding: 32px 28px;
        border: 1px solid var(--gray-100);
      }
      .tier-card-exec,
      .tier-card-prac {
        background: var(--blue-pale);
        border-color: rgba(59, 91, 219, 0.2);
      }
      .tier-card-lbl {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .tier-card-exec .tier-card-lbl {
        color: var(--blue);
      }
      .tier-card-prac .tier-card-lbl {
        color: var(--blue);
      }
      .tier-card h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 10px;
      }
      .tier-card p {
        font-size: 0.9rem;
        color: var(--gray-700);
        line-height: 1.65;
        margin-bottom: 16px;
      }
      .tier-count {
        display: inline-block;
        background: var(--blue-pale);
        border: 1px solid rgba(59, 91, 219, 0.25);
        border-radius: 100px;
        padding: 4px 14px;
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--blue);
      }
      .tier-card-prac .tier-count {
        background: var(--blue-pale);
        border-color: rgba(59, 91, 219, 0.25);
        color: var(--blue);
      }

      /* WHY */
      .why-section {
        background: var(--page-bg);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
      }
      .why-card {
        background: var(--blue-pale);
        border: 1px solid rgba(59, 91, 219, 0.2);
        border-radius: var(--radius-md);
        padding: 32px 28px;
        transition: box-shadow 0.2s;
      }
      .why-card:hover {
        box-shadow: var(--shadow-hover);
      }
      .why-icon {
        width: 44px;
        height: 44px;
        background: var(--blue-pale);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }
      .why-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--blue);
        fill: none;
        stroke-width: 1.8;
      }
      .why-card h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 10px;
        line-height: 1.3;
      }
      .why-card p {
        font-size: 0.9rem;
        color: var(--gray-700);
        line-height: 1.65;
      }

      /* AUDIENCE */
      .audience-section {
        background: var(--white);
        padding: 88px 40px;
      }
      .audience-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
      }
      .roles-wrap {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .roles-tier-label {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--blue);
        margin: 12px 0 8px;
        padding-top: 12px;
        border-top: 1px solid var(--gray-100);
      }
      .roles-tier-label:first-child {
        margin-top: 0;
        border-top: none;
        padding-top: 0;
      }
      .roles-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }
      .role-chip {
        background: var(--gray-100);
        border: 1px solid var(--gray-100);
        border-radius: 100px;
        padding: 8px 14px;
        font-size: 0.8125rem;
        font-weight: 500;
        color: var(--gray-700);
        display: flex;
        align-items: center;
        gap: 7px;
      }
      .role-chip::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--blue);
        flex-shrink: 0;
      }
      .role-chip.exec {
        background: var(--blue-pale);
        border-color: rgba(59, 91, 219, 0.2);
        color: var(--navy);
      }
      .ind-label {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 16px;
      }
      .ind-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .ind-card {
        background: var(--blue-pale);
        border: 1px solid rgba(59, 91, 219, 0.2);
        border-radius: var(--radius-md);
        padding: 18px;
      }
      .ind-card-name {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 4px;
      }
      .ind-card-desc {
        font-size: 0.75rem;
        color: var(--gray-500);
        line-height: 1.5;
      }
      .ind-note {
        margin-top: 16px;
        font-size: 0.875rem;
        color: var(--blue-dim);
        line-height: 1.6;
        font-style: italic;
        font-weight: 500;
      }

      /* PROGRAMS */
      .programs-section {
        background: var(--page-bg);
      }
      .tier-divider {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gray-500);
        margin: 48px 0 20px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .tier-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--gray-300);
      }
      .tier-divider:first-of-type {
        margin-top: 0;
      }
      .prog-card {
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: var(--radius-lg);
        overflow: hidden;
        display: grid;
        grid-template-columns: 290px 1fr;
        box-shadow: var(--shadow-card);
        transition:
          box-shadow 0.25s,
          transform 0.2s;
      }
      .prog-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
      }
      .prog-card + .prog-card {
        margin-top: 20px;
      }
      .prog-side {
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .s-navy {
        background: var(--navy);
      }
      .s-teal {
        background: #2d4ac7;
      }
      .s-slate {
        background: #253258;
      }
      .s-deep {
        background: var(--navy);
      }
      .s-amber {
        background: #1e2a4a;
      }
      .prog-fmt {
        display: inline-block;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 100px;
        padding: 4px 12px;
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 16px;
        width: fit-content;
      }
      .prog-dur {
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 6px;
      }
      .prog-title {
        font-family: var(--font-display);
        font-size: 1.35rem;
        color: var(--white);
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: 18px;
      }
      .prog-metas {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: auto;
      }
      .prog-meta-row {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.4;
      }
      .prog-meta-row svg {
        width: 13px;
        height: 13px;
        stroke: var(--teal-light);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .prog-aud-tag {
        margin-top: 16px;
        background: rgba(59, 91, 219, 0.12);
        border: 1px solid rgba(59, 91, 219, 0.25);
        border-radius: var(--radius-sm);
        padding: 7px 12px;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .prog-aud-tag.exec-tag {
        background: rgba(59, 91, 219, 0.2);
        border-color: rgba(59, 91, 219, 0.35);
        color: rgba(255, 255, 255, 0.9);
      }
      .prog-aud-tag::before {
        content: "→";
        font-size: 0.625rem;
      }
      .prog-body {
        padding: 32px 32px 28px;
        display: flex;
        flex-direction: column;
      }
      .prog-tagline {
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 12px;
        line-height: 1.45;
      }
      .prog-desc {
        font-size: 0.9rem;
        color: var(--gray-700);
        line-height: 1.7;
        margin-bottom: 22px;
      }
      .prog-ol {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 10px;
      }
      .prog-outcomes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px 18px;
        margin-bottom: 22px;
      }
      .outcome {
        font-size: 0.8375rem;
        color: var(--gray-700);
        display: flex;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.45;
      }
      .outcome::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--blue);
        margin-top: 6px;
        flex-shrink: 0;
      }
      .prog-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-bottom: 22px;
      }
      .prog-tag {
        background: var(--gray-100);
        border-radius: 100px;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--gray-700);
      }
      .prog-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid var(--gray-100);
      }
      .prog-aud-note {
        font-size: 0.8125rem;
        color: var(--gray-500);
      }
      .prog-link {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--blue);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
        transition:
          color 0.2s,
          gap 0.2s;
      }
      .prog-link:hover {
        color: var(--blue-light);
        gap: 8px;
      }

      /* COMPARE */
      .compare-section {
        background: var(--white);
      }
      .tbl-wrap {
        overflow-x: auto;
      }
      .compare-tbl {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.875rem;
      }
      .compare-tbl thead tr {
        background: var(--navy);
      }
      .compare-tbl th {
        text-align: left;
        padding: 16px 20px;
        color: var(--white);
        font-weight: 600;
        font-size: 0.8125rem;
        letter-spacing: 0.03em;
      }
      .compare-tbl th:first-child {
        border-radius: var(--radius-sm) 0 0 0;
      }
      .compare-tbl th:last-child {
        border-radius: 0 var(--radius-sm) 0 0;
      }
      .compare-tbl tbody tr {
        border-bottom: 1px solid var(--gray-100);
        transition: background 0.15s;
      }
      .compare-tbl tbody tr:hover {
        background: var(--page-bg);
      }
      .compare-tbl td {
        padding: 14px 20px;
        color: var(--gray-700);
        vertical-align: middle;
      }
      .compare-tbl td:first-child {
        font-weight: 600;
        color: var(--navy);
      }
      .pb {
        display: inline-block;
        padding: 3px 10px;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
      }
      .pb-lab {
        background: var(--blue-pale);
        color: var(--blue);
      }
      .pb-ws {
        background: var(--blue-pale);
        color: var(--blue);
      }
      .pb-prog {
        background: var(--blue-pale);
        color: var(--blue);
      }
      .pb-cert {
        background: var(--blue-pale);
        color: var(--blue);
      }
      .pb-lp {
        background: var(--blue-pale);
        color: var(--blue);
      }

      /* REG */
      .reg-section {
        background: var(--page-bg);
        padding: 72px 40px;
      }
      .reg-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
      }
      .reg-text .section-label {
        color: var(--blue);
      }
      .reg-text .section-title {
        color: var(--navy);
      }
      .reg-text p {
        font-size: 1rem;
        color: var(--gray-700);
        line-height: 1.7;
        margin-bottom: 16px;
      }
      .reg-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .reg-badge {
        background: var(--white);
        border: 1px solid var(--gray-100);
        border-radius: var(--radius-sm);
        padding: 14px 16px;
        box-shadow: var(--shadow-card);
      }
      .reg-badge-name {
        font-size: 0.8125rem;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 4px;
      }
      .reg-badge-desc {
        font-size: 0.75rem;
        color: var(--gray-700);
        line-height: 1.4;
      }

      /* DELIVERY */
      .delivery-section {
        background: var(--white);
      }
      .delivery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
      }
      .delivery-card {
        background: var(--blue-pale);
        border: 1px solid rgba(59, 91, 219, 0.2);
        border-radius: var(--radius-md);
        padding: 28px 24px;
        text-align: center;
      }
      .delivery-card-icon {
        font-size: 2rem;
        margin-bottom: 14px;
      }
      .delivery-card h3 {
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .delivery-card p {
        font-size: 0.8375rem;
        color: var(--gray-700);
        line-height: 1.6;
      }

      /* CTA */
      .cta-section {
        background: linear-gradient(
          135deg,
          var(--blue-dim) 0%,
          var(--navy) 60%
        );
        padding: 88px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 80% 80% at 50% 50%,
          rgba(59, 91, 219, 0.15) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .cta-section .section-label {
        color: var(--teal-light);
        margin-bottom: 16px;
      }
      .cta-section h2 {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--white);
        letter-spacing: -0.025em;
        line-height: 1.15;
        margin-bottom: 18px;
      }
      .cta-section p {
        color: rgba(255, 255, 255, 0.75);
        max-width: 580px;
        margin: 0 auto 40px;
        font-size: 1.0625rem;
        line-height: 1.65;
      }
      .cta-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* FOOTER */
      .site-footer {
        background: var(--navy);
        border-top: 1px solid var(--navy-light);
        padding: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
      }
      .footer-logo {
        font-family: var(--font-display);
        font-size: 1.25rem;
        color: var(--white);
        text-decoration: none;
      }
      .footer-logo span {
        color: var(--teal);
      }
      .footer-links {
        display: flex;
        gap: 28px;
        list-style: none;
        flex-wrap: wrap;
      }
      .footer-links a {
        font-size: 0.8125rem;
        color: var(--gray-500);
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: var(--teal-light);
      }
      .footer-copy {
        font-size: 0.75rem;
        color: var(--gray-500);
        width: 100%;
        margin-top: 8px;
      }

      @media (max-width: 960px) {
        .prog-card {
          grid-template-columns: 1fr;
        }
        .prog-side {
          padding: 24px;
        }
        .prog-body {
          padding: 24px;
        }
        .prog-outcomes {
          grid-template-columns: 1fr;
        }
        .audience-inner,
        .reg-inner,
        .how-tiers {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .roles-row {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 640px) {
        section {
          padding: 64px 24px;
        }
        .site-nav {
          padding: 0 24px;
        }
        .hero {
          padding: 72px 24px 64px;
        }
        .nav-links {
          display: none;
        }
        .trust-bar {
          gap: 24px;
          padding: 20px 24px;
        }
        .reg-grid,
        .ind-grid {
          grid-template-columns: 1fr;
        }
        .site-footer {
          padding: 32px 24px;
        }
      }
      .th-header,
      .footer-wrapper {
        font-family: var(--title-font);
      }
      .th-header .container,
      .footer-wrapper .container {
        width: 100%;
        max-width: var(--main-container);
        padding-left: var(--container-gutters);
        padding-right: var(--container-gutters);
      }
      .td-training-wrap {
        background: var(--white);
        color: var(--navy);
        font-family: var(--font-body);
      }
      .td-training-wrap .hero {
        margin-top: 0;
        padding-top: 160px;
      }
