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

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
  /* ── Merk blauw ── */
  --c-brand:        #1B3F7C;
  --c-brand-dark:   #122D5C;
  --c-brand-light:  #2563EB;

  /* ── Energie groen (primaire actie + accenten) ── */
  --c-accent:       #18A84C;   /* helder blad-groen */
  --c-accent-dark:  #138B3C;
  --c-accent-light: #D1FAE5;

  /* ── Ondersteunend groen ── */
  --c-green:        #16A34A;
  --c-green-dark:   #15803D;
  --c-green-glow:   rgba(24, 168, 76, 0.18);

  /* ── Zon/solar goud (alleen voor sterren, solar-iconen) ── */
  --c-solar:        #F59E0B;

  /* ── Neutrale tints ── */
  --c-dark:         #0B1E13;   /* diepe bosgroen-donker */
  --c-text:         #1A2E1F;
  --c-muted:        #556B5E;
  --c-surface:      #F4FAF6;   /* licht groen-getint wit */
  --c-surface-2:    #E8F5EC;
  --c-border:       #D3E9D9;
  --c-white:        #FFFFFF;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max:  1200px;
  --section-pad:    88px;

  --radius-xs:  6px;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow:     0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.2);

  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.38s cubic-bezier(0.4, 0, 0.2, 1);

  /* Hoogte van de vaste (position: fixed) site-header.
     Content-pagina's zonder full-bleed hero-afbeelding moeten hun eerste
     sectie hiermee laten clearen, anders schuift de header over de tekst heen. */
  --header-height: 72px;
}

/* Content-pagina's zonder eigen full-bleed hero: gebruik deze class op de
   eerste sectie zodat titels niet onder de vaste header komen te zitten. */
.page-header-offset {
  padding-top: calc(var(--header-height) + 40px);
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #111;
}
body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  line-height: 1.18;
  font-weight: 800;
  color: var(--c-dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 700; }
p  { color: var(--c-muted); line-height: 1.75; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

.label-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 12px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-lg { padding: 17px 36px; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }

.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.btn-primary:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--c-green-glow);
}

.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.btn-accent:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--c-green-glow);
}

.btn-outline {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn-outline:hover {
  background: var(--c-accent);
  color: var(--c-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.12);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  border-bottom: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.site-header .container {
  max-width: 100%;
  padding: 0 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }
.site-header .logo img { filter: brightness(0) invert(1); }

/* Desktop nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  flex-wrap: nowrap;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.925rem;
  font-weight: 500;
  color: #fff;
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active {
  color: var(--c-white);
  background: rgba(255,255,255,0.09);
}

.nav-chevron {
  display: inline-block;
  transition: transform var(--ease);
  line-height: 0;
}
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--c-border);
  min-width: 500px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--ease-slow);
  pointer-events: none;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 14px;
  border-radius: var(--radius);
  transition: background var(--ease);
  text-decoration: none;
  color: var(--c-text);
}
.dropdown-item:hover,
.dropdown-item.active {
  background: var(--c-surface);
}

.dropdown-icon {
  width: 42px;
  height: 42px;
  background: rgba(27, 63, 124, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-brand);
  transition: background var(--ease);
}
.dropdown-item:hover .dropdown-icon {
  background: rgba(27, 63, 124, 0.14);
}

.dropdown-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 2px;
}
.dropdown-item small {
  font-size: 0.79rem;
  color: var(--c-muted);
}

/* Right side of nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Hamburger — pill design */
.hamburger {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 12px;
  border: 1.5px solid rgba(255,255,255,0.38);
  border-radius: 50px;
  color: rgba(255,255,255,0.92);
  background: transparent;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.hamburger:hover {
  border-color: rgba(255,255,255,0.72);
  color: #fff;
}
.hamburger.is-open {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(24,168,76,0.1);
}

/* Icon cluster: 3 staggered lines */
.ham-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
  align-items: flex-start;
}
.ham-line {
  display: block;
  height: 1.8px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              opacity   0.3s cubic-bezier(0.4,0,0.2,1),
              width     0.3s cubic-bezier(0.4,0,0.2,1);
}
.ham-line:nth-child(1) { width: 18px; }
.ham-line:nth-child(2) { width: 12px; }
.ham-line:nth-child(3) { width: 15px; }

/* Open state: morph to × */
.hamburger.is-open .ham-line:nth-child(1) {
  width: 18px;
  transform: translateY(5.8px) rotate(45deg);
}
.hamburger.is-open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open .ham-line:nth-child(3) {
  width: 18px;
  transform: translateY(-5.8px) rotate(-45deg);
}

/* Label */
.ham-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.hamburger.is-open .ham-label {
  opacity: 0.7;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--c-white);
  z-index: 199;
  overflow-y: auto;
  padding: 20px 24px 40px;
  border-top: 2px solid var(--c-accent);
  animation: slideDown 0.2s ease;
}
.mobile-nav.is-open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding: 16px 12px 8px;
  display: block;
}

