﻿/* Shared Whizible header + footer chrome
   Brand from company logo (whizible_logo.png):
   swoosh blue #00AEEF · deep CTA #0077B6 · wordmark #404041 */
:root {
  --brand: #00aeef;
  --brand-mid: #0096d6;
  --brand-dark: #0077b6;
  --brand-deep: #005f92;
  --brand-ink: #404041;
  --brand-soft: #e8f7fc;
  --brand-soft-2: #f0f9fd;
  --brand-gradient: linear-gradient(135deg, #0077b6 0%, #00aeef 55%, #3db5e8 100%);
  --brand-shadow: 0 4px 18px rgba(0, 174, 239, 0.28);
  --brand-shadow-lg: 0 8px 24px rgba(0, 119, 182, 0.32);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Site-wide font = homepage Inter */
html,
body,
body.whizible-chrome-site,
body.whizible-template,
body.whizible-single-blog,
body.whizible-home,
.whz-topbar,
.whz-header,
.whz-footer,
.whz-menu,
.whz-menu a,
.btn-demo,
input,
button,
textarea,
select {
  font-family: var(--font) !important;
}

/* Safety: GDPR popup must stay hidden until Magnific opens it */
.mfp-hide,
.be-gdpr-popup.mfp-hide {
  display: none !important;
}

/* Hide Exponent/Tatsu headers site-wide — Whizible chrome replaces them */
#tatsu-header-wrap,
.tatsu-header,
.tatsu-slide-menu,
#exponent-header-wrap,
#exponent-header-container {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Tatsu pages ship their own title banner — hide Exponent duplicate entry header */
body.whizible-chrome-site .exp-entry-header {
  display: none !important;
}

/* Hide Exponent legacy copyright strip when Tatsu/Whizible footer is active */
body.whizible-chrome-site #footer {
  display: none !important;
}

.whz-chrome-wrap { width: 100%; }
.whz-topbar .container,
.whz-header .container,
.whz-footer .container,
body.whizible-chrome-site .whz-topbar .container,
body.whizible-chrome-site .whz-header .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* Header â€” production-style topbar + menubar */
.whz-topbar {
  background: #1d2327;
  color: #fff;
  font-size: 0.875rem;
}

.whz-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.whz-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  white-space: nowrap;
}

.whz-topbar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.whz-topbar__item:hover {
  color: #e2e8f0;
}

.site-header.whz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 174, 239, 0.45);
  box-shadow: none;
}

.whz-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  flex: 1;
  justify-content: center;
}

.whz-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.whz-menu > li {
  position: relative;
}

.whz-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2f2f30;
  white-space: nowrap;
}

.whz-menu > li.menu-item-has-children > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #2f2f30;
  margin-top: 1px;
}

.whz-menu > li > a:hover,
.whz-menu > li:hover > a,
.whz-menu > li.current-menu-item > a,
.whz-menu > li.current-menu-ancestor > a {
  color: var(--brand);
}

.whz-menu > li:hover > a::after,
.whz-menu > li.current-menu-item > a::after,
.whz-menu > li.current-menu-ancestor > a::after {
  border-top-color: var(--brand);
}

.whz-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  z-index: 50;
}

.whz-menu > li:hover > .sub-menu,
.whz-menu > li:focus-within > .sub-menu {
  display: block;
}

.whz-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.whz-menu .sub-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
}

.whz-menu .sub-menu a:hover {
  color: var(--brand);
  background: #f8fafc;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-shrink: 0;
}

.whz-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--brand);
}

.whz-search svg {
  width: 20px;
  height: 20px;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
}

.btn-demo:hover {
  background: var(--brand-dark);
  transform: none;
  color: #fff;
}

.btn-demo .btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  font-size: 0.5rem;
  line-height: 1;
  background: #fff;
  color: var(--brand);
  border-radius: 3px;
}

.btn-demo--block {
  width: 100%;
  margin-top: 0.75rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-dark);
  border-radius: 1px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid #e5e7eb;
}

.nav-mobile.is-open {
  display: flex;
}

.whz-menu-mobile {
  margin: 0;
  padding: 0;
  list-style: none;
}

.whz-menu-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-weight: 500;
  color: var(--text-nav);
  border-bottom: 1px solid rgba(203, 213, 225, 0.6);
}

.whz-menu-mobile .sub-menu {
  margin: 0;
  padding: 0 0 0 0.85rem;
  list-style: none;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 640px) {
  .whz-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .logo__img {
    height: 40px;
  }

  .header-actions > .btn-demo {
    display: none;
  }
}



/* keep btn utility for demo CTA in header */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; border: none; cursor: pointer; font-family: inherit; font-weight: 600; line-height: 1; white-space: nowrap; }

/* Footer â€” production style */
.whz-footer {
  position: relative;
  z-index: 1;
  background: #1d2327;
  color: #fff;
  margin-top: 0;
  border-top: none;
  padding: 3.5rem 0 0;
}

.whz-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.whz-footer a:hover {
  color: var(--brand);
}

.whz-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
  padding-bottom: 2.5rem;
}

.whz-footer__logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 170px;
  filter: brightness(0) invert(1);
}

.whz-footer__desc {
  margin: 1rem 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 280px;
}

.whz-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.whz-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
}

.whz-footer__social a:hover {
  color: var(--brand-deep);
  background: #f1f5f9;
}

.whz-footer__social svg {
  width: 16px;
  height: 16px;
}

.whz-footer__title {
  margin: 0 0 0.85rem;
  padding-bottom: 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  display: inline-block;
  width: auto;
  min-width: 7rem;
}

.whz-footer__title--spaced {
  margin-top: 1.5rem;
}

.whz-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.whz-footer__links li {
  margin: 0 0 0.45rem;
}

.whz-footer__links a {
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.whz-footer__contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.whz-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.whz-footer__contact-list svg {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  color: #fff;
}

.whz-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.25rem;
  text-align: center;
}

.whz-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .whz-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .whz-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr 1.15fr;
    gap: 1.75rem;
  }
}

@media (min-width: 960px) {
  .cta-section {
    padding: 4rem 0 2.75rem;
  }

  .cta-card {
    padding: 3rem 2.5rem 2.75rem;
  }
}

