.pds-nav-wrap *,
.pds-nav-wrap *::before,
.pds-nav-wrap *::after,
.pds-topbar *,
.pds-mega *,
.pds-mega *::before,
.pds-mega *::after,
.pds-mobile-drawer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pds-topbar {
  background: #15181f;
  color: #f4f6fa;
  font-size: 12.5px;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.5;
  font-family: "IBM Plex Sans", sans-serif;
}

.pds-topbar b {
  color: #7ca5f4;
  font-weight: 600;
}

.pds-topbar a {
  color: #7ca5f4;
  text-decoration: underline;
}

.pds-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(244, 246, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #d9dfe9;
  font-family: "IBM Plex Sans", sans-serif;
}

.pds-nav-inner {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 32px;
}

.pds-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.pds-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  width: 200px;
}

.pds-logo svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
}

.pds-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: "Bricolage Grotesque", sans-serif;
}

.pds-logo-text b {
  font-weight: 800;
  font-size: 16.5px;
  color: #2f6df6;
  letter-spacing: -0.01em;
}

.pds-logo-text i {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  color: #15181f;
}

.pds-items {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  list-style: none;
}

.pds-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: #15181f;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  font-family: "IBM Plex Sans", sans-serif;
  white-space: nowrap;
  border: none;
  background: transparent;
  text-decoration: none;
}

.pds-link:hover,
.pds-link.open,
.pds-link.active {
  background: #e9edf4;
  color: #2f6df6;
}

.pds-link .pds-chev {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-top: -3px;
  display: inline-block;
}

.pds-link.open .pds-chev {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.pds-new-badge {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8.5px;
  background: #1f9d57;
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.pds-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.pds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid #15181f;
  transition: all 0.15s;
  background: transparent;
  color: #15181f;
  white-space: nowrap;
  font-family: "IBM Plex Sans", sans-serif;
  text-decoration: none;
}

.pds-btn:hover {
  background: #15181f;
  color: #fff;
  transform: translateY(-1px);
}

.pds-btn-primary {
  background: #2f6df6;
  border-color: #2f6df6;
  color: #fff !important;
}

.pds-btn-primary:hover {
  background: #2156d4;
  border-color: #2156d4;
  color: #fff;
}

.pds-btn .pds-arr {
  transition: transform 0.15s;
}

.pds-btn:hover .pds-arr {
  transform: translateX(3px);
}

/* MEGA MENU (DESKTOP - COMPLETE ORIGINAL) */
.pds-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid #d9dfe9;
  box-shadow: 0 18px 40px rgba(21, 24, 31, 0.08);
  padding: 28px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  z-index: 99999;
}

.pds-mega.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.pds-mega-grid {
  display: grid;
  gap: 24px;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 32px;
}

.pds-mega-col h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 11.5px;
  color: #5b6172;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 1.5px solid #d9dfe9;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}

.pds-mega-col h5 .pds-ct {
  color: #2f6df6;
  font-weight: 600;
}

.pds-mega-col h5 .pds-nu {
  background: #1f9d57;
  color: #fff;
  font-size: 8.5px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: auto;
  font-family: "IBM Plex Mono", monospace;
}

.pds-mega-col h5 a {
  font-size: 11.5px;
  color: #5b6172;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0;
}

.pds-mega-col a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 13.5px;
  color: #15181f;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
  line-height: 1.4;
  text-decoration: none;
}

.pds-mega-col a:hover {
  color: #2f6df6;
}

.pds-mega-col a .pds-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9dfe9;
  flex-shrink: 0;
  transition: background 0.15s;
  margin-top: 8px;
}

.pds-mega-col a:hover .pds-dot {
  background: #2f6df6;
}

.pds-mega-col a small {
  display: block;
  font-size: 10px;
  color: #5b6172;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.3;
}

.pds-mega-col a.pds-feat {
  background: #e9edf4;
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-weight: 600;
}

.pds-mega-col a.pds-feat .pds-dot {
  background: #2f6df6;
  margin-top: 7px;
}

.pds-mega-col a .pds-new-tag {
  position: absolute;
  right: -3px;
  top: 0px;
  background: #1f9d57;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
  padding: 2px 5px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.pds-prod-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center !important;
  background: linear-gradient(135deg, #15181f 0%, #0e1a38 100%);
  padding: 18px 20px !important;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 10px;
  transition: transform 0.15s;
  text-decoration: none;
}

.pds-prod-card:hover {
  transform: translateY(-2px);
  color: #fff;
}

.pds-prod-card .pds-pd-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 255, 255, 0.12); */
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 10px;
}

.pds-prod-card .pds-pd-h {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  display: block;
  color: #fff;
}

.pds-prod-card .pds-pd-d {
  font-size: 11.5px;
  color: #cfd3db;
  line-height: 1.4;
  display: block;
  font-weight: 400;
}

/* HAMBURGER BUTTON (exactly as original, only for mobile) */
.pds-mobile-btn {
  display: none;
  background: transparent;
  border: 1.5px solid #15181f;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.pds-mobile-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: #15181f;
  position: relative;
}

.pds-mobile-btn span::before,
.pds-mobile-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 2px;
  background: #15181f;
}

.pds-mobile-btn span::before {
  top: -6px;
}

.pds-mobile-btn span::after {
  top: 6px;
}

.pds-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 500px;
  /* max-width 500px as required */
  background: rgba(244, 246, 250, 0.95);
  backdrop-filter: blur(12px);
  z-index: 999;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.12s ease-out;
  overflow-y: auto;
  font-family: "IBM Plex Sans", sans-serif;
  padding: 80px 24px 40px 24px;
  visibility: hidden;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999999;
}

