/* ============================================================
   Zuplon — shared chrome for interior pages
   (navbar, mobile drawer, footer, CTA banner, design tokens)
   Matched to Figma. Page-specific styles stay inline per page.
   ============================================================ */
html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  width: 100%;
}
.Whyte {
  font-family: "Whyte Inktrap", sans-serif;
}
@font-face {
  font-family: "Whyte Inktrap";
  src: url("../fonts/whyte-inktrap/WhyteInktrap-Bold.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
section,
main,
div {
  max-width: 100%;
}
:root {
  --zp-blue: #1a56db;
  --zp-blue-2: #1d4ed8;
  --zp-ink: #0b1528;
  --zp-body: #4b5563;
  --zp-line: #e5e7eb;
  --zp-grad-btn: linear-gradient(135deg, #5b9df6 0%, #1d4ed8 100%);
  --zp-max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

a {
  color: inherit;
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.zp-navbar {
  position: sticky;
  top: 24px;
  max-width: var(--zp-max);
  margin: 24px auto 0;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(20, 50, 110, 0.06);
  z-index: 1000;
}
.zp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
}
.zp-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
}
.zp-logo-full {
  height: 27px;
  width: auto;
  display: block;
}
.zp-logo-mark {
  height: 24px;
  width: auto;
  display: block;
}
.zp-logo-text {
  font-size: 21px;
  font-weight: 800;
  color: var(--zp-blue);
  letter-spacing: -0.5px;
  line-height: 1;
}
.zp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-bottom: 0;
}
.zp-nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.15s;
}
.zp-nav-links a:hover {
  color: var(--zp-blue);
}
.zp-nav-links a.active {
  color: var(--zp-blue);
  font-weight: 600;
}
.zp-btn-contact {
  background: var(--zp-grad-btn);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.zp-btn-contact:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.28);
}

/* Hamburger */
.zp-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 9px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  position: relative;
}

.zp-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #0b1528;
  border-radius: 2px;
  transition: 0.25s;
}

/* Hide hamburger lines */
.zp-nav-toggle.active span {
  display: none;
}

/* Show close icon */
.zp-nav-toggle.active {
  background: url("../assets/close-icon.svg") center center no-repeat;
  background-size: 1rem;
  background-color: #fff;
  border-radius: 50%;
}
.zp-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px; /* Space between icon and button */
}
/* ─── MOBILE DRAWER ───────────────────────────────────────── */
.zp-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 28, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1500;
}
.zp-drawer {
  position: fixed;
  top: 7rem;
  right: 0;
  /* height: 100%; */
  width: min(88vw, 360px);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 24px;
  /* box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18); */
  overflow-y: auto;
  border-radius: 1rem;
}
body.zp-drawer-open {
  overflow: hidden;
}
body.zp-drawer-open .zp-drawer {
  transform: translateX(0);
  top: 7rem;
  right: 1.5rem;
  border-radius: 1rem;
}
/* .active-nav-mobile {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #57b3fe 0%, #282f88 100%);
} */
body.zp-drawer-open .zp-drawer-backdrop {
  opacity: 1;
  visibility: visible;
}

.zp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.zp-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zp-drawer-banner {
  background: linear-gradient(100deg, #2f6df0 0%, #1746c8 55%, #0f7fae 100%);
  border-radius: 14px;
  padding: 18px 18px 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 18px;
}
.zp-drawer-banner p {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 14px;
}
.zp-drawer-banner a {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  text-decoration: none;
}
.zp-drawer-links {
  list-style: none;
}
.zp-drawer-links {
  padding-left: 0px;
}
.zp-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  /* border-bottom: 1px solid #f0f0f2; */
}
.zp-drawer-links a .bi {
  color: #9ca3af;
  font-size: 14px;
}
.zp-drawer-links a.active {
  color: var(--zp-blue);
}
.zp-drawer-links a.active::after {
  content: "";
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #57b3fe 0%, #282f88 100%);
}
.zp-drawer-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: #4f56e6;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  border-radius: 40px;
  text-decoration: none;
}

