/* ========== Header base ========== */
.ik-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0f2f52 0%, #0c2642 100%);
  color: #eaf3ff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: saturate(120%) blur(6px);
}
.ik-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.ik-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
}

/* Brand */
.ik-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.ik-brand-logo img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 10px;
}
.ik-brand-fallback {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #0f2f52;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.ik-brand-text {
  display: flex;
  flex-direction: column;
}
.ik-brand-title {
  font-weight: 700;
  line-height: 1;
}
.ik-brand-tagline {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.2;
}

/* Desktop nav */
.ik-nav {
}
.ik-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
}
.ik-menu > li {
  position: relative;
}
.ik-menu a {
  color: #eaf3ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
}
.ik-menu a:hover {
  border-color: #5390ff;
}

/* Submenus (desktop hover) */
.ik-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ik-menu ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  list-style: none;
  margin: 8px 0 0;
  padding: 10px;
  background: #0c2642;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.ik-menu ul li {
  margin: 0;
}
.ik-menu ul a {
  padding: 8px 10px;
  display: block;
  border: none;
}

/* Actions */
.ik-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ik-btn {
  background: #3b82f6;
  color: #fff;
  border-radius: 10px;
  padding: 9px 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}
.ik-btn:hover {
  background: #2563eb;
  text-decoration: none;
}
.ik-burger {
  display: none;
  background: none;
  border: none;
  color: #eaf3ff;
  cursor: pointer;
}

/* ========== Mobile drawer ========== */
/* Desktop nav visible by default */
.ik-nav {
  display: flex;
}

/* Hide full nav on mobile (not just the <ul>) */
@media (max-width: 992px) {
  .ik-nav {
    display: none;
  }
  .ik-burger {
    display: inline-flex;
  }
  .ik-brand-tagline {
    display: none;
  }
}

/* Backdrop (separate element so we fully cover the page) */
.ik-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1095;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.ik-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer (solid background, no transparency) */
.ik-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 360px);
  background: #0d2b49; /* solid */
  color: #eaf3ff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
}
.ik-drawer.is-open {
  transform: translateX(0);
}

.ik-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ik-drawer-title {
  font-weight: 700;
}
.ik-close {
  background: none;
  border: none;
  color: #eaf3ff;
  cursor: pointer;
}

.ik-drawer-nav {
  padding: 10px 8px 18px;
  background-color: #0c2642;
}
.ik-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ik-drawer-menu li a {
  display: block;
  padding: 12px 12px;
  color: #eaf3ff;
  border-radius: 8px;
  text-decoration: none;
}
.ik-drawer-menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Prevent scroll when drawer open (JS toggles .no-scroll on <body>) */
body.no-scroll {
  overflow: hidden;
}

.partners {
  padding: 30px 0 10px;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}

.partner {
  background: #fff;
  border-radius: 12px;
  padding: 0px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.partner img {
  max-height: unset;
  width: auto;
}
