:root {
  --orange: #f68712;
  --orange-hover: #e0780f;
  --navy: #040922;
  --navy-light: #0a1130;
  --text: #4b5563;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --border: #e5e7eb;
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-xl: 4px;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-heading: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

body.has-modal-open {
  overflow: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(246, 135, 18, 0.2);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(246, 135, 18, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.brand-subtitle {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo {
  height: 54px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: clamp(0.9rem, 1.4vw, 1.4rem);
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.site-nav a {
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
}

.site-nav a:hover {
  color: var(--orange);
}

/* Nav Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
  color: var(--orange);
}

.nav-dropdown-toggle .chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle .chevron,
.nav-dropdown-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  margin-top: 0.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(4, 9, 34, 0.08);
  padding: 0.5rem;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  border: 1px solid rgba(4, 9, 34, 0.05);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(246, 135, 18, 0.08);
  color: var(--orange);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__line:nth-child(2) {
  transform: translateY(0.38rem) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle__line:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__line:nth-child(4) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  background: var(--orange);
  color: #fff;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(246, 135, 18, 0.25);
}

.btn:hover {
  background: var(--orange-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(246, 135, 18, 0.35);
}

.btn--contact {
  background: #62b22f;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(98, 178, 47, 0.25);
  border: none;
}

.btn--contact:hover {
  background: #529725;
  color: #fff;
  box-shadow: 0 12px 25px rgba(98, 178, 47, 0.35);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(4, 9, 34, 0.04);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(4, 9, 34, 0.2);
}

.btn--navy:hover {
  background: var(--navy-light);
  box-shadow: 0 12px 25px rgba(4, 9, 34, 0.3);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* Sections */
section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.bg-light {
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.bg-navy {
  background: var(--navy);
}

.orange-band {
  position: relative;
  z-index: 1;
  padding: clamp(6.5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5rem);
  background: var(--orange);
  color: #fff;
}

.orange-band .eyebrow--dark {
  color: rgba(255, 255, 255, 0.8);
}

.orange-band h2 {
  color: #fff;
}

.orange-band__content p:last-child {
  margin-bottom: 0;
}

.news-strip {
  padding: 2rem 0;
  background: rgba(246, 135, 18, 0.08);
  border-top: 1px solid rgba(246, 135, 18, 0.14);
  border-bottom: 1px solid rgba(246, 135, 18, 0.14);
}

.news-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.news-strip__content {
  max-width: 760px;
}

.news-strip__content .eyebrow {
  margin-bottom: 0.4rem;
}

.news-strip__content h2 {
  max-width: none;
  margin-bottom: 0.6rem;
}

.news-strip__content p:last-child {
  margin-bottom: 0;
}

.eia-popup {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 5.2rem);
  z-index: 70;
  width: min(380px, calc(100vw - 2rem));
}

.eia-popup[hidden] {
  display: none;
}

.eia-popup__card {
  position: relative;
  padding: 1rem 1rem 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(246, 135, 18, 0.18);
  box-shadow: 0 20px 44px rgba(4, 9, 34, 0.18);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.eia-popup__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(4, 9, 34, 0.22);
}

.eia-popup__eyebrow {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--orange-hover);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eia-popup__title {
  max-width: none;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.eia-popup__body {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.eia-popup__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.results-band {
  background:
    linear-gradient(135deg, rgba(246, 135, 18, 0.96), rgba(255, 167, 63, 0.92)),
    radial-gradient(circle at top right, rgba(90, 193, 51, 0.18), transparent 35%);
  color: #fff;
}

.results-band h2 {
  color: #fff;
}

.results-band p,
.results-band h3 {
  color: rgba(255, 255, 255, 0.92);
}

.results-band .faq p {
  color: var(--text);
}

.text-white { color: #fff; }
.text-light { color: var(--text-light); }
.text-orange { color: var(--orange); }

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--compact {
  margin-bottom: 2.5rem;
}

.section-intro {
  font-size: 1.15rem;
  max-width: 1000px;
  width: 100%;
  margin-top: 1rem;
}

.section-intro--light {
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(4, 9, 34, 0.65);
  font-size: 0.95rem;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.page-hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at top right, rgba(98, 178, 47, 0.08), transparent 40%),
    radial-gradient(circle at bottom left, rgba(246, 135, 18, 0.08), transparent 40%),
    linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(4, 9, 34, 0.04);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #62b22f 0%, var(--orange) 100%);
}

.page-hero--contact {
  background:
    linear-gradient(rgba(4, 9, 34, 0.65), rgba(4, 9, 34, 0.85)),
    url("../public/images/zetgroep/electrische-truck-02.jpg") center/cover no-repeat;
  color: #fff;
}

.page-hero--image {
  background:
    linear-gradient(rgba(11, 16, 32, 0.6), rgba(11, 16, 32, 0.8)),
    var(--hero-bg, none) var(--hero-pos, center)/var(--hero-size, cover) no-repeat;
  color: #fff;
  border-bottom: none;
}

.page-hero--image h1,
.page-hero--image .breadcrumb,
.page-hero--image .breadcrumb a,
.page-hero--image .eyebrow {
  color: #fff;
}

.page-hero--image .breadcrumb a:hover {
  color: var(--orange);
}

.page-hero--contact h1,
.page-hero--contact .breadcrumb,
.page-hero--contact .breadcrumb a,
.page-hero--contact .eyebrow {
  color: #fff;
}

.page-hero--contact .breadcrumb a:hover {
  color: var(--orange);
}

.page-hero .container {
  display: block;
}

.page-lead {
  max-width: 760px;
  font-size: 1.12rem;
}

.content-layout {
  display: grid;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.content-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(4, 9, 34, 0.03);
  border-top: 4px solid var(--orange);
}

.content-card > *:last-child {
  margin-bottom: 0;
}

.content-card h2,
.content-card h3 {
  max-width: none;
  color: var(--navy);
}

.content-intro {
  display: grid;
  gap: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-intro p:last-child {
  margin-bottom: 0;
}

.content-sections {
  display: grid;
  gap: 2rem;
}

.content-section {
  padding: 2.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(4, 9, 34, 0.05);
  box-shadow: 0 10px 30px rgba(4, 9, 34, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(4, 9, 34, 0.06);
}

.content-section > *:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  color: var(--navy);
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
  max-width: none;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.content-list {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.content-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

.related-section {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(4, 9, 34, 0.08);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.related-link-card {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(4, 9, 34, 0.08);
  box-shadow: 0 8px 20px rgba(4, 9, 34, 0.03);
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.related-link-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related-link-card:hover {
  color: var(--orange);
  border-color: rgba(246, 135, 18, 0.3);
  box-shadow: 0 12px 25px rgba(4, 9, 34, 0.06);
  transform: translateY(-2px);
}

.related-link-card:hover::before {
  opacity: 1;
}

/* Hero */
.hero--electric-blend {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  align-items: center;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  bottom: -4rem;
  z-index: 2;
  background-image: url("./../public/images/sevi/zet-electric-truck-01-home.webp");
  background-size: cover;
  background-position: center center;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 110% 100% at 75% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 110% 100% at 75% 40%, #000 30%, transparent 80%);
}

.hero--electric-blend .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content--panel {
  max-width: 46rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, 0.94);
  border-left: 6px solid var(--orange);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(4, 9, 34, 0.14);
  margin-left: clamp(-1rem, -4vw, -3rem);
}

.hero-content--panel h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

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

/* Cards */
.card {
  position: relative;
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 10px 30px rgba(4, 9, 34, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(4, 9, 34, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-action {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1rem;
}

.card--highlight {
  border-left: 4px solid var(--orange);
  box-shadow: 0 15px 35px rgba(246, 135, 18, 0.1);
}
.card--highlight::before {
  display: none;
}

.card-link-more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  color: #62b22f;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.2s ease, transform 0.2s ease;
  padding-top: 1.5rem;
}

.card-link-more:hover {
  color: #529725;
  transform: translateX(4px);
}

.card-link-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.card a.inline-link::after,
.card a.card-link-more::after,
.value-card a.inline-link::after,
.value-card a.card-link-more::after,
.stat-card a.inline-link::after,
.stat-card a.card-link-more::after,
.content-card a.inline-link::after,
.content-card a.card-link-more::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}

.card--quote {
  background: linear-gradient(180deg, rgba(246, 135, 18, 0.04), #fff);
  border-left: 4px solid rgba(246, 135, 18, 0.3);
}

#voordelen {
  position: relative;
  background:
    linear-gradient(rgba(243, 244, 246, 0.65), rgba(243, 244, 246, 0.65)),
    url("./../public/images/sevi/zet-electric-truck-01.webp") center/cover no-repeat;
  border-top: 1px solid rgba(4, 9, 34, 0.05);
  border-bottom: 1px solid rgba(4, 9, 34, 0.05);
}

.value-card {
  position: relative;
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: none;
  border-left: 4px solid var(--orange);
  box-shadow: 0 15px 35px rgba(4, 9, 34, 0.06);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: rgba(246, 135, 18, 0.15);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -2rem;
  top: 1.5rem;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background: #fff;
  border: 4px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--orange);
  box-shadow: 0 4px 10px rgba(246, 135, 18, 0.2);
  z-index: 2;
}

.timeline-content {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(4, 9, 34, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  background: #fff;
  box-shadow: -2px 2px 2px rgba(4, 9, 34, 0.02);
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 35px rgba(4, 9, 34, 0.08);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--text);
}





.pricing-preview__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}







.stat-card {
  position: relative;
  background: rgba(4, 9, 34, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  backdrop-filter: blur(4px);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: #fff;
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.story-panel {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(4, 9, 34, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.story-panel h3 {
  color: #fff;
}

.story-panel p {
  color: rgba(255, 255, 255, 0.88);
}

.story-panel .btn {
  margin-top: 0.5rem;
}

/* Components */
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eyebrow--dark {
  color: var(--navy);
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(246, 135, 18, 0.14);
  color: var(--orange-hover);
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.about-figure {
  position: relative;
}

.about-layout {
  align-items: start;
}

.about-people {
  display: grid;
  gap: 1.25rem;
}

.about-person-card {
  padding: 2rem;
}

.about-img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 15px 35px rgba(4, 9, 34, 0.08);
  width: 100%;
  height: auto;
}

.about-figure figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.about-figure a {
  color: var(--orange);
}

.about-quote-panel {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  border-left: 6px solid var(--orange);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.5));
  box-shadow: 0 10px 30px rgba(4, 9, 34, 0.04);
}

.about-quote-panel .eyebrow {
  margin-bottom: 0.5rem;
}

.about-quote-panel p:last-child {
  margin-bottom: 0;
  max-width: 780px;
  color: var(--navy);
  font-weight: 500;
}

.price-tag {
  font-size: 1.1rem;
  color: var(--navy);
}

.price-tag strong {
  font-size: 2.5rem;
  color: var(--orange);
}

/* FAQ */
.faq {
  width: 100%;
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(4, 9, 34, 0.02);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq details:hover {
  box-shadow: 0 10px 20px rgba(4, 9, 34, 0.06);
  border-color: rgba(246, 135, 18, 0.3);
}

.faq summary {
  padding: 1.5rem 2rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq summary:hover {
  background-color: rgba(246, 135, 18, 0.02);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq details[open] summary {
  border-bottom: 1px solid var(--bg-light);
  background-color: rgba(246, 135, 18, 0.02);
}

.faq details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq p {
  padding: 1.5rem 2rem;
  margin: 0;
  max-width: 700px;
  color: var(--text);
  line-height: 1.7;
}

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; max-width: 600px; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.text-sm { font-size: 0.85rem; }
.text-muted { color: #6b7280; }
.back-link { display: inline-block; margin-bottom: 2rem; font-weight: 600; color: var(--text); }
.back-link:hover { color: var(--orange); }

.inline-link {
  color: var(--orange-hover);
  font-weight: 700;
}

.inline-link:hover {
  color: var(--orange);
}

.clean-list {
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.clean-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

/* Footer */


.floating-contact {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(90, 193, 51, 1), rgba(112, 210, 78, 0.98));
  color: #fff;
  box-shadow: 0 18px 40px rgba(4, 9, 34, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-contact:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(4, 9, 34, 0.28);
}

.floating-contact:focus-visible {
  outline: 3px solid rgba(246, 135, 18, 0.28);
  outline-offset: 4px;
}

.floating-contact__icon {
  width: 1.7rem;
  height: 1.7rem;
}















/* News modal */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 9, 34, 0.72);
}

.news-modal[hidden] {
  display: none;
}

.news-modal__card {
  position: relative;
  width: min(680px, 100%);
  padding: 2rem;
  border-radius: var(--radius-md);
  background: #fff;
  border-top: 8px solid var(--orange);
  box-shadow: 0 25px 70px rgba(4, 9, 34, 0.25);
}

.news-modal__card h2 {
  max-width: none;
  margin-bottom: 1rem;
}

.news-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(246, 135, 18, 0.12);
  color: var(--orange-hover);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-modal__note {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--navy);
}

.news-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.news-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .hero--electric-blend {
    min-height: 0;
  }

  .hero-bg-layer {
    bottom: -4rem; /* Iets minder ver doorlopen op mobiel */
    background-position: center center;
    -webkit-mask-image: radial-gradient(ellipse 150% 100% at 50% 30%, #000 40%, transparent 95%);
    mask-image: radial-gradient(ellipse 150% 100% at 50% 30%, #000 40%, transparent 95%);
  }

  .hero-content--panel {
    max-width: none;
    margin-left: 0;
  }

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

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .news-strip__inner,
  .story-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  
}

@media (max-width: 900px) {
  .header-inner {
    align-items: stretch;
  }

  .header-brand {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(246, 135, 18, 0.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0;
  }

  .site-nav .btn {
    justify-content: center;
    margin-top: 0.35rem;
  }

  .nav-dropdown-toggle {
    padding: 0.7rem 0;
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 1rem;
    margin-top: 0;
    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none; /* Disable hover on mobile */
  }

  .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  section {
    padding: 3.25rem 0;
  }

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

  

  

  

  .hero-tags,
  .hero-actions,
  .news-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eia-popup {
    width: min(360px, calc(100vw - 1.5rem));
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(max(0.75rem, env(safe-area-inset-bottom)) + 4.8rem);
  }

  .floating-contact {
    width: 3.5rem;
    height: 3.5rem;
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }

  .card,
  .value-card,
  .step-card,
  .stat-card {
    padding: 1.5rem;
  }

  .timeline {
    padding-left: 1.5rem;
    margin-left: 1rem;
  }

  .timeline-badge {
    left: -1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.9rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .about-quote-panel {
    padding: 1.25rem 1.1rem 1.25rem 1.25rem;
  }

  .news-modal__card {
    padding: 1.5rem;
  }
}



/* Personal CTA Card */
.cta-section {
  padding: 4rem 0 6rem;
}

.cta-personal-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 3rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 3.5rem 4rem;
  box-shadow: 0 15px 35px rgba(4, 9, 34, 0.06);
  border: 1px solid rgba(4, 9, 34, 0.05);
  border-right: 6px solid var(--orange);
  max-width: 1000px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-personal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(4, 9, 34, 0.08);
}

.cta-personal-avatar {
  flex-shrink: 0;
}

.cta-personal-avatar img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid #f9fafb;
  box-shadow: 0 8px 20px rgba(4, 9, 34, 0.1);
}

.cta-personal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.cta-personal-content .btn {
  align-self: flex-start;
}

.cta-personal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
  max-width: none;
}

.cta-personal-content p {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  color: var(--text);
  line-height: 1.6;
  max-width: none;
}

@media (max-width: 768px) {
  .cta-personal-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
  .cta-personal-content {
    align-items: center;
  }
  .cta-personal-content .btn {
    align-self: center;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --text: #d7def0;
    --text-light: #9ba7c6;
    --bg: #0b1020;
    --bg-light: #11182d;
    --border: #27314f;
  }
  .cta-personal-card {
    background: #131b33;
    border-color: var(--border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  }
  .cta-personal-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }
  .cta-personal-avatar img {
    border-color: #1a2442;
  }
  .cta-personal-content h2 {
    color: #f3f6ff;
  }

  .eyebrow--dark {
    color: #f3f6ff;
  }
  .nav-dropdown-menu {
    color: #f3f6ff;
    background: #131b33;
    border-color: var(--border);
  }
  .nav-dropdown-menu a {
    color: #f3f6ff;
  }
  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.active {
    background: rgba(246, 135, 18, 0.15);
  }
  .hero-content--panel {
    background: rgba(19, 27, 51, 0.94);
  }
  .timeline-badge {
    background: #131b33;
  }
  .timeline-content {
    background: #131b33;
  }
  .timeline-content::before {
    background: #131b33;
  }
  .timeline-content:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  }
  .timeline-content h3 {
    color: #f3f6ff;
  }
  .number {
    background: rgba(246, 135, 18, 0.2);
  }
  .price-tag {
    color: #f3f6ff;
  }
  .faq details[open] summary {
    background-color: rgba(246, 135, 18, 0.1);
  }
  .faq summary:hover {
    background-color: rgba(246, 135, 18, 0.1);
  }
  .contact-info h2, .contact-detail-item h3, .form-group label {
    color: #f3f6ff;
  }
  .contact-detail-item p, .contact-detail-item ul {
    color: var(--text);
  }
  .news-modal__card {
    background: #131b33;
  }
  .news-modal__card h2 {
    color: #f3f6ff;
  }
  .news-modal__note {
    color: #f3f6ff;
  }
  .news-modal__close {
    color: #f3f6ff;
  }
  .page-hero--contact {
    background:
      linear-gradient(rgba(11, 16, 32, 0.85), rgba(11, 16, 32, 0.95)),
      url("../public/images/zetgroep/electrische-truck-02.jpg") center/cover no-repeat;
  }


  body {
    background: var(--bg);
    color: var(--text);
  }

  h1,
  h2,
  h3,
  .site-nav,
  .btn--outline,
  .faq summary,
  .hero-figure figcaption,
  .breadcrumb,
  .story-panel .btn,
  .about-quote-panel p:last-child,
  .content-card h2,
  .content-card h3,
  .content-section h2,
  .content-section h3,
  .related-link-card {
    color: #f3f6ff;
  }

  .logo {
    content: url("../public/images/sevi/footer-logo.webp");
  }
  
  header {
    background: rgba(9, 14, 30, 0.92);
    border-bottom-color: rgba(246, 135, 18, 0.18);
  }

  .menu-toggle {
    background: #141d36;
    border-color: var(--border);
    color: #f3f6ff;
  }

  .bg-light,
  .page-hero:not(.page-hero--image):not(.page-hero--contact) {
    background: linear-gradient(180deg, #10172c 0%, #0b1020 100%);
  }

  .hero {
    background:
      radial-gradient(circle at top left, rgba(246, 135, 18, 0.18), transparent 38%),
      linear-gradient(180deg, #10172c 0%, #0b1020 100%);
  }

  .news-strip {
    background: rgba(246, 135, 18, 0.12);
    border-top-color: rgba(246, 135, 18, 0.22);
    border-bottom-color: rgba(246, 135, 18, 0.22);
  }

  #voordelen {
    background:
      linear-gradient(rgba(11, 16, 32, 0.65), rgba(11, 16, 32, 0.65)),
      url("./../public/images/sevi/zet-electric-truck-01.webp") center/cover no-repeat;
    border-top-color: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }

  .card,
  .value-card,
  .step-card,
  .stat-card,
  .content-card,
  .content-section,
  .related-link-card,
  .hero-figure figcaption,
  .menu-toggle,
  .story-panel,
  .faq details {
    background: #131b33;
    border-color: var(--border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  }

  .related-link-card:hover {
    color: #fff;
    border-color: rgba(246, 135, 18, 0.4);
  }
  
  .card:hover,
  .value-card:hover,
  .step-card:hover,
  .stat-card:hover,
  .content-card:hover,
  .content-section:hover,
  .related-link-card:hover,
  .hero-figure figcaption:hover,
  .menu-toggle:hover,
  .story-panel:hover,
  .faq details:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }
  
  .card--quote,
  .value-card,
  .related-link-card,
  .about-quote-panel {
    background: linear-gradient(180deg, #2a1c17, #131b33);
  }

  .hero-tag,
  .client-card span {
    background: rgba(246, 135, 18, 0.18);
    color: #f3f6ff;
  }

  .text-muted,
  .about-figure figcaption,
  .footer-tagline,
  .section-intro,
  .page-lead,
  .news-strip__content p,
  .content-card,
  .content-section,
  .story-grid p {
    color: var(--text);
  }

  .story-panel p,
.results-band p,
.results-band h3,
.section-intro--light {
  color: rgba(243, 246, 255, 0.84);
}
  .btn--navy {
    background: #27314f;
    color: #f3f6ff;
  }
  .btn--navy:hover {
    background: #3a476d;
  }
  .btn--outline {
    border-color: var(--border);
  }

  .btn--outline:hover {
    background: #1a2442;
    color: #fff;
  }

  .floating-contact {
    color: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  }
  .floating-contact:hover {
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
  }

  .eia-popup__card {
    background: #131b33;
    border-color: var(--border);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  }
  .eia-popup__card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  }

  .eia-popup__title,
  .eia-popup__body,
  .eia-popup__close {
    color: #f3f6ff;
  }

  .faq details,
  .faq details:first-child,
  .site-nav {
    border-color: var(--border);
  }

  
}

/* Contact Page Form */
.contact-section {
  padding: 5rem 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.contact-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-detail-item p,
.contact-detail-item ul {
  color: var(--text);
  line-height: 1.6;
}

.contact-detail-item a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-item a:hover {
  color: var(--orange-hover);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-list li::before {
  content: "•";
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.contact-form-wrapper {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(4, 9, 34, 0.08);
  border-top: 6px solid var(--orange);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246, 135, 18, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.btn--submit {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (prefers-color-scheme: dark) {
  .contact-form-wrapper {
    background: #131b33;
    border-color: var(--border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(4, 9, 34, 0.18);
    border-color: rgba(255, 255, 255, 0.22);
    color: #f3f6ff;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    background: #131b33;
    border-color: var(--orange);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .contact-info h2,
  .contact-detail-item h3,
  .form-group label {
    color: #f3f6ff;
  }
}

/* Footer */
footer {
  padding: 3rem 0 2rem;
  background: var(--orange);
  color: #fff;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(98, 178, 47, 0.4)' d='M0,0 L650,0 C800,100 600,220 750,320 L0,320 Z'/%3E%3Cpath fill='%2362b22f' d='M0,0 L600,0 C750,100 550,220 700,320 L0,320 Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: left center;
  pointer-events: none;
  z-index: 0;
}

.footer-top, .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand .footer-logo {
  height: auto;
  width: 120px;
  max-width: 100%;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-details a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-details a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-details .separator {
  opacity: 0.5;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-details .separator {
    display: none;
  }
}

/* FAQ in results band */
.results-band .faq details {
  background: #fff;
  color: var(--navy);
}

.results-band .faq summary {
  color: var(--navy);
}

.results-band .faq p {
  color: var(--text);
}

.results-band .eyebrow--dark {
  color: rgba(255, 255, 255, 0.9);
}

@media (prefers-color-scheme: dark) {
  .results-band .faq details {
    background: #131b33;
    color: #f3f6ff;
  }
  
  .results-band .faq summary {
    color: #f3f6ff;
  }
  
  .results-band .faq p {
    color: var(--text);
  }
}


.page-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(4, 9, 34, 0.08);
}

.nav-prev, .nav-next {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(4, 9, 34, 0.08);
  box-shadow: 0 8px 20px rgba(4, 9, 34, 0.03);
  text-decoration: none;
  color: var(--navy);
  transition: all 0.3s ease;
  flex: 1;
}

.nav-prev:hover, .nav-next:hover {
  background: #62b22f;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(98, 178, 47, 0.25);
  transform: translateY(-2px);
}

.nav-next {
  text-align: right;
  justify-content: flex-end;
}

.nav-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 0.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.nav-prev:hover .nav-label,
.nav-next:hover .nav-label {
  color: rgba(255, 255, 255, 0.9);
}

.nav-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav-prev:hover .nav-icon {
  transform: translateX(-4px);
}

.nav-next:hover .nav-icon {
  transform: translateX(4px);
}

@media (prefers-color-scheme: dark) {
  .nav-prev, .nav-next {
    background: #131b33;
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  .nav-label {
    color: var(--orange);
  }
  .nav-prev:hover, .nav-next:hover {
    background: #1a2442;
    border-color: var(--orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 768px) {
  .page-navigation {
    flex-direction: column;
  }
}


/* Subsidy List View */
.subsidy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subsidy-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(4, 9, 34, 0.08);
  box-shadow: 0 4px 15px rgba(4, 9, 34, 0.02);
  text-decoration: none;
  color: var(--navy);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

.subsidy-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subsidy-list-item:hover {
  border-color: rgba(246, 135, 18, 0.3);
  box-shadow: 0 8px 25px rgba(4, 9, 34, 0.06);
  transform: translateY(-2px);
}

.subsidy-list-item:hover::before {
  opacity: 1;
}

.subsidy-list-content {
  flex: 1;
}

.subsidy-list-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
  transition: color 0.3s ease;
}

.subsidy-list-item:hover .subsidy-list-content h3 {
  color: var(--orange);
}

.subsidy-list-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subsidy-list-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #62b22f;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.subsidy-list-item:hover .subsidy-list-action {
  color: #529725;
}

.subsidy-list-action svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.subsidy-list-item:hover .subsidy-list-action svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .subsidy-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
}


@media (prefers-color-scheme: dark) {
  .subsidy-list-item {
    background: #131b33;
    border-color: var(--border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #f3f6ff;
  }
  .subsidy-list-content h3 {
    color: #f3f6ff;
  }
  .subsidy-list-item:hover {
    background: #1a2442;
    border-color: var(--orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
}


.footer-company {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-end;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: right;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-company {
    align-items: flex-start;
  }
  .footer-links {
    text-align: left;
  }
}

@media (max-width: 768px) {

}