/* ─── CTA BANNER ──────────────────────────────────────────── */
.zp-cta-section {
  padding: 60px 32px 80px;
  background: #fff;
}
.zp-cta-banner {
  max-width: var(--zp-max);
  margin: 0 auto;
  /* near-black base + left-anchored blue glow + bottom-right teal glow (matches Figma) */
  background-image: url("../assets/bg/cta-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* radial-gradient(
      58% 115% at 102% 122%,
      rgba(16, 120, 130, 0.55) 0%,
      rgba(10, 72, 80, 0.2) 38%,
      rgba(4, 12, 16, 0) 64%
    ),
    radial-gradient(
      90% 155% at -8% 60%,
      #2a60d0 0%,
      #1b4fbb 27%,
      rgba(22, 52, 120, 0.3) 55%,
      rgba(6, 11, 20, 0) 80%
    ),
    linear-gradient(98deg, #0b1430 0%, #07101f 38%, #04090e 62%, #04110f 100%); */
  border-radius: 24px;
  padding: 80px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.zp-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.zp-cta-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.28;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}
.zp-cta-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.zp-btn-start {
  background: #fff;
  color: #000;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.zp-btn-start:hover {
  background: #f4f4f5;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.zp-footer {
  background: #000;
  padding: 64px 32px 0;
  color: #fff;
}
.zp-footer-inner {
  max-width: var(--zp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 40px 72px;
  padding-bottom: 44px;
}
.zp-footer-mark {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.zp-footer-tagline {
  font-size: 15px;
  color: #e7e9f0;
  margin-bottom: 22px;
}
.zp-social-row {
  display: flex;
  gap: 10px;
}
.zp-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1b1b1b;
  border: 1px solid #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.zp-social-icon:hover {
  background: var(--zp-blue);
  border-color: var(--zp-blue);
}
.zp-footer-col h6 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 9px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.zp-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.zp-footer-col ul li a {
  font-size: 14.5px;
  color: #e7e9f0;
  text-decoration: none;
  transition: color 0.15s;
}
.zp-footer-col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.zp-footer-addr h6 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 9px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.zp-addr-item {
  margin-bottom: 18px;
}
.zp-addr-item .label {
  font-size: 14px;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-block;
}
.zp-addr-item .value {
  font-size: 14.5px;
  color: #cdd2dd;
  line-height: 1.55;
}
.zp-addr-item .value a {
  color: #cdd2dd;
  text-decoration: none;
}
.zp-addr-item .value a:hover {
  color: #fff;
}
.zp-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: var(--zp-max);
  margin: 0 auto;
}
.zp-footer-bottom {
  max-width: var(--zp-max);
  margin: 0 auto;
  padding: 22px 0;
  text-align: center;
  font-size: 14px;
  color: #cdd2dd;
}

/* ─── RESPONSIVE CHROME ───────────────────────────────────── */
@media (max-width: 980px) {
  .zp-navbar {
    top: 14px;
    margin: 14px 16px 0;
    max-width: none;
  }
  .zp-btn-contact {
    background: var(--zp-grad-btn);
    color: #fff;
    font-size: 12px;
    padding: 11px 14px;
  }
  /* .zp-nav-links,
  .zp-nav-inner > .zp-btn-contact {
    display: none;
  } */

  .zp-nav-links {
    display: none;
  }
  .zp-nav-toggle {
    display: flex;
  }
}
@media (max-width: 820px) {
  .zp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }
  .zp-footer-brand {
    grid-column: 1 / -1;
  }
  .zp-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
    gap: 24px;
  }
  .zp-cta-title {
    font-size: 26px;
  }
}
@media (max-width: 520px) {
  .zp-footer {
    padding: 48px 20px 0;
  }
  .zp-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .zp-cta-section {
    padding: 40px 0px 56px;
    border-radius: 0px;
  }
  .zp-cta-banner {
    padding: 40px 22px;
    border-radius: 0px;
  }
}

/* ─── FAQ (shared accordion) ──────────────────────────────── */
.zp-faq-section {
  background: #fff;
  padding: 100px 24px;
}
.zp-faq-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: #0b1528;
  letter-spacing: -0.5px;
}
.zp-faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.zp-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.zp-faq-item:hover {
  border-color: #cbd5e1;
}
.zp-faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.zp-faq-question {
  font-size: 15.5px;
  font-weight: 700;
  color: #0b1528;
  margin: 0;
}
.zp-faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #64748b;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.zp-faq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease;
  padding: 0 24px;
}
.zp-faq-answer {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
  padding-bottom: 20px;
  margin: 0;
}
.zp-faq-item.active {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.zp-faq-item.active .zp-faq-body {
  max-height: 300px;
  transition:
    max-height 0.3s ease-in,
    padding 0.3s ease;
}
.zp-faq-item.active .zp-faq-toggle {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* ─── SCROLL REVEAL (gentle on-scroll animation) ──────────── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
  }
  [data-reveal="left"] {
    transform: translateX(-32px);
  }
  [data-reveal="right"] {
    transform: translateX(32px);
  }
  [data-reveal="zoom"] {
    transform: scale(0.96);
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ─── HOME NAVBAR OVER DARK HERO ──────────────────────────── */
/* Home reuses the shared .zp-navbar but it overlays a dark video hero,
   so it sits inside the hero (non-sticky) with light link text. */
body.zp-home .zp-navbar {
  position: relative;
  top: 0;
  margin: 0 auto;
  max-width: 1180px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}
body.zp-home .zp-nav-links a {
  color: #eaf1ff;
}
body.zp-home .zp-nav-links a:hover,
body.zp-home .zp-nav-links a.active {
  color: #fff;
}
body.zp-home .zp-nav-toggle span {
  background: #fff;
}
@media (max-width: 980px) {
  body.zp-home .zp-navbar {
    margin: 0 auto;
    max-width: none;
  }
}
