/* ChargeHero.nl — design system */
:root {
  --navy: #07131f;
  --navy-soft: #0d1c2c;
  --navy-mid: #132536;
  --green: #8edb19;
  --green-dark: #6fb010;
  --green-soft: rgba(142, 219, 25, 0.12);
  --white: #ffffff;
  --off-white: #f6f8fa;
  --gray-100: #eef1f4;
  --gray-200: #dde3ea;
  --gray-400: #8b97a8;
  --gray-600: #5a6778;
  --text: #07131f;
  --text-muted: #5a6778;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow: 0 12px 40px rgba(7, 19, 31, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 19, 31, 0.14);
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --max: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Typography */
h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 36rem;
}

.accent {
  color: var(--green);
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head .lead {
  margin: 1rem auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(142, 219, 25, 0.35);
}

.btn-primary:hover {
  background: #9be62a;
  box-shadow: 0 12px 32px rgba(142, 219, 25, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: transparent;
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

.btn-icon svg {
  width: 1.1em;
  height: 1.1em;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled,
.site-header.on-light {
  background: rgba(7, 19, 31, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  z-index: 2;
}

.logo-mark {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.logo-text span {
  color: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a.is-active,
.nav-parent.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 200px;
  padding: 0.5rem;
  background: rgba(7, 19, 31, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 20;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.has-dropdown.open .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  border-radius: 10px;
  white-space: nowrap;
}

.header-cta {
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  z-index: 2;
}

.header-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--green);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--green);
}

.info-item a {
  color: var(--green-dark);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(142, 219, 25, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(30, 60, 90, 0.5), transparent),
    linear-gradient(165deg, #07131f 0%, #0c1a2a 45%, #102033 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: fadeUp 0.9s var(--ease) both;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.72);
  margin: 1.25rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
  animation: fadeUp 1s var(--ease) 0.15s both;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3 / 4;
  max-height: min(72vh, 640px);
  margin-inline: auto;
}

.hero-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  background: radial-gradient(circle, rgba(142, 219, 25, 0.25), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(142, 219, 25, 0.1), transparent 50%),
    linear-gradient(165deg, #07131f 0%, #0e1f32 100%);
  color: var(--white);
  text-align: center;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem auto 0;
}

.partner-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin: 1.75rem auto 0;
  max-width: 28rem;
  text-align: left;
}

.partner-checks li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.4;
  width: 100%;
}

.partner-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(142, 219, 25, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' fill='none' stroke='%2307131F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 19, 31, 0.04);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  position: relative;
}

.step-card--image {
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: none;
}

.step-card--image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.steps-grid--detail {
  margin-bottom: 0;
}

.step-num {
  width: 42px;
  height: 42px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.1rem;
}

.step-visual {
  height: 140px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--off-white), var(--gray-100));
  overflow: hidden;
}

.step-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.step-icon {
  width: 72px;
  height: 72px;
  color: var(--green);
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pay-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pay-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: var(--gray-100);
  color: var(--navy);
}

/* Benefits */
.benefits {
  background: var(--off-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit {
  text-align: center;
  padding: 1.5rem 1rem;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.benefit p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Heroes family */
.heroes-showcase {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}

.heroes-showcase img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 70%;
}

.heroes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.hero-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.hero-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  background: #f4f7f2;
  position: relative;
  overflow: hidden;
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease);
}

.hero-card:hover .hero-avatar img {
  transform: scale(1.05);
}

.hero-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Partner banner */
.partner-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.partner-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(142, 219, 25, 0.2), transparent 65%);
  pointer-events: none;
}

.partner-banner .lead {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 1.75rem;
}

.segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  color: inherit;
  text-decoration: none;
}

a.segment:hover {
  background: rgba(142, 219, 25, 0.1);
  border-color: rgba(142, 219, 25, 0.3);
  transform: translateY(-2px);
}

.segment-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.segment span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.partner-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.partner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* Stations */
.stations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.station-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.station-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.station-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.station-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.station-media--floor {
  aspect-ratio: 2 / 3;
  padding: 1.25rem 1rem 0.75rem;
}

.station-media--wide {
  aspect-ratio: 4 / 3;
  padding: 1rem;
}

.station-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  opacity: 0.9;
}

.station-placeholder svg {
  width: 80px;
  height: 120px;
}

.station-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.station-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.station-body h3 {
  margin-bottom: 0.5rem;
}

.station-body > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.specs {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  gap: 1rem;
}

.spec-row dt {
  color: var(--text-muted);
}

.spec-row dd {
  font-weight: 600;
  text-align: right;
}

.station-body .btn {
  margin-top: auto;
  width: 100%;
}

/* Detailed how steps */
.detail-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.detail-step:nth-child(even) {
  direction: rtl;
}

.detail-step:nth-child(even) > * {
  direction: ltr;
}

.detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-media--card {
  aspect-ratio: auto;
  height: auto;
  background: transparent;
  box-shadow: var(--shadow);
  align-self: start;
}

.detail-media--card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  background: var(--white);
}

/* Deposit / pre-auth explain */
.deposit-explain {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

.deposit-explain .lead {
  margin: 1rem 0 1.5rem;
}

.deposit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deposit-list li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.deposit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.deposit-list strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.deposit-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.deposit-note a,
.detail-content a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.deposit-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.deposit-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.deposit-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
}

.deposit-card__caption {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.deposit-card__rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 1.5rem 0;
}

.deposit-card__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  text-align: left;
}

.deposit-card__facts dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.2rem;
}

.deposit-card__facts dd {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.detail-content .step-num {
  margin: 0 0 1rem;
}

.detail-content .lead {
  margin-top: 0.75rem;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-hint {
  margin: -0.35rem 0 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}

.form-status.is-success {
  background: var(--green-soft);
  color: var(--navy);
}

.form-status.is-error {
  background: #fde8e8;
  color: #8a1f1f;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info .lead {
  margin-bottom: 2rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.info-item strong {
  display: block;
  margin-bottom: 0.15rem;
}

.info-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Segments page grid (light) */
.segments-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.segment-light {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s var(--ease);
}

.segment-light:hover {
  transform: translateY(-4px);
}

.segment-light .segment-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--green-dark);
}

.segment-light h3 {
  margin-bottom: 0.4rem;
}

.segment-light p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 240px;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.socials {
  display: flex;
  gap: 0.65rem;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

.socials a:hover {
  background: var(--green);
  color: var(--navy);
}

.socials svg {
  width: 16px;
  height: 16px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Utility */
.bg-soft {
  background: var(--off-white);
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .steps-grid,
  .benefits-grid,
  .stations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heroes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .partner-banner,
  .detail-step,
  .contact-layout,
  .deposit-explain {
    grid-template-columns: 1fr;
  }

  .detail-step:nth-child(even) {
    direction: ltr;
  }

  .partner-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .heroes-showcase img {
    aspect-ratio: 16 / 10;
    object-position: center 65%;
  }

  /* Always solid bar so logo/menu stay readable over light sections */
  .site-header {
    background: rgba(7, 19, 31, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    overflow: visible;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 120;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .header-phone {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    order: -1;
  }

  /* Dropdown panel under the header bar, over page content */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 110;
    background: rgba(7, 19, 31, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    margin: 0;
    padding: 0.65rem 1rem 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    font-size: 1.05rem;
    padding: 0.7rem 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    text-align: left;
  }

  .steps-grid,
  .benefits-grid,
  .stations-grid,
  .segments-light,
  .segments {
    grid-template-columns: 1fr;
  }

  .heroes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-visual img {
    aspect-ratio: 16 / 11;
  }
}

/* Legal pages */
.legal {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.legal-body {
  max-width: 720px;
  margin: 0 auto;
}

.legal-body > p.legal-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 2.25rem 0 0.85rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-body a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body strong {
  color: var(--navy);
}

/* Location type pages & hub cards */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--green);
}

.page-hero--compact {
  padding-bottom: 3rem;
}

.locatie-kaart {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.locatie-kaart .kaart-link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-dark);
}

.locatie-kaart:hover {
  transform: translateY(-4px);
}

.type-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.type-copy h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 2rem 0 0.75rem;
}

.type-copy h2:first-child {
  margin-top: 0;
}

.type-copy p {
  color: var(--text-muted);
  line-height: 1.7;
}

.commission-box {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--green-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}

.commission-box h3 {
  margin-bottom: 0.4rem;
}

.commission-box p {
  color: var(--navy);
  margin: 0;
}

.type-media {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}

.type-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}


.city-map {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.city-map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--navy-mid);
}

.city-map__caption {
  margin: 0;
  font-size: 0.85rem;
}

.city-map__caption a {
  color: var(--green);
  font-weight: 600;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.city-pill:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}

.also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.also-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.also-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.also-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.also-card span {
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-subhead {
  display: block;
  margin: 1rem 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
  .type-layout,
  .also-grid {
    grid-template-columns: 1fr;
  }

  .type-media {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-item.has-dropdown {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.15rem 0 0.35rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(142, 219, 25, 0.45);
  }

  .nav-item.has-dropdown.open .nav-dropdown {
    display: flex;
  }

  .nav-dropdown a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
  }
}

/* Powerbanks showcase */
.powerbanks-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(142, 219, 25, 0.12), transparent 55%),
    linear-gradient(165deg, #050b12 0%, #07131f 55%, #0a1828 100%);
  color: var(--white);
}

.powerbanks-showcase {
  margin: 0 auto;
  max-width: 980px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.powerbanks-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.powerbanks-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin: 2rem auto 0;
  text-align: center;
}

.powerbanks-feature {
  padding: 1.15rem 0.85rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.powerbanks-feature__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(142, 219, 25, 0.15);
  color: var(--green);
}

.powerbanks-feature__icon svg {
  width: 22px;
  height: 22px;
}

.powerbanks-feature h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.powerbanks-feature p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .powerbanks-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

/* Blog / nieuws */
.blog-meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.blog-artikel {
  max-width: 720px;
  margin: 0 auto;
}

.blog-artikel h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.blog-artikel h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.kader {
  background: var(--off-white);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
}

.kader p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-artikel p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.65;
}

.artikel-beeld {
  margin: 0 0 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.artikel-beeld img {
  display: block;
  width: 100%;
  height: auto;
}

.tabel-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  background: var(--white);
}

.tabel {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.tabel th,
.tabel td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
  font-size: 0.95rem;
}

.tabel th {
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--off-white);
  color: var(--navy);
}

.tabel tr:last-child td {
  border-bottom: 0;
}

.voetnoot {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.hero-tip {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(142, 219, 25, 0.14), rgba(142, 219, 25, 0.04));
  border: 1px solid rgba(142, 219, 25, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  margin: 2rem 0;
}

.hero-tip img {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
}

.hero-tip-titel {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.hero-tip p {
  margin: 0;
  color: var(--navy);
}

.vinkjes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.vinkjes li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.vinkjes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.artikel-cta {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--off-white);
  border-radius: var(--radius-xl);
  margin: 2.5rem 0 1.5rem;
  border: 1px solid var(--gray-100);
}

.artikel-cta img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

.artikel-cta h2 {
  margin-top: 0;
}

.artikel-cta p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.lees-verder {
  margin-top: 2rem;
}

.lees-verder h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nieuws-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .nieuws-grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nieuws-grid .nieuws-card {
    grid-template-columns: 1fr;
  }

  .nieuws-grid .nieuws-card__media {
    min-height: 200px;
  }
}

.nieuws-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nieuws-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.nieuws-card__media {
  background: var(--navy);
  min-height: 180px;
}

.nieuws-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nieuws-card__body {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.nieuws-card__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.nieuws-card__body h2 {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}

.nieuws-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.nieuws-card__body .kaart-link {
  margin-top: auto;
  padding-top: 0.75rem;
}

@media (max-width: 768px) {
  .nieuws-card {
    grid-template-columns: 1fr;
  }

  .hero-tip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.15rem 1.25rem;
  animation: cookie-in 0.35s var(--ease);
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
}

@keyframes cookie-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.cookie-banner__copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.cookie-banner__copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.cookie-banner__copy a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
}
