/* ============================================================
   BLOODWORKS.NL – COMPLETE REBUILD STYLESHEET
   Extracted from live site: https://bloodworks.nl

   DESIGN TOKENS (from post-5282.css / Elementor kit):
   ============================================================
   Primary (Elementor default):  #6EC1E4 (light blue – rarely used)
   Brand Coral/Orange:           #FF6F61  (--e-global-color-5e71cf4)
   Brand Teal Dark:              #0B6C7D  (--e-global-color-0c31347)
   Brand Teal Light:             #AACDCF  (--e-global-color-0004f4c)
   Announcement BG:              #AACDCF
   Light Gray BG:                #F5F5F5  (--e-global-color-f3aa9ff)
   White:                        #FFFFFF  (--e-global-color-6e6395d)
   Black:                        #000000  (--e-global-color-5d84f3b)
   Hover Teal (dark):            #083E47
   Button Hover:                 #BD5147 / #BA5046 (coral darken)

   FONTS:
   - Primary headings: "Lato" (600–700 weight)
   - Body / UI:        "Inter" (400–600)
   - Alt body:         "Roboto" (400–600)

   BREAKPOINTS:
   - Mobile:   ≤767px
   - Tablet:   768–1024px
   - Desktop:  >1024px
   Max container: 1140px
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand Colors */
  --color-coral:        #FF6F61;
  --color-coral-dark:   #BD5147;
  --color-teal:         #0B6C7D;
  --color-teal-dark:    #083E47;
  --color-teal-light:   #AACDCF;
  --color-teal-pale:    #AACDCF;
  --color-black:        #000000;
  --color-white:        #FFFFFF;
  --color-gray-light:   #F5F5F5;
  --color-gray-mid:     #54595F;
  --color-gray-text:    #7A7A7A;
  --color-gray-border:  #E0E0E0;

  /* Typography */
  --font-primary:  "Lato", "Inter", sans-serif;
  --font-body:     "Inter", "Roboto", sans-serif;

  /* Spacing */
  --section-py:    80px;
  --section-py-sm: 50px;
  --container-max: 1140px;
  --radius-btn:    40px;
  --radius-card:   16px;

  /* Shadows */
  --shadow-card:  0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background-color: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-primary:hover { background-color: var(--color-coral-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-teal);
  border: 2px solid var(--color-teal);
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  transition: all 0.2s ease;
}
.btn-outline:hover { background: var(--color-teal); color: var(--color-white); }

.btn-outline-teal {
  display: inline-block;
  background: transparent;
  color: var(--color-teal);
  border: 2px solid var(--color-teal);
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  transition: all 0.2s ease;
}
.btn-outline-teal:hover { background: var(--color-teal); color: var(--color-white); }

.btn-white {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-teal);
  font-family: var(--font-primary);
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  transition: all 0.2s ease;
}
.btn-white:hover { background: var(--color-teal-dark); color: var(--color-white); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--color-black);
  font-weight: 500;
  border-radius: var(--radius-btn);
  padding: 8px 16px;
  transition: color 0.2s ease;
}
.btn-ghost:hover { color: var(--color-teal); }

.btn-ghost-dark {
  display: inline-block;
  background: transparent;
  color: var(--color-teal);
  border: 1.5px solid var(--color-teal);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-btn);
  padding: 10px 20px;
  transition: all 0.2s ease;
}
.btn-ghost-dark:hover { background: var(--color-teal); color: var(--color-white); }

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background-color: var(--color-teal-light);
  color: var(--color-black);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.announcement-icon { font-size: 1rem; }
.announcement-code {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-link { flex-shrink: 0; }
.logo-img {
  height: 44px;
  width: auto;
}

/* Header Search */
.header-search {
  position: relative;
  flex: 0 0 auto;
}
.search-input {
  border: 1.5px solid var(--color-gray-border);
  border-radius: 30px;
  padding: 7px 36px 7px 14px;
  font-size: 0.875rem;
  width: 200px;
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--color-teal); }
.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-black);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-item:hover > .nav-link { color: var(--color-teal); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-hover);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--color-black);
  transition: color 0.15s, background 0.15s;
}
.dropdown-menu li a:hover { color: var(--color-teal); background: var(--color-gray-light); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow-hover);
  padding: 28px;
  min-width: 680px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-item:hover > .mega-menu,
