@charset "utf-8";

.zim-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, .04);
  backdrop-filter: saturate(180%) blur(10px);
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease
}

.zim-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(15, 23, 42, .08)
}

.zim-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px
}

.zim-header-util {
  height: 34px;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  font-size: 13px
}

.zim-header-util-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.zim-util-links,
.zim-util-auth {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.zim-header-util a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #526074;
  text-decoration: none;
  font-weight: 700;
  transition: color .18s ease
}

.zim-header-util a i {
  font-size: 14px;
  line-height: 1;
  color: inherit;
  flex: 0 0 auto
}

.zim-header-util a:hover {
  color: #2563eb
}

.zim-header-main {
  height: 72px;
  display: flex;
  align-items: center
}

.zim-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0
}

.zim-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
  flex: 0 0 220px;
  text-decoration: none
}

.zim-logo img {
  display: block;
  height: 42px;
  width: auto;
  flex: 0 0 auto;
  transition: transform .2s ease
}

.zim-logo:hover img {
  transform: scale(1.03)
}

.zim-logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0
}

.zim-logo-copy strong {
  font-size: 18px;
  color: #111827;
  letter-spacing: -.02em
}

.zim-logo-copy em {
  font-size: 12px;
  color: #6b7280;
  font-style: normal;
  font-weight: 700
}

.zim-search {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 10px 0 12px;
  border: 1px solid #dbe2ec;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .03);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease
}

.zim-search:focus-within {
  border-color: #2563eb;
  box-shadow: 0 10px 28px rgba(37, 99, 235, .12);
  transform: translateY(-1px)
}

.zim-search-icon {
  color: #94a3b8;
  font-size: 14px;
  flex: 0 0 auto
}

.zim-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: #111827
}

.zim-search input::placeholder {
  color: #94a3b8
}

.zim-search button {
  border: 0;
  border-radius: 999px;
  height: 34px;
  padding: 0 14px;
  background: #1f2937;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease
}

.zim-search button:hover {
  background: #2563eb;
  transform: translateY(-1px)
}

.zim-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto
}

.zim-call {
  width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0;
  border-radius: 14px;
  background: #f8fafc;
  text-decoration: none;
  border: 1px solid #e5edf6;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.zim-call:hover {
  transform: translateY(-1px);
  border-color: #cfd8e5;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06)
}

.zim-call span {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  line-height: 1.2
}

.zim-call strong {
  font-size: 14px;
  color: #111827;
  font-weight: 900;
  line-height: 1.2
}

.zim-cta {
  width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: 0 14px 30px rgba(37, 99, 235, .18)
}

.zim-cta:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  filter: saturate(1.05)
}

.zim-cta--primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 14px 30px rgba(249, 115, 22, .22)
}

.zim-cta--primary:hover {
  background: linear-gradient(135deg, #fb923c, #ea580c)
}

.zim-cta--block {
  width: 100%;
}

.zim-header-nav-wrap {
  border-top: 1px solid #eff3f7;
  background: #fff;
  padding: 8px 0 10px
}

.zim-nav {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 4px 0 2px
}

.zim-nav a {
  position: relative;
  color: #1f2937;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  padding: 10px 0 12px;
  line-height: 1.2;
  transition: color .18s ease, transform .18s ease
}

.zim-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease
}

.zim-nav a:hover,
.zim-nav a.is-active {
  color: #2563eb
}

.zim-nav a:hover:after,
.zim-nav a.is-active:after {
  transform: scaleX(1)
}

.zim-mobile-search {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f2937
}

.zim-mobile-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: none
}

.zim-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1f2937;
  border-radius: 999px
}

.zim-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  z-index: 1090;
  opacity: 0;
  transition: opacity .22s ease
}

.zim-mobile-backdrop.is-open {
  opacity: 1
}

.zim-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(84vw, 360px);
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .24s ease;
  box-shadow: 20px 0 50px rgba(15, 23, 42, .18);
  display: flex;
  flex-direction: column;
  padding-bottom: calc(90px + env(safe-area-inset-bottom))
}

.zim-mobile-panel.is-open {
  transform: translateX(0)
}

.zim-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid #eef2f7
}

.zim-mobile-logo img {
  height: 34px;
  width: auto;
  display: block
}

.zim-mobile-close {
  border: 0;
  background: #f1f5f9;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 24px;
  line-height: 1;
  color: #1f2937
}

.zim-mobile-searchbox {
  padding: 16px 18px 10px;
  border-bottom: 1px solid #eef2f7
}

.zim-mobile-searchbox form {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 10px 0 12px;
  border: 1px solid #dbe2ec;
  border-radius: 999px;
  background: #fff
}

.zim-mobile-searchbox input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px
}

.zim-mobile-searchbox button {
  border: 0;
  border-radius: 999px;
  height: 32px;
  padding: 0 12px;
  background: #1f2937;
  color: #fff;
  font-weight: 800
}

.zim-mobile-hot {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 10px
}

.zim-mobile-hot a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5edf6;
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap
}

.zim-mobile-links {
  display: grid;
  padding: 10px 18px 18px;
  overflow: auto
}

.zim-mobile-links a {
  padding: 14px 2px;
  border-bottom: 1px solid #eef2f7;
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px
}

.zim-mobile-links a:before {
  content: none
}

.zim-mobile-links a i {
  width: 18px;
  flex: 0 0 18px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1
}

.zim-mobile-footer-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding: 14px 18px 18px;
  border-top: 1px solid #eef2f7;
  background: #fff;
  position: sticky;
  bottom: 0;
  padding-bottom: calc(18px + env(safe-area-inset-bottom))
}

.zim-mobile-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid #dbe2ec;
  border-radius: 12px;
  text-decoration: none;
  color: #111827;
  font-weight: 800;
  background: #fff
}

.zim-mobile-bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1085;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  border-top: 1px solid rgba(15, 23, 42, .08);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 -10px 28px rgba(15, 23, 42, .08)
}

.zim-bottom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f1f5f9;
  color: #111827;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.15;
  border: 1px solid #dbe2ec;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, filter .18s ease
}

.zim-bottom-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  font-size: 16px;
  line-height: 1
}

.zim-bottom-btn__text {
  display: inline-block;
  min-width: 0;
  white-space: nowrap
}

.zim-bottom-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, .1);
  filter: saturate(1.03)
}

.zim-bottom-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(15, 23, 42, .08);
  filter: saturate(.98)
}

.zim-bottom-btn--primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border-color: transparent
}

body.drawer-open {
  overflow: hidden;
  touch-action: none
}

@media (max-width:1199.98px) {
  .zim-header-main {
    height: 72px
  }

  .zim-inner {
    padding: 0 16px
  }

  .zim-logo img {
    height: 36px
  }

  .zim-logo-copy strong {
    font-size: 16px
  }

  .zim-logo-copy em {
    display: none
  }
}

@media (max-width:767.98px) {
  .zim-header-util {
    display: none
  }

  .zim-search {
    display: none
  }

  .zim-call {
    display: none
  }

  .zim-header-main {
    height: 64px
  }

  .zim-logo-copy em {
    display: none
  }

  .zim-mobile-bottom-cta {
    display: grid !important
  }

  body {
    padding-bottom: 88px
  }
}

@media (min-width:768px) {
  .zim-mobile-bottom-cta {
    display: none !important
  }
}