.mobile-nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
}
.mobile-nav-thumb {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -12px;
}
.mobile-nav-item a:hover { background: var(--c-accent-light); color: var(--c-accent-dark); }

.mobile-nav-divider {
  height: 1px;
  background: var(--c-border);
  margin: 12px 0;
}

.mobile-nav-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn { justify-content: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: #111 url('/assets/images/BG/hero-bg.png') center 40% / cover no-repeat;
  min-height: calc(100vh + 80px);
  margin-top: -80px;
  padding-top: calc(60px + 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

/* Donkere overlay zodat tekst altijd leesbaar is */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  pointer-events: none;
}

/* Vloeiende overgang naar de sectie eronder */

/* Gecentreerd tekstblok */
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

/* Groene pill-badge boven de h1 */
.hero-headline {
  position: relative;
  display: inline-block;
}

.hero-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  display: inline-flex;
  align-items: center;
  background: var(--c-accent);
  color: #000000;
  padding: 5px 13px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-4deg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.30), 0 1px 4px rgba(0,0,0,0.14);
  z-index: 0;
}

.hero h1 {
  position: relative;
  z-index: 1;
  color: var(--c-white);
  text-shadow: 0 2px 32px rgba(0,0,0,0.8), 0 1px 8px rgba(0,0,0,0.6);
  font-size: clamp(1.75rem, 9.5vw, 6rem);
  line-height: 1.12;
}
.hero h1 .text-accent { color: var(--c-white); }

.hero-sub {
  color: var(--c-white);
  text-shadow: 0 1px 16px rgba(0,0,0,0.75);
  font-size: 0.92rem;
  margin: 6px auto 20px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Groene pill-CTA knop (Zonneplan-stijl) */
.btn-green {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
  border-radius: 50px;
}
.btn-green:hover {
  background: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16,185,129,0.38);
}

/* Video-knop linksonder */
.hero-video-btn {
  position: absolute;
  bottom: 36px;
  left: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--ease);
  padding: 0;
}
.hero-video-btn:hover { color: var(--c-white); }

.hero-play-icon {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease);
}
.hero-video-btn:hover .hero-play-icon {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
}

/* Review-badge rechtsonder */
.hero-review-badge {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(28,28,28,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--c-white);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.hero-review-badge .badge-stars { color: #FBBF24; font-size: 0.9rem; letter-spacing: 1px; }
.hero-review-badge .badge-score {
  background: var(--c-brand);
  color: var(--c-white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 11px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* =========================================================
   APP SECTIE — Slimme Rik
   ========================================================= */
.app-section {
  background: var(--c-dark);
  padding: 110px 0 100px;
  overflow: hidden;
}
.app-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Eyebrow label */
.app-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 20px;
}
.app-eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(24,168,76,0.25);
  flex-shrink: 0;
}

/* Heading */
.app-section-h2 {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 20px;
}
.app-h2-accent { color: var(--c-accent); }

/* Intro paragraph */
.app-section-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin: 0 0 36px;
  max-width: 44ch;
}

/* Feature list */
.app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}
.app-feat-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(24,168,76,0.18);
  border: 1px solid rgba(24,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}

/* Rating + stores row */
.app-section-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-rating-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}
.app-rating-score {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-left: 4px;
}
.app-rating-count {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.app-section-stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}
.app-store-badge:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(24,168,76,0.1);
}

/* Visual — phone + glow */
.app-section-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.app-glow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,168,76,0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.app-section-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 56px rgba(0,0,0,0.5));
}

