/* ==========================================================================
   Project Site Styles — Shared across all project websites
   ========================================================================== */

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-pattern, var(--eneco-gradient));
  opacity: 0.25;
  z-index: 1;
  mix-blend-mode: multiply;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.55) 45%, rgba(26, 26, 46, 0.15) 100%);
  z-index: 2;
}

/* Noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: var(--space-4xl) 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--eneco-text-light);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-label svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--eneco-text-light);
  margin-bottom: var(--space-lg);
  font-size: clamp(2.25rem, 6vw, 4rem);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--eneco-text-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-xs);
}

/* Hero animation */
.hero-content > * {
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeIn 0.7s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.45s; }
.hero-content > *:nth-child(5) { animation-delay: 0.55s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decorative shapes */
.hero-shapes {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-shape--1 {
  width: 400px;
  height: 400px;
  background: var(--eneco-red);
  right: 0;
  top: -200px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape--2 {
  width: 250px;
  height: 250px;
  background: var(--eneco-orange);
  right: 150px;
  top: 50px;
  animation: float 6s ease-in-out infinite reverse;
}

.hero-shape--3 {
  width: 150px;
  height: 150px;
  background: var(--eneco-yellow);
  right: -30px;
  top: 200px;
  animation: float 10s ease-in-out infinite;
}

.hero-shape--4 {
  width: 80px;
  height: 80px;
  background: var(--eneco-red);
  right: 300px;
  top: -100px;
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(10px, -15px); }
  66% { transform: translate(-5px, 10px); }
}

/* ==========================================================================
   About / Two-Column Section
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col-text h2 {
  margin-bottom: var(--space-lg);
}

.two-col-text p {
  margin-bottom: var(--space-md);
}

.two-col-text p:last-of-type {
  margin-bottom: var(--space-xl);
}

.two-col-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--eneco-warm-gray);
}

.two-col-visual svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Facts & Figures (Counter Section)
   ========================================================================== */
.facts-section {
  background: var(--eneco-gradient);
  position: relative;
  overflow: hidden;
}

.facts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.fact-item {
  text-align: center;
  padding: var(--space-xl);
}

.fact-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--eneco-text-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.fact-suffix {
  font-size: 0.5em;
  font-weight: 600;
  margin-left: 2px;
}

.fact-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E0DCD7;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-2xl);
  padding-left: var(--space-2xl);
}

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

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E0DCD7;
  border: 3px solid var(--eneco-white);
  box-shadow: 0 0 0 2px #E0DCD7;
  z-index: 1;
}

.timeline-item.active .timeline-dot {
  background: var(--eneco-red);
  box-shadow: 0 0 0 2px var(--eneco-red);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-item.completed .timeline-dot {
  background: var(--eneco-green);
  box-shadow: 0 0 0 2px var(--eneco-green);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--eneco-red), 0 0 0 6px rgba(227, 0, 15, 0.2); }
  50% { box-shadow: 0 0 0 2px var(--eneco-red), 0 0 0 12px rgba(227, 0, 15, 0); }
}

.timeline-date {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--eneco-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.timeline-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--eneco-text-primary);
  margin-bottom: var(--space-xs);
}

.timeline-desc {
  color: var(--eneco-text-secondary);
  font-size: 0.9rem;
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--eneco-dark);
  cursor: pointer;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--eneco-dark) 0%, var(--eneco-charcoal) 100%);
}

.video-thumbnail svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--eneco-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(227, 0, 15, 0.4);
  transition: all var(--transition-base);
}

.video-wrapper:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(227, 0, 15, 0.5);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  position: static;
}

