/* ===== TOKENS ===== */
  

    /* ===== 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;
    }

    /* ===========================
       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;
      }
    }

    /* ===========================
       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;
      }
    }

    /* ===========================
       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;
      }
    }
    
    
    
    
    
    
    /*article*/
    
    
    /* ===========================
       ARTICLE BODY
    =========================== */
    #article-body {
      background: var(--white);
    }

    .article-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 3rem;
      align-items: start;
      max-width: 1400px;
      margin: 0 auto;
    }

    .article-featured-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
      margin-bottom: 2.5rem;
    }

    .article-featured-image img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
    }

    .article-prose {
      max-width: none;
    }

   .article-prose>p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.4rem;
    max-width: 100% !important;
}

    .article-prose h2 {
      font-size: 1.5rem;
      margin: 2.75rem 0 1.1rem;
    }

    .article-prose h3 {
      font-size: 1.2rem;
      margin: 2.25rem 0 0.85rem;
    }

    .scenario-block {
      background: var(--gray-bg);
      border-radius: var(--radius);
      padding: 1.4rem 1.6rem;
      margin-bottom: 1.5rem;
    }

    .scenario-block p {
      font-size: 1.02rem;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 0.9rem;
    }

    .scenario-block p:last-child {
      margin-bottom: 0;
    }

    .scenario-label {
      color: var(--blue);
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .article-prose ul {
      margin: 0 0 1.5rem 1.25rem;
    }

    .article-prose li {
      font-size: 1.02rem;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 0.6rem;
    }

    .article-prose li strong {
      color: var(--navy);
    }

    .article-cta-inline {
      text-align: center;
      margin-top: 3rem;
    }

    .article-tags-row {
      margin: 3rem 0 0;
      padding-top: 1.75rem;
      border-top: 1px solid var(--border);
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .article-tags-row a {
      color: var(--blue);
      font-weight: 600;
    }

    @media (max-width: 640px) {
      .article-prose h2 {
        font-size: 1.3rem;
      }
    }

    /* ===========================
       ARTICLE SIDEBAR
    =========================== */
    .article-sidebar {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      position: sticky;
      top: 1.5rem;
    }

    .sidebar-widget {
      background: var(--gray-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
    }

    .sidebar-widget h3 {
      font-size: 0.85rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--navy);
      margin-bottom: 1.1rem;
    }

    .widget-author {
      text-align: center;
    }

    .widget-author img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1rem;
      border: 3px solid var(--white);
      box-shadow: var(--shadow);
    }

    .widget-author h3 {
      text-align: center;
    }

    .widget-author p.author-name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      color: var(--navy);
      font-size: 1.05rem;
      margin-bottom: 0.4rem;
    }

    .widget-author p.author-bio {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.1rem;
    }

    .widget-author a {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--blue);
    }

    .widget-author a:hover {
      text-decoration: underline;
    }

    .widget-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .widget-list a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      padding: 0.6rem 0.75rem;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--border);
      transition: border-color 0.15s, color 0.15s;
    }

    .widget-list a:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .widget-recent-post {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }

    .widget-recent-post+.widget-recent-post {
      margin-top: 1rem;
    }

    .widget-recent-post img {
      width: 56px;
      height: 56px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      min-width: 56px;
    }

    .widget-recent-post-text a {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.4;
    }

    .widget-recent-post-text a:hover {
      color: var(--blue);
    }

    .widget-recent-post-text span {
      display: block;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    .widget-cta {
      background: var(--navy);
      border: none;
      color: var(--white);
    }

    .widget-cta h3 {
      color: var(--yellow);
    }

    .widget-cta p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      margin-bottom: 1.1rem;
    }

    .widget-cta .btn {
      width: 100%;
      justify-content: center;
    }

    @media (max-width: 900px) {
      .article-layout {
        grid-template-columns: 1fr;
      }

      .article-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
      }

      .sidebar-widget {
        flex: 1 1 260px;
      }
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .article-meta img {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255, 255, 255, 0.25);
    }

    .article-meta-text {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.75);
    }

    .article-meta-text strong {
      color: var(--white);
      font-weight: 700;
    }

    .article-meta-text .dot {
      margin: 0 0.5rem;
    }
    
    
    
    
.footer-cls, .footer-botom-text {
    max-width: 1400px;
    margin: 0 auto;
}
footer.wp-block-template-part.site-footer {
    background: #0b2d5c;
}
.header-cls .alignwide {
    padding: 10px !important;
    justify-content: space-between;
}
.header-cls .wp-block-site-logo.is-default-size img {
    height: auto;
    width: 100px;
}
 .header-nav-cls 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;
    text-decoration: unset;
}
.header-nav-cls nav a:hover {
    color: #F6C343 !important;
    background: rgba(255, 255, 255, 0.08);
}
.header-nav-cls ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu {
    border-radius: 10px;
/*     overflow: hidden !important; */
}

.header-nav-cls ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu li:hover {
       background: rgb(137 115 115 / 8%);
} 
.header-nav-cls ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu li a:hover {
 color: #0b2d5c !important;
} 

footer p.wp-block-paragraph {
    color: #ffffffe0 !important;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    max-width: 36ch;

}
.icon-footer {
    display: flex;
    gap: 5px;
}
footer .wp-block-site-logo.is-default-size img {
    height: auto;
    width: 100px;
    padding: 10px;
}
footer h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px !important;
}
footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
	list-style: none;
}
footer ul.wp-block-navigation__container.is-vertical.wp-block-navigation {
    gap: 0.625rem;
}
footer ul.wp-block-navigation__container.is-vertical.wp-block-navigation a {
	text-decoration:unset;
font-size: 14px !important;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.15s !important;
}
/*.social-btn .wp-block-svgib-svg {*/
/*    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 .wp-block-svgib-svg:hover {*/
/*    background:#f6c343;*/
/*    color: #0b2d5c;*/
/*}*/
/*.social-btn .wp-block-svgib-svg:focus-visible {*/
/*      outline: 3px solid var(--yellow);*/
/*    }*/

footer ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu a {
    color: #0b2d5c !important;
    font-weight: 500;
    font-size: 14px !important;
}
 ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu li:hover {
    background: rgb(137 115 115 / 8%);
}

footer ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu {
    border-radius: 10px;
  overflow: hidden !important; 
}
.footer-contact-item{
	margin: 0 !important;
}

.footer-botom-text {
    padding: 0 !important;
}
ul.wp-block-list.list-footer {
    display: flex !important;
    flex-direction: row;
    gap: 30px;
    justify-content: right;
}
.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(11, 45, 92, 0.35);
}
.social-btn svg {
    fill: #fff !important;
}
header {
    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);
position: relative;
}

.eyebrow h6 {
  font-size: 15px!important;
}


.header-nav-cls nav a {
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
}

    
    