/* Mobile */
@media (max-width: 900px) {
  .app-section {
    padding: 80px 0 72px;
  }
  .app-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .app-section-visual {
    order: -1;
  }
  .app-section-visual img {
    max-width: 260px;
  }
  .app-glow {
    width: 220px;
    height: 220px;
  }
  .app-section-intro { max-width: 100%; }
}

/* =========================================================
   PRODUCTS OVERVIEW
   ========================================================= */
.products-overview {
  padding: var(--section-pad) 0;
  background: var(--c-surface);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: all var(--ease-slow);
  color: var(--c-text);
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-slow);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27,63,124,0.2);
}
.product-card:hover::after { transform: scaleX(1); }

.product-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(27,63,124,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-brand);
}

.product-card h3 {
  font-size: 1.05rem;
  color: var(--c-dark);
}
.product-card p {
  font-size: 0.875rem;
  color: var(--c-muted);
  flex: 1;
  line-height: 1.6;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-brand);
  transition: gap var(--ease);
}
.product-card:hover .product-card-cta { gap: 9px; }

/* =========================================================
   FEATURE SECTIONS
   ========================================================= */
.feature-section { padding: var(--section-pad) 0; }
.feature-section.bg-surface { background: var(--c-surface); }
.feature-section.bg-dark   { background: var(--c-dark); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.feature-grid.reverse .feature-visual { order: 2; }
.feature-grid.reverse .feature-body   { order: 1; }

.feature-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-surface);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
}

.feature-body .label-tag { display: block; }
.feature-body h2 { margin-bottom: 18px; }
.feature-body > p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: var(--c-muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.55;
}
.check {
  width: 22px;
  height: 22px;
  background: rgba(16,185,129,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Dark variant feature body */
.feature-body.on-dark h2 { color: var(--c-white); }
.feature-body.on-dark .label-tag { color: var(--c-accent); }
.feature-body.on-dark > p { color: rgba(255,255,255,0.6); }
.feature-body.on-dark .feature-list li { color: rgba(255,255,255,0.85); }

/* =========================================================
   USP / TRUST SECTION
   ========================================================= */
.usp-section {
  padding: var(--section-pad) 0;
  background: var(--c-surface);
}
.usp-section .section-header h2  { color: var(--c-dark); }
.usp-section .section-header p   { color: var(--c-muted); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usp-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.usp-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.usp-icon {
  width: 48px;
  height: 48px;
  background: var(--c-accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c-accent);
}
.usp-card h3 { color: var(--c-dark); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.usp-card p  { color: var(--c-muted); font-size: 0.875rem; line-height: 1.65; }



.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-phone-wrap {
  display: flex;
  justify-content: center;
}
.app-phone-img {
  width: 220px;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

.app-body h2 { color: var(--c-white); margin-bottom: 16px; }
.app-body > p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 32px; }

.app-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.app-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}
.app-feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(245,158,11,0.14);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-accent);
}
.app-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 2px;
}
.app-feature-text span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.app-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  color: var(--c-white);
  font-size: 0.875rem;
}
.app-rating-badge .stars { color: var(--c-solar); letter-spacing: 1px; }
.app-rating-badge strong { font-size: 1rem; font-weight: 700; }

/* =========================================================
   REVIEWS SECTION
   ========================================================= */
.reviews-section {
  padding: var(--section-pad) 0;
  background: var(--c-surface);
}

.reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.reviews-overall {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-score {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1;
}
.reviews-meta .stars { color: var(--c-solar); font-size: 1.4rem; display: block; margin-bottom: 4px; }
.reviews-meta span   { font-size: 0.875rem; color: var(--c-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: var(--c-solar); font-size: 1rem; }
.review-text  { font-size: 0.9rem; color: var(--c-text); line-height: 1.7; flex: 1; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--c-border);
}
.review-avatar {
  width: 38px;
  height: 38px;
  background: var(--c-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
}
.review-info span { font-size: 0.78rem; color: var(--c-muted); }

/* =========================================================
   PRODUCT SHOWCASE
   ========================================================= */
.product-showcase {
  padding: var(--section-pad) 0;
  background: var(--c-white);
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--c-border);
}
.showcase-row:last-child { border-bottom: none; }
.showcase-row--reverse .showcase-text { order: -1; }

.showcase-img img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.showcase-text h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  color: var(--c-dark);
  margin-bottom: 32px;
  line-height: 1.2;
}

