/* ──────────────────────────────────────────────────────────────
   shared.css — HS Automate gedeelde header & footer stijlen
   ────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

@keyframes ping {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */

.hs-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #08122a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hs-header * {
  box-sizing: border-box;
}

.hs-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Logo */
.hs-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.hs-header__logo img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav */
.hs-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.hs-header__nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.hs-header__nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hs-header__nav a.hs-nav-active {
  color: #7aabff;
  background: rgba(107, 159, 255, 0.10);
}

/* CTA knop */
.hs-header__cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1a50e8 0%, #2d6ef7 100%);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
  box-shadow: 0 2px 14px rgba(26, 80, 232, 0.40);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 22px rgba(26, 80, 232, 0.55);
}

/* Hamburger */
.hs-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  border-radius: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.hs-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hs-header__hamburger.hs-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hs-header__hamburger.hs-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hs-header__hamburger.hs-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobiele header */
@media (max-width: 800px) {
  .hs-header__inner {
    padding: 0 20px;
    height: 62px;
    position: relative;
  }

  .hs-header__nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #08122a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 16px 18px;
    gap: 2px;
    margin-left: 0;
  }

  .hs-header__nav.hs-open {
    display: flex;
  }

  .hs-header__nav a {
    padding: 11px 16px;
    font-size: 15px;
    border-radius: 10px;
  }

  .hs-header__cta {
    display: none;
  }

  .hs-header__hamburger {
    display: flex;
  }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

.hs-footer {
  background: #070f1d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hs-footer * {
  box-sizing: border-box;
}

.hs-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 68px 32px 36px;
}

.hs-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Merk kolom */
.hs-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hs-footer__logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.hs-footer__brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 270px;
}

.hs-footer__email-link {
  font-size: 13.5px;
  color: #6b9fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  width: fit-content;
}

.hs-footer__email-link:hover {
  color: #9dbfff;
  text-decoration: underline;
}

.hs-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 5px 13px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.02em;
}

/* Nav kolommen */
.hs-footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hs-footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.30);
  margin: 0;
}

.hs-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hs-footer__col ul li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.45;
}

.hs-footer__col ul li a {
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color 0.2s;
}

.hs-footer__col ul li a:hover {
  color: rgba(255, 255, 255, 0.90);
}

/* Onderste balk */
.hs-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.25);
}

.hs-footer__legal {
  display: flex;
  gap: 24px;
}

.hs-footer__legal a {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.hs-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* Responsive footer — tablet */
@media (max-width: 960px) {
  .hs-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hs-footer__brand {
    grid-column: 1 / -1;
  }

  .hs-footer__brand p {
    max-width: 400px;
  }
}

/* Responsive footer — mobiel */
@media (max-width: 560px) {
  .hs-footer__inner {
    padding: 48px 20px 28px;
  }

  .hs-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hs-footer__brand {
    grid-column: auto;
  }

  .hs-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hs-footer__legal {
    flex-direction: column;
    gap: 10px;
  }
}
