    /* ===== 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: 0;
      transform: translateY(20px);
      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;
      }
    }
