/* ═══════════════════════════════════════
   GEDEELDE BATTERIJ-PAGINA STIJLEN
   ═══════════════════════════════════════ */

/* Hero */
.bat-hero {
  position: relative;
  height: calc(78svh + 80px);
  margin-top: -80px;
  min-height: 480px;
  overflow: hidden;
}
.bat-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
.bat-hero-img-sq { display: none; }
.bat-hero-card-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 160px clamp(24px, 6vw, 80px) 24px 24px;
}
.bat-hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.bat-hero-card-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.bat-hero-usps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bat-hero-usps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--c-text);
}
.bat-hero-usps svg { color: var(--c-accent); flex-shrink: 0; }

/* Hero form */
.bat-hero-form { display: flex; flex-direction: column; gap: 8px; }
.bat-hero-form-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.bat-hero-form-postcode,
.bat-form-field-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.bat-form-icon {
  position: absolute;
  left: 12px;
  color: #9aaa9a;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.bat-hero-form-postcode input,
.bat-form-field-icon input {
  width: 100%;
  height: 48px;
  border: 1.5px solid #e0e5e0;
  border-radius: 10px;
  padding: 0 12px 0 38px;
  font-size: 0.95rem;
  color: var(--c-text);
  background: #f8faf8;
  transition: border-color .2s;
  box-sizing: border-box;
}
.bat-hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bat-form-plain {
  width: 100%;
  height: 48px;
  border: 1.5px solid #e0e5e0;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 0.95rem;
  color: var(--c-text);
  background: #f8faf8;
  transition: border-color .2s;
  box-sizing: border-box;
}
.bat-hero-form-postcode input:focus,
.bat-form-field-icon input:focus,
.bat-form-plain:focus {
  outline: none;
  border-color: var(--c-accent);
  background: #fff;
}
.bat-hero-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  background: var(--c-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 6px;
  transition: background .2s, transform .15s;
}
.bat-hero-submit:hover { background: #1a6e1a; transform: translateY(-1px); }
.bat-hero-footnote {
  text-align: center;
  font-size: 0.85rem;
  color: #9aaa9a;
  margin: 0;
}
.bat-hero-footnote strong { color: var(--c-text); }

/* Label */
.bat-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-accent);
  background: #e6f4ec;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.bat-label--light { background: rgba(255,255,255,.15); color: #fff; }

/* Offerte CTA */
.bat-offerte-cta {
  padding: 32px 0 80px;
  background: #f7f9f7;
}
.bat-offerte-cta--inline {
  padding: 0 0 48px;
  background: #f7f9f7;
}
.bat-offerte-cta-inner {
  background: var(--c-text);
  border-radius: 24px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bat-offerte-cta-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}
.bat-offerte-cta-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bat-offerte-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bat-offerte-cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}
.bat-offerte-cta-list svg { color: var(--c-accent); flex-shrink: 0; }
.bat-offerte-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}
.bat-offerte-cta-btn:hover { background: var(--c-accent-dark, #14a05c); }

/* Responsive hero */
@media (max-width: 768px) {
  .bat-hero {
    height: auto;
    min-height: unset;
    background: #fff;
    display: flex;
    flex-direction: column;
  }
  .bat-hero-img { display: none; }
  .bat-hero-img-sq {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    flex-shrink: 0;
  }
  .bat-hero-card-wrap {
    position: static;
    padding: 0 16px 32px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    margin-top: -160px;
    z-index: 2;
  }
  .bat-hero-card {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    padding: 24px 0 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }
  .bat-offerte-cta-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .bat-offerte-cta-btn { width: 100%; justify-content: center; }
}
