@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --primary: #122A44; /* Dark Navy */
  --secondary: #8AB4D7; /* Sky Blue */
  --accent: #F2AA84; /* Soft Peach */
  --accent-hover: #e09871;
  --bg-color: #FDFDFD; /* Off-white */
  --bg-alt: #F4F7F6; /* Soft gray-greenish for sections */
  --text-dark: #2C3E50;
  --text-light: #707B8C;
  --white: #FFFFFF;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --section-padding: 5rem 0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(18, 42, 68, 0.08);
  --shadow-lg: 0 20px 40px rgba(18, 42, 68, 0.12);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

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

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #1a3c61;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: #79a5c8;
  transform: translateY(-3px);
  color: var(--primary);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(253, 253, 253, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

/* Add a subtle shape to hero */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 100%;
  background-color: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 span {
  color: var(--secondary);
  font-style: italic;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

/* Abstract shape behind image */
.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  z-index: 1;
}

/* Centered Hero */
.hero-centered::before {
  display: none;
}

.hero-centered {
  background-color: var(--white);
  padding: 12rem 0 6rem;
  background-image: radial-gradient(circle at center, rgba(138, 180, 215, 0.1) 0%, transparent 70%);
}

.hero-centered .container {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero-centered h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
}

.hero-centered p {
  font-size: 1.35rem;
}

/* Form Styles */
.email-capture-form {
  max-width: 800px; /* Increased from 600px */
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group input {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus {
  outline: 2px solid var(--accent);
}

.form-optin {
  text-align: left;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.form-optin label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  text-align: left; /* Ensure text stays left-aligned */
  max-width: 600px;
  margin: 0 auto;
}

.form-optin input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-optin span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}


/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 800px;
}

.cookie-banner a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-banner button {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .form-group {
    flex-direction: row;
  }
  .form-group input {
    flex: 1;
  }
  .form-group button {
    flex: 0 0 auto;
    padding: 0 2rem;
  }
}

/* Specific Layout Fixes */
.content-card-light {
  background-color: #f8fafc;
  padding: 1.5rem; /* Reduced further to 1.5rem for maximum text space */
  border-radius: var(--radius-lg);
  border: 1px solid rgba(138, 180, 215, 0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  height: 100%;
}

.text-columns-2 {
  column-count: 1;
  gap: 3rem;
}

@media (min-width: 992px) {
  .text-columns-2 {
    column-count: 2;
  }
}

/* Sections */
section {
  padding: var(--section-padding);
}

/* Card Heading Fix */
.card h3 {
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

/* Keuzemenu (Cards) */
.choices {
  background-color: var(--bg-color);
}

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

.card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(138, 180, 215, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.card-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2rem;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  flex-grow: 1;
}

.card .btn {
  margin-top: 1.5rem;
  align-self: center;
}

/* Split Section (Text + List / Image) */
.split-section {
  background-color: var(--bg-alt);
}

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

.split-grid-esther {
  align-items: start;
}

@media (min-width: 992px) {
  .split-grid-esther {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 992px) {
  .split-grid.reverse > *:first-child {
    order: 2;
  }
  .split-grid.reverse > *:last-child {
    order: 1;
  }
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  margin-right: 10px;
  background-color: rgba(242, 170, 132, 0.2);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-color: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
footer {
  background-color: #0b1a2a; /* Darker navy */
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col p, .footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero .container, .split-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image img {
    border-radius: var(--radius-md);
  }
  
  .hero-image::after {
    border-radius: var(--radius-md);
  }

  .feature-list li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 1010;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    z-index: 1005;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }

  /* Mobile Hero Adjustments */
  .hero {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

  .hero-centered {
    padding: 8rem 0 4rem;
  }

  /* Grid layouts collapse to 1 column on mobile to prevent overflow */
  .cards-grid, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Card padding reduction to maximize text space on narrow screens */
  .card, .pricing-card {
    padding: 2.5rem 1.5rem;
  }

  /* Cookie Banner mobile alignment */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    bottom: -350px;
    left: 1rem;
    right: 1rem;
    width: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner.show {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  
  .cookie-banner p {
    font-size: 0.9rem;
  }

  /* Form spacing improvements for mobile */
  .email-capture-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

/* Review Slider */
.reviews-section {
  background-color: var(--bg-alt);
  overflow: hidden;
  position: relative;
  padding: 6rem 0;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 40%;
  height: 100%;
  background-color: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.review-slide {
  min-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.review-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(138, 180, 215, 0.15);
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 30px;
  line-height: 1;
}

.review-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.review-author {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.review-author::before {
  content: '';
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.slider-btn {
  background-color: var(--white);
  border: 1px solid var(--secondary);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.slider-btn:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .review-card {
    padding: 2rem 1.5rem;
  }
  .review-text {
    font-size: 1.05rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.pricing-section:nth-of-type(even) {
  background-color: var(--bg-alt);
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  border: 1px solid rgba(138, 180, 215, 0.2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.pricing-card.premium {
  border: 1px solid rgba(138, 180, 215, 0.2);
  box-shadow: var(--shadow-sm);
}

.pricing-card.premium::before {
  display: none;
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-tag span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: bold;
}

.pricing-card .btn {
  width: 100%;
}

/* Hero Background Animation */
.hero-centered#homeHero {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; /* Higher z-index */
  pointer-events: none;
  will-change: transform;
}

.hero-bg-animation .orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(138, 180, 215, 0.4) 0%, rgba(138, 180, 215, 0) 70%); /* Increased opacity to 0.4 and used a slightly darker blue */
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  animation: orbFloat1 45s ease-in-out infinite alternate;
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  animation: orbFloat2 55s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(5vw, 10vh) scale(1.1);
    opacity: 0.8;
  }
  66% {
    transform: translate(-5vw, 5vh) scale(0.95);
    opacity: 1;
  }
  100% {
    transform: translate(2vw, -5vh) scale(1.05);
    opacity: 0.6;
  }
}

@keyframes orbFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(-10vw, -10vh) scale(1.05);
    opacity: 1;
  }
  66% {
    transform: translate(5vw, -15vh) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-5vw, 5vh) scale(0.9);
    opacity: 0.5;
  }
}

#stardustCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Changed from -2 to 1 */
  pointer-events: none; /* Let clicks pass through to buttons below */
}

/* ==========================================================================
   Christian Sales Page Styling
   ========================================================================== */

/* Groeireis Stappenplan */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.timeline-step {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(138, 180, 215, 0.15);
  position: relative;
  transition: var(--transition);
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--secondary);
  opacity: 0.6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Card quote alignment in problem recognition */
.card-quote {
  margin-top: auto;
  border-top: 1px solid rgba(138, 180, 215, 0.2);
  padding-top: 1.5rem;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Traject feature list alignment fixes */
.traject-list {
  list-style: none;
  margin-top: 2rem;
}

.traject-list li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.7;
}

.traject-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  margin-right: 15px;
  background-color: rgba(242, 170, 132, 0.2);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.traject-list li span {
  display: block;
}

.traject-list li strong {
  color: var(--primary);
  font-weight: 600;
}

/* Resultaten Sectie Premium Slider */
.results-slider-wrapper {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.results-slider-container {
  overflow: hidden;
  width: 100%;
}

.results-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}

.results-slide {
  min-width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
}

.result-premium-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(18, 42, 68, 0.05);
  border: 1px solid rgba(138, 180, 215, 0.15);
  padding: 3.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.result-premium-card:hover {
  box-shadow: 0 20px 50px rgba(18, 42, 68, 0.09);
  border-color: var(--secondary);
}

.result-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(138, 180, 215, 0.1);
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
}

.result-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
}

.result-pill {
  background-color: rgba(138, 180, 215, 0.12);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.result-card-title {
  font-size: 2.2rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.result-details-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.flow-item {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.flow-item strong {
  display: block;
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
  .result-details-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.result-card-example {
  background-color: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 1.75rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.example-label {
  display: block;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.example-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.results-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.results-slider-btn {
  background-color: var(--white);
  border: 1px solid var(--secondary);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.results-slider-btn:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}

.results-slider-dots {
  display: flex;
  gap: 0.75rem;
}

.results-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(138, 180, 215, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.results-slider-dots .dot.active {
  background-color: var(--secondary);
  transform: scale(1.25);
}

/* Wel/Niet Geschikt Sectie */
.suitability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.suitability-col {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(138, 180, 215, 0.15);
}

.suitability-col.unsuitable {
  background-color: #fcfcfc;
}

.suitability-col h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.suitability-list li {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.6;
}

.suitability-list li::before {
  font-weight: bold;
  margin-right: 15px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

.suitability-list.suitable li::before {
  content: '✓';
  color: #10B981;
  background-color: rgba(16, 185, 129, 0.12);
}

.suitability-list.not-suitable li::before {
  content: '✗';
  color: #EF4444;
  background-color: rgba(239, 68, 68, 0.12);
}

/* Vergelijking Waarom Nu */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.compare-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(138, 180, 215, 0.15);
}

.compare-card.negative {
  border-left: 5px solid #EF4444;
}

.compare-card.positive {
  border-left: 5px solid #10B981;
  background-color: rgba(138, 180, 215, 0.05);
}

.compare-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

.compare-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  gap: 0.75rem;
}

.compare-list li .icon {
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 850px;
  margin: 3rem auto 0;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid rgba(138, 180, 215, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--secondary);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 2rem;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.faq-answer-inner p {
  margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* Active FAQ Item styling */
.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* high enough to fit text */
  transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .suitability-grid, .compare-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .suitability-col, .compare-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .result-card {
    padding: 1.75rem 1.5rem;
  }

  .results-slide {
    padding: 0.5rem;
  }

  .result-premium-card {
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  .result-card-title {
    font-size: 1.6rem;
  }

  .result-card-meta {
    padding-bottom: 0.8rem;
  }

  .result-number {
    font-size: 2.5rem;
  }

  .result-pill {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}