.nav-item:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mega-heading {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.mega-col ul { display: flex; flex-direction: column; gap: 4px; }
.mega-col ul a {
  font-size: 0.88rem;
  color: var(--color-black);
  padding: 4px 0;
  transition: color 0.15s;
}
.mega-col ul a:hover { color: var(--color-teal); }

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: 80px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.is-open {
  display: block;
  transform: translateX(0);
}
.mobile-nav-inner { max-width: 400px; margin: 0 auto; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-item a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray-border);
  color: var(--color-black);
  transition: color 0.15s;
}
.mobile-nav-item a:hover { color: var(--color-teal); }

/* ===== SECTION UTILITIES ===== */
.section-light      { background: var(--color-gray-light); }
.section-white      { background: var(--color-white); }
.section-gray       { background: #EFEFEF; }
.section-teal       { background: var(--color-teal); color: var(--color-white); }
.section-teal-pale  { background: var(--color-teal-pale); }
.section-dark       { background: var(--color-teal-dark); color: var(--color-white); }

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}
.section-title.center { text-align: center; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-mid);
  max-width: 680px;
  line-height: 1.7;
}
.section-subtitle.center { text-align: center; margin: 0 auto; }

.link-teal { color: var(--color-teal); text-decoration: underline; }
.link-teal:hover { color: var(--color-teal-dark); }

/* ===== HERO – split layout ===== */
.hero-section {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 560px;
  overflow: hidden;
}
.hero-split-left {
  background: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 56px 80px 0;
}
.hero-content {
  max-width: 560px;
  width: 100%;
  padding-left: 20px;
}
.hero-split-right {
  position: relative;
  overflow: hidden;
}
.hero-split-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-width: none;
  border-radius: 0;
}
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
}
.checkmark { color: rgba(255,255,255,0.9); font-size: 1rem; margin-right: 6px; }
.hero-sub-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  transition: all 0.2s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--color-white); }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: var(--section-py) 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 10px;
  line-height: 1.35;
}
.step-text {
  font-size: 0.875rem;
  color: var(--color-gray-mid);
  line-height: 1.6;
}

/* USP Block */
.usp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
}
.usp-image img { border-radius: 20px; box-shadow: var(--shadow-card); width: 100%; }
.usp-text h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.usp-text p {
  color: var(--color-gray-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===== PACKAGES ===== */
.packages-section { padding: var(--section-py) 0; }
.packages-section .section-title { margin-bottom: 16px; }
.packages-section .section-subtitle { margin-bottom: 40px; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.package-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.package-card--featured {
  border-color: var(--color-coral);
  transform: scale(1.02);
}
.package-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-coral);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: lowercase;
}
.package-card--select {
  background: var(--color-teal);
  color: var(--color-white);
}
.package-card--select .package-name,
.package-card--select .package-tagline,
.package-card--select .package-features li { color: var(--color-white); }
.package-card--select .btn-ghost-dark {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.package-card--select .btn-ghost-dark:hover {
  background: rgba(255,255,255,0.2);
}
.package-card--select .btn-primary {
  background: var(--color-white);
  color: var(--color-teal);
}
.package-card--select .btn-primary:hover { background: var(--color-gray-light); }

.package-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.package-brand-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.package-name {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
}
.package-price {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-teal);
}
.price-amount { font-size: 2.2rem; }
.package-tagline {
  font-size: 0.875rem;
  color: var(--color-gray-mid);
  line-height: 1.45;
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.package-features li {
  font-size: 0.875rem;
  color: var(--color-black);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.check-icon { color: var(--color-teal); font-weight: 700; flex-shrink: 0; }

.package-details summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-teal);
  font-weight: 600;
  padding: 6px 0;
  user-select: none;
}
.package-details summary:hover { color: var(--color-teal-dark); }
.package-markers {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--color-gray-mid);
}
.package-markers strong {
  display: block;
  color: var(--color-black);
  font-weight: 600;
  margin: 10px 0 4px;
}
.package-markers ul { display: flex; flex-direction: column; gap: 2px; padding-left: 12px; list-style: disc; }
.package-markers ul li { color: var(--color-gray-mid); font-size: 0.82rem; }

.package-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.package-ctas a { text-align: center; }

.packages-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ===== LOCATIE FINDER ===== */
.locatie-section { padding: var(--section-py) 0; }
.locatie-search-box {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  margin-top: 40px;
}
.locatie-search-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.locatie-search-box > p { color: var(--color-gray-mid); margin-bottom: 20px; }
.locatie-search-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.locatie-input {
  flex: 1;
  min-width: 200px;
  border: 1.5px solid var(--color-gray-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.locatie-input:focus { border-color: var(--color-teal); }
.locatie-select {
  border: 1.5px solid var(--color-gray-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  outline: none;
  background: white;
  cursor: pointer;
}
/* locatie split view – list left, map right simultaneously */
.locatie-split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 16px;
}
.loc-map {
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--color-gray-border);
}

/* ===== WHY SECTION ===== */
.why-section { padding: var(--section-py) 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.why-cta h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-white);
}
.why-usps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-usp {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px 24px;
}
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-usp h4 { font-family: var(--font-primary); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.why-usp p { font-size: 0.875rem; opacity: 0.85; }

/* ===== REVIEWS ===== */
.reviews-section { padding: var(--section-py) 0; }
.reviews-section .section-title { margin-bottom: 8px; }
.reviews-section .section-subtitle { margin-bottom: 40px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-coral);
}
.review-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 14px; }
.review-text {
  font-size: 0.93rem;
  color: var(--color-gray-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--color-black); }

/* ===== FOOTER CTA BAR ===== */
.footer-cta-bar {
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-border);
  padding: 40px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
}
.footer-cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-cta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-teal);
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-cta-link:hover { color: var(--color-teal-dark); }
.footer-cta-whatsapp { color: #25D366; }
.footer-cta-whatsapp:hover { color: #1da851; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-teal);
  color: var(--color-white);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-top: -8px;
}
.footer-social-label,
.footer-payment-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.7;
  margin-bottom: 10px;
}
.social-icons { display: flex; gap: 12px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--color-white);
  transition: background 0.2s;
}
.social-icon:hover { background: rgba(255,255,255,0.3); }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-badge {
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
  opacity: 0.9;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.footer-links a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  background: var(--color-teal-dark);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  opacity: 0.7;
  text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

/* ===== PAGE-SPECIFIC: OVER ONS ===== */
.page-hero {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 80px 0;
}
.page-hero-inner { max-width: 720px; }
.page-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}
.content-section { padding: var(--section-py) 0; }
.content-block { max-width: 820px; }
.content-block h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.content-block p { color: var(--color-gray-mid); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }

/* ===== PAGE: CONTACT ===== */
.contact-section { padding: var(--section-py) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-info p { color: var(--color-gray-mid); margin-bottom: 12px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-teal);
  font-size: 1rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--color-teal-dark); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-black);
}
.form-input,
.form-textarea {
  border: 1.5px solid var(--color-gray-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--color-teal); }
.form-textarea { min-height: 130px; resize: vertical; }

/* ===== PAGE: ONDERZOEKEN ===== */
.onderzoeken-section { padding: var(--section-py) 0; }
.onderzoeken-intro { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.onderzoeken-intro h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.onderzoeken-intro p { color: var(--color-gray-mid); line-height: 1.7; }
.onderzoeken-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.onderzoek-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--color-teal);
}
.onderzoek-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.onderzoek-icon { width: 48px; height: 48px; }
.onderzoek-name {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-black);
}
.onderzoek-price {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-teal);
}
.onderzoek-markers { font-size: 0.82rem; color: var(--color-gray-mid); line-height: 1.6; }
.onderzoek-ctas { display: flex; gap: 10px; margin-top: auto; }
.onderzoek-ctas a { flex: 1; text-align: center; }

/* ===== FAQ ===== */
.faq-section { padding: var(--section-py) 0; background: var(--color-gray-light); }
.faq-intro { text-align: center; margin-bottom: 40px; }
.faq-intro h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-teal); }
.faq-toggle {
  width: 24px;
  height: 24px;
  background: var(--color-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.93rem;
  color: var(--color-gray-mid);
  line-height: 1.75;
}

/* ===== PARTNERS / LEDEN ===== */
.gym-section { padding: var(--section-py) 0; }
.gym-intro { max-width: 800px; margin-bottom: 40px; }
.gym-intro h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.gym-intro p { color: var(--color-gray-mid); line-height: 1.75; margin-bottom: 12px; }
.gym-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.gym-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.gym-card h3 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 10px;
}
.gym-card p { font-size: 0.9rem; color: var(--color-gray-mid); line-height: 1.65; }
.info-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.info-block {
  background: var(--color-gray-light);
  border-radius: 12px;
  padding: 24px;
}
.info-block h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-teal);
}
.info-block p { font-size: 0.9rem; color: var(--color-gray-mid); line-height: 1.65; }