.video-caption {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--eneco-text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   Participation Section
   ========================================================================== */
.participation-card {
  background: var(--eneco-warm-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.event-list {
  margin-top: var(--space-xl);
}

.event-item {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition-fast);
  border-radius: var(--radius-md);
}

.event-item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.event-item:last-child {
  border-bottom: none;
}

.event-date-block {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.event-day {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--eneco-red);
  line-height: 1;
}

.event-month {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--eneco-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-details h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.event-details p {
  font-size: 0.9rem;
  color: var(--eneco-text-secondary);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #E0DCD7;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--eneco-text-primary);
  transition: color var(--transition-fast);
}

.accordion-trigger:hover {
  color: var(--eneco-red);
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: var(--space-md);
  transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-content-inner {
  padding-bottom: var(--space-lg);
}

.accordion-content-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-xl);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--eneco-warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  background: var(--eneco-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.form-success.active {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--eneco-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
}

.form-success h3 {
  margin-bottom: var(--space-sm);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
  margin: var(--space-xl) auto 0;
}

.newsletter-form .form-input {
  flex: 1;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--eneco-text-light);
}

.newsletter-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-input:focus {
  border-color: var(--eneco-yellow);
  box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.2);
}

/* ==========================================================================
   Project-specific hero backgrounds
   ========================================================================== */

/* Windpark — sea/wind color tint */
.hero--wind .hero-bg::before {
  background:
    radial-gradient(ellipse 80% 50% at 70% 60%, rgba(0, 119, 200, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 40%, rgba(0, 155, 141, 0.3) 0%, transparent 60%);
  opacity: 0.6;
}

/* Zonnepark — warm sun tones */
.hero--zon .hero-bg::before {
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(255, 176, 0, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 40% 60%, rgba(255, 107, 0, 0.3) 0%, transparent 60%);
  opacity: 0.6;
}

/* Warmtenet — warm red tones */
.hero--warmte .hero-bg::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(227, 0, 15, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 70% 70%, rgba(255, 107, 0, 0.25) 0%, transparent 60%);
  opacity: 0.6;
}

/* Laadinfra — electric blue-green */
.hero--laad .hero-bg::before {
  background:
    radial-gradient(ellipse 70% 50% at 60% 50%, rgba(0, 119, 200, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 40% 50%, rgba(0, 166, 81, 0.3) 0%, transparent 60%);
  opacity: 0.6;
}

/* ==========================================================================
   Decorative SVG illustrations in hero
   ========================================================================== */
.hero-illustration {
  display: none;
}

/* ==========================================================================
   How it works section (warmtenet)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #E0DCD7;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--eneco-gradient);
  color: var(--eneco-text-light);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
}

.step-item h4 {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.step-item p {
  font-size: 0.9rem;
  margin: 0 auto;
}

/* ==========================================================================
   Tariff table (warmtenet)
   ========================================================================== */
.tariff-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tariff-table thead {
  background: var(--eneco-dark);
  color: var(--eneco-text-light);
}

.tariff-table th {
  padding: var(--space-lg);
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
}

.tariff-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid #E0DCD7;
  font-size: 0.95rem;
}

.tariff-table tbody tr:last-child td {
  border-bottom: none;
}

.tariff-table tbody tr:nth-child(even) {
  background: var(--eneco-light-bg);
}

.tariff-highlight {
  color: var(--eneco-green);
  font-weight: 700;
}

/* ==========================================================================
   Calculator (zonnepark)
   ========================================================================== */
.calculator-card {
  background: var(--eneco-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.slider-container {
  margin: var(--space-xl) 0;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.slider-value {
  color: var(--eneco-red);
  font-weight: 700;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #E0DCD7;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--eneco-gradient);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(227, 0, 15, 0.3);
  transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--eneco-gradient);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(227, 0, 15, 0.3);
}

.calc-result {
  background: var(--eneco-light-bg);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-xl);
}

.calc-result-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--eneco-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--space-sm);
  height: 150px;
  margin-top: var(--space-xl);
  padding: 0 var(--space-md);
}

.calc-bar {
  flex: 1;
  background: var(--eneco-gradient);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  min-height: 8px;
  transition: height var(--transition-base);
  position: relative;
}

.calc-bar-label {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--eneco-text-secondary);
  white-space: nowrap;
}

/* ==========================================================================
   Charging station request form (laadinfra)
   ========================================================================== */
.request-form-section {
  background: var(--eneco-light-bg);
}

.request-form-card {
  background: var(--eneco-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   Map placeholder (laadinfra)
   ========================================================================== */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--eneco-warm-gray);
  position: relative;
  box-shadow: var(--shadow-md);
}

.map-placeholder svg {
  width: 100%;
  height: 100%;
}

.map-dots {
  position: absolute;
  inset: 0;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--eneco-red);
  border-radius: 50%;
  border: 2px solid var(--eneco-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.map-dot:hover {
  transform: scale(1.5);
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--eneco-red);
  opacity: 0;
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ==========================================================================
   Smart charging explanation (laadinfra)
   ========================================================================== */
.smart-charge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.smart-charge-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--eneco-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.smart-charge-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--eneco-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.smart-charge-icon svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   Nature section (zonnepark)
   ========================================================================== */
.nature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.nature-card {
  background: var(--eneco-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.nature-card-visual {
  aspect-ratio: 3/2;
  background: var(--eneco-warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nature-card-visual svg {
  width: 60%;
  height: 60%;
  opacity: 0.6;
}

.nature-card-body {
  padding: var(--space-lg);
}

.nature-card-body h4 {
  margin-bottom: var(--space-sm);
}

.nature-card-body p {
  font-size: 0.9rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-illustration {
    display: none;
  }

  .hero-shapes {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-stats {
    gap: var(--space-xl);
    flex-wrap: wrap;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .two-col--reverse {
    direction: ltr;
  }

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

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .steps-grid::before {
    display: none;
  }

  .smart-charge-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline-item {
    padding-left: var(--space-xl);
  }

  .timeline-dot {
    left: -22px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .fact-item {
    padding: var(--space-md);
  }

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