/**
 * GRIP Facility - Clean CSS
 * Built from design system: .non-code/Documentation/Website/DESIGN-SYSTEM.md
 *
 * Sections:
 * 1. Design Tokens
 * 2. Base & Typography
 * 3. Homepage Hero
 * 4. Platform Hero (BEM)
 * 5. Logo Slider
 * 6. Stats Section
 * 7. Feature Cards
 * 8. Flow/Steps
 * 9. FAQ Accordion
 * 10. CTA Banner
 * 11. Founder Section
 * 12. Functional Section
 * 13. Video Section
 * 14. Decorative Circles
 * 15. Utilities
 */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Primary Colors */
  --grip-blue: #006BFF;
  --grip-orange: #FF4B2A;
  --grip-red: #E0341B;
  --grip-white: #FFFFFF;

  /* Neutral Colors */
  --grip-dark: #0F172A;
  --grip-dark-2: #0A0C10;
  --grip-muted: #6B7280;
  --grip-muted-text: rgba(15, 23, 42, 0.70);
  --grip-border: #E5E7EB;
  --grip-light: #F8FAFC;

  /* Typography */
  --font-family: 'Poppins', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing */
  --section-padding: 4rem;
  --container-max: 1120px;
  --text-max: 620px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* ==========================================================================
   2. BASE & TYPOGRAPHY
   ========================================================================== */

.grip-section {
  font-family: var(--font-family);
  color: var(--grip-dark);
  line-height: 1.5;
}

.grip-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Global link styling - remove ALL underlines EVERYWHERE */
/* Override Astra's .ast-single-post .entry-content a{text-decoration:underline} */
body.ast-single-post .entry-content a,
body.ast-single-post .entry-content a:link,
body.ast-single-post .entry-content a:visited,
body.ast-single-post .entry-content a:hover,
body.ast-single-post .entry-content a:active,
.ast-single-post .entry-content a,
.ast-single-post .entry-content a:link,
.ast-single-post .entry-content a:visited,
.ast-single-post .entry-content a:hover,
.ast-single-post .entry-content a:active,
a,
a:link,
a:visited,
a:hover,
a:active,
.entry-content a,
.entry-content a:link,
.entry-content a:visited,
.entry-content a:hover,
.entry-content a:active,
.wp-block-html a,
.wp-block-html a:link,
.wp-block-html a:visited,
.wp-block-html a:hover,
.wp-block-html a:active,
.hero-home a,
.hero-home a:link,
.hero-home a:visited,
.hero-home a:hover,
.hero-home a:active,
.grip-section a,
.grip-section a:link,
.grip-section a:visited,
.grip-section a:hover,
.grip-section a:active,
.gf-block2-section a,
.gf-block2-section a:link,
.gf-block2-section a:visited,
.grip-functional-section a,
.grip-functional-section a:link,
.grip-functional-section a:visited,
.grip-founder-section a,
.grip-founder-section a:link,
.grip-founder-section a:visited,
.grip-pt-section a,
.grip-pt-section a:link,
.grip-pt-section a:visited,
.cta-banner a,
.cta-banner a:link,
.cta-banner a:visited,
.cta-banner a:hover,
.cta-banner a:active,
.cta-banner .cta-btn,
.cta-banner .cta-btn:link,
.cta-banner .cta-btn:visited,
.cta-banner .cta-btn:hover,
div.cta-banner a.cta-btn {
  text-decoration: none !important;
}

/* ==========================================================================
   3. HOMEPAGE HERO (Blue with PNG overlay)
   ========================================================================== */

.hero-home {
  position: relative;
  width: 100%;
  padding: 7rem 0 6rem;
  background: var(--grip-blue);
  color: var(--grip-white);
  font-family: var(--font-family);
  overflow: hidden;
}

/* Overlay PNG - zelfde stijl als Platform Hero */
.hero-home::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 55vw;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/01/ov1.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  width: min(100% - 3rem, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--grip-white);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  width: fit-content;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--grip-orange);
  border-radius: 50%;
}

.hero-home h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--grip-white);
  margin: 0;
}

.hero-highlight {
  color: var(--grip-orange);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--grip-white);
  opacity: 0.95;
  line-height: 1.55;
  max-width: 36rem;
  margin: 0;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grip-white);
  color: var(--grip-blue);
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  transition: transform 0.2s ease;
  width: fit-content;
}

.hero-btn-primary::after {
  content: "→";
  margin-left: 0.5rem;
  font-size: 1.15rem;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grip-white);
  font-size: 0.92rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  opacity: 0.9;
  width: fit-content;
}

.hero-cta-secondary:hover {
  opacity: 1;
}

.hero-cta-link,
.hero-cta-link:link,
.hero-cta-link:visited {
  color: var(--grip-white) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}

.hero-cta-link:hover {
  border-color: var(--grip-white);
  text-decoration: none !important;
}

.hero-cta-note {
  font-size: 0.82rem;
  color: var(--grip-white);
  opacity: 0.85;
  margin-top: 0.5rem;
}

/* Hero Cards */
.hero-card {
  background: var(--grip-white);
  color: var(--grip-dark);
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem 1.2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 18px 38px rgba(0,0,0,0.25);
  position: relative;
  z-index: 4;
}

.hero-card-label {
  font-size: 0.76rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.8rem;
  opacity: 0.7;
  color: var(--grip-dark);
}

.hero-card-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 0.9rem;
}

.hero-card-image img {
  width: 100%;
  display: block;
}

.hero-card-footer {
  font-size: 0.78rem;
  opacity: 0.65;
  color: var(--grip-dark);
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-home h1 {
    font-size: 2.5rem;
  }
  .hero-home::after {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .hero-home {
    padding: 5.5rem 0 4rem;
  }
  .hero-home h1 {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-home::after {
    width: 120px;
    height: 120px;
  }
}

/* ==========================================================================
   4. PLATFORM HERO (BEM Style)
   ========================================================================== */

.hero.hero--contract {
  position: relative;
  padding: 88px 16px 96px;
  background: var(--grip-orange);
  color: var(--grip-white);
  font-family: var(--font-family);
  overflow: hidden;
}

.hero.hero--contract::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 55vw;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/01/ov1.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.hero__bg-circles {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero__bg-circles--left::before,
.hero__bg-circles--left::after,
.hero__bg-circles--right::before,
.hero__bg-circles--right::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero__bg-circles--left::before {
  width: 88px;
  height: 88px;
  background: var(--grip-red);
  top: -24px;
  left: -18px;
}

.hero__bg-circles--left::after {
  width: 40px;
  height: 40px;
  border: 3px solid var(--grip-white);
  background: var(--grip-blue);
  top: 80px;
  left: 56px;
}

.hero__bg-circles--right::before {
  width: 72px;
  height: 72px;
  background: var(--grip-blue);
  bottom: 42px;
  right: 19%;
}

.hero__bg-circles--right::after {
  width: 52px;
  height: 52px;
  background: var(--grip-white);
  bottom: -18px;
  right: 6%;
}

.hero__overlay {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  z-index: 3;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--grip-blue);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  color: var(--grip-white);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 0 0 16px 0;
  color: var(--grip-white);
}

.hero__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 480px;
  margin: 0 0 28px 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero__btn--primary {
  background: var(--grip-white);
  color: var(--grip-blue);
}

.hero__btn--primary:hover {
  background: #F0F7FF;
  transform: translateY(-2px);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-medium);
}

.hero__meta-text {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Hero Media */
.hero__media {
  position: relative;
}

.hero__media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero__video {
  width: 100%;
  height: auto;
  display: block;
}

.hero__media-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--grip-white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
}

/* Hero Variant: Blue (Financieel beheer) */
.hero.hero--blue {
  background: var(--grip-blue);
}

.hero.hero--blue::after {
  background-image: url("/wp-content/uploads/2025/01/ov1.png");
  opacity: 0.85;
}

.hero.hero--blue .hero__eyebrow {
  background: rgba(255, 255, 255, 0.2);
}

.hero.hero--blue .hero__bg-circles--left::before {
  background: var(--grip-orange);
}

.hero.hero--blue .hero__bg-circles--left::after {
  background: var(--grip-red);
  border-color: var(--grip-white);
}

.hero.hero--blue .hero__bg-circles--right::before {
  background: var(--grip-orange);
}

.hero.hero--blue .hero__bg-circles--right::after {
  background: var(--grip-white);
}

/* Hero Variant: Dark (Kwaliteitsbeheer) */
.hero.hero--dark {
  background: var(--grip-dark);
}

.hero.hero--dark::after {
  background-image: url("/wp-content/uploads/2025/01/ov1.png");
  opacity: 0.6;
}

.hero.hero--dark .hero__eyebrow {
  background: var(--grip-orange);
}

.hero.hero--dark .hero__bg-circles--left::before {
  background: var(--grip-blue);
}

.hero.hero--dark .hero__bg-circles--left::after {
  background: var(--grip-orange);
  border-color: var(--grip-white);
}

.hero.hero--dark .hero__bg-circles--right::before {
  background: var(--grip-red);
}

.hero.hero--dark .hero__bg-circles--right::after {
  background: var(--grip-blue);
}

/* Hero Responsive */
@media (max-width: 900px) {
  .hero.hero--contract,
  .hero.hero--blue,
  .hero.hero--dark {
    padding: 60px 16px 72px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__meta {
    justify-content: center;
  }
}

/* ==========================================================================
   4b. LOGO WRAPPER (Platform pages legacy)
   ========================================================================== */

.logo-wrapper {
  background: var(--grip-dark-2);
  padding: 2.5rem 1rem;
  text-align: center;
  overflow: hidden;
}

.logo-wrapper h2 {
  color: var(--grip-white);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  margin: 0 0 1.5rem 0;
  opacity: 0.8;
}

.logo-wrapper .logo-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.logo-wrapper .fade-left,
.logo-wrapper .fade-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.logo-wrapper .fade-left {
  left: 0;
  background: linear-gradient(to right, var(--grip-dark-2), transparent);
}

.logo-wrapper .fade-right {
  right: 0;
  background: linear-gradient(to left, var(--grip-dark-2), transparent);
}

.logo-wrapper .logo-track {
  display: flex;
  gap: 4rem;
  animation: scrollLogos 30s linear infinite;
  align-items: center;
  white-space: nowrap;
}

.logo-wrapper .logo-track img {
  height: 50px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-wrapper .logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ==========================================================================
   5. LOGO SLIDER
   ========================================================================== */

.logo-slider-section {
  background: var(--grip-dark-2);
  padding: 2.5rem 0;
  overflow: hidden;
}

.logo-slider-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.logo-slider-track {
  display: flex;
  gap: 4rem;
  animation: scrollLogos 30s linear infinite;
  align-items: center;
  white-space: nowrap;
}

.logo-slider-track img {
  height: 40px; /* DESIGN-COMPONENTS.md: Logo height 40px */
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-slider-track img.logo-tu {
  height: 30px;
}

.logo-slider-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-fade-left,
.logo-fade-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.logo-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--grip-dark-2), transparent);
}

.logo-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--grip-dark-2), transparent);
}