header.pds-mobile-open .pds-mobile-drawer {
  transform: translateX(0);
  visibility: visible;
}

header.pds-mobile-open {
  overflow: hidden;
}

.pds-mobile-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: #15181f;
  position: relative;
  transition: background 0.12s ease;
}

.pds-mobile-btn span::before,
.pds-mobile-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 2px;
  background: #15181f;
  transition: unset;
}

.pds-mobile-btn span::before {
  top: -6px;
}

.pds-mobile-btn span::after {
  top: 6px;
}

/* Open state — X icon */
header.pds-mobile-open .pds-mobile-btn span {
  background: transparent;
}

header.pds-mobile-open .pds-mobile-btn span::before {
  transform: rotate(-45deg);
  top: 0;
}

header.pds-mobile-open .pds-mobile-btn span::after {
  transform: rotate(45deg);
  top: 0;
}

/* No separate close button — hamburger toggles drawer */

/* Accordion styles inside drawer */
.pds-drawer-accordion-item {
  margin-bottom: 4px;
  border-bottom: 1px solid #b9b9b9;
}

.pds-drawer-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 600;
  color: #15181f;
  cursor: pointer;
  font-family: "IBM Plex Sans", sans-serif;
  text-align: left;
  transition: color 0.2s;
}

.pds-drawer-accordion-btn:hover {
  color: #2f6df6;
}

.pds-drawer-chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  display: inline-block;
}

.pds-drawer-accordion-btn.open .pds-drawer-chev {
  transform: rotate(-135deg);
}

.pds-drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  /* padding-left: 8px; */
}

.pds-drawer-submenu.show {
  max-height: 800px;
  transition: max-height 0.45s ease-in;
}

.pds-drawer-submenu a {
  display: flex;
  /* display: block; */
  padding: 12px 0 12px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2c313c;
  text-decoration: none;
  border-left: 2px solid #d9dfe9;
  margin-bottom: 4px;
  transition: all 0.15s;
}

.pds-drawer-submenu a:hover {
  /* color: #2f6df6;
  border-left-color: #2f6df6;
  background: #f8fafd; */
}

.pds-drawer-submenu a small {
  font-size: 11px;
  color: #5b6172;
  display: block;
  font-weight: normal;
}

.pds-drawer-divider {
  height: 1px;
  background: #e9edf4;
  margin: 16px 0 12px;
}

.pds-drawer-simple-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: #15181f;
  text-decoration: none;
  border-bottom: 1px solid #eef2f8;
}

.pds-drawer-simple-link:hover {
  color: #2f6df6;
}

.pds-drawer-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pds-drawer-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  background: #2f6df6;
  color: white;
  font-size: 15px;
  transition: 0.2s;
}

.pds-drawer-btn-outline {
  background: transparent;
  border: 1.5px solid #15181f;
  color: #15181f;
}

.pds-drawer-btn-outline:hover {
  background: #15181f;
  color: #fff;
}

.pds-mega.small-pads-mega {
  width: 300px;
  transform: translateX(-50%);
}

.pds-mega.small-pads-mega .pds-mega-grid {
  grid-template-columns: 1fr !important;
}

.pds-mega.small-pads-mega.pds-mega-resources {
  left: 63%;
}

.pds-mega.small-pads-mega.pds-mega-company {
  left: 70%;
}

@media (max-width: 1400px) {
  .pds-link {
    padding: 10px 11px;
    font-size: 14px;
  }

  .pds-items {
    gap: 2px;
  }

  body:has(.pds-mobile-open) {
    overflow: hidden;
  }
}

@media (max-width: 1400px) {
  .pds-link {
    padding: 10px 9px;
    font-size: 13.5px;
  }
}

@media (max-width: 1400px) {
  .pds-items {
    display: none;
  }

  .pds-mobile-btn {
    display: flex;
  }

  .pds-cta .pds-btn:not(.pds-btn-primary) {
    display: none;
  }

  .pds-mega {
    display: none !important;
  }

  .pds-drawer-accordion-btn:hover {
    color: #15181f;
  }

  .pds-drawer-divider {
    display: none;
  }

  .pds-nav-inner .pds-cta .pds-btn.pds-btn-primary {
    display: none;
  }

  .pds-drawer-submenu a {
    padding: 12px 0;
    border: none;
  }
}

@media (max-width: 600px) {
  .pds-nav-inner {
    padding: 0 18px;
  }

  .pds-logo-text i {
    display: none;
  }

  .pds-mobile-drawer {
    padding: 80px 20px 40px 20px;
    width: 100%;
  }
}

@media (min-width: 1400.9px) {
  .pds-mobile-drawer {
    display: none;
  }

  header.pds-mobile-open {
    overflow: auto;
  }
}

@media (max-width: 1400px) {
  .pds-mega-grid {
    grid-template-columns: 1fr !important;
    padding: 10px 0;
  }

  .pds-drawer-submenu.show {
    max-height: unset;
  }

  .pds-mega.small-pads-mega {
    width: auto;
    transform: translateY(-8px);
  }

  .pds-mega.small-pads-mega.pds-mega-company {
    left: unset;
  }

  .pds-mega.small-pads-mega.pds-mega-resources {
    left: unset;
  }

  .pds-drawer-cta .pds-btn {
    transition: unset;
  }

  .pds-prod-card .pds-pd-ic {
    margin-bottom: 0;
  }

  .pds-prod-card .pds-pd-h {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 0;
  }

  .pds-prod-card .pds-pd-d {
    display: none;
  }
}
