/* ── Nav Bar RESPONSIVE ── */
@media (max-width: 1024px) {
  .hdr-inner { padding: 0 24px; }
  .nav-item a { padding: 8px 11px; font-size: 13.5px; }
}
 
@media (max-width: 768px) {
  .nav-toggler { display: flex; }
  .brand-info { display: none; }
 
  .main-nav {
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: #ffffff;
    border-top: 1px solid #eef2ff;
    border-bottom: 1.5px solid #dde4f5;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 16px 40px rgba(58,107,255,0.09);
    padding: 10px 20px 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s ease, opacity .3s ease;
  }
  .main-nav.open { max-height: 480px; opacity: 1; }
 
  .nav-list { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .nav-list li { width: 100%; }
 
  .nav-item a { width: 100%; font-size: 15px; padding: 12px 16px; border-radius: 10px; }
 
  .nav-divider { width: 100%; height: 1px; background: #eef2ff; margin: 8px 0; }
 
  .nav-cta {
    width: 100% !important;
    justify-content: center;
    padding: 13px 24px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    margin-top: 4px;
  }
}
 
@media (max-width: 480px) {
  .logo-wrap { height: 38px; width: 38px; }
}

/** navbar response end here */
 /* Responsive */
    @media (max-width: 1100px) {
      .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    }

    @media (max-width: 640px) {
      .companies-section { padding: 56px 16px 64px; }
      .stats { grid-template-columns: 1fr; }
      .highlights { grid-template-columns: 1fr; }
      .card-visual { height: 190px; }
      .card-body { padding: 18px 16px 20px; }
    }