/* ==========================================================================
   6. STATS SECTION
   ========================================================================== */

.grip-stats {
  padding: var(--section-padding) 1rem;
  background: var(--grip-white);
  font-family: var(--font-family);
}

.grip-stats__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.grip-stats__header {
  text-align: center;
  margin-bottom: 3rem;
}

.grip-stats__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grip-blue);
  margin-bottom: 0.75rem;
}

.grip-stats__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
  margin: 0 0 0.75rem 0;
}

.grip-stats__subtitle {
  font-size: 1rem;
  color: var(--grip-muted-text);
  max-width: var(--text-max);
  margin: 0 auto;
}

.grip-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.grip-stats__card {
  background: var(--grip-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grip-stats__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.grip-stats__card--highlight {
  background: var(--grip-blue);
  color: var(--grip-white);
}

.grip-stats__chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 107, 255, 0.1);
  color: var(--grip-blue);
  margin-bottom: 1rem;
}

.grip-stats__card--highlight .grip-stats__chip {
  background: rgba(255, 255, 255, 0.2);
  color: var(--grip-white);
}

.grip-stats__value {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grip-stats__label {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  margin: 0 0 0.5rem 0;
}

.grip-stats__description {
  font-size: 0.9rem;
  color: var(--grip-muted);
  line-height: 1.5;
  margin: 0;
}

.grip-stats__card--highlight .grip-stats__description {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   6b. KPI SECTION (Platform pages compact stats)
   ========================================================================== */

.kpi-section {
  padding: 2.5rem 1rem;
  background: var(--grip-white);
  font-family: var(--font-family);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.kpi-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.kpi-number {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-blue);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.kpi-label {
  font-size: 0.9rem;
  color: var(--grip-muted-text);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   6c. FINANCE LOGO SECTION (Blue logos variant)
   ========================================================================== */

.finance-logo-section {
  background: var(--grip-light);
  padding: 2.5rem 1rem;
  overflow: hidden;
}

.finance-logo-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.finance-logo-fade-left,
.finance-logo-fade-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.finance-logo-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--grip-light), transparent);
}

.finance-logo-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--grip-light), transparent);
}

.finance-logo-track {
  display: flex;
  gap: 4rem;
  animation: scrollLogos 30s linear infinite;
  align-items: center;
  white-space: nowrap;
}

.finance-logo-track img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.finance-logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ==========================================================================
   7. FEATURE CARDS
   ========================================================================== */

.feature-section {
  padding: var(--section-padding) 1rem;
  background: var(--grip-white);
  font-family: var(--font-family);
}

.feature-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.feature-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-intro {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grip-blue);
  margin-bottom: 0.75rem;
}

.feature-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  color: var(--grip-white);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Prevent link hover color changes on feature cards */
a.feature-card,
a.feature-card:hover,
a.feature-card:focus,
a.feature-card:visited {
  text-decoration: none;
}

a.feature-card:hover .feature-title,
a.feature-card:hover .feature-desc {
  color: inherit !important;
}

/* Feature card backgrounds - 4 GRIP colors */
.feature-card.bg-blue { background: var(--grip-blue); }
.feature-card.bg-orange { background: var(--grip-orange); }
.feature-card.bg-dark1 { background: var(--grip-dark); }
.feature-card.bg-dark2 { background: var(--grip-dark-2); }
.feature-card.bg-light {
  background: var(--grip-light);
  color: var(--grip-dark);
}

/* Feature card overlay - pattern on each card */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/01/ov1.png");
  background-size: 120%;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

/* Darker cards get stronger overlay */
.feature-card.bg-dark1::before,
.feature-card.bg-dark2::before {
  background-size: 160%;
  opacity: 0.4;
}

/* Light card gets subtle overlay */
.feature-card.bg-light::before {
  opacity: 0.08;
}

/* Feature card content above overlay */
.feature-card .feature-title,
.feature-card .feature-desc,
.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 2;
}

/* Feature card text colors - white on colored, dark on light */
.feature-card .feature-title,
.feature-card h3 {
  color: #ffffff !important;
}

.feature-card.bg-light .feature-title,
.feature-card.bg-light h3 {
  color: var(--grip-dark) !important;
}

.feature-card.bg-light .feature-desc {
  color: var(--grip-muted) !important;
  opacity: 1;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin: 0 0 0.75rem 0;
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* ==========================================================================
   8. FLOW/STEPS
   ========================================================================== */

.flow-section {
  padding: var(--section-padding) 1rem;
  background: var(--grip-light);
  font-family: var(--font-family);
}

.flow-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.flow-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.flow-eyebrow {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grip-blue);
  margin-bottom: 0.75rem;
}

.flow-intro {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
  margin: 0;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--grip-border);
}

.flow-step:last-child {
  border-bottom: none;
}

.step-badge {
  width: 48px;
  height: 48px;
  background: var(--grip-blue);
  color: var(--grip-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--grip-dark);
  margin: 0 0 0.5rem 0;
}

.step-text {
  font-size: 0.95rem;
  color: var(--grip-muted-text);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   8b. STEPS SECTION (Kwaliteitsbeheer horizontal cards)
   ========================================================================== */

.steps-section {
  padding: var(--section-padding) 1rem;
  background: var(--grip-dark);
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
}

/* Steps section overlay pattern */
.steps-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/01/ov1.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.steps-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
}

.steps-heading {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-white);
  text-align: center;
  margin: 0 0 1rem 0;
}

.steps-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: var(--text-max);
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-orange);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-card .step-title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--grip-white);
  margin: 0 0 0.75rem 0;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. FAQ ACCORDION
   ========================================================================== */

.grip-faq-section {
  padding: var(--section-padding) 1rem;
  background: var(--grip-white);
  font-family: var(--font-family);
}

.grip-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.grip-faq-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
  text-align: center;
  margin: 0 0 2.5rem 0;
}

.grip-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.grip-faq-item {
  border-bottom: 1px solid var(--grip-border);
}

.grip-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--grip-dark);
  transition: color 0.2s ease;
}

.grip-faq-question:hover {
  color: var(--grip-blue);
}

.grip-faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--grip-muted);
  transition: transform 0.2s ease;
}

.grip-faq-item.is-open .grip-faq-icon {
  transform: rotate(45deg);
}

/* DESIGN-COMPONENTS.md: Open state krijgt blauwe border links */
.grip-faq-item.is-open {
  border-left: 3px solid var(--grip-blue);
  padding-left: 1rem;
  margin-left: -1rem;
}

.grip-faq-answer {
  display: none;
  padding: 0 0 1.25rem 0;
  font-size: 0.95rem;
  color: var(--grip-muted-text);
  line-height: 1.6;
}

.grip-faq-item.is-open .grip-faq-answer {
  display: block;
}

/* ==========================================================================
   10. CTA BANNER
   ========================================================================== */

.cta-banner {
  background: var(--grip-blue);
  padding: 3rem 1.5rem;
  font-family: var(--font-family);
}

.cta-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
  color: var(--grip-white);
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  margin: 0 0 1rem 0;
}

.cta-inner p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0 0 1.5rem 0;
}

.cta-btn,
.cta-btn:link,
.cta-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grip-white);
  color: var(--grip-blue) !important;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.cta-btn:hover {
  background: #F0F7FF;
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* ==========================================================================
   11. FOUNDER SECTION (Red shell with decorative circles)
   ========================================================================== */

.grip-founder-section {
  font-family: var(--font-family);
  background: var(--grip-light);
  padding: 5.5rem 1.6rem 6rem;
}

.grip-founder-shell {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  background: var(--grip-red);
  color: var(--grip-white);
  border-radius: 34px;
  padding: 3.4rem 3rem 3.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.35);
}

/* DESIGN-COMPONENTS.md: Overlay consistent met hero - 0.22 opacity */
.grip-founder-shell > .grip-founder-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  border-radius: 34px;
}

.grip-founder-shell::before,
.grip-founder-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.75;
}

.grip-founder-shell::before {
  width: 95px;
  height: 95px;
  background: var(--grip-orange);
  top: -30px;
  left: -30px;
}

.grip-founder-shell::after {
  width: 70px;
  height: 30px;
  border: 3px solid var(--grip-white);
  background: transparent;
  bottom: -25px;
  right: 40px;
}

.grip-founder-inner {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
  overflow: visible;
}

@media (min-width: 900px) {
  .grip-founder-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.grip-founder-content {
  position: relative;
}

.founder-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  background: rgba(255, 255, 255, 0.16);
  color: var(--grip-white);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.founder-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  color: var(--grip-white);
  margin: 0 0 1.4rem 0;
}

.founder-text {
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  color: var(--grip-white);
  opacity: 0.96;
}

.founder-meta {
  margin-top: 1.7rem;
}

.founder-name {
  font-weight: var(--font-weight-semibold);
  font-size: 1.05rem;
  color: var(--grip-white);
  margin: 0;
}

.founder-role {
  font-size: 0.95rem;
  opacity: 0.9;
  color: var(--grip-white);
  margin: 0;
}

.grip-founder-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
  background: rgba(15, 23, 42, 0.18);
  border-radius: 26px;
  padding: 1.8rem;
  border: 1px solid rgba(248, 250, 252, 0.65);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  max-width: 420px;
  width: 100%;
}

.founder-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .grip-founder-section {
    padding: 4.2rem 1.4rem 4.8rem;
  }
  .grip-founder-shell {
    width: 100%;
    padding: 2.6rem 1.8rem 3rem;
    border-radius: 28px;
  }
  .grip-founder-inner {
    gap: 2.3rem;
  }
  .grip-founder-visual {
    order: -1;
  }
  .founder-title {
    font-size: 1.9rem;
  }
  .founder-text {
    font-size: 0.98rem;
  }
}

/* ==========================================================================
   12. FUNCTIONAL SECTION (Homepage features)
   ========================================================================== */

.grip-functional-section {
  padding: 5.5rem 1.6rem 6.5rem;
  background: var(--grip-light);
  font-family: var(--font-family);
}

.grip-functional-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.grip-functional-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.grip-functional-intro {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grip-blue);
  margin-bottom: 0.75rem;
}

.grip-functional-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ==========================================================================
   13. VIDEO SECTION
   ========================================================================== */

.grip-video-wrapper {
  padding: var(--section-padding) 1rem;
  background: var(--grip-dark-2);
  font-family: var(--font-family);
}

.grip-video-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.grip-video-label {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grip-blue);
  margin-bottom: 0.75rem;
}

.grip-video-title {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-white);
  margin: 0 0 2rem 0;
}

.grip-video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.grip-video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* ==========================================================================
   14. DECORATIVE CIRCLES
   ========================================================================== */

.circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.circle-red {
  background: var(--grip-red);
}

.circle-orange {
  background: var(--grip-orange);
}

.circle-blue {
  background: var(--grip-blue);
}

.circle-white {
  background: var(--grip-white);
}

/* ==========================================================================
   15. UTILITIES & RESPONSIVE
   ========================================================================== */

/* Full width sections */
.entry-content .wp-block-html {
  max-width: 100% !important;
  width: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .grip-stats__grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .grip-founder-inner {
    grid-template-columns: 1fr;
  }

  .grip-functional-layout {
    grid-template-columns: 1fr;
  }

  .logo-slider-track img {
    height: 32px; /* Proportioneel: 40px desktop → 32px mobile */
  }

  .logo-slider-track img.logo-tu {
    height: 26px;
  }
}

@media (max-width: 480px) {
  .hero-home h1 {
    font-size: 1.75rem;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .grip-stats__value {
    font-size: 2rem;
  }
}

/* ==========================================================================
   16. HOMEPAGE HERO (Blue version with PNG overlay)
   ========================================================================== */

.hero-home--blue {
  position: relative;
  width: 100%;
  padding: 7rem 0 6rem;
  background: var(--grip-blue);
  color: var(--grip-white);
  font-family: var(--font-family);
  overflow: hidden;
}

.hero-home--blue::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  background-image: url('/wp-content/uploads/2025/01/ov1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
  pointer-events: none;
}

.hero-home--blue .hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-home--blue .hero-tag {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}

.hero-home--blue h1 {
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 800;
  color: var(--grip-white);
}

.hero-home--blue .hero-highlight {
  color: var(--grip-orange);
}

.hero-home--blue .hero-subtitle {
  color: var(--grip-white);
  opacity: 0.95;
}

.hero-home--blue .hero-btn-primary {
  background: var(--grip-white);
  color: var(--grip-blue);
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.hero-home--blue .hero-btn-primary::after {
  content: "→";
  margin-left: 0.5rem;
}

.hero-home--blue .hero-cta-secondary {
  color: var(--grip-white);
  opacity: 0.9;
}

.hero-home--blue .hero-cta-link {
  color: var(--grip-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-home--blue .hero-cta-note {
  color: var(--grip-white);
  opacity: 0.85;
}

.hero-home--blue .hero-card {
  background: var(--grip-white);
  color: var(--grip-dark);
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem 1.2rem;
  max-width: 520px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.25);
}

@media (max-width: 1024px) {
  .hero-home--blue .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-home--blue h1 {
    font-size: 2.5rem;
  }
  .hero-home--blue::after {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .hero-home--blue {
    padding: 5.5rem 0 4rem;
  }
  .hero-home--blue h1 {
    font-size: 2.2rem;
  }
  .hero-home--blue .hero-subtitle {
    font-size: 1rem;
  }
  .hero-home--blue::after {
    width: 120px;
    height: 120px;
  }
}

/* ==========================================================================
   17. SLIM CARDS (gf-block2)
   ========================================================================== */

.gf-block2-section {
  padding: 80px 0;
  background: var(--grip-white);
  font-family: var(--font-family);
}

.gf-block2-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gf-block2-title {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 14px;
  color: var(--grip-dark);
  line-height: 1.25;
  max-width: 820px;
}

.gf-block2-title span {
  color: var(--grip-blue);
}

.gf-block2-intro {
  font-size: 17px;
  line-height: 1.58;
  max-width: 820px;
  margin-bottom: 44px;
  color: var(--grip-muted);
}

.gf-block2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.gf-block2-card {
  background: var(--grip-white);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--grip-border);
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
  transition: all 0.2s ease;
}

.gf-block2-card:hover {
  border-color: var(--grip-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.gf-block2-card h3 {
  font-size: 19px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 8px;
  color: var(--grip-dark);
}

.gf-block2-card p {
  font-size: 15.8px;
  line-height: 1.58;
  color: var(--grip-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .gf-block2-section {
    padding: 56px 0;
  }
  .gf-block2-title {
    font-size: 26px;
  }
  .gf-block2-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .gf-block2-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   18. FUNCTIONAL SECTION (with shell and decorative circles)
   ========================================================================== */

.grip-functional-shell {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  background: var(--grip-white);
  border-radius: 34px;
  padding: 3.2rem 3rem 3.6rem;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.10);
  position: relative;
  overflow: hidden;
}

.grip-functional-shell::before,
.grip-functional-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.grip-functional-shell::before {
  width: 110px;
  height: 35px;
  background: var(--grip-orange);
  top: -55px;
  left: -55px;
}

.grip-functional-shell::after {
  width: 80px;
  height: 35px;
  border: 4px solid var(--grip-blue);
  background: var(--grip-white);
  bottom: -40px;
  right: -20px;
}

.grip-functional-heading h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.grip-functional-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.grip-step-card {
  position: relative;
  background: var(--grip-white);
  border-radius: 24px;
  border: 1px solid var(--grip-border);
  padding: 1.8rem 1.8rem 1.7rem 3.4rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.grip-step-number {
  position: absolute;
  left: 1.1rem;
  top: 1.3rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--grip-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  color: var(--grip-white);
}

.grip-step-title {
  font-size: 1.16rem;
  font-weight: var(--font-weight-semibold);
  color: var(--grip-dark);
  margin-bottom: 0.35rem;
}

.grip-step-text {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--grip-muted);
  margin: 0;
}

.grip-functional-right {
  position: relative;
  z-index: 1;
}

.grip-video-card {
  position: relative;
  background: #020617;
  border-radius: 26px;
  padding: 1.6rem 1.6rem 1.9rem;
  box-shadow: 0 22px 44px rgba(0,0,0,0.32);
  overflow: hidden;
  z-index: 2;
}

.grip-functional-right::before,
.grip-functional-right::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.grip-functional-right::before {
  width: 120px;
  height: 120px;
  background: var(--grip-red);
  top: -40px;
  left: -40px;
}

.grip-functional-right::after {
  width: 54px;
  height: 54px;
  border: 3px solid var(--grip-blue);
  background: var(--grip-white);
  bottom: -22px;
  left: 12px;
}

@media (max-width: 768px) {
  .grip-functional-shell {
    width: 100%;
    padding: 2.6rem 1.8rem 2.9rem;
    border-radius: 28px;
  }
  .grip-functional-heading h2 {
    font-size: 2.15rem;
  }
  .grip-step-card {
    padding: 1.7rem 1.5rem 1.65rem 3.2rem;
  }
  .grip-step-title {
    font-size: 1.07rem;
  }
  .grip-step-text {
    font-size: 0.95rem;
  }
  .grip-functional-right::before {
    width: 80px;
    height: 35px;
    top: -30px;
    left: -30px;
  }
  .grip-functional-right::after {
    display: none;
  }
}

/* ==========================================================================
   19. PRODUCT TOUR (grip-pt)
   ========================================================================== */

.grip-pt-section {
  padding: 5.5rem 1.6rem 6.5rem;
  background: var(--grip-light);
  font-family: var(--font-family);
}

.grip-pt-container {
  max-width: 1120px;
  margin: 0 auto;
}

.grip-pt-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
  margin-bottom: 0.8rem;
}

.grip-pt-intro {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--grip-muted);
  max-width: 640px;
  margin-bottom: 2.6rem;
}

.grip-pt-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 960px) {
  .grip-pt-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.grip-pt-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.grip-pt-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--grip-white);
  box-shadow: 0 22px 45px rgba(15,23,42,0.24);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.grip-pt-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(15,23,42,0.4);
}

.grip-pt-top {
  position: relative;
  padding: 1.7rem 1.7rem 1.4rem;
  min-height: 180px;
  overflow: hidden;
  color: var(--grip-white);
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grip-pt-card--contracten .grip-pt-top {
  background-image: url('/wp-content/uploads/2025/11/contract.png');
}

.grip-pt-card--calculaties .grip-pt-top {
  background-image: url('/wp-content/uploads/2025/11/calculatie.png');
}

.grip-pt-card--kwaliteit .grip-pt-top {
  background-image: url('/wp-content/uploads/2025/11/kwaliteit.png');
}

.grip-pt-top::before,
.grip-pt-top::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
}

.grip-pt-card--contracten .grip-pt-top::before {
  width: 80px;
  height: 35px;
  background: var(--grip-orange);
  top: -20px;
  right: -10px;
}

.grip-pt-card--contracten .grip-pt-top::after {
  width: 34px;
  height: 34px;
  border: 3px solid var(--grip-white);
  top: 70px;
  left: 26px;
}

.grip-pt-card--calculaties .grip-pt-top::before {
  width: 90px;
  height: 90px;
  background: var(--grip-blue);
  top: -25px;
  left: -8px;
}

.grip-pt-card--calculaties .grip-pt-top::after {
  width: 32px;
  height: 32px;
  border: 3px solid var(--grip-white);
  top: 75px;
  right: 26px;
}

.grip-pt-card--kwaliteit .grip-pt-top::before {
  width: 80px;
  height: 35px;
  background: var(--grip-orange);
  top: -25px;
  right: 12px;
}

.grip-pt-card--kwaliteit .grip-pt-top::after {
  width: 30px;
  height: 30px;
  border: 3px solid #38BDF8;
  bottom: 18px;
  left: 28px;
}

.grip-pt-avatar {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(15,23,42,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.grip-pt-card--contracten .grip-pt-avatar {
  background: rgba(15,23,42,0.28);
}

.grip-pt-card--calculaties .grip-pt-avatar {
  background: rgba(15,23,42,0.22);
}

.grip-pt-card--kwaliteit .grip-pt-avatar {
  background: rgba(15,23,42,0.35);
}

.grip-pt-top-title {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.25rem;
}

.grip-pt-top-sub {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  opacity: 0.9;
}

.grip-pt-label {
  padding: 0.9rem 1.7rem 0.4rem;
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
}

.grip-pt-ui {
  padding: 0 1.7rem 1.5rem;
}

.grip-pt-ui-inner {
  background: #F9FAFB;
  border-radius: 16px;
  padding: 0.8rem 0.9rem 1rem;
  border: 1px solid var(--grip-border);
}

.grip-pt-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.grip-pt-ui-dots {
  display: flex;
  gap: 0.25rem;
}

.grip-pt-ui-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--grip-border);
}

.grip-pt-ui-pill {
  height: 10px;
  border-radius: 999px;
  background: var(--grip-border);
  width: 60px;
}

.grip-pt-ui-body {
  display: grid;
  gap: 0.4rem;
}

.grip-pt-ui-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.35rem;
  align-items: center;
}

.grip-pt-ui-label {
  height: 7px;
  border-radius: 999px;
  background: var(--grip-border);
}

.grip-pt-ui-bar {
  height: 7px;
  border-radius: 999px;
  background: #BFDBFE;
}

.grip-pt-card--calculaties .grip-pt-ui-bar {
  background: #FED7AA;
}

.grip-pt-card--kwaliteit .grip-pt-ui-bar {
  background: #C7D2FE;
}

.grip-pt-ui-row:nth-child(1) .grip-pt-ui-bar { width: 100%; }
.grip-pt-ui-row:nth-child(2) .grip-pt-ui-bar { width: 80%; }
.grip-pt-ui-row:nth-child(3) .grip-pt-ui-bar { width: 60%; }
.grip-pt-ui-row:nth-child(4) .grip-pt-ui-bar { width: 45%; }

.grip-pt-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  color: var(--grip-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  padding: 1.8rem 1.6rem;
  z-index: 5;
}

.grip-pt-card:hover .grip-pt-hover {
  opacity: 1;
  pointer-events: auto;
}

.grip-pt-hover-inner {
  max-width: 280px;
  text-align: left;
}

.grip-pt-hover-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

.grip-pt-hover-points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.grip-pt-hover-points li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.grip-pt-hover-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 0.45rem;
}

.grip-pt-card--contracten .grip-pt-hover-points li::before {
  background: var(--grip-blue);
}

.grip-pt-card--calculaties .grip-pt-hover-points li::before {
  background: var(--grip-orange);
}

.grip-pt-card--kwaliteit .grip-pt-hover-points li::before {
  background: #38BDF8;
}

@media (max-width: 768px) {
  .grip-pt-section {
    padding: 4.5rem 1.3rem 5rem;
  }
  .grip-pt-title {
    font-size: 2.2rem;
  }
  .grip-pt-card {
    border-radius: 26px;
  }
  .grip-pt-top {
    min-height: 170px;
  }
}

/* ==========================================================================
   20. CTA BANNER (with decorative circles)
   ========================================================================== */

.cta-banner--styled {
  position: relative;
  background: var(--grip-blue);
  border-radius: 38px;
  padding: 80px 40px;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
  font-family: var(--font-family);
  text-align: center;
}

.cta-banner--styled::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  left: -220px;
  bottom: -260px;
}

.cta-banner--styled::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  right: -240px;
  top: 40px;
}

.cta-banner--styled .cta-inner {
  position: relative;
  z-index: 5;
}

.cta-banner--styled .cta-inner h2 {
  font-size: 3.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-white);
  margin-bottom: 24px;
  line-height: 1.08;
}

.cta-banner--styled .cta-inner p {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--grip-white);
  opacity: 0.95;
  margin-bottom: 42px;
  line-height: 1.55;
}

.cta-banner--styled .cta-btn {
  display: inline-block;
  background: var(--grip-white);
  color: var(--grip-blue);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

.cta-banner--styled .cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(0,0,0,0.25);
}

@media (max-width: 900px) {
  .cta-banner--styled {
    padding: 60px 24px;
  }
  .cta-banner--styled .cta-inner h2 {
    font-size: 2.4rem;
  }
  .cta-banner--styled .cta-inner p {
    font-size: 1.2rem;
  }
  .cta-banner--styled .cta-btn {
    font-size: 1.1rem;
    padding: 15px 36px;
  }
}

/* ==========================================================================
   21. FAQ SECTION (with shell and decorative circles)
   ========================================================================== */

.grip-faq-section--styled {
  padding: 6rem 1.6rem 7rem;
  background: var(--grip-light);
  font-family: var(--font-family);
}

.grip-faq-container--styled {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  background: var(--grip-white);
  border-radius: 34px;
  padding: 3.5rem 3rem 3.8rem;
  box-shadow: 0 24px 55px rgba(0,0,0,0.08);
  position: relative;
}

.grip-faq-container--styled::before,
.grip-faq-container--styled::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.grip-faq-container--styled::before {
  width: 100px;
  height: 100px;
  background: var(--grip-orange);
  opacity: 0.15;
  top: -30px;
  left: -30px;
}

.grip-faq-container--styled::after {
  width: 60px;
  height: 60px;
  border: 3px solid var(--grip-blue);
  bottom: -20px;
  right: -20px;
}

/* ==========================================================================
   22. PRICING CARDS - CONNECT VARIANT
   ========================================================================== */

/* PRO CONNECT Card - Lichte oranje achtergrond, moderne SaaS stijl */
.grip-pricing-card--connect {
  border: 2px solid var(--grip-orange) !important;
  position: relative;
  background: #FFF5F0 !important;
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 75, 42, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.grip-pricing-card--connect:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 56px rgba(255, 75, 42, 0.18), 0 12px 32px rgba(0, 0, 0, 0.08);
}

.grip-pricing-card--connect .grip-pricing-card__badge {
  background: var(--grip-orange);
  color: var(--grip-white);
}

.grip-pricing-card--connect .grip-pricing-card__name {
  color: var(--grip-orange);
}

/* Highlight voor de koppelingen features */
.grip-pricing-card--connect .grip-pricing-card__check--highlight {
  color: var(--grip-orange);
  font-weight: var(--font-weight-semibold);
}

/* Subitem styling voor koppelingen details */
.grip-pricing-card__subitem {
  padding-left: 1.5rem;
  font-size: 0.9em;
}

/* Koppelingen sectie highlight */
.grip-pricing-card--connect .grip-pricing-card__integration-block {
  background: rgba(255, 75, 42, 0.08);
  margin: 0.75rem -1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border-left: 3px solid var(--grip-orange);
}

.grip-pricing-card--connect .grip-pricing-card__integration-title {
  font-weight: var(--font-weight-semibold);
  color: var(--grip-dark);
  margin-bottom: 0.5rem;
}

.grip-pricing-card--connect .grip-pricing-card__integration-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grip-pricing-card--connect .grip-pricing-card__integration-list li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.25rem;
  font-size: 0.9em;
  color: var(--grip-muted-text);
}

.grip-pricing-card--connect .grip-pricing-card__integration-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--grip-orange);
  font-weight: var(--font-weight-semibold);
}

/* Maatwerk belofte */
.grip-pricing-card--connect .grip-pricing-card__promise {
  background: var(--grip-light);
  margin: 1rem -1rem 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85em;
  color: var(--grip-muted);
  text-align: center;
}

.grip-pricing-card--connect .grip-pricing-card__promise strong {
  color: var(--grip-dark);
}

/* ==========================================================================
   23. PRICING PAGE - FULL SECTION
   ========================================================================== */

/* Hero Section - Compact: packages visible immediately */
.grip-pricing-hero {
  background: var(--grip-blue);
  padding: 32px 24px 40px;
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
}

.grip-pricing-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.grip-pricing-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-white);
  margin: 0 0 1.25rem 0;
  line-height: 1.1;
}

.grip-pricing-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 540px;
}

.grip-pricing-hero__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.grip-pricing-hero__item {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.grip-pricing-hero__item--highlight {
  border-left-color: var(--grip-orange);
}

.grip-pricing-hero__item-label {
  font-weight: var(--font-weight-semibold);
  color: var(--grip-white);
  font-size: 1rem;
}

.grip-pricing-hero__item--highlight .grip-pricing-hero__item-label {
  color: var(--grip-orange);
}

.grip-pricing-hero__item-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.grip-pricing-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Card */
.grip-pricing-hero__card {
  background: var(--grip-dark);
  border-radius: 24px;
  padding: 2rem;
  color: var(--grip-white);
}

.grip-pricing-hero__card-label {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.5rem 0;
}

.grip-pricing-hero__card-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-orange);
  margin: 0 0 0.5rem 0;
}

.grip-pricing-hero__card-badge {
  display: inline-block;
  background: var(--grip-orange);
  color: var(--grip-white);
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.grip-pricing-hero__card-price {
  margin-bottom: 1rem;
}

.grip-pricing-hero__card-amount {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-white);
}

.grip-pricing-hero__card-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.grip-pricing-hero__card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.grip-pricing-hero__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.grip-pricing-hero__card-features li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.grip-pricing-hero__card-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--grip-orange);
}

.grip-pricing-hero__card-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-style: italic;
}

/* Pricing Section */
.grip-pricing-section {
  padding: 80px 24px 100px;
  background: var(--grip-light);
  font-family: var(--font-family);
}

.grip-pricing-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.grip-pricing-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.grip-pricing-section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  color: var(--grip-muted);
  margin-bottom: 0.75rem;
}

.grip-pricing-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
  margin: 0 0 1rem 0;
}

.grip-pricing-section__subtitle {
  font-size: 1rem;
  color: var(--grip-muted-text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Grid - 4 columns */
.grip-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Pricing Card */
.grip-pricing-card {
  background: var(--grip-white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--grip-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grip-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.grip-pricing-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  background: var(--grip-blue);
  color: var(--grip-white);
  font-size: 0.65rem;
  font-weight: var(--font-weight-semibold);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.grip-pricing-card__name {
  font-size: 1.35rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
  margin: 0 0 0.5rem 0;
}

.grip-pricing-card--connect .grip-pricing-card__name {
  margin-top: 1.5rem;
}

.grip-pricing-card__tagline {
  font-size: 0.9rem;
  color: var(--grip-muted-text);
  margin: 0 0 1.25rem 0;
  line-height: 1.4;
}

.grip-pricing-card__price-row {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.grip-pricing-card__price {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--grip-dark);
}

.grip-pricing-card__price-note {
  font-size: 1rem;
  color: var(--grip-muted-text);
}

.grip-pricing-card__description {
  font-size: 0.85rem;
  color: var(--grip-muted-text);
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
}

.grip-pricing-card__description em {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--grip-muted);
}

.grip-pricing-card__licenses {
  background: var(--grip-light);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.grip-pricing-card__licenses-title {
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  color: var(--grip-muted);
  margin: 0 0 0.5rem 0;
}

.grip-pricing-card__licenses-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grip-pricing-card__licenses-list li {
  font-size: 0.85rem;
  color: var(--grip-dark);
  margin-bottom: 0.25rem;
}

.grip-pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.grip-pricing-card__list li {
  font-size: 0.85rem;
  color: var(--grip-muted-text);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.grip-pricing-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--grip-blue);
  font-weight: var(--font-weight-semibold);
}

.grip-pricing-card--connect .grip-pricing-card__list li::before {
  color: var(--grip-orange);
}

/* Base Button Style */
.grip-btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.grip-btn:hover {
  transform: translateY(-2px);
}

.grip-pricing-card__cta {
  margin-top: auto;
  width: 100%;
  display: block;
  padding: 14px 24px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none !important;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.grip-pricing-card__cta:hover {
  transform: translateY(-2px);
}

.grip-pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grip-muted);
  margin: 0;
}

/* Button Variants */
.grip-btn--white {
  background: var(--grip-white);
  color: var(--grip-blue);
}

.grip-btn--white:hover {
  background: var(--grip-light);
}

.grip-btn--ghost {
  background: transparent;
  color: var(--grip-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.grip-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.grip-btn--outline {
  background: var(--grip-white);
  color: var(--grip-dark);
  border: 2px solid var(--grip-border);
}

.grip-btn--outline:hover {
  background: var(--grip-light);
  border-color: var(--grip-blue);
  color: var(--grip-blue);
}

/* Primary button - filled */
.grip-btn--primary {
  background: var(--grip-orange);
  color: var(--grip-white);
  border: 2px solid var(--grip-orange);
}

.grip-btn--primary:hover {
  background: #E5431F;
  border-color: #E5431F;
}

/* Responsive */
@media (max-width: 1200px) {
  .grip-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .grip-pricing-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grip-pricing-hero__card {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .grip-pricing-grid {
    grid-template-columns: 1fr;
  }

  .grip-pricing-hero {
    padding: 24px 16px 32px;
  }

  .grip-pricing-hero__actions {
    flex-direction: column;
  }

  .grip-pricing-hero__actions .grip-btn {
    width: 100%;
  }
}

/* ==========================================================================
   PLATFORM PAGES - Enhanced Visual Styling (like old Elementor version)
   ========================================================================== */

/* Flow step with visual screenshots - override base styles */
.flow-section .flow-step {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.flow-section .flow-step:nth-child(even) {
  direction: rtl;
}

.flow-section .flow-step:nth-child(even) > * {
  direction: ltr;
}

.step-text-col {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-visual {
  background: #F3F4F6;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.step-visual img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: block;
}

/* Hero media frame with shadow - Platform pages */
.hero__media-frame {
  background: #F3F4F6;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  position: relative;
}

.hero__media-frame .hero__image {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* KPI section - larger numbers like old version */
.kpi-section {
  background: #ffffff;
  padding: 60px 1rem;
}

.kpi-section .kpi-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--grip-blue);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.kpi-section .kpi-label {
  font-size: 0.9rem;
  color: var(--grip-muted-text);
  max-width: 200px;
}

/* Finance logo section - white background with blue logos */
.finance-logo-section {
  background: #ffffff;
  padding: 40px 1rem;
  border-top: 1px solid var(--grip-border);
  border-bottom: 1px solid var(--grip-border);
}

.finance-logo-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.finance-logo-fade-left,
.finance-logo-fade-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.finance-logo-fade-left {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.finance-logo-fade-right {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.finance-logo-track {
  display: flex;
  gap: 4rem;
  animation: scrollLogos 30s linear infinite;
  align-items: center;
  white-space: nowrap;
}

.finance-logo-track img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.finance-logo-track img:hover {
  opacity: 1;
}

/* Platform pages responsive */
@media (max-width: 900px) {
  .flow-section .flow-step {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .flow-section .flow-step:nth-child(even) {
    direction: ltr;
  }

  .step-visual {
    padding: 16px;
    order: -1;
  }
  
  .kpi-section .kpi-number {
    font-size: 2rem;
  }
}

/* ==========================================================================
   PLATFORM PAGES FIX - Complete Restyling
   ========================================================================== */

/* --- HERO FIX --- */
.hero.hero--blue .hero__inner,
.hero.hero--dark .hero__inner {
  gap: 60px;
}

.hero.hero--blue .hero__title,
.hero.hero--dark .hero__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero.hero--blue .hero__subtitle,
.hero.hero--dark .hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero__media-frame {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px;
}

.hero__media-frame .hero__image {
  border-radius: 8px;
}

/* --- KPI SECTION FIX --- */
.kpi-section {
  background: #ffffff;
  padding: 50px 1rem;
  border-bottom: none;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.kpi-item {
  padding: 0 1rem;
}

.kpi-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--grip-blue);
  margin-bottom: 8px;
  line-height: 1;
}

.kpi-label {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .kpi-number {
    font-size: 2rem;
  }
}

/* --- LOGO SECTION FIX --- */
.finance-logo-section {
  background: #ffffff;
  padding: 30px 1rem;
  border-top: none !important;
  border-bottom: none !important;
}

/* --- FLOW SECTION FIX --- */
.flow-section {
  background: #F8FAFC;
  padding: 60px 1rem;
}

.flow-container {
  max-width: 900px;
  margin: 0 auto;
}

.flow-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grip-blue);
  margin-bottom: 12px;
}

.flow-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--grip-dark);
  margin-bottom: 16px;
}

.flow-intro {
  text-align: center;
  font-size: 1rem;
  color: #64748B;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Reset the problematic flow-step styles */
.flow-section .flow-step {
  display: block !important;
  direction: ltr !important;
  grid-template-columns: unset !important;
  padding: 24px 0;
  border-bottom: 1px solid #E2E8F0;
}

.flow-section .flow-step:last-child {
  border-bottom: none;
}

.flow-section .flow-step:nth-child(even) {
  direction: ltr !important;
}

.step-text-col {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-badge {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--grip-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grip-dark);
  margin: 0 0 6px 0;
}

.step-text {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* --- FAQ SECTION FIX --- */
.grip-faq-section {
  background: #F8FAFC;
  padding: 60px 1rem;
}

.grip-faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.grip-faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grip-dark);
  margin: 0 0 32px 0;
  text-align: left;
}

.grip-faq-highlight {
  color: var(--grip-orange);
}

.grip-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.grip-faq-item {
  border-bottom: 1px solid #E2E8F0;
}

.grip-faq-item:last-child {
  border-bottom: none;
}

.grip-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--grip-dark);
  font-family: var(--font-family);
}

.grip-faq-question:hover {
  color: var(--grip-blue);
}

.grip-faq-question span:first-child {
  flex: 1;
  padding-right: 16px;
}

.grip-faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--grip-orange);
  transition: transform 0.2s ease;
  width: 24px;
  text-align: center;
}

.grip-faq-item.is-open .grip-faq-icon {
  transform: rotate(45deg);
}

.grip-faq-answer {
  display: none;
  padding: 0 0 18px 0;
}

.grip-faq-item.is-open .grip-faq-answer {
  display: block;
}

.grip-faq-answer p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .grip-faq-container {
    padding: 24px;
  }
  .grip-faq-title {
    font-size: 1.3rem;
  }
}

/* --- HERO HEIGHT FIX --- */
.hero.hero--blue,
.hero.hero--dark {
  min-height: 75vh;
  padding: 100px 16px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero.hero--blue .hero__overlay,
.hero.hero--dark .hero__overlay {
  flex: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .hero.hero--blue,
  .hero.hero--dark {
    min-height: 60vh;
    padding: 80px 16px 100px;
  }
}

/* ==========================================================================
   PLATFORM PAGES - COMPLETE VISUAL FIX
   ========================================================================== */

/* --- HERO OVERFLOW FIX - Keep overlay inside hero --- */
.hero.hero--blue,
.hero.hero--dark {
  position: relative;
  overflow: hidden;
}

.hero__bg-circles--left {
  left: -60px;
}

/* --- FLOW SECTION - RESTORE OLD STYLE WITH SCREENSHOTS --- */
.flow-section {
  background: #ffffff;
  padding: 80px 0;
}

.flow-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.flow-eyebrow {
  display: block;
  text-align: center;
  color: var(--grip-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.flow-heading {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--grip-dark);
  margin-bottom: 16px;
}

.flow-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--grip-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Flow step - middenweg style met grote screenshot */
.flow-step {
  display: grid !important;
  grid-template-columns: 0.8fr 1.2fr !important;
  gap: 48px !important;
  align-items: center !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 48px 0 !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid #E2E8F0;
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-step:nth-child(odd) {
  direction: ltr !important;
}

.flow-step:nth-child(even) {
  direction: rtl !important;
}

.flow-step:nth-child(even) > * {
  direction: ltr !important;
}

.step-text-col {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

.step-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--grip-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--grip-dark);
  margin-bottom: 8px;
}

.step-text {
  color: var(--grip-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Screenshots - groot en prominent */
.step-visual {
  display: block !important;
  background: #F8FAFC;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-visual img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Responsive flow */
@media (max-width: 768px) {
  .flow-step {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
  }
  
  .flow-step:nth-child(even) {
    direction: ltr !important;
  }
  
  .step-visual {
    order: -1;
  }
}

/* --- KPI SECTION IMPROVEMENTS --- */
.kpi-section {
  background: #ffffff;
  padding: 60px 24px;
  border-top: 1px solid var(--grip-border);
  border-bottom: 1px solid var(--grip-border);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.kpi-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--grip-blue);
  margin-bottom: 8px;
}

.kpi-label {
  font-size: 0.9rem;
  color: var(--grip-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .kpi-number {
    font-size: 2.2rem;
  }
}

/* --- KPI SECTION TEXT VARIANT (Kwaliteitsbeheer style) --- */
.kpi-section--text {
  background: var(--grip-light);
  padding: 60px 24px;
  border: none !important;
}

.kpi-section--text .kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.kpi-section--text .kpi-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kpi-section--text .kpi-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.kpi-section--text .kpi-number {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--grip-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.kpi-section--text .kpi-label {
  font-size: 0.85rem;
  color: var(--grip-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .kpi-section--text .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .kpi-section--text .kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* --- KPI SECTION ORANGE VARIANT (Financieel beheer style) --- */
.kpi-section--orange .kpi-number {
  color: var(--grip-orange) !important;
}

/* --- KPI SECTION EXPANDED VARIANT (Contract Dashboard style with cards) --- */
.kpi-section--expanded {
  background: var(--grip-light);
  padding: 60px 24px;
  border: none !important;
}

.kpi-grid--expanded {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.kpi-item--expanded {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kpi-item--expanded:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.kpi-section--expanded .kpi-number {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: var(--grip-blue);
  margin-bottom: 4px;
  line-height: 1;
}

.kpi-section--expanded .kpi-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grip-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kpi-section--expanded .kpi-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grip-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.kpi-section--expanded .kpi-desc {
  font-size: 0.85rem;
  color: var(--grip-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .kpi-grid--expanded {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .kpi-grid--expanded {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kpi-item--expanded {
    padding: 24px 20px;
  }
}

/* --- FAQ IMPROVEMENTS --- */
.grip-faq-section {
  background: #F8FAFC;
  padding: 80px 24px;
}

.grip-faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.grip-faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.grip-faq-highlight {
  color: var(--grip-orange);
}

.grip-faq-item {
  border-bottom: 1px solid var(--grip-border);
}

.grip-faq-item:last-child {
  border-bottom: none;
}

.grip-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--grip-dark);
  cursor: pointer;
  text-align: left;
}

.grip-faq-question:hover {
  color: var(--grip-blue);
}

/* OLD FAQ active style removed - see FAQ HOVER/ACTIVE FIX section below */

.grip-faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s;
}

.grip-faq-question[aria-expanded="true"] .grip-faq-icon {
  transform: rotate(45deg);
}

.grip-faq-answer {
  padding: 0 0 20px 0;
  color: var(--grip-muted);
  line-height: 1.7;
}

.grip-faq-answer p {
  margin: 0;
}

/* --- HERO HEIGHT OVERRIDE - NOT TOO TALL --- */
.hero.hero--blue,
.hero.hero--dark,
.hero.hero--contract {
  min-height: auto !important;
  padding: 60px 16px 80px !important;
}

/* --- KPI/LOGO BORDER FIX --- */
.kpi-section {
  border-bottom: none !important;
}

.finance-logo-section {
  border-top: none !important;
  background: #ffffff !important;
  margin-top: 0 !important;
  padding-top: 40px !important;
}

/* Remove any stray borders */
.kpi-section,
.finance-logo-section,
.finance-logo-frame {
  border: none !important;
  box-shadow: none !important;
}

/* --- FAQ HOVER/ACTIVE FIX --- */
.grip-faq-question {
  transition: color 0.2s ease, font-weight 0.2s ease !important;
}

.grip-faq-question:hover {
  color: var(--grip-dark) !important;
  background: none !important;
}

.grip-faq-question[aria-expanded="true"] {
  color: var(--grip-dark) !important;
  font-weight: 600 !important;
  background: none !important;
  margin: 0 !important;
  padding: 20px 0 !important;
  border-radius: 0 !important;
}

.grip-faq-question[aria-expanded="true"] .grip-faq-icon {
  color: var(--grip-dark) !important;
  transform: rotate(45deg);
}

/* Remove browser focus/active styles on FAQ buttons */
.grip-faq-question:focus,
.grip-faq-question:active,
.grip-faq-question:focus-visible {
  outline: none !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--grip-dark) !important;
}

.grip-faq-question:focus span,
.grip-faq-question:active span {
  background: none !important;
  background-color: transparent !important;
}

.grip-faq-icon {
  color: var(--grip-blue) !important;
  font-weight: 400 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

/* --- HERO TEXT READABILITY FIX --- */
.hero.hero--blue .hero__subtitle,
.hero.hero--dark .hero__subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero.hero--blue .hero__meta-text,
.hero.hero--dark .hero__meta-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Orange highlight in titles */
.hero__title .highlight,
.hero__title span.highlight {
  color: var(--grip-orange) !important;
}

/* ==========================================================================
   HERO COLOR RULES PER VARIANT
   ========================================================================== */

/* --- BLUE HERO: white text, orange highlights --- */
.hero.hero--blue .hero__title {
  color: #ffffff !important;
}
.hero.hero--blue .hero__title .highlight {
  color: var(--grip-orange) !important;
}
.hero.hero--blue .hero__subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
}
.hero.hero--blue .hero__eyebrow {
  color: #ffffff !important;
}

/* --- DARK HERO: white text, orange highlights --- */
.hero.hero--dark .hero__title {
  color: #ffffff !important;
}
.hero.hero--dark .hero__title .highlight {
  color: var(--grip-orange) !important;
}
.hero.hero--dark .hero__subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
}
.hero.hero--dark .hero__eyebrow {
  color: #ffffff !important;
}

/* --- ORANGE HERO (contract): white text, blue highlights --- */
.hero.hero--contract .hero__title {
  color: #ffffff !important;
}
.hero.hero--contract .hero__title .highlight {
  color: var(--grip-blue) !important;
}
.hero.hero--contract .hero__subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
}
.hero.hero--contract .hero__eyebrow {
  color: #ffffff !important;
}

/* --- HERO META PILL FIX --- */
.hero.hero--blue .hero__meta-pill,
.hero.hero--dark .hero__meta-pill,
.hero.hero--contract .hero__meta-pill {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

.hero.hero--blue .hero__meta-text,
.hero.hero--dark .hero__meta-text,
.hero.hero--contract .hero__meta-text {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ==========================================================================
   HERO BUTTON FIXES
   ========================================================================== */

/* --- HERO BUTTONS WITH OVERLAY EFFECT --- */
.hero__btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.hero__btn--primary {
  background: #ffffff;
  color: var(--grip-blue);
  border: 2px solid #ffffff;
}

.hero__btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero.hero--dark .hero__btn--primary {
  color: var(--grip-dark);
}

/* Button overlay shine effect */
.hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.hero__btn:hover::before {
  left: 100%;
}

/* ==========================================================================
   PLATFORM HERO - IMAGE-BASED OVERLAY (like homepage)
   ========================================================================== */

/* Add pattern overlay to hero--blue and hero--dark */
.hero.hero--blue::after,
.hero.hero--dark::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 55vw;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/01/ov1.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

/* Ensure hero content is above overlay */
.hero.hero--blue .hero__overlay,
.hero.hero--dark .hero__overlay {
  position: relative;
  z-index: 2;
}

/* Hide the old small circles on platform pages */
.hero.hero--blue .hero__bg-circles,
.hero.hero--dark .hero__bg-circles {
  display: none;
}

/* ==========================================================================
   PLATFORM INTRO - FEATURE GRID (Horizontal Layout)
   ========================================================================== */

.platform-intro {
  background: #ffffff;
  padding: 60px 24px;
}

.platform-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.platform-intro__header {
  text-align: center;
  margin-bottom: 48px;
}

.platform-intro__eyebrow {
  display: inline-block;
  color: var(--grip-blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.platform-intro__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px 0;
}

.platform-intro__subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Feature Grid - 4 columns horizontal */
.platform-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.platform-feature {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.platform-feature__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grip-blue);
  border-radius: 10px;
  color: #ffffff;
}

.platform-feature__icon svg {
  width: 24px;
  height: 24px;
}

.platform-feature__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 8px 0;
}

.platform-feature__desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 900px) {
  .platform-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .platform-features {
    grid-template-columns: 1fr;
  }

  .platform-intro__title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   16. CHALLENGES SECTION (Branche pages)
   ========================================================================== */

.challenges-section {
  padding: 5rem 1.5rem;
  background: var(--grip-light);
}

.challenges-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.challenges-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grip-blue);
  margin-bottom: 0.75rem;
  text-align: center;
}

.challenges-heading {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--grip-dark);
  margin: 0 0 3rem 0;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.challenge-card {
  background: var(--grip-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.challenge-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 107, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--grip-blue);
}

.challenge-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grip-dark);
  margin: 0 0 0.75rem 0;
}

.challenge-desc {
  font-size: 0.9rem;
  color: var(--grip-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .challenges-section {
    padding: 3rem 1rem;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   17. TESTIMONIAL SECTION (Branche pages)
   ========================================================================== */

.testimonial-section {
  padding: 5rem 1.5rem;
  background: var(--grip-white);
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--grip-dark) 0%, var(--grip-dark-2) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--grip-white);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grip-white);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
  .testimonial-section {
    padding: 3rem 1rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   18. FINANCE LOGO INTRO (for branche pages)
   ========================================================================== */

.finance-logo-intro {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grip-muted);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   19. PLATFORM CTA SECTION
   ========================================================================== */

.platform-cta {
  background: var(--grip-blue);
  padding: 80px 24px;
  text-align: center;
  font-family: var(--font-family);
}

.platform-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.platform-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.platform-cta__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.platform-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-cta__btn:hover {
  transform: translateY(-2px);
}

.platform-cta__btn--primary {
  background: #ffffff;
  color: var(--grip-blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.platform-cta__btn--primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.platform-cta__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.platform-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

@media (max-width: 480px) {
  .platform-cta {
    padding: 60px 16px;
  }

  .platform-cta__actions {
    flex-direction: column;
  }

  .platform-cta__btn {
    width: 100%;
  }
}

/* ==========================
   ISO CERTIFICATES SECTION
   ========================== */
.iso-certificates {
  padding: 80px 24px;
  background: #f8f9fa;
}

.iso-container {
  max-width: 1200px;
  margin: 0 auto;
}

.iso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .iso-grid {
    grid-template-columns: 1fr;
  }
}

.iso-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.iso-card__header {
  margin-bottom: 20px;
}

.iso-card__badge {
  display: inline-block;
  background: var(--grip-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.iso-card__badge--blue {
  background: var(--grip-blue);
}

.iso-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grip-dark);
  margin: 0;
}

.iso-card__desc {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 24px;
}

.iso-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.iso-card__details li {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 8px;
}

.iso-card__details li:last-child {
  margin-bottom: 0;
}

.iso-card__details strong {
  color: var(--grip-dark);
}

/* ==========================
   HOMEPAGE BLOCK 2 - 4 KLEUR CARDS
   ========================== */
.gf-block2-card:nth-child(1) {
  background: var(--grip-blue);
  border-color: var(--grip-blue);
}
.gf-block2-card:nth-child(1) h3,
.gf-block2-card:nth-child(1) p {
  color: #ffffff;
}

.gf-block2-card:nth-child(2) {
  background: var(--grip-light);
  border-color: var(--grip-border);
}
.gf-block2-card:nth-child(2) h3 {
  color: var(--grip-dark);
}
.gf-block2-card:nth-child(2) p {
  color: var(--grip-muted);
}

.gf-block2-card:nth-child(3) {
  background: var(--grip-dark-1);
  border-color: var(--grip-dark-1);
}
.gf-block2-card:nth-child(3) h3,
.gf-block2-card:nth-child(3) p {
  color: #ffffff;
}

.gf-block2-card:nth-child(4) {
  background: var(--grip-orange);
  border-color: var(--grip-orange);
}
.gf-block2-card:nth-child(4) h3,
.gf-block2-card:nth-child(4) p {
  color: #ffffff;
}

/* Hover state fixes voor gekleurde cards */
.gf-block2-card:nth-child(1):hover,
.gf-block2-card:nth-child(3):hover,
.gf-block2-card:nth-child(4):hover {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================
   FOUNDER SECTION - CIRCLES CONTAINED
   ========================== */
.grip-founder-visual {
  overflow: hidden;
}

.grip-founder-visual .circle {
  z-index: 0;
}

.grip-founder-visual .founder-img-wrap {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   PRICING HERO MINIMAL (Linear-style)
   ========================================================================== */
.pricing-hero-minimal {
  background: var(--grip-blue);
  padding: 60px 24px 48px;
  text-align: center;
}

.pricing-hero-minimal__inner {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-hero-minimal__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--grip-white);
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.pricing-hero-minimal__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   HERO FULL-WIDTH FIX - Break out of any container
   ========================================================================== */

/* Force hero sections to be full viewport width */
.hero.hero--blue,
.hero.hero--dark,
.hero.hero--contract {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  box-sizing: border-box !important;
  margin-top: -85px !important;
  padding-top: 140px !important;
}

/* ==========================================================================
   FEATURE CARD HOVER FIX - Match platform pages
   ========================================================================== */
.feature-card.bg-light {
  background: var(--grip-light) !important;
  transition: all 0.3s ease !important;
}

.feature-card.bg-light .feature-title,
.feature-card.bg-light .feature-desc,
.feature-card.bg-light .feature-arrow {
  color: var(--grip-dark) !important;
  transition: color 0.3s ease !important;
}

.feature-card.bg-light:hover {
  background: var(--grip-blue) !important;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 107, 255, 0.25) !important;
}

.feature-card.bg-light:hover .feature-title,
.feature-card.bg-light:hover .feature-desc,
.feature-card.bg-light:hover .feature-arrow {
  color: #ffffff !important;
}

/* Ensure hero content stays centered */
.hero.hero--blue .hero__overlay,
.hero.hero--dark .hero__overlay,
.hero.hero--contract .hero__overlay {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Override any Astra container constraints */
.ast-container .hero.hero--blue,
.ast-container .hero.hero--dark,
.ast-container .hero.hero--contract,
.entry-content .hero.hero--blue,
.entry-content .hero.hero--dark,
.entry-content .hero.hero--contract {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

/* ==========================================================================
   FAQ SECTION - Native details/summary styling
   ========================================================================== */
.faq-section {
  background: var(--grip-light);
  padding: 80px 24px;
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--grip-dark);
  text-align: center;
  margin-bottom: 40px;
}

.grip-faq {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item {
  border-bottom: 1px solid var(--grip-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--grip-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--grip-blue);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  color: var(--grip-blue);
}

.faq-answer {
  padding: 0 0 20px 0;
  color: var(--grip-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--grip-blue);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   BRANCH PAGES - Complete styling
   ========================================================================== */

/* Features Section - Grid of 4 cards */
.features-section {
  padding: 60px 24px;
  background: var(--grip-white);
}

.features-section .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Intro Section */
.intro-section {
  padding: 60px 24px;
  background: var(--grip-white);
  text-align: center;
}

.intro-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--grip-dark);
  margin-bottom: 16px;
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--grip-muted);
  line-height: 1.7;
  margin: 0;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 24px;
  background: var(--grip-light);
}

.benefits-section .container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.benefits-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--grip-dark);
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--grip-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--grip-blue);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grip-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--grip-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 24px;
  background: var(--grip-blue);
  text-align: center;
}

.cta-section .container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--grip-white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: var(--grip-white);
  color: var(--grip-blue);
}

.cta-section .btn-primary:hover {
  background: var(--grip-light);
}

/* Feature Arrow */
.feature-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.feature-card:hover .feature-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ==========================================================================
   HERO IMAGE CONSISTENT HEIGHT - Branch pages
   Override inline styles with !important
   ========================================================================== */
.hero__media-frame .hero__image {
  width: 100%;
  height: auto !important;
  max-height: 400px;
  object-fit: contain !important;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .hero__media-frame .hero__image {
    max-height: 450px;
  }
}

/* ==========================================================================
   ONZE REIS - Story Page Styles
   ========================================================================== */

/* Story Hero */
.story-hero {
  background: linear-gradient(135deg, #006BFF 0%, #0052CC 100%);
  padding: 100px 24px 80px;
  text-align: center;
  color: #fff;
}

.story-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.story-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-hero__title .highlight {
  color: #FFB800;
}

.story-hero__intro {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Story Timeline Section */
.story-section {
  padding: 80px 24px;
  background: #F8FAFC;
}

.story-container {
  max-width: 900px;
  margin: 0 auto;
}

.story-block {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-block::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 60px;
  bottom: -60px;
  width: 2px;
  background: #E2E8F0;
}

.story-block:last-child::before {
  display: none;
}

.story-year {
  flex-shrink: 0;
  width: 120px;
  height: 50px;
  background: #006BFF;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.story-content {
  flex: 1;
  padding-top: 4px;
}

.story-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
}

.story-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .story-block {
    flex-direction: column;
    gap: 16px;
  }

  .story-block::before {
    display: none;
  }

  .story-year {
    width: 100px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Mission Section */
.mission-section {
  padding: 80px 24px;
  background: #fff;
}

.mission-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mission-card {
  background: #F8FAFC;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: #006BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
}

.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 16px;
}

.mission-card p {
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .mission-container {
    grid-template-columns: 1fr;
  }
}

/* Values Section */
.values-section {
  padding: 80px 24px;
  background: #0F172A;
  color: #fff;
}

.values-container {
  max-width: 1100px;
  margin: 0 auto;
}

.values-heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.value-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006BFF;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ONZE REIS PAGE - Additional styles
   ========================================================================== */

/* 5-column Values Grid for Kernwaarden */
.values-grid--5col {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1100px) {
  .values-grid--5col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid--5col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .values-grid--5col {
    grid-template-columns: 1fr;
  }
}

/* Story Approach Section */
.story-approach {
  padding: 80px 24px;
  background: linear-gradient(135deg, #006BFF 0%, #0052CC 100%);
  color: #fff;
}

.story-approach__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-approach h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.story-approach p {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 16px;
}

.story-approach p:last-child {
  margin-bottom: 0;
}

.story-approach strong {
  color: #fff;
  font-weight: 600;
}

/* ==========================================================================
   VISUAL TIMELINE - Horizontal connected circles
   ========================================================================== */

.timeline-visual {
  padding: 60px 24px 80px;
  background: linear-gradient(180deg, #006BFF 0%, #006BFF 4px, #fff 4px);
  overflow-x: auto;
}

.timeline-visual__container {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-visual__track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  min-width: max-content;
  padding: 0 20px;
}

.timeline-visual__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-visual__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35 0%, #E85420 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-visual__connector {
  width: 40px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35 0%, #E85420 100%);
  border-radius: 25px;
  margin-top: 25px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-visual__label {
  margin-top: 20px;
  text-align: center;
  color: #FF6B35;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 120px;
}

.timeline-visual__label strong {
  display: block;
  font-weight: 600;
}

.timeline-visual__label span {
  display: block;
  font-size: 0.8rem;
  color: #FF8C5A;
  margin-top: 4px;
}

/* Responsive timeline */
@media (max-width: 900px) {
  .timeline-visual__circle {
    width: 80px;
    height: 80px;
    font-size: 1.25rem;
  }

  .timeline-visual__connector {
    width: 30px;
    height: 40px;
    margin-top: 20px;
  }

  .timeline-visual__label {
    font-size: 0.8rem;
    max-width: 100px;
  }
}

@media (max-width: 600px) {
  .timeline-visual {
    padding: 40px 16px 60px;
  }

  .timeline-visual__circle {
    width: 65px;
    height: 65px;
    font-size: 1rem;
  }

  .timeline-visual__connector {
    width: 24px;
    height: 32px;
    margin-top: 16px;
  }

  .timeline-visual__label {
    font-size: 0.7rem;
    max-width: 80px;
  }
}

/* ==========================================================================
   VALUES BLOB - Organic shape with gradient
   ========================================================================== */

.values-blob-section {
  padding: 80px 24px;
  background: #fff;
}

.values-blob-container {
  max-width: 900px;
  margin: 0 auto;
}

.values-blob-heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #0F172A;
  margin-bottom: 48px;
}

.values-blob {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.values-blob__shape {
  position: relative;
  width: 650px;
  height: 380px;
}

/* Individual blob circles - overlapping connected blob */
.blob-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.blob-circle span {
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Decorative accent circle (blue) - far left */
.blob-circle--small.blob-circle--accent {
  width: 45px;
  height: 45px;
  background: #006BFF;
  top: 110px;
  left: 0;
  z-index: 1;
}

/* Oprecht - top left, blue-purple gradient */
.blob-circle--1 {
  width: 140px;
  height: 140px;
  background: linear-gradient(160deg, #5B8AC7 0%, #7B6BAD 100%);
  top: 30px;
  left: 60px;
  z-index: 3;
}

/* Small white connector between Oprecht and Verbindend */
.blob-circle--connector-1 {
  width: 55px;
  height: 55px;
  background: #fff;
  top: 120px;
  left: 165px;
  z-index: 4;
}

/* Verbindend - center, purple-pink - overlaps with Oprecht, Analytisch, Empowering */
.blob-circle--2 {
  width: 160px;
  height: 160px;
  background: linear-gradient(145deg, #7B6BAD 0%, #9B6B8B 100%);
  top: 90px;
  left: 175px;
  z-index: 2;
}

/* Analytisch - top right, blue - overlaps with Verbindend */
.blob-circle--3 {
  width: 170px;
  height: 170px;
  background: linear-gradient(135deg, #4A6FAF 0%, #6B7BBF 100%);
  top: 0;
  left: 300px;
  z-index: 3;
}

/* Empowering - bottom left, red-orange - largest, overlaps with Verbindend */
.blob-circle--4 {
  width: 190px;
  height: 190px;
  background: linear-gradient(155deg, #B85A6B 0%, #D86B4B 100%);
  bottom: 0;
  left: 50px;
  z-index: 2;
}

/* Small orange connector near Realistisch */
.blob-circle--connector-2 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E87B4B 0%, #F08050 100%);
  bottom: 30px;
  left: 350px;
  z-index: 1;
}

/* Realistisch - bottom center-right, orange */
.blob-circle--5 {
  width: 130px;
  height: 130px;
  background: linear-gradient(145deg, #E07050 0%, #E8784B 100%);
  bottom: 60px;
  left: 380px;
  z-index: 3;
}

/* Responsive blob */
@media (max-width: 700px) {
  .values-blob__shape {
    width: 100%;
    height: 320px;
    max-width: 400px;
  }

  .blob-circle--1 {
    width: 95px;
    height: 95px;
    top: 20px;
    left: 40px;
  }

  .blob-circle--2 {
    width: 110px;
    height: 110px;
    top: 70px;
    left: 110px;
  }

  .blob-circle--3 {
    width: 115px;
    height: 115px;
    top: 0;
    left: 200px;
    right: auto;
  }

  .blob-circle--4 {
    width: 130px;
    height: 130px;
    bottom: 0;
    left: 30px;
  }

  .blob-circle--5 {
    width: 90px;
    height: 90px;
    bottom: 40px;
    left: 250px;
    right: auto;
  }

  .blob-circle--connector-1,
  .blob-circle--connector-2,
  .blob-circle--small {
    display: none;
  }

  .blob-circle {
    font-size: 0.75rem;
  }
}

@media (max-width: 500px) {
  .values-blob-section {
    padding: 60px 16px;
  }

  .values-blob__shape {
    height: 280px;
    max-width: 320px;
  }

  .blob-circle--1 {
    width: 75px;
    height: 75px;
    top: 15px;
    left: 25px;
  }

  .blob-circle--2 {
    width: 85px;
    height: 85px;
    top: 55px;
    left: 80px;
  }

  .blob-circle--3 {
    width: 90px;
    height: 90px;
    top: 0;
    left: 155px;
  }

  .blob-circle--4 {
    width: 105px;
    height: 105px;
    bottom: 0;
    left: 20px;
  }

  .blob-circle--5 {
    width: 70px;
    height: 70px;
    bottom: 35px;
    left: 195px;
  }

  .blob-circle {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   ONZE REIS - Image Section (Connecting contracts)
   ========================================================================== */

.onze-reis-image-section {
  padding: 80px 24px;
  background: #F8FAFC;
}

.onze-reis-image-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.onze-reis-image-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 20px;
}

.onze-reis-image-content p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
}

.onze-reis-image-media {
  display: flex;
  justify-content: center;
}

.onze-reis-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 800px) {
  .onze-reis-image-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .onze-reis-image-content {
    text-align: center;
  }
}

/* ==========================================================================
   FOOTER STYLES - Custom GRIP footer
   ========================================================================== */

.grip-footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grip-footer-logo {
  max-width: 180px;
  height: auto;
}

.grip-footer-contact {
  color: #94A3B8;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.grip-footer-contact a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s;
}

.grip-footer-contact a:hover {
  color: #fff;
}

.grip-footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.grip-footer-social {
  display: flex;
  gap: 16px;
}

.grip-footer-social a {
  color: #94A3B8;
  transition: color 0.2s;
}

.grip-footer-social a:hover {
  color: #fff;
}

.grip-footer-social svg {
  width: 24px;
  height: 24px;
}

/* Astra footer overrides */
.site-primary-footer-wrap,
.site-below-footer-wrap {
  background-color: #0F172A !important;
}

.site-below-footer-wrap {
  background-color: #0a0f1a !important;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-primary-footer-wrap {
  padding: 60px 0 40px;
}

.site-below-footer-wrap {
  padding: 20px 0;
}

/* Force two-column layout for primary footer */
.site-primary-footer-wrap .ast-builder-grid-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px;
  align-items: start;
}

/* Force two-column layout for below footer */
.site-below-footer-wrap .ast-builder-grid-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px;
  align-items: center;
}

/* Alignment within grid cells */
.site-primary-footer-wrap .ast-builder-grid-row > .site-footer-primary-section-1 {
  justify-self: start;
  text-align: left;
}

.site-primary-footer-wrap .ast-builder-grid-row > .site-footer-primary-section-2 {
  justify-self: end;
  text-align: right;
}

.site-below-footer-wrap .ast-builder-grid-row > .site-footer-below-section-1 {
  justify-self: start;
  text-align: left;
}

.site-below-footer-wrap .ast-builder-grid-row > .site-footer-below-section-2 {
  justify-self: end;
  text-align: right;
}

/* Footer menu styling */
.site-footer .ast-builder-menu-footer,
.footer-nav-menu,
.ast-footer-menu-items {
  display: flex !important;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.site-footer .ast-builder-menu-footer a,
.footer-nav-menu li a,
.ast-footer-menu-items a {
  color: #94A3B8 !important;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.site-footer .ast-builder-menu-footer a:hover,
.footer-nav-menu li a:hover,
.ast-footer-menu-items a:hover {
  color: #fff !important;
}

/* Additional Astra footer class overrides */
.ast-builder-footer-grid-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.site-footer .astra-footer-html {
  padding: 0;
}

.site-footer .ast-builder-html-element {
  margin: 0;
}

.site-footer .ast-copyright-inner-wrap,
.site-footer .ast-builder-layout-element {
  margin: 0;
  padding: 0;
}

/* Ensure contact paragraphs have no extra margin */
.grip-footer-contact p {
  margin: 0 0 4px 0;
}

.grip-footer-contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .grip-footer-right {
    justify-content: flex-start;
  }

  .site-primary-footer-wrap {
    padding: 40px 0 30px;
  }

  .ast-builder-footer-grid-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   TEAM PAGE STYLES
   ========================================================================== */

.team-section {
  padding: 80px 0;
  background: #fff;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-department {
  margin-bottom: 64px;
}

.team-department:last-child {
  margin-bottom: 0;
}

.team-department__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E2E8F0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-grid--single {
  grid-template-columns: 1fr;
  max-width: 280px;
}

.team-card {
  background: #F8FAFC;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.team-card--featured {
  background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
}

.team-card--featured .team-card__info {
  background: transparent;
}

.team-card--featured .team-card__name {
  color: #fff;
}

.team-card--featured .team-card__role {
  color: #94A3B8;
}

.team-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #E2E8F0;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
}

.team-card__placeholder {
  width: 80px;
  height: 80px;
  color: #94A3B8;
}

.team-card__placeholder svg {
  width: 100%;
  height: 100%;
}

.team-card__info {
  padding: 20px;
  text-align: center;
  background: #F8FAFC;
}

.team-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 4px 0;
}

.team-card__role {
  font-size: 0.875rem;
  color: #64748B;
  margin: 0;
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: #0A66C2;
  transition: color 0.2s, transform 0.2s;
}

.team-card__linkedin:hover {
  color: #004182;
  transform: scale(1.1);
}

.team-card--featured .team-card__linkedin {
  color: #94A3B8;
}

.team-card--featured .team-card__linkedin:hover {
  color: #fff;
}

/* Team responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-department {
    margin-bottom: 48px;
  }

  .team-department__title {
    font-size: 1.25rem;
  }

  .team-card__info {
    padding: 16px;
  }

  .team-card__name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Centered hero variant for team page */
.hero__inner--centered {
  justify-content: center;
  text-align: center;
}

.hero__content--wide {
  max-width: 700px;
  margin: 0 auto;
}
