@charset "UTF-8";

/* =========================================================
   Orank LP common header / footer / controls
========================================================= */

body.orank-lp-page .os-lp,
body.orank-lp-page .os-lp * {
  box-sizing: border-box;
}

body.orank-lp-page a {
  color: inherit;
  text-decoration: none;
}

.os-container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

.os-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(197, 164, 89, .22);
  backdrop-filter: blur(12px);
}

body.admin-bar.orank-lp-page .os-header {
  top: 32px;
}

.os-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.os-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.os-logo__image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(420px, 68vw);
  object-fit: contain;
}

.os-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #102641;
  font-size: 14px;
  font-weight: 700;
}

.os-nav-cta {
  padding: 10px 18px;
  color: #fff !important;
  background: linear-gradient(135deg, #c49b45, #a87a20);
  border-radius: 5px;
}

.os-menu {
  display: none;
}

.os-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.os-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 5px;
  font-weight: 800;
  transition: .18s;
}

.os-btn:hover {
  transform: translateY(-2px);
}

.os-btn--gold {
  color: #fff !important;
  background: linear-gradient(135deg, #caa24b, #a57821);
  box-shadow: 0 16px 30px rgba(161, 116, 30, .25);
}

.os-btn--ghost {
  border: 1px solid rgba(20, 36, 58, .4);
  background: rgba(255, 255, 255, .58);
}

.os-btn--navy {
  color: #fff !important;
  background: linear-gradient(135deg, #173b60, #071828);
}

.os-footer {
  padding: 28px 0;
  color: #fff;
  background: #081827;
}

.os-footer__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 22px;
}

.os-footer .os-logo small,
.os-footer .os-logo b {
  color: #fff;
}

.os-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}

.os-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  text-align: right;
  font-size: 12px;
}

.os-footer .os-logo--footer {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.os-footer .os-logo__image--footer {
  display: block;
  width: auto;
  height: 68px;
  max-width: min(460px, 86vw);
  object-fit: contain;
}

@media (min-width: 769px) {
  body.orank-lp-page .os-menu {
    display: none !important;
  }

  body.orank-lp-page .os-nav {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 960px) {
  body.admin-bar.orank-lp-page .os-header {
    top: 46px;
  }

  .os-footer__inner {
    grid-template-columns: 1fr;
  }

  .os-footer nav {
    justify-content: flex-start;
  }

  .os-footer p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .os-menu {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(20, 36, 58, .22);
    border-radius: 8px;
  }

  .os-menu span {
    width: 22px;
    height: 2px;
    display: block;
    margin: 3px 0;
    background: #102641;
  }

  .os-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fffdf8;
    border: 1px solid rgba(198, 163, 88, .3);
    box-shadow: 0 18px 40px rgba(20, 36, 58, .14);
  }

  .os-nav.is-open {
    display: flex;
  }
}

@media (max-width: 560px) {
  .os-container {
    width: min(100% - 24px, 1120px);
  }

  .os-header__inner {
    min-height: 64px;
  }
}