.showcase-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  margin-top: 28px;
}
.showcase-text h3:first-of-type { margin-top: 0; }

.showcase-text p {
  color: var(--c-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 28px;
  transition: gap var(--ease);
}
.showcase-link:hover { gap: 16px; }

@media (max-width: 900px) {
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
  .showcase-text { order: 0; }
  .showcase-img { order: 1; }
  .showcase-img img { max-height: 340px; }
}

/* =========================================================
   SLIMME RIK SECTION
   ========================================================= */
.slimmerik-section {
  background: var(--c-dark);
  position: relative;
  padding: 180px 0 0;
  overflow: hidden;
}

.slimmerik-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}

.slimmerik-text {
  padding-bottom: 80px;
  color: var(--c-white);
}

.slimmerik-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}

.slimmerik-text h2 {
  color: var(--c-white);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  margin-bottom: 32px;
  line-height: 1.2;
}

.slimmerik-text h3 {
  color: var(--c-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 28px;
}

.slimmerik-text p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.slimmerik-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 14px;
  transition: gap var(--ease), color var(--ease);
}
.slimmerik-arrow-link:hover { gap: 16px; color: var(--c-accent-light); }

.slimmerik-visual {
  /* geen position:relative — figure positioneert zich t.o.v. de section */
}

.slimmerik-figure {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1;
}
.slimmerik-figure img {
  width: auto;
  max-width: 460px;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.slimmerik-badge {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  color: var(--c-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 3;
}

.slimmerik-wave {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.slimmerik-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

@media (max-width: 900px) {
  .slimmerik-section {
    padding: 60px 0 0;
    min-height: unset;
    overflow: hidden;
  }
  .slimmerik-grid {
    grid-template-columns: 1fr;
    gap: 0;
    display: flex;
    flex-direction: column;
  }
  .slimmerik-text {
    padding-bottom: 40px;
    order: -1;
  }
  .slimmerik-visual {
    order: 2;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 16px;
  }
  .slimmerik-figure {
    position: relative;
    bottom: unset;
    left: unset;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .slimmerik-figure img {
    width: auto;
    max-width: 300px;
    display: block;
    vertical-align: bottom;
    margin-bottom: -70px;
  }
  .slimmerik-badge {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem;
    padding: 8px 14px;
  }
  .slimmerik-wave svg { height: 50px; }
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--c-white);
  border-top: 4px solid var(--c-accent);
  padding: 28px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner-text h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--c-accent);
  margin: 0 0 6px;
  line-height: 1.2;
}
.cta-banner-text p {
  font-size: 0.95rem;
  color: var(--c-muted);
  margin: 0;
}
.cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--c-accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--c-green-glow);
}
@media (max-width: 680px) {
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .cta-btn { width: 100%; justify-content: center; }
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-section {
  background: var(--c-white);
  padding: 100px 0;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.blog-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 10px;
}
.blog-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--c-dark);
  margin: 0;
  line-height: 1.2;
}
.blog-all-link {
  flex-shrink: 0;
  white-space: nowrap;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.blog-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.04);
}
.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--c-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}
.blog-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--c-muted);
  font-weight: 500;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.35;
  margin: 0;
}
.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card-body h3 a:hover { color: var(--c-accent); }
.blog-card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
  flex: 1;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-accent);
  text-decoration: none;
  margin-top: 6px;
  transition: gap 0.2s ease;
}
.blog-card-link:hover { gap: 12px; }

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--c-accent);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  align-items: stretch;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand-logo img {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  display: block;
}
.footer-team-photo {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  margin-top: auto;
}
.footer-group {
  margin-bottom: 24px;
}
.footer-chevron { display: none; }
.footer-group-toggle { display: block; margin-bottom: 12px; }
.footer-group:last-of-type {
  margin-bottom: 0;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity var(--ease);
}
.social-btn:hover { opacity: 0.7; }

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-white);
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--c-white); }

.footer-bottom {
  background: var(--c-white);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.footer-bottom-copy { font-size: 0.85rem; color: var(--c-text); font-weight: 700; }
.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--c-text);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-bottom-links a:hover { color: var(--c-accent); }

/* =========================================================
   RESPONSIVE — 1024px
   ========================================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid       { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .nav-list, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* =========================================================
   RESPONSIVE — 900px
   ========================================================= */
@media (max-width: 900px) {
  .hero-img-side { display: none; }
  .hero-video-btn, .hero-review-badge { display: none; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid.reverse .feature-visual { order: 0; }
  .feature-grid.reverse .feature-body   { order: 0; }
  .app-grid     { grid-template-columns: 1fr; gap: 48px; }
}

/* =========================================================
   RESPONSIVE — 768px
   ========================================================= */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .hero-badge { left: -14px; }
  .hero {
    padding: 80px 0 52px;
    background-image: url('/assets/images/BG/hero-bg.png');
    background-color: #111;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 52% 10%;
  }
  .hero-stats { flex-wrap: wrap; gap: 20px 0; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; }
  .products-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-top { flex-direction: column; align-items: flex-start; }
  /* ── Footer mobiel ── */
  .footer-team-photo { display: none; }
  .footer-brand { padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.15); }
  .footer-brand-logo img { height: 38px; margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-col { display: contents; }
  .footer-group { border-bottom: 1px solid rgba(0,0,0,0.12); margin-bottom: 0; }
  .footer-group-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 0 10px;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
  }
  .footer-chevron { display: block; flex-shrink: 0; transition: transform 0.25s; }
  .footer-group.is-open .footer-chevron { transform: rotate(180deg); }
  .footer-group .footer-links { padding: 4px 0 16px; }
  .footer-group .footer-links li { padding: 3px 0; }
  .footer-group .footer-links a { font-size: 0.88rem; }
  .footer-socials { justify-content: center; padding: 24px 0 28px; gap: 24px; }
  .footer-socials .social-btn svg { width: 22px; height: 22px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
}

/* =========================================================
   RESPONSIVE — 480px
   ========================================================= */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .cta-banner .btn-dark { width: 100%; }
}

/* =========================================================
   BATTERIJ PAGINA — header uitzondering (niet meer nodig: header is nu fixed + transparant)
   ========================================================= */

/* =========================================================
   BATTERIJ PILL NAV — sticky (all screens)
   ========================================================= */
.bat-pill-nav {
  display: block;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.bat-pill-nav-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
/* Desktop: pills verspreid, geen scroll */
.bat-pill-scroll {
  display: flex;
  gap: 0;
  padding: 10px 24px;
  justify-content: space-between;
}
.bat-pill-arrow { display: none; }
.bat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--c-text);
  background: transparent;
  text-decoration: none;
  transition: background 0.15s;
  flex: 1;
  justify-content: center;
}
.bat-pill:hover { background: rgba(0,0,0,0.05); }
.bat-pill svg { flex-shrink: 0; opacity: 0.7; }
.bat-pill--active {
  background: var(--c-accent);
  color: #fff;
}
.bat-pill--active svg { opacity: 1; }

/* Mobiel: scrollbaar met pijltjes */
@media (max-width: 768px) {
  .bat-pill-scroll {
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 48px 10px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bat-pill-scroll::-webkit-scrollbar { display: none; }
  .bat-pill {
    flex: none;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 7px 14px;
    font-size: 0.82rem;
    background: rgba(0,0,0,0.05);
  }
  .bat-pill--active { background: var(--c-accent); color: #fff; }
  .bat-pill-arrow {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    align-items: center;
    border: none;
    cursor: pointer;
    color: var(--c-text);
    transition: opacity 0.2s;
    z-index: 2;
  }
  .bat-pill-arrow--right {
    right: 0;
    justify-content: flex-end;
    padding-right: 10px;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 50%);
  }
  .bat-pill-arrow--left {
    left: 0;
    justify-content: flex-start;
    padding-left: 10px;
    background: linear-gradient(to left, rgba(255,255,255,0) 0%, #fff 50%);
  }
  .bat-pill-arrow svg {
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.18);
    border-radius: 50%;
    padding: 3px;
    width: 28px;
    height: 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    flex-shrink: 0;
  }
}
