    /* ===== TOKENS ===== */
    :root {
      --navy: #0B2D5C;
      --blue: #1E5AA8;
      --blue-light: #EAF3FF;
      --white: #FFFFFF;
      --yellow: #F6C343;
      --yellow-dark: #D9A71E;
      --text: #1F2933;
      --text-muted: #4A5568;
      --gray-bg: #F6F8FB;
      --border: #D8E6F3;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 2px 16px rgba(11, 45, 92, 0.08);
      --shadow-md: 0 6px 32px rgba(11, 45, 92, 0.13);
    }

    /* ===== RESET ===== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
    }

    /* ===== SKIP LINK ===== */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 1rem;
      background: var(--yellow);
      color: var(--navy);
      font-weight: 700;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius);
      z-index: 9999;
      transition: top 0.2s;
    }

    .skip-link:focus {
      top: 1rem;
    }

    /* ===== TYPOGRAPHY ===== */
    h1,
    h2,
    h3,
    h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1.2;
      font-weight: 800;
      color: var(--navy);
    }

    h1 {
      font-size: clamp(2.2rem, 5vw, 3rem);
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 700;
    }

    p {
      max-width: 68ch;
    }

    /* ===== LAYOUT ===== */
    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section {
      padding: 6rem 0;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
      cursor: pointer;
      min-height: 48px;
    }

    .btn:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 3px;
    }

    .btn-primary {
      background: var(--yellow);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: var(--yellow-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(246, 195, 67, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.7);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
    }

    .btn-outline {
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
    }

    .btn-outline:hover {
      background: var(--blue);
      color: white;
    }

    .btn-navy {
      background: var(--navy);
      color: white;
    }

    .btn-navy:hover {
      background: #0a2550;
      transform: translateY(-1px);
    }

    /* ===== EYEBROW ===== */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
      flex-shrink: 0;
    }

    /* ===== SECTION HEADER ===== */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-header .eyebrow {
      justify-content: center;
    }

    .section-header p {
      margin: 1rem auto 0;
      color: var(--text-muted);
      font-size: 1.1rem;
      max-width: 56ch;
    }

    /* ===== CARD BASE ===== */
    .card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      padding: 2rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    /* ===== FADE IN ===== */
    .fade-in {
      opacity: 1;
      transform: translateY(0px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===========================
       HEADER / NAV
    =========================== */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--navy);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 2px 20px rgba(11, 45, 92, 0.35);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 100px;
      height: auto;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-mark svg {
      width: 26px;
      height: 26px;
    }

    .logo-text {
      line-height: 1.15;
    }

    .logo-text strong {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: #ffffff;
    }

    .logo-text span {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 0.1rem;
    }

    .main-nav a {
      padding: 0.5rem 0.8rem;
      font-size: 0.92rem;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: rgba(255, 255, 255, 0.88);
      border-radius: 6px;
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }

    .main-nav a:hover {
      color: var(--yellow);
      background: rgba(255, 255, 255, 0.08);
    }

    .main-nav a:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      flex-shrink: 0;
    }

    .btn-signin {
      background: transparent;
      color: rgba(255, 255, 255, 0.88);
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      padding: 0.625rem 1.25rem;
      font-size: 0.88rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .btn-signin:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.7);
      color: #fff;
    }

    .btn-signin:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .btn-signup {
      background: var(--yellow);
      color: var(--navy);
      border: none;
      padding: 0.625rem 1.25rem;
      font-size: 0.88rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
      white-space: nowrap;
    }

    .btn-signup:hover {
      background: var(--yellow-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(246, 195, 67, 0.4);
    }

    .btn-signup:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .header-divider {
      width: 1px;
      height: 28px;
      background: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      padding: 0.5rem;
      border-radius: 6px;
      min-height: 44px;
      min-width: 44px;
      align-items: center;
      justify-content: center;
    }

    .hamburger:focus-visible {
      outline: 3px solid var(--yellow);
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #ffffff;
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 88px;
      left: 0;
      right: 0;
      background: white;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      z-index: 99;
      padding: 1.5rem;
      flex-direction: column;
      gap: 0.25rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      padding: 0.875rem 1rem;
      font-size: 1.05rem;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--navy);
      border-radius: 8px;
      transition: background 0.15s;
    }

    .mobile-menu a:hover {
      background: var(--blue-light);
    }

    .mobile-menu .btn {
      width: 100%;
      justify-content: center;
      margin-top: 0.75rem;
    }

    /* ===========================
       HERO
    =========================== */
    #hero {
      background: var(--navy);
      padding: 0;
      overflow: hidden;
      position: relative;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 720px;
      align-items: center;
    }

    .hero-content {
      padding: 5rem 3rem 5rem 0;
      position: relative;
      z-index: 2;
    }

    .hero-content .eyebrow {
      color: var(--yellow);
    }

    .hero-content .eyebrow::before {
      background: var(--yellow);
    }

    .hero-content h1 {
      color: var(--white);
      margin-bottom: 1.25rem;
    }

    .hero-content p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.15rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 52ch;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      max-width: 540px;
    }

    .trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.375rem 0.75rem;
      border-radius: 100px;
    }

    .trust-chip svg {
      width: 14px;
      height: 14px;
      color: var(--yellow);
      flex-shrink: 0;
    }

    /* Hero visual panel */
    .hero-visual {
      position: relative;
      height: 100%;
      min-height: 620px;
      overflow: hidden;
    }

    /* Diagonal yellow accent — the signature element */
    /* .hero-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: -60px;
      right: -20px;
      bottom: 0;
      background: linear-gradient(135deg, rgba(246, 195, 67, 0.18) 0%, rgba(246, 195, 67, 0.06) 60%, transparent 100%);
      clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--navy) 0%, rgba(11, 45, 92, 0.3) 40%, transparent 70%);
      z-index: 2;
    } */

    .hero-visual-content {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-illustration {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1E5AA8 0%, #0d3c7a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-svg-wrap {
      width: 340px;
      height: 340px;
      opacity: 0.92;
    }

    /* ===========================
       STATS BAR
    =========================== */
    #stats-bar {
      background: var(--blue);
      padding: 0;
    }

    .stats-inner {
      display: flex;
      align-items: stretch;
    }

    .stat-item {
      flex: 1;
      text-align: center;
      padding: 1.25rem 1.5rem;
      border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--yellow);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
    }

    /* ===========================
       MISSION
    =========================== */
    #mission {
      background: var(--white);
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: center;
    }

    .mission-text h2 {
      margin-bottom: 1rem;
    }

    .mission-text p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .mission-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .mission-card {
      background: var(--blue-light);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .mission-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--yellow);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .mission-card:hover::after {
      transform: scaleX(1);
    }

    .mission-icon {
      width: 52px;
      height: 52px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .mission-icon svg {
      width: 26px;
      height: 26px;
      color: var(--yellow);
    }

    .mission-card h3 {
      color: var(--navy);
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
    }

    .mission-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
      max-width: none;
    }

    /* ===========================
       SERVICES
    =========================== */
    #services {
      background: var(--gray-bg);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem 2rem 1.75rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--blue-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      position: relative;
    }

    .service-icon::after {
      content: '';
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 16px;
      height: 16px;
      background: var(--yellow);
      border-radius: 4px;
      z-index: 0;
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
      color: var(--blue);
      position: relative;
      z-index: 1;
    }

    .service-card h3 {
      color: var(--navy);
      margin-bottom: 0.625rem;
      font-size: 1.2rem;
    }

    .service-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      flex: 1;
      max-width: none;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 1.25rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--blue);
      transition: gap 0.2s;
    }

    .service-link:hover {
      gap: 0.6rem;
      color: var(--navy);
    }

    .service-link:focus-visible {
      outline: 3px solid var(--yellow);
      border-radius: 4px;
    }

    .service-link svg {
      width: 16px;
      height: 16px;
    }

    /* ===========================
       CERTIFICATION
    =========================== */
    #certification {
      background: var(--blue-light);
    }

    .cert-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .cert-content h2 {
      margin-bottom: 1rem;
    }

    .cert-content p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .cert-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .cert-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .cert-feature-icon {
      width: 28px;
      height: 28px;
      background: var(--yellow);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .cert-feature-icon svg {
      width: 14px;
      height: 14px;
      color: var(--navy);
    }

    .cert-feature p {
      color: var(--text);
      font-size: 0.95rem;
      margin: 0;
      max-width: none;
    }

    .cert-feature strong {
      color: var(--navy);
    }

    .cert-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .cert-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 1.25rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .cert-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-md);
    }

    .cert-card-icon {
      width: 52px;
      height: 52px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cert-card-icon svg {
      width: 26px;
      height: 26px;
      color: var(--yellow);
    }

    .cert-card-body h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .cert-card-body p {
      font-size: 0.85rem;
      color: var(--text-muted);
      max-width: none;
      margin: 0;
    }

    .cert-badge {
      margin-left: auto;
      flex-shrink: 0;
      background: var(--yellow);
      color: var(--navy);
      font-size: 0.7rem;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
      padding: 0.25rem 0.625rem;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ===========================
       WHY CHOOSE
    =========================== */
    #why {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .why-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      background: var(--white);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--blue);
    }

    .why-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--blue-light);
      line-height: 1;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .why-num::after {
      content: '';
      display: block;
      width: 32px;
      height: 4px;
      background: var(--yellow);
      border-radius: 2px;
      margin-top: 0.4rem;
    }

    .why-card h3 {
      color: var(--navy);
      font-size: 1.05rem;
      margin-bottom: 0.625rem;
    }

    .why-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
      max-width: none;
    }

    /* ===========================
       ABOUT
    =========================== */
    #about {
      background: var(--gray-bg);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4.5rem;
      align-items: center;
    }

    .about-image {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: visible;
    }

    .about-img-box {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .about-badge {
      position: absolute;
      bottom: -1rem;
      right: 2rem;
      background: var(--yellow);
      color: var(--navy);
      padding: 1.25rem 1.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .about-badge strong {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.75rem;
      font-weight: 800;
      line-height: 1;
    }

    .about-badge span {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .about-content {
      padding-bottom: 2rem;
    }

    .about-content h2 {
      margin-bottom: 1rem;
    }

    .about-content p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }

    .about-points {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .about-point {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
    }

    .about-point svg {
      width: 20px;
      height: 20px;
      color: var(--blue);
      flex-shrink: 0;
    }

    /* ===========================
       PROCESS
    =========================== */
    #process {
      background: #ffffff;
    }

    #process .section-header h2 {
      color: #0b2d5c;
    }

    #process .section-header p {
      color: #4d5764 !important;
    }

    #process .eyebrow {
      color: var(--yellow);
    }

    #process .eyebrow::before {
      background: var(--yellow);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
    }

    .process-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(246, 195, 67, 0.25);
      z-index: 0;
      width: 78%;
    }

    .process-step {
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .process-num {
      width: 56px;
      height: 56px;
      background: #0b2d5c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0 30px 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: white;
      border: 1px solid rgba(246, 195, 67, 0.4);
      position: relative;
    }

    .process-step:hover .process-num {
      background: var(--yellow);
      color: var(--navy);
      border-color: var(--yellow);
    }

    .process-step h3 {
      color: #1c1c1d;
      font-size: 1.1rem;
      margin-bottom: 0.625rem;
    }

    .process-step p {
      color: #4d5764;
      font-size: 0.9rem;
      line-height: 1.65;
      max-width: none;
      text-align: left;
      position: relative;
      padding-bottom: 16px;
    }

    .process-step p:after {
      content: '';
      width: 50px;
      height: 2px;
      background: #f6c343;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    /* ===========================
       FINAL CTA
    =========================== */
    #cta-section {
      background: linear-gradient(135deg, #0B2D5C 0%, #1E5AA8 100%);
      padding: 6rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta-section::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(246, 195, 67, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    #cta-section::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(30, 90, 168, 0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }

    #cta-section h2 {
      color: white;
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 1rem;
    }

    #cta-section p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.15rem;
      margin: 0 auto 2.5rem;
      max-width: 52ch;
      text-align: center;
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ===========================
       FOOTER
    =========================== */
    #footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.8);
      padding: 5rem 0 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand .logo {
      margin-bottom: 1rem;
    }

    .footer-brand .logo-text strong {
      color: white;
    }

    .footer-brand .logo-text span {
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 1.5rem;
      max-width: 36ch;
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
    }

    /*.social-btn {*/
    /*  width: 40px;*/
    /*  height: 40px;*/
    /*  background: rgba(255, 255, 255, 0.08);*/
    /*  border-radius: 8px;*/
    /*  display: flex;*/
    /*  align-items: center;*/
    /*  justify-content: center;*/
    /*  color: rgba(255, 255, 255, 0.7);*/
    /*  transition: background 0.15s, color 0.15s;*/
    /*}*/

    /*.social-btn:hover {*/
    /*  background: var(--yellow);*/
    /*  color: var(--navy);*/
    /*}*/

    /*.social-btn:focus-visible {*/
    /*  outline: 3px solid var(--yellow);*/
    /*}*/

    .social-btn svg {
      width: 18px;
      height: 18px;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .footer-col ul li a {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.15s;
    }

    .footer-col ul li a:hover {
      color: var(--yellow);
    }

    .footer-col ul li a:focus-visible {
      outline: 3px solid var(--yellow);
      border-radius: 2px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      color: var(--yellow);
      flex-shrink: 0;
      margin-top: 3px;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 2rem;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.15s;
    }

    .footer-bottom a:hover {
      color: var(--yellow);
    }

    .footer-legal {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 1024px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid::before {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 4rem 0;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.7rem;
      }

      .main-nav,
      .header-cta .btn {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-content {
        padding: 3.5rem 0 0;
      }

      .hero-visual {
        display: none;
      }

      .stats-inner {
        flex-wrap: wrap;
      }

      .stat-item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      }

      .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
      }

      .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .mission-cards {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .cert-inner {
        grid-template-columns: 1fr;
      }

      .about-inner {
        grid-template-columns: 1fr;
      }

      .about-badge {
        bottom: 0.5rem;
        right: 1rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-btns {
        flex-direction: column;
        align-items: center;
      }

      .cta-btns .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      .hero-btns {
        flex-direction: column;
      }

      .hero-btns .btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
      }

      *,
      *::before,
      *::after {
        transition-duration: 0.001ms !important;
      }
    }

    /* ===== TOKENS ===== */
    :root {
      --navy: #0B2D5C;
      --blue: #1E5AA8;
      --blue-light: #EAF3FF;
      --white: #FFFFFF;
      --yellow: #F6C343;
      --yellow-dark: #D9A71E;
      --text: #1F2933;
      --text-muted: #4A5568;
      --gray-bg: #F6F8FB;
      --border: #D8E6F3;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 2px 16px rgba(11, 45, 92, 0.08);
      --shadow-md: 0 6px 32px rgba(11, 45, 92, 0.13);
    }

    /* ===== RESET ===== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
    }

    /* ===== SKIP LINK ===== */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 1rem;
      background: var(--yellow);
      color: var(--navy);
      font-weight: 700;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius);
      z-index: 9999;
      transition: top 0.2s;
    }

    .skip-link:focus {
      top: 1rem;
    }

    /* ===== TYPOGRAPHY ===== */
    h1,
    h2,
    h3,
    h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1.2;
      font-weight: 800;
      color: var(--navy);
    }

    h1 {
      font-size: clamp(2.2rem, 5vw, 3rem);
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 700;
    }

    p {
      max-width: 68ch;
    }

    /* ===== LAYOUT ===== */
    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section {
      padding: 6rem 0;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
      cursor: pointer;
      min-height: 48px;
    }

    .btn:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 3px;
    }

    .btn-primary {
      background: var(--yellow);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: var(--yellow-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(246, 195, 67, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.7);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
    }

    .btn-outline {
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
    }

    .btn-outline:hover {
      background: var(--blue);
      color: white;
    }

    .btn-navy {
      background: var(--navy);
      color: white;
    }

    .btn-navy:hover {
      background: #0a2550;
      transform: translateY(-1px);
    }

    /* ===== EYEBROW ===== */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
      flex-shrink: 0;
    }

    /* ===== SECTION HEADER ===== */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-header .eyebrow {
      justify-content: center;
    }

    .section-header p {
      margin: 1rem auto 0;
      color: var(--text-muted);
      font-size: 1.1rem;
      max-width: 56ch;
    }

    /* ===== CARD BASE ===== */
    .card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      padding: 2rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    /* ===== FADE IN ===== */
    .fade-in {
      opacity: 1;
      transform: translateY(0px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===========================
       HEADER / NAV
    =========================== */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--navy);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 2px 20px rgba(11, 45, 92, 0.35);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 100px;
      height: auto;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-mark svg {
      width: 26px;
      height: 26px;
    }

    .logo-text {
      line-height: 1.15;
    }

    .logo-text strong {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: #ffffff;
    }

    .logo-text span {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 0.1rem;
    }

    .main-nav a {
      padding: 0.5rem 0.8rem;
      font-size: 0.92rem;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: rgba(255, 255, 255, 0.88);
      border-radius: 6px;
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }

    .main-nav a:hover {
      color: var(--yellow);
      background: rgba(255, 255, 255, 0.08);
    }

    .main-nav a:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .main-nav a.active {
      color: var(--yellow);
      background: rgba(255, 255, 255, 0.08);
    }

    .mobile-menu a.active {
      color: var(--blue);
      background: var(--blue-light);
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      flex-shrink: 0;
    }

    .btn-signin {
      background: transparent;
      color: rgba(255, 255, 255, 0.88);
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      padding: 0.625rem 1.25rem;
      font-size: 0.88rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .btn-signin:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.7);
      color: #fff;
    }

    .btn-signin:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .btn-signup {
      background: var(--yellow);
      color: var(--navy);
      border: none;
      padding: 0.625rem 1.25rem;
      font-size: 0.88rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
      white-space: nowrap;
    }

    .btn-signup:hover {
      background: var(--yellow-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(246, 195, 67, 0.4);
    }

    .btn-signup:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .header-divider {
      width: 1px;
      height: 28px;
      background: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      padding: 0.5rem;
      border-radius: 6px;
      min-height: 44px;
      min-width: 44px;
      align-items: center;
      justify-content: center;
    }

    .hamburger:focus-visible {
      outline: 3px solid var(--yellow);
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #ffffff;
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 88px;
      left: 0;
      right: 0;
      background: white;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      z-index: 99;
      padding: 1.5rem;
      flex-direction: column;
      gap: 0.25rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      padding: 0.875rem 1rem;
      font-size: 1.05rem;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--navy);
      border-radius: 8px;
      transition: background 0.15s;
    }

    .mobile-menu a:hover {
      background: var(--blue-light);
    }

    .mobile-menu .btn {
      width: 100%;
      justify-content: center;
      margin-top: 0.75rem;
    }

    /* ===========================
       HERO
    =========================== */
    #hero {
      background: var(--navy);
      padding: 0;
      overflow: hidden;
      position: relative;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 720px;
      align-items: center;
    }

    .hero-content {
      padding: 5rem 3rem 5rem 0;
      position: relative;
      z-index: 2;
    }

    .hero-content .eyebrow {
      color: var(--yellow);
    }

    .hero-content .eyebrow::before {
      background: var(--yellow);
    }

    .hero-content h1 {
      color: var(--white);
      margin-bottom: 1.25rem;
    }

    .hero-content p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.15rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 52ch;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      max-width: 540px;
    }

    .trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.375rem 0.75rem;
      border-radius: 100px;
    }

    .trust-chip svg {
      width: 14px;
      height: 14px;
      color: var(--yellow);
      flex-shrink: 0;
    }

    /* Hero visual panel */
    .hero-visual {
      position: relative;
      height: 100%;
      min-height: 620px;
      overflow: hidden;
    }

    /* Diagonal yellow accent — the signature element */
    /* .hero-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: -60px;
      right: -20px;
      bottom: 0;
      background: linear-gradient(135deg, rgba(246, 195, 67, 0.18) 0%, rgba(246, 195, 67, 0.06) 60%, transparent 100%);
      clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--navy) 0%, rgba(11, 45, 92, 0.3) 40%, transparent 70%);
      z-index: 2;
    } */

    .hero-visual-content {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-illustration {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1E5AA8 0%, #0d3c7a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-svg-wrap {
      width: 340px;
      height: 340px;
      opacity: 0.92;
    }

    /* ===========================
       STATS BAR
    =========================== */
    #stats-bar {
      background: var(--blue);
      padding: 0;
    }

    .stats-inner {
      display: flex;
      align-items: stretch;
    }

    .stat-item {
      flex: 1;
      text-align: center;
      padding: 1.25rem 1.5rem;
      border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--yellow);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
    }

    /* ===========================
       MISSION
    =========================== */
    #mission {
      background: var(--white);
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: center;
    }

    .mission-text h2 {
      margin-bottom: 1rem;
    }

    .mission-text p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .mission-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .mission-card {
      background: var(--blue-light);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .mission-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--yellow);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .mission-card:hover::after {
      transform: scaleX(1);
    }

    .mission-icon {
      width: 52px;
      height: 52px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .mission-icon svg {
      width: 26px;
      height: 26px;
      color: var(--yellow);
    }

    .mission-card h3 {
      color: var(--navy);
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
    }

    .mission-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
      max-width: none;
    }

    /* ===========================
       SERVICES
    =========================== */
    #services {
      background: var(--gray-bg);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem 2rem 1.75rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--blue-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      position: relative;
    }

    .service-icon::after {
      content: '';
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 16px;
      height: 16px;
      background: var(--yellow);
      border-radius: 4px;
      z-index: 0;
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
      color: var(--blue);
      position: relative;
      z-index: 1;
    }

    .service-card h3 {
      color: var(--navy);
      margin-bottom: 0.625rem;
      font-size: 1.2rem;
    }

    .service-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      flex: 1;
      max-width: none;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 1.25rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--blue);
      transition: gap 0.2s;
    }

    .service-link:hover {
      gap: 0.6rem;
      color: var(--navy);
    }

    .service-link:focus-visible {
      outline: 3px solid var(--yellow);
      border-radius: 4px;
    }

    .service-link svg {
      width: 16px;
      height: 16px;
    }

    /* ===========================
       CERTIFICATION
    =========================== */
    #certification {
      background: var(--blue-light);
    }

    .cert-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .cert-content h2 {
      margin-bottom: 1rem;
    }

    .cert-content p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .cert-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .cert-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .cert-feature-icon {
      width: 28px;
      height: 28px;
      background: var(--yellow);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .cert-feature-icon svg {
      width: 14px;
      height: 14px;
      color: var(--navy);
    }

    .cert-feature p {
      color: var(--text);
      font-size: 0.95rem;
      margin: 0;
      max-width: none;
    }

    .cert-feature strong {
      color: var(--navy);
    }

    .cert-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .cert-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 1.25rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .cert-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-md);
    }

    .cert-card-icon {
      width: 52px;
      height: 52px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cert-card-icon svg {
      width: 26px;
      height: 26px;
      color: var(--yellow);
    }

    .cert-card-body h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .cert-card-body p {
      font-size: 0.85rem;
      color: var(--text-muted);
      max-width: none;
      margin: 0;
    }

    .cert-badge {
      margin-left: auto;
      flex-shrink: 0;
      background: var(--yellow);
      color: var(--navy);
      font-size: 0.7rem;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
      padding: 0.25rem 0.625rem;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ===========================
       WHY CHOOSE
    =========================== */
    #why {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .why-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      background: var(--white);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--blue);
    }

    .why-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--blue-light);
      line-height: 1;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .why-num::after {
      content: '';
      display: block;
      width: 32px;
      height: 4px;
      background: var(--yellow);
      border-radius: 2px;
      margin-top: 0.4rem;
    }

    .why-card h3 {
      color: var(--navy);
      font-size: 1.05rem;
      margin-bottom: 0.625rem;
    }

    .why-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
      max-width: none;
    }

    /* ===========================
       ABOUT
    =========================== */
    #about {
      background: var(--gray-bg);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4.5rem;
      align-items: center;
    }

    .about-image {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: visible;
    }

    .about-img-box {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .about-badge {
      position: absolute;
      bottom: -1rem;
      right: 2rem;
      background: var(--yellow);
      color: var(--navy);
      padding: 1.25rem 1.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .about-badge strong {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.75rem;
      font-weight: 800;
      line-height: 1;
    }

    .about-badge span {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .about-content {
      padding-bottom: 2rem;
    }

    .about-content h2 {
      margin-bottom: 1rem;
    }

    .about-content p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }

    .about-points {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .about-point {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
    }

    .about-point svg {
      width: 20px;
      height: 20px;
      color: var(--blue);
      flex-shrink: 0;
    }

    /* ===========================
       PROCESS
    =========================== */
    #process {
      background: #ffffff;
    }

    #process .section-header h2 {
      color: #0b2d5c;
    }

    #process .section-header p {
      color: #4d5764 !important;
    }

    #process .eyebrow {
      color: var(--yellow);
    }

    #process .eyebrow::before {
      background: var(--yellow);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
    }

    .process-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(246, 195, 67, 0.25);
      z-index: 0;
      width: 78%;
    }

    .process-step {
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .process-num {
      width: 56px;
      height: 56px;
      background: #0b2d5c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0 30px 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: white;
      border: 1px solid rgba(246, 195, 67, 0.4);
      position: relative;
    }

    .process-step:hover .process-num {
      background: var(--yellow);
      color: var(--navy);
      border-color: var(--yellow);
    }

    .process-step h3 {
      color: #1c1c1d;
      font-size: 1.1rem;
      margin-bottom: 0.625rem;
    }

    .process-step p {
      color: #4d5764;
      font-size: 0.9rem;
      line-height: 1.65;
      max-width: none;
      text-align: left;
      position: relative;
      padding-bottom: 16px;
    }

    .process-step p:after {
      content: '';
      width: 50px;
      height: 2px;
      background: #f6c343;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    /* ===========================
       FINAL CTA
    =========================== */
    #cta-section {
      background: linear-gradient(135deg, #0B2D5C 0%, #1E5AA8 100%);
      padding: 6rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta-section::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(246, 195, 67, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    #cta-section::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(30, 90, 168, 0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }

    #cta-section h2 {
      color: white;
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 1rem;
    }

    #cta-section p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.15rem;
      margin: 0 auto 2.5rem;
      max-width: 52ch;
      text-align: center;
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ===========================
       FOOTER
    =========================== */
    #footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.8);
      padding: 5rem 0 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand .logo {
      margin-bottom: 1rem;
    }

    .footer-brand .logo-text strong {
      color: white;
    }

    .footer-brand .logo-text span {
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 1.5rem;
      max-width: 36ch;
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
    }

    /*.social-btn {*/
    /*  width: 40px;*/
    /*  height: 40px;*/
    /*  background: rgba(255, 255, 255, 0.08);*/
    /*  border-radius: 8px;*/
    /*  display: flex;*/
    /*  align-items: center;*/
    /*  justify-content: center;*/
    /*  color: rgba(255, 255, 255, 0.7);*/
    /*  transition: background 0.15s, color 0.15s;*/
    /*}*/

    /*.social-btn:hover {*/
    /*  background: var(--yellow);*/
    /*  color: var(--navy);*/
    /*}*/

    /*.social-btn:focus-visible {*/
    /*  outline: 3px solid var(--yellow);*/
    /*}*/

    .social-btn svg {
      width: 18px;
      height: 18px;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .footer-col ul li a {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.15s;
    }

    .footer-col ul li a:hover {
      color: var(--yellow);
    }

    .footer-col ul li a:focus-visible {
      outline: 3px solid var(--yellow);
      border-radius: 2px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      color: var(--yellow);
      flex-shrink: 0;
      margin-top: 3px;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 2rem;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.15s;
    }

    .footer-bottom a:hover {
      color: var(--yellow);
    }

    .footer-legal {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    /* ===========================
       PAGE HEADER (About)
    =========================== */
    #page-header {
      background: var(--navy);
      padding: 3.5rem 0 4.5rem;
      position: relative;
      overflow: hidden;
    }

    #page-header::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -100px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(246, 195, 67, 0.14) 0%, transparent 70%);
      pointer-events: none;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.15s;
    }

    .breadcrumb a:hover {
      color: var(--yellow);
    }

    .breadcrumb svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .page-header-inner {
      position: relative;
      z-index: 1;
      max-width: 62ch;
    }

    .page-header-inner .eyebrow {
      color: var(--yellow);
    }

    .page-header-inner .eyebrow::before {
      background: var(--yellow);
    }

    .page-header-inner h1 {
      color: var(--white);
      margin-bottom: 1.25rem;
    }

    .page-header-inner p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.15rem;
      line-height: 1.7;
      max-width: 62ch;
    }

    /* ===========================
       PHILOSOPHY
    =========================== */
    #philosophy {
      background: var(--white);
    }

    .philosophy-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4.5rem;
      align-items: center;
    }

    .philosophy-text .eyebrow {
      margin-bottom: 1rem;
    }

    .philosophy-text h2 {
      margin-bottom: 1.25rem;
    }

    .philosophy-text p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.25rem;
      max-width: none;
    }

    .philosophy-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }

    .philosophy-img-box {
      aspect-ratio: 3/4;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .philosophy-img-box:first-child {
      margin-top: 2.5rem;
    }

    .philosophy-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* ===========================
       TEAM
    =========================== */
    #team {
      background: var(--gray-bg);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.75rem;
    }

    .team-card {
      position: relative;
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      text-align: center;
      transition: transform 0.25s, box-shadow 0.25s;
      overflow: hidden;
    }

    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .team-card:hover .team-photo {
      transform: translate(-50%, -50%) scale(1.05);
    }

    .team-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--yellow);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
      z-index: 3;
    }

    .team-card:hover::after {
      transform: scaleX(1);
    }

    .team-card-banner {
      height: 120px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      position: relative;
      overflow: hidden;
    }

    .team-card-banner::before {
      content: '';
      position: absolute;
      top: -30px;
      right: -20px;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: rgba(246, 195, 67, 0.16);
    }

    .team-photo {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      position: absolute;
      top: 120px;
      left: 50%;
      transform: translate(-50%, -50%);
      border: 4px solid var(--white);
      box-shadow: 0 6px 16px rgba(11, 45, 92, 0.28);
      background: var(--white);
      z-index: 2;
      transition: transform 0.3s;
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .team-card-body {
      padding: 110px 1.5rem 1.75rem;
    }

    .team-role {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--blue);
      background: var(--blue-light);
      padding: 0.3rem 0.75rem;
      border-radius: 100px;
      margin-bottom: 0.75rem;
    }

    .team-name {
      color: var(--navy);
      font-size: 1.1rem;
      margin-bottom: 0;
    }

    .team-divider {
      width: 28px;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
      margin: 0.75rem auto 0;
    }

    .team-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 1rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--blue);
      transition: gap 0.2s;
    }

    .team-link:hover {
      gap: 0.55rem;
      color: var(--navy);
    }

    .team-link:focus-visible {
      outline: 3px solid var(--yellow);
      border-radius: 4px;
    }

    .team-link svg {
      width: 14px;
      height: 14px;
    }

    .team-note {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.95rem;
      margin: 3rem auto 0;
      max-width: 60ch;
      font-style: italic;
    }

    /* ===========================
       KUDOS / TESTIMONIALS
    =========================== */
    #kudos {
      background: var(--white);
    }

    .kudos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .kudos-card {
      background: var(--gray-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }

    .kudos-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      background: var(--white);
    }

    .kudos-quote-mark {
      width: 36px;
      height: 28px;
      color: var(--yellow);
      margin-bottom: 1rem;
      flex-shrink: 0;
    }

    .kudos-text {
      color: var(--text);
      font-size: 0.98rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      flex: 1;
      max-width: none;
    }

    .kudos-author {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      border-top: 1px solid var(--border);
      padding-top: 1.125rem;
    }

    .kudos-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .kudos-author-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--navy);
      line-height: 1.3;
    }

    .kudos-author-role {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.3;
    }

    /* ===========================
       CLIENTS
    =========================== */
    #clients {
      background: var(--blue-light);
    }

    .clients-intro {
      text-align: center;
      max-width: 60ch;
      margin: 0 auto 2.5rem;
    }

    .clients-note {
      color: var(--text-muted);
      font-size: 0.85rem;
      font-style: italic;
      margin-top: 0.5rem;
      max-width: none;
    }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.875rem;
      margin-bottom: 2.5rem;
    }

    .client-chip {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.85rem 1rem;
      text-align: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--navy);
      transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    }

    .client-chip:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      border-color: var(--blue);
    }

    .client-extra {
      display: none;
    }

    .clients-grid.expanded .client-extra {
      display: block;
    }

    .clients-toggle-wrap {
      text-align: center;
    }

    .btn-toggle-clients {
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
      padding: 0.875rem 1.75rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.15s, color 0.15s;
      min-height: 48px;
    }

    .btn-toggle-clients:hover {
      background: var(--blue);
      color: white;
    }

    .btn-toggle-clients:focus-visible {
      outline: 3px solid var(--navy);
      outline-offset: 3px;
    }

    .btn-toggle-clients svg {
      width: 16px;
      height: 16px;
      transition: transform 0.25s;
    }

    .btn-toggle-clients.is-open svg {
      transform: rotate(180deg);
    }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 1024px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid::before {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .kudos-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .clients-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 4rem 0;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.7rem;
      }

      .main-nav,
      .header-cta .btn {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-content {
        padding: 3.5rem 0 0;
      }

      .hero-visual {
        display: none;
      }

      .stats-inner {
        flex-wrap: wrap;
      }

      .stat-item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      }

      .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
      }

      .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .mission-cards {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .cert-inner {
        grid-template-columns: 1fr;
      }

      .about-inner {
        grid-template-columns: 1fr;
      }

      .philosophy-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .philosophy-img-box:first-child {
        margin-top: 0;
      }

      .team-grid {
        grid-template-columns: 1fr 1fr;
      }

      .kudos-grid {
        grid-template-columns: 1fr;
      }

      .clients-grid {
        grid-template-columns: 1fr 1fr;
      }

      .about-badge {
        bottom: 0.5rem;
        right: 1rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-btns {
        flex-direction: column;
        align-items: center;
      }

      .cta-btns .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      .hero-btns {
        flex-direction: column;
      }

      .hero-btns .btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
      }

      *,
      *::before,
      *::after {
        transition-duration: 0.001ms !important;
      }
    }

    /* --- ADDED FROM styles - Copy.css --- */

    /* ===== TOKENS ===== */
    :root {
      --navy: #0B2D5C;
      --blue: #1E5AA8;
      --blue-light: #EAF3FF;
      --white: #FFFFFF;
      --yellow: #F6C343;
      --yellow-dark: #D9A71E;
      --text: #1F2933;
      --text-muted: #4A5568;
      --gray-bg: #F6F8FB;
      --border: #D8E6F3;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 2px 16px rgba(11, 45, 92, 0.08);
      --shadow-md: 0 6px 32px rgba(11, 45, 92, 0.13);
    }


    /* ===== RESET ===== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
    }


    /* ===== SKIP LINK ===== */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 1rem;
      background: var(--yellow);
      color: var(--navy);
      font-weight: 700;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius);
      z-index: 9999;
      transition: top 0.2s;
    }

    .skip-link:focus {
      top: 1rem;
    }


    /* ===== TYPOGRAPHY ===== */
    h1,
    h2,
    h3,
    h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1.2;
      font-weight: 800;
      color: var(--navy);
    }

    h1 {
      font-size: clamp(2.2rem, 5vw, 3rem);
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 700;
    }

    p {
      max-width: 68ch;
    }


    /* ===== LAYOUT ===== */
    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section {
      padding: 6rem 0;
    }


    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
      cursor: pointer;
      min-height: 48px;
    }

    .btn:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 3px;
    }

    .btn-primary {
      background: var(--yellow);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: var(--yellow-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(246, 195, 67, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.7);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
    }

    .btn-outline {
      background: transparent;
      color: var(--blue);
      border: 2px solid var(--blue);
    }

    .btn-outline:hover {
      background: var(--blue);
      color: white;
    }

    .btn-navy {
      background: var(--navy);
      color: white;
    }

    .btn-navy:hover {
      background: #0a2550;
      transform: translateY(-1px);
    }

    .main-nav a.nav-parent-active {
      color: var(--yellow);
    }

    .mobile-menu a.nav-parent-active {
      color: var(--blue);
    }


    /* ===== EYEBROW ===== */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
      flex-shrink: 0;
    }


    /* ===== SECTION HEADER ===== */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-header .eyebrow {
      justify-content: center;
    }

    .section-header p {
      margin: 1rem auto 0;
      color: var(--text-muted);
      font-size: 1.1rem;
      max-width: 56ch;
    }


    /* ===== CARD BASE ===== */
    .card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      padding: 2rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }


    /* ===== FADE IN ===== */
    .fade-in {
      opacity: 1;
      transform: translateY(0px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }


    /* ===========================
       HEADER / NAV
    =========================== */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--navy);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 2px 20px rgba(11, 45, 92, 0.35);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 100px;
      height: auto;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-mark svg {
      width: 26px;
      height: 26px;
    }

    .logo-text {
      line-height: 1.15;
    }

    .logo-text strong {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: #ffffff;
    }

    .logo-text span {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 0.1rem;
    }

    .main-nav a {
      padding: 0.5rem 0.8rem;
      font-size: 0.92rem;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: rgba(255, 255, 255, 0.88);
      border-radius: 6px;
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }

    .main-nav a:hover {
      color: var(--yellow);
      background: rgba(255, 255, 255, 0.08);
    }

    .main-nav a:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      flex-shrink: 0;
    }

    .btn-signin {
      background: transparent;
      color: rgba(255, 255, 255, 0.88);
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      padding: 0.625rem 1.25rem;
      font-size: 0.88rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .btn-signin:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.7);
      color: #fff;
    }

    .btn-signin:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .btn-signup {
      background: var(--yellow);
      color: var(--navy);
      border: none;
      padding: 0.625rem 1.25rem;
      font-size: 0.88rem;
      border-radius: 8px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
      white-space: nowrap;
    }

    .btn-signup:hover {
      background: var(--yellow-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(246, 195, 67, 0.4);
    }

    .btn-signup:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .header-divider {
      width: 1px;
      height: 28px;
      background: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }


    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      padding: 0.5rem;
      border-radius: 6px;
      min-height: 44px;
      min-width: 44px;
      align-items: center;
      justify-content: center;
    }

    .hamburger:focus-visible {
      outline: 3px solid var(--yellow);
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #ffffff;
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 88px;
      left: 0;
      right: 0;
      background: white;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      z-index: 99;
      padding: 1.5rem;
      flex-direction: column;
      gap: 0.25rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      padding: 0.875rem 1rem;
      font-size: 1.05rem;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--navy);
      border-radius: 8px;
      transition: background 0.15s;
    }

    .mobile-menu a:hover {
      background: var(--blue-light);
    }

    .mobile-menu .btn {
      width: 100%;
      justify-content: center;
      margin-top: 0.75rem;
    }


    /* ===========================
       HERO
    =========================== */
    #hero {
      background: var(--navy);
      padding: 0;
      overflow: hidden;
      position: relative;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 720px;
      align-items: center;
    }

    .hero-content {
      padding: 5rem 3rem 5rem 0;
      position: relative;
      z-index: 2;
    }

    .hero-content .eyebrow {
      color: var(--yellow);
    }

    .hero-content .eyebrow::before {
      background: var(--yellow);
    }

    .hero-content h1 {
      color: var(--white);
      margin-bottom: 1.25rem;
    }

    .hero-content p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.15rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 52ch;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      max-width: 540px;
    }

    .trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.375rem 0.75rem;
      border-radius: 100px;
    }

    .trust-chip svg {
      width: 14px;
      height: 14px;
      color: var(--yellow);
      flex-shrink: 0;
    }


    /* Hero visual panel */
    .hero-visual {
      position: relative;
      height: 100%;
      min-height: 620px;
      overflow: hidden;
    }


    /* Diagonal yellow accent — the signature element */

    /* .hero-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: -60px;
      right: -20px;
      bottom: 0;
      background: linear-gradient(135deg, rgba(246, 195, 67, 0.18) 0%, rgba(246, 195, 67, 0.06) 60%, transparent 100%);
      clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--navy) 0%, rgba(11, 45, 92, 0.3) 40%, transparent 70%);
      z-index: 2;
    } */

    .hero-visual-content {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-illustration {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1E5AA8 0%, #0d3c7a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-svg-wrap {
      width: 340px;
      height: 340px;
      opacity: 0.92;
    }


    /* ===========================
       STATS BAR
    =========================== */
    #stats-bar {
      background: var(--blue);
      padding: 0;
    }

    .stats-inner {
      display: flex;
      align-items: stretch;
    }

    .stat-item {
      flex: 1;
      text-align: center;
      padding: 1.25rem 1.5rem;
      border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--yellow);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
    }


    /* ===========================
       MISSION
    =========================== */
    #mission {
      background: var(--white);
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: center;
    }

    .mission-text h2 {
      margin-bottom: 1rem;
    }

    .mission-text p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .mission-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .mission-card {
      background: var(--blue-light);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .mission-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--yellow);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .mission-card:hover::after {
      transform: scaleX(1);
    }

    .mission-icon {
      width: 52px;
      height: 52px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .mission-icon svg {
      width: 26px;
      height: 26px;
      color: var(--yellow);
    }

    .mission-card h3 {
      color: var(--navy);
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
    }

    .mission-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
      max-width: none;
    }


    /* ===========================
       SERVICES
    =========================== */
    #services {
      background: var(--gray-bg);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem 2rem 1.75rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--blue-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      position: relative;
    }

    .service-icon::after {
      content: '';
      position: absolute;
      bottom: -4px;
      right: -4px;
      width: 16px;
      height: 16px;
      background: var(--yellow);
      border-radius: 4px;
      z-index: 0;
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
      color: var(--blue);
      position: relative;
      z-index: 1;
    }

    .service-card h3 {
      color: var(--navy);
      margin-bottom: 0.625rem;
      font-size: 1.2rem;
    }

    .service-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      flex: 1;
      max-width: none;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 1.25rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--blue);
      transition: gap 0.2s;
    }

    .service-link:hover {
      gap: 0.6rem;
      color: var(--navy);
    }

    .service-link:focus-visible {
      outline: 3px solid var(--yellow);
      border-radius: 4px;
    }

    .service-link svg {
      width: 16px;
      height: 16px;
    }


    /* ===========================
       CERTIFICATION
    =========================== */
    #certification {
      background: var(--blue-light);
    }

    .cert-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .cert-content h2 {
      margin-bottom: 1rem;
    }

    .cert-content p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .cert-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .cert-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .cert-feature-icon {
      width: 28px;
      height: 28px;
      background: var(--yellow);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .cert-feature-icon svg {
      width: 14px;
      height: 14px;
      color: var(--navy);
    }

    .cert-feature p {
      color: var(--text);
      font-size: 0.95rem;
      margin: 0;
      max-width: none;
    }

    .cert-feature strong {
      color: var(--navy);
    }

    .cert-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .cert-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 1.25rem;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .cert-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-md);
    }

    .cert-card-icon {
      width: 52px;
      height: 52px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cert-card-icon svg {
      width: 26px;
      height: 26px;
      color: var(--yellow);
    }

    .cert-card-body h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .cert-card-body p {
      font-size: 0.85rem;
      color: var(--text-muted);
      max-width: none;
      margin: 0;
    }

    .cert-badge {
      margin-left: auto;
      flex-shrink: 0;
      background: var(--yellow);
      color: var(--navy);
      font-size: 0.7rem;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
      padding: 0.25rem 0.625rem;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }


    /* ===========================
       WHY CHOOSE
    =========================== */
    #why {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .why-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      background: var(--white);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }

    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--blue);
    }

    .why-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--blue-light);
      line-height: 1;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .why-num::after {
      content: '';
      display: block;
      width: 32px;
      height: 4px;
      background: var(--yellow);
      border-radius: 2px;
      margin-top: 0.4rem;
    }

    .why-card h3 {
      color: var(--navy);
      font-size: 1.05rem;
      margin-bottom: 0.625rem;
    }

    .why-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
      max-width: none;
    }


    /* ===========================
       ABOUT
    =========================== */
    #about {
      background: var(--gray-bg);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4.5rem;
      align-items: center;
    }

    .about-image {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: visible;
    }

    .about-img-box {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .about-badge {
      position: absolute;
      bottom: -1rem;
      right: 2rem;
      background: var(--yellow);
      color: var(--navy);
      padding: 1.25rem 1.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .about-badge strong {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.75rem;
      font-weight: 800;
      line-height: 1;
    }

    .about-badge span {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .about-content {
      padding-bottom: 2rem;
    }

    .about-content h2 {
      margin-bottom: 1rem;
    }

    .about-content p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }

    .about-points {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .about-point {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
    }

    .about-point svg {
      width: 20px;
      height: 20px;
      color: var(--blue);
      flex-shrink: 0;
    }


    /* ===========================
       PROCESS
    =========================== */
    #process {
      background: #ffffff;
    }

    #process .section-header h2 {
      color: #0b2d5c;
    }

    #process .section-header p {
      color: #4d5764 !important;
    }

    #process .eyebrow {
      color: var(--yellow);
    }

    #process .eyebrow::before {
      background: var(--yellow);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
    }

    .process-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(246, 195, 67, 0.25);
      z-index: 0;
      width: 78%;
    }

    .process-step {
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .process-num {
      width: 56px;
      height: 56px;
      background: #0b2d5c;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 0 30px 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: white;
      border: 1px solid rgba(246, 195, 67, 0.4);
      position: relative;
    }

    .process-step:hover .process-num {
      background: var(--yellow);
      color: var(--navy);
      border-color: var(--yellow);
    }

    .process-step h3 {
      color: #1c1c1d;
      font-size: 1.1rem;
      margin-bottom: 0.625rem;
    }

    .process-step p {
      color: #4d5764;
      font-size: 0.9rem;
      line-height: 1.65;
      max-width: none;
      text-align: left;
      position: relative;
      padding-bottom: 16px;
    }

    .process-step p:after {
      content: '';
      width: 50px;
      height: 2px;
      background: #f6c343;
      position: absolute;
      bottom: 0;
      left: 0;
    }


    /* ===========================
       FINAL CTA
    =========================== */
    #cta-section {
      background: linear-gradient(135deg, #0B2D5C 0%, #1E5AA8 100%);
      padding: 6rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta-section::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(246, 195, 67, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    #cta-section::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(30, 90, 168, 0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }

    #cta-section h2 {
      color: white;
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 1rem;
    }

    #cta-section p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.15rem;
      margin: 0 auto 2.5rem;
      max-width: 52ch;
      text-align: center;
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }


    /* ===========================
       FOOTER
    =========================== */
    #footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.8);
      padding: 5rem 0 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand .logo {
      margin-bottom: 1rem;
    }

    .footer-brand .logo-text strong {
      color: white;
    }

    .footer-brand .logo-text span {
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 1.5rem;
      max-width: 36ch;
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
    }

    /*.social-btn {*/
    /*  width: 40px;*/
    /*  height: 40px;*/
    /*  background: rgba(255, 255, 255, 0.08);*/
    /*  border-radius: 8px;*/
    /*  display: flex;*/
    /*  align-items: center;*/
    /*  justify-content: center;*/
    /*  color: rgba(255, 255, 255, 0.7);*/
    /*  transition: background 0.15s, color 0.15s;*/
    /*}*/

    /*.social-btn:hover {*/
    /*  background: var(--yellow);*/
    /*  color: var(--navy);*/
    /*}*/

    /*.social-btn:focus-visible {*/
    /*  outline: 3px solid var(--yellow);*/
    /*}*/

    .social-btn svg {
      width: 18px;
      height: 18px;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .footer-col ul li a {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.15s;
    }

    .footer-col ul li a:hover {
      color: var(--yellow);
    }

    .footer-col ul li a:focus-visible {
      outline: 3px solid var(--yellow);
      border-radius: 2px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.65);
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      color: var(--yellow);
      flex-shrink: 0;
      margin-top: 3px;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 2rem;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.15s;
    }

    .footer-bottom a:hover {
      color: var(--yellow);
    }

    .footer-legal {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }


    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 1024px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid::before {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 4rem 0;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.7rem;
      }

      .main-nav,
      .header-cta .btn {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-content {
        padding: 3.5rem 0 0;
      }

      .hero-visual {
        display: none;
      }

      .stats-inner {
        flex-wrap: wrap;
      }

      .stat-item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      }

      .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
      }

      .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .mission-cards {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .cert-inner {
        grid-template-columns: 1fr;
      }

      .about-inner {
        grid-template-columns: 1fr;
      }

      .about-badge {
        bottom: 0.5rem;
        right: 1rem;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-btns {
        flex-direction: column;
        align-items: center;
      }

      .cta-btns .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      .hero-btns {
        flex-direction: column;
      }

      .hero-btns .btn {
        width: 100%;
        justify-content: center;
      }
    }


    /* ===========================
       PAGE HERO (inner pages)
    =========================== */
    .page-hero {
      background: var(--navy);
      padding: 3rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(246, 195, 67, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.9);
      transition: color 0.15s;
    }

    .breadcrumb a:hover {
      color: var(--yellow);
    }

    .breadcrumb a:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
      border-radius: 4px;
    }

    .breadcrumb svg {
      width: 12px;
      height: 12px;
      flex-shrink: 0;
      color: rgba(255, 255, 255, 0.4);
    }

    .breadcrumb span[aria-current] {
      color: var(--yellow);
    }

    .page-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 70ch;
    }

    .page-hero h1 {
      color: var(--white);
      margin-bottom: 1rem;
    }

    .page-hero p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.15rem;
      line-height: 1.7;
      max-width: 62ch;
    }


    /* ===========================
       SERVICES OVERVIEW (this page)
    =========================== */
    #services-overview {
      background: var(--gray-bg);
    }


    /* ===========================
       SERVICE DETAIL ROWS
    =========================== */
    #service-detail {
      background: var(--white);
    }

    .detail-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4.5rem;
      align-items: center;
    }

    .detail-row+.detail-row {
      margin-top: 6rem;
      padding-top: 6rem;
      border-top: 1px solid var(--border);
    }

    .detail-row.reverse .detail-image {
      order: 2;
    }

    .detail-row.reverse .detail-content {
      order: 1;
    }

    .detail-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
    }

    .detail-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .detail-content .eyebrow {
      margin-bottom: 1rem;
    }

    .detail-content h2 {
      margin-bottom: 1.1rem;
    }

    .detail-content h3 {
      margin-bottom: 1.1rem;
    }

    .detail-content p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 1.5rem;
      max-width: none;
    }

    .detail-links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .detail-link-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.95rem;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--navy);
      padding: 0.9rem 1.1rem;
      background: var(--blue-light);
      border-radius: var(--radius);
      transition: background 0.15s, transform 0.15s;
    }

    .detail-link-item:hover {
      background: var(--border);
      transform: translateX(4px);
    }

    .detail-link-item:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 2px;
    }

    .detail-link-item svg {
      width: 18px;
      height: 18px;
      color: var(--blue);
      flex-shrink: 0;
    }

    .detail-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .detail-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .detail-row.reverse .detail-image,
      .detail-row.reverse .detail-content {
        order: 0;
      }

      .detail-row+.detail-row {
        margin-top: 3.5rem;
        padding-top: 3.5rem;
      }
    }


    /* ===========================
       RATING & PRIORITY LISTS
    =========================== */
    .rating-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .rating-columns h3 {
      color: var(--navy);
      margin-bottom: 1.25rem;
    }

    .rating-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .rating-item {
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem 1.25rem;
    }

    .rating-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      flex-shrink: 0;
      border: 2px solid var(--yellow);
    }

    .rating-item h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.3rem;
    }

    .rating-item p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin: 0;
      max-width: none;
      line-height: 1.6;
    }


    /* ===========================
       EXAMPLE GRID
    =========================== */
    .example-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .example-grid .callout {
      margin: 0;
      height: 100%;
    }

    .example-grid h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }

    .example-grid ul {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .example-grid li {
      font-size: 0.92rem;
      color: var(--text);
      line-height: 1.6;
    }

    .example-grid li strong {
      color: var(--navy);
    }


    /* Screenshot variant for the photo gallery (UI/spreadsheet captures) */
    .photo-item.screenshot img {
      object-fit: contain;
      background: var(--gray-bg);
      aspect-ratio: 4/3;
      padding: 0.75rem;
    }

    @media (max-width: 1024px) {
      .rating-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .example-grid {
        grid-template-columns: 1fr;
      }
    }


    /* ===========================
       CALLOUT
    =========================== */
    .callout {
      background: var(--blue-light);
      border-left: 4px solid var(--yellow);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 1.5rem 1.75rem;
      margin: 0 0 1.5rem;
    }

    .callout p {
      color: var(--text);
      font-size: 0.98rem;
      line-height: 1.7;
      margin: 0;
      max-width: none;
    }

    .callout strong {
      color: var(--navy);
    }


    /* ===========================
       ASSESSMENT SCOPE CHECKLIST
    =========================== */
    #assess-scope {
      background: var(--gray-bg);
    }

    .assess-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem 1.25rem;
    }

    .assess-item {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0.85rem 1rem;
    }

    .assess-item svg {
      width: 18px;
      height: 18px;
      color: var(--blue);
      flex-shrink: 0;
    }


    /* ===========================
       PROCESS PHOTO GALLERY
    =========================== */
    #assess-gallery {
      background: var(--white);
    }

    .photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .photo-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      background: var(--white);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .photo-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .photo-item img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
    }

    .photo-caption {
      padding: 0.85rem 1rem;
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--text-muted);
      margin: 0;
      max-width: none;
    }

    @media (max-width: 1024px) {
      .assess-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .photo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .assess-grid {
        grid-template-columns: 1fr;
      }

      .photo-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
      }

      *,
      *::before,
      *::after {
        transition-duration: 0.001ms !important;
      }
    }

    /* ===========================
       VENUE ACCESS ACADEMY BANNER
    =========================== */
    #vaa-feature {
      background: var(--blue-light);
    }

    .vaa-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: center;
    }

    .vaa-logo-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      padding: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vaa-logo-box img {
      width: 100%;
      height: auto;
    }

    .vaa-content .eyebrow {
      margin-bottom: 1rem;
    }

    .vaa-content h2 {
      margin-bottom: 1rem;
    }

    .vaa-content p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 1.75rem;
    }

    @media (max-width: 1024px) {
      .vaa-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }@media (max-width: 1024px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-embed.video {
    grid-column: auto;
  }
}
#resources-articles {
  background: var(--gray-bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-image svg {
  width: 100%;
  height: 100%;
}
.blog-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--yellow);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
  align-self: flex-start;
}
.blog-card h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex: 1;
  max-width: none;
}
.blog-card .service-link {
  margin-top: auto;
}
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
#resources-pubs {
  background: var(--white);
}
.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pub-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.pub-card-body {
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pub-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.pub-byline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.pub-card .service-link {
  margin-top: auto;
}
#resources-press {
  background: var(--gray-bg);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.press-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.press-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .press-grid,
  .pub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pub-grid {
    grid-template-columns: 1fr;
  }
}
.detail-content h3 {
  margin-bottom: 1.1rem;
}
#vaa-courses {
  background: var(--gray-bg);
}
.course-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  list-style: none;
}
.course-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}
.course-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.course-title {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.course-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}
.tag-required {
  background: var(--yellow);
  color: var(--navy);
}
.tag-optional {
  background: var(--blue-light);
  color: var(--blue);
}
.tag-elective {
  background: var(--gray-bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.course-key {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.course-key span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
#vaa-pricing {
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border: 2px solid var(--yellow);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-card .pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex: 1;
  max-width: none;
}
#vaa-faq {
  background: var(--gray-bg);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.96rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}
.faq-answer {
  padding: 0 1.4rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
#vaa-media {
  background: var(--white);
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.media-embed {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-embed.video {
  grid-column: 1/-1;
}
.embed-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.media-embed.podcast .embed-frame {
  aspect-ratio: auto;
  height: 152px;
}
.media-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
}
.media-embed.podcast iframe {
  position: static;
}
.media-caption {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.media-caption strong {
  color: var(--navy);
}
@media (max-width: 1024px) {
  .course-list,
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-embed.video {
    grid-column: auto;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}
#assess-gallery {
  background: var(--white);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.photo-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.photo-caption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: none;
}
@media (max-width: 1024px) {
  .assess-grid,
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .assess-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }
}