/* ===== PRODUCT PAGE ===== */
.product-section { padding: var(--section-py) 0; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.product-breadcrumb {
  font-size: 0.82rem;
  color: var(--color-gray-mid);
  margin-bottom: 20px;
}
.product-breadcrumb a { color: var(--color-teal); }
.product-breadcrumb span { margin: 0 6px; }
.product-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.product-why { margin-bottom: 28px; }
.product-why h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 10px;
}
.product-why p { color: var(--color-gray-mid); line-height: 1.75; }
.attention-box {
  background: var(--color-gray-light);
  border-left: 4px solid var(--color-teal);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-bottom: 28px;
}
.attention-box h4 { font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.attention-box ul { padding-left: 16px; list-style: disc; }
.attention-box li { font-size: 0.875rem; color: var(--color-gray-mid); }
.markers-list { margin-bottom: 28px; }
.markers-list h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.markers-group { margin-bottom: 20px; }
.markers-group-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-teal);
  margin-bottom: 8px;
}
.markers-group ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding-left: 12px;
  list-style: disc;
}
.markers-group ul li { font-size: 0.875rem; color: var(--color-gray-mid); }
.lab-bepalingen { margin-top: 40px; }
.lab-bepalingen h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.lab-item { margin-bottom: 16px; }
.lab-item strong { font-weight: 700; color: var(--color-black); }
.lab-item p { font-size: 0.875rem; color: var(--color-gray-mid); line-height: 1.65; }

/* Product sidebar */
.product-sidebar {
  position: sticky;
  top: 100px;
}
.product-buy-box {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-teal-light);
}
.product-buy-price {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 6px;
}
.product-buy-incl {
  font-size: 0.82rem;
  color: var(--color-gray-mid);
  margin-bottom: 20px;
}
.product-buy-box .btn-primary {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr 1fr; min-height: 460px; }
  .hero-split-left { padding: 60px 40px 60px 0; }
  .hero-content { max-width: 440px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .usp-block { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-cols { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .header-search { display: none; }
  .locatie-split-panels { grid-template-columns: 1fr; }
  .loc-map { height: 400px; }
}

@media (max-width: 767px) {
  :root { --section-py: 50px; }

  .main-nav { display: none; }
  .header-ctas { display: none; }
  .hamburger { display: flex; }

  .hero-section { grid-template-columns: 1fr; min-height: unset; }
  .hero-split-left { padding: 44px 20px; justify-content: flex-start; }
  .hero-content { max-width: 100%; padding-left: 0; }
  .hero-split-right { height: 260px; order: -1; }
  .hero-split-right img { position: absolute; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; }

  .steps-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-4px); }

  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .onderzoeken-grid { grid-template-columns: 1fr; }
  .gym-grid { grid-template-columns: 1fr; }
  .info-blocks { grid-template-columns: 1fr; }
  .footer-nav-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .mega-menu { min-width: 300px; }
  .markers-group ul { grid-template-columns: 1fr; }

  .locatie-search-row { flex-direction: column; }
  .locatie-input, .locatie-select { width: 100%; }
  .locatie-split-panels { grid-template-columns: 1fr; }
  .loc-map { height: 360px; }

  .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
}

/* ===== ANNOUNCEMENT CTA ===== */
.announcement-cta {
  display: inline-block;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}
.announcement-cta:hover { background: var(--color-teal-dark); }

/* ===== LOCATIE FINDER ITEMS ===== */
.locatie-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-mid);
  margin-bottom: 14px;
  padding-top: 4px;
}

.loc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 4px;
}
.loc-list::-webkit-scrollbar { width: 4px; }
.loc-list::-webkit-scrollbar-track { background: var(--color-gray-light); border-radius: 4px; }
.loc-list::-webkit-scrollbar-thumb { background: var(--color-teal-light); border-radius: 4px; }

.loc-item {
  background: var(--color-gray-light);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.15s, background 0.15s;
}
.loc-item:hover { background: #e8f4f5; border-color: var(--color-teal-light); }
.loc-item.selected { background: #d0edf0; border-color: var(--color-teal); }

.loc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.loc-name {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.35;
}
.loc-distance {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-teal);
  white-space: nowrap;
  background: rgba(11,108,125,0.1);
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.loc-addr,
.loc-hours {
  font-size: 0.78rem;
  color: var(--color-gray-mid);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 3px;
  line-height: 1.45;
}
.loc-addr svg, .loc-hours svg { flex-shrink: 0; margin-top: 2px; }

.loc-route {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-teal);
  transition: color 0.15s;
}
.loc-route:hover { color: var(--color-teal-dark); text-decoration: underline; }

.loc-no-results {
  text-align: center;
  padding: 32px 20px;
  color: var(--color-gray-mid);
  font-size: 0.9rem;
}

/* ===== SELECT PAGE ===== */
.select-hero {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: var(--color-white);
  padding: 80px 0;
}
.select-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.select-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.select-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.select-hero-sub {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 28px;
}
.select-hero-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.select-hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.select-hero-checks .chk {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.select-hero-right {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
}
.select-sample-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.82rem;
}
.select-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.select-cat {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.select-cat-icon { font-size: 1.3rem; }
.select-cat-name { font-size: 0.9rem; font-weight: 600; }
.select-cat-count { font-size: 0.75rem; opacity: 0.7; }

.select-how { padding: var(--section-py) 0; background: var(--color-gray-light); }
.select-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.select-step {
  text-align: center;
  padding: 24px 20px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.select-step-num {
  width: 44px;
  height: 44px;
  background: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.select-step h3 {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.select-step p { font-size: 0.83rem; color: var(--color-gray-mid); line-height: 1.6; }

.select-categories-section { padding: var(--section-py) 0; }
.select-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.select-cat-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--color-teal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.select-cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.select-cat-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.select-cat-card h3 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-black);
}
.select-cat-card-markers {
  font-size: 0.8rem;
  color: var(--color-gray-mid);
  line-height: 1.6;
}
.select-cat-card-price {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-top: 12px;
}

.select-cta-section {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
}
.select-cta-section h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.select-cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .select-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .select-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .select-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .select-hero-inner { grid-template-columns: 1fr; }
  .select-steps-grid { grid-template-columns: 1fr; }
  .select-cat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VISUAL UPGRADE — STATS STRIP, TRUST STRIP, MARKER PILLS,
   BUY BOX TRUST ROWS, IMPROVED ANIMATIONS
   ============================================================ */

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--color-teal);
  padding: 36px 0;
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 20px; }
.stat-number {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 767px) {
  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-divider { display: none; }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--color-gray-light);
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-mid);
  white-space: nowrap;
}
.trust-item svg { color: var(--color-teal); flex-shrink: 0; }

/* ===== MARKER PILLS (product pages) ===== */
.marker-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.marker-pill {
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-border);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-black);
  transition: background 0.15s, border-color 0.15s;
}
.marker-pill:hover { background: #ddeef0; border-color: var(--color-teal-light); }
.marker-pill--new {
  background: rgba(255,111,97,0.08);
  border-color: rgba(255,111,97,0.4);
  color: var(--color-coral-dark);
}
.marker-category-title {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-teal);
  margin-bottom: 8px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.marker-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gray-border);
}

/* ===== BUY BOX TRUST ROWS ===== */
.product-buy-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.buy-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-gray-mid);
}
.buy-trust-row svg { color: var(--color-teal); flex-shrink: 0; }

.product-buy-payment {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ===== IMPROVED HERO GRADIENT ===== */
.hero-section {
  background: linear-gradient(135deg, #f8feff 0%, #f0f8f9 50%, #ffffff 100%);
}

/* ===== IMPROVED PACKAGE CARD HOVER ===== */
.package-card {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(11,108,125,0.15);
}

/* ===== STEP CARD CONNECTOR LINE (desktop) ===== */
@media (min-width: 1025px) {
  .steps-grid {
    position: relative;
  }
  .steps-grid::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(10% + 24px);
    right: calc(10% + 24px);
    height: 2px;
    background: linear-gradient(to right, var(--color-teal-light), var(--color-teal), var(--color-teal-light));
    z-index: 0;
  }
  .step-card { position: relative; z-index: 1; }
}

/* ===== REVIEW CARDS UPGRADE ===== */
.review-card {
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-teal-light);
  line-height: 1;
  opacity: 0.5;
}

/* ===== SMOOTH SCROLLING & TEXT SELECTION ===== */
::selection { background: var(--color-teal-light); color: var(--color-teal-dark); }
