/* ==========================================================================
   B2B LANDING — hb-b2b.css
   Hoekjes en Boekjes / Fase B2B
   ========================================================================== */

/* ------------------------------------------------------------------
   BASE
   ------------------------------------------------------------------ */

.hb-b2b {
  font-family: var(--hb-font-body);
  color: var(--hb-text);
}

.hb-b2b section {
  padding: 88px 0;
}

.hb-b2b > section:nth-child(odd) {
  background: var(--hb-cream);
}

.hb-b2b > section:nth-child(even) {
  background: var(--hb-white);
}

/* ------------------------------------------------------------------
   SECTION HEADER (común a todas las secciones)
   ------------------------------------------------------------------ */

.hb-b2b-section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.hb-b2b-section-header h2 {
  font-family: var(--hb-font-heading);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--hb-navy);
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hb-b2b-section-sub {
  color: var(--hb-muted);
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0;
}

/* ------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------ */

.hb-b2b-hero {
  padding: 100px 0 96px;
  text-align: center;
}

.hb-b2b-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.hb-b2b-hero__badge {
  display: inline-block;
  background: var(--hb-sage);
  color: var(--hb-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hb-b2b-hero__title {
  font-family: var(--hb-font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--hb-navy);
  margin: 0 0 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hb-b2b-hero__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--hb-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hb-b2b-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------------
   WAT WE DOEN — values grid 3 col
   ------------------------------------------------------------------ */

.hb-b2b-values__grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hb-b2b-value {
  text-align: center;
  padding: 32px 24px;
  background: var(--hb-white);
  border-radius: var(--hb-radius-lg);
  border: 1.5px solid var(--hb-cream-dark);
  box-shadow: var(--hb-shadow-sm);
}

.hb-b2b-value__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--hb-terracotta);
}

.hb-b2b-value__icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hb-b2b-value h3 {
  font-family: var(--hb-font-heading);
  font-size: 1.25rem;
  color: var(--hb-navy);
  margin: 0 0 12px;
  font-weight: 700;
}

.hb-b2b-value p {
  color: var(--hb-muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------------------------
   VOOR WIE — 4 audiences 2x2
   ------------------------------------------------------------------ */

.hb-b2b-audiences__grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hb-b2b-audience {
  background: var(--hb-cream);
  border: 1.5px solid var(--hb-cream-dark);
  border-radius: var(--hb-radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.hb-b2b-audience:hover {
  box-shadow: var(--hb-shadow-md);
  border-color: var(--hb-sand);
}

.hb-b2b-audience__header {
  border-bottom: 1.5px solid var(--hb-cream-dark);
  padding-bottom: 16px;
}

.hb-b2b-audience__title {
  font-family: var(--hb-font-heading);
  font-size: 1.5rem;
  color: var(--hb-navy);
  margin: 0 0 4px;
  font-weight: 700;
}

.hb-b2b-audience__sub {
  color: var(--hb-muted);
  font-size: 0.88rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hb-b2b-audience__pitch {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--hb-text);
  margin: 0;
}

.hb-b2b-audience__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.hb-b2b-audience__bullets li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.93rem;
  color: var(--hb-text);
  line-height: 1.45;
}

.hb-b2b-audience__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--hb-terracotta);
  font-weight: 700;
}

.hb-b2b-audience__cta {
  margin-top: 8px;
  align-self: flex-start;
  color: var(--hb-terracotta);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.hb-b2b-audience__cta:hover {
  color: var(--hb-navy);
  gap: 8px;
}

/* ------------------------------------------------------------------
   HOE WERKT HET — 4 stappen
   ------------------------------------------------------------------ */

.hb-b2b-process__steps {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: none;
  position: relative;
}

/* Connecting line between steps */
.hb-b2b-process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(24px + 10%);
  right: calc(24px + 10%);
  height: 1.5px;
  background: var(--hb-cream-dark);
  z-index: 0;
}

.hb-b2b-process__step {
  padding: 0 20px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.hb-b2b-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hb-terracotta);
  color: var(--hb-white);
  font-family: var(--hb-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hb-b2b-process__step h3 {
  font-family: var(--hb-font-heading);
  font-size: 1.15rem;
  color: var(--hb-navy);
  margin: 0 0 10px;
  font-weight: 700;
}

.hb-b2b-process__step p {
  color: var(--hb-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------------------------
   DOWNLOADS
   ------------------------------------------------------------------ */

.hb-b2b-downloads__grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.hb-b2b-download {
  background: var(--hb-cream);
  border-radius: var(--hb-radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid var(--hb-cream-dark);
}

.hb-b2b-download__icon {
  color: var(--hb-terracotta);
  line-height: 0;
}

.hb-b2b-download__icon svg {
  width: 36px;
  height: 36px;
}

.hb-b2b-download__body h3 {
  font-family: var(--hb-font-heading);
  font-size: 1.1rem;
  color: var(--hb-navy);
  margin: 0 0 8px;
  font-weight: 700;
}

.hb-b2b-download__body p {
  color: var(--hb-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.hb-b2b-download__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--hb-navy);
  color: var(--hb-white);
  border-radius: var(--hb-radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.2s ease;
}

.hb-b2b-download__btn:hover {
  background: var(--hb-terracotta);
  color: var(--hb-white);
}

.hb-b2b-download__soon {
  font-style: italic;
  color: var(--hb-muted);
  font-size: 0.88rem;
  margin-top: auto;
}

/* ------------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------------ */

.hb-b2b-contact {
  background: var(--hb-navy) !important;
}

.hb-b2b-contact .hb-b2b-section-header h2,
.hb-b2b-contact__intro h2 {
  color: var(--hb-cream);
}

.hb-b2b-contact__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.hb-b2b-contact__intro h2 {
  font-family: var(--hb-font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hb-b2b-contact__intro > p {
  color: rgba(245, 240, 232, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 32px;
}

.hb-b2b-contact__direct {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hb-radius-md);
  padding: 24px;
}

.hb-b2b-contact__direct > p {
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 10px;
}

.hb-b2b-contact__direct a {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hb-cream);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.hb-b2b-contact__direct a:hover {
  color: var(--hb-sand);
}

.hb-b2b-contact__address {
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.9rem;
  margin: 12px 0 0;
}

/* Form */
.hb-b2b-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hb-b2b-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hb-b2b-form label {
  display: block;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hb-b2b-form label span[aria-hidden] {
  color: var(--hb-terracotta);
}

.hb-b2b-form input,
.hb-b2b-form select,
.hb-b2b-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--hb-radius-sm);
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--hb-font-body);
  font-size: 0.97rem;
  color: var(--hb-cream);
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.hb-b2b-form input::placeholder,
.hb-b2b-form textarea::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.hb-b2b-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(245,240,232,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.hb-b2b-form select option {
  background: var(--hb-navy);
  color: var(--hb-cream);
}

.hb-b2b-form input:focus,
.hb-b2b-form select:focus,
.hb-b2b-form textarea:focus {
  outline: none;
  border-color: var(--hb-sand);
}

.hb-b2b-form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400 !important;
  color: rgba(245, 240, 232, 0.65) !important;
  font-size: 0.88rem;
  cursor: pointer;
  line-height: 1.45;
}

.hb-b2b-form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  padding: 0;
  cursor: pointer;
  accent-color: var(--hb-terracotta);
}

.hb-b2b-form__btn {
  padding: 14px 30px;
  background: var(--hb-terracotta);
  color: var(--hb-white);
  border: 0;
  border-radius: var(--hb-radius-sm);
  font-family: var(--hb-font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.hb-b2b-form__btn:hover:not(:disabled) {
  background: #b3533d;
  transform: translateY(-1px);
}

.hb-b2b-form__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hb-b2b-form__msg {
  padding: 14px 16px;
  border-radius: var(--hb-radius-sm);
  font-size: 0.93rem;
  line-height: 1.5;
}

.hb-b2b-form__msg.is-success {
  background: rgba(122, 158, 126, 0.2);
  color: #a8d5ac;
  border: 1px solid rgba(122, 158, 126, 0.3);
}

.hb-b2b-form__msg.is-error {
  background: rgba(200, 98, 74, 0.2);
  color: #f4a090;
  border: 1px solid rgba(200, 98, 74, 0.3);
}

/* hCaptcha widget dark bg fix */
.hb-b2b-form .h-captcha {
  filter: invert(0.85) hue-rotate(180deg);
}

/* ------------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------------ */

@media (max-width: 1024px) {
  .hb-b2b-process__steps::before {
    display: none;
  }
  .hb-b2b-process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hb-b2b section {
    padding: 64px 0;
  }
  .hb-b2b-values__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .hb-b2b-audiences__grid {
    grid-template-columns: 1fr;
  }
  .hb-b2b-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hb-b2b section {
    padding: 52px 0;
  }
  .hb-b2b-hero {
    padding: 72px 0 64px;
  }
  .hb-b2b-process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hb-b2b-form__row {
    grid-template-columns: 1fr;
  }
  .hb-b2b-audience {
    padding: 28px 24px;
  }
}

/* ------------------------------------------------------------------
   ASTRA CONTAINER OVERRIDE — full-width sections
   ------------------------------------------------------------------ */

.page-template-page-b2b .ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-template-page-b2b .hb-b2b {
  width: 100%;
  overflow-x: hidden;
}
