/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --amber: #f4af00;
  --amber-dark: #d99a00;
  --ink: #12100e;
  --gray: #3d3d3d;
  --muted: #6b6b6b;
  --cream: #ffffff;
  --cream-2: #f6f6f4;
  --white: #ffffff;
  --star: #f5c518;
  --radius: 16px;
  --shadow: 0 20px 45px rgba(18, 16, 14, 0.10);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  /* clip (niet hidden) → voorkomt horizontale scroll zonder sticky te breken */
  overflow-x: clip;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1400px, 92%);
  margin-inline: auto;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 10px 24px rgba(244, 175, 0, 0.35);
}

.btn:hover {
  background: var(--amber-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(244, 175, 0, 0.45);
}

.btn--sm {
  padding: 0.62rem 1.4rem;
  font-size: 0.85rem;
}

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

.btn--outline:hover {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.btn--light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.btn--light:hover {
  background: var(--amber);
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 16, 14, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo__img {
  height: 42px;
  width: auto;
  /* original white logo (same as footer) on the black header */
}

.footer__logo {
  height: 42px;
  width: auto;
  margin-bottom: 1rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav__link:hover {
  color: var(--amber);
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.link-login {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.link-login:hover {
  color: var(--amber);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  padding: 3.5rem 0 5rem;
  background:
    radial-gradient(600px 300px at 85% 15%, rgba(244, 175, 0, 0.12), transparent 70%),
    var(--cream);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(244, 175, 0, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero__title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  position: relative;
}

.highlight {
  position: relative;
  display: inline-block;
  color: #fff;
  background: var(--amber);
  padding: 0 0.24em 0.04em;
  border-radius: 6px;
}

.handle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2.5px solid var(--amber-dark);
  border-radius: 2px;
}

.handle--tl { top: -6px; left: -6px; }
.handle--tr { top: -6px; right: -6px; }
.handle--bl { bottom: -6px; left: -6px; }
.handle--br { bottom: -6px; right: -6px; }

.hero__text {
  color: var(--muted);
  font-size: 1rem;
  margin: 1.3rem 0 1.4rem;
  max-width: 48ch;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.rating__stars {
  color: var(--star);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.rating__stars--sm {
  font-size: 0.9rem;
}

.rating__text {
  font-size: 0.9rem;
  color: var(--gray);
}

.hero__checks {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.btn-video__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(18, 16, 14, 0.12);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}

.btn-video__icon svg { width: 18px; height: 18px; margin-left: 2px; }
.btn-video:hover .btn-video__icon { transform: scale(1.1); }

.hero__stats {
  display: flex;
  gap: 2.8rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

.stat__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
}

.stat__label {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Hero media */
.hero__media { position: relative; }

.hero__img-shape {
  border-radius: 24px;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 34%, 22% 34%);
  overflow: hidden;
}

.hero__img-shape img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.trainer-badge {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: rgba(18, 16, 14, 0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1.1rem 0.55rem 0.65rem;
  animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.trainer-badge__score {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
}

.trainer-badge__meta { display: flex; flex-direction: column; line-height: 1.2; }
.trainer-badge__stars { color: var(--star); font-size: 0.8rem; letter-spacing: 0.03em; }
.trainer-badge__text { font-size: 0.82rem; font-weight: 600; }

/* ============ SECTIONS ============ */
.section {
  padding: 4.5rem 0;
}

.section--tint {
  background: var(--cream-2);
}

.section-title {
  font-size: clamp(1.55rem, 2.9vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.1rem;
}

.section-title--center { text-align: center; }

.underline-accent { position: relative; display: inline-block; }

.underline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--amber);
  border-radius: 3px;
}

.section-text {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 54ch;
  margin-bottom: 1.4rem;
}

.section-text strong { color: var(--ink); }
.section-text--center { margin-inline: auto; text-align: center; }

.section-cta {
  text-align: center;
  margin-top: 2.6rem;
}

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

/* image/media blijft sticky terwijl langere tekst ernaast scrollt */
.split__media {
  position: sticky;
  top: 96px;
  align-self: start;
}

.rounded-img {
  border-radius: 22px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Check items */
.check-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.9rem 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.check-grid--wide {
  grid-template-columns: 1fr 1fr;
}

.check-grid li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check-dot {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 0.62rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.deco-sun {
  position: absolute;
  top: -26px;
  right: 40px;
  width: 44px;
  z-index: 2;
  animation: spin-slow 14s linear infinite;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Numbered list */
.numbered-list {
  list-style: none;
  display: grid;
  gap: 1.3rem;
  margin-bottom: 2rem;
}

.numbered-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.num-badge {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.numbered-list strong { font-size: 0.98rem; }
.numbered-list p { color: var(--muted); font-size: 0.86rem; }

/* Stacked media */
.stacked-media { position: relative; }

.stacked-media__small {
  position: absolute;
  bottom: -36px;
  right: -30px;
  width: 46%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow);
}

/* ============ BENEFIT / FEATURE CARDS ============ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.features-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.6rem;
}

.features-head--center {
  justify-content: center;
  text-align: center;
}

.features-head__text { margin-bottom: 0; }

.feature-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.9rem 1.5rem;
  border: 1px solid rgba(18, 16, 14, 0.06);
  border-top: 3px solid var(--amber);
  box-shadow: 0 12px 28px rgba(18, 16, 14, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(18, 16, 14, 0.12);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: var(--amber);
}

.feature-card__icon svg { width: 24px; height: 24px; stroke: #fff; }

.feature-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* ============ COMPARE ============ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  max-width: 900px;
  margin: 2.6rem auto 0;
}

.compare__col {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(18, 16, 14, 0.07);
}

.compare__col--old {
  background: #f6f6f4;
}

.compare__col--new {
  position: relative;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 24px 50px rgba(18, 16, 14, 0.25);
}

.compare__badge {
  position: absolute;
  top: -13px;
  right: 22px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare__col h3 {
  font-size: 1.15rem;
  margin-bottom: 1.3rem;
}

.compare__col ul {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.compare__col li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.compare__col--old li { color: var(--muted); }

.x, .v {
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  margin-top: 2px;
}

.x { background: #e7d9c8; color: #9a8b78; }
.v { background: var(--amber); color: #fff; }

/* ============ QUOTE ============ */
.quote-lead {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.quote-card {
  background: var(--cream-2);
  border-radius: 16px;
  padding: 1.9rem 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.section--tint .quote-card { background: #fff; }

.quote-card--feature {
  background: var(--ink);
  color: #fff;
}

.quote-card__mark {
  display: block;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--amber);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.quote-card p {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

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

.quote-card__author strong { font-size: 0.95rem; }

/* ============ REVIEWS ============ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 12px 28px rgba(18, 16, 14, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.3s ease;
}

.review-card:hover { transform: translateY(-6px); }

.review-card p {
  font-size: 0.88rem;
  color: var(--gray);
  flex: 1;
}

.review-card__source {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--amber-dark);
  letter-spacing: 0.02em;
}

/* ============ NUTRITION BAND ============ */
.nutrition {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 2.4rem 2.6rem;
  box-shadow: var(--shadow);
}

.nutrition__icon {
  font-size: 2.8rem;
  background: var(--amber);
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 18px;
  display: grid;
  place-items: center;
}

.nutrition__body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.nutrition__body p { font-size: 0.92rem; color: #d8d3cc; }
.nutrition__body strong { color: var(--amber); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 780px; }

.faq {
  margin-top: 2.4rem;
  display: grid;
  gap: 0.9rem;
}

.faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(18, 16, 14, 0.07);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__icon {
  min-width: 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq__icon::before {
  content: "+";
  display: block;
  transform: translateY(-1px);
}

.faq__item.is-open .faq__icon { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__a p {
  padding: 0 1.3rem 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============ COMMUNITY CTA ============ */
.community {
  padding: 4rem 0 0;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--cream) 55%, var(--ink) 55%);
}

.community__card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(500px 260px at 80% 10%, rgba(244, 175, 0, 0.22), transparent 60%), var(--gray);
  border-radius: 26px;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
  box-shadow: 0 30px 60px rgba(18, 16, 14, 0.35);
}

.community__card h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.community__card .sun { color: var(--amber); }

.community__text {
  max-width: 46ch;
  margin: 0 auto 1.6rem;
  color: #ded9d2;
  font-size: 0.95rem;
}

.community__checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber);
}

.community__deco {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.community__deco--tl { top: -110px; left: -80px; }
.community__deco--br { bottom: -110px; right: -80px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: #b7b2ab;
  padding: 4.5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: #8b867f;
  max-width: 32ch;
}

.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }

.footer__col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 0.85rem;
  color: #8b867f;
  transition: color 0.2s ease;
}

.footer__col a:hover { color: var(--amber); }

.footer__col .btn,
.footer__col .btn:hover { color: #fff; }

.footer__mini {
  font-size: 0.82rem;
  color: #8b867f;
  margin-bottom: 0.4rem;
}

.footer__col--subscribe .btn { margin-bottom: 0.9rem; }

.footer__contact { font-size: 0.83rem; color: #8b867f; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.6rem 0;
  font-size: 0.78rem;
  color: #8b867f;
}

.footer__socials { display: flex; gap: 1.6rem; }
.footer__socials a:hover, .footer__legal a:hover { color: var(--amber); }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--amber);
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  padding: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(18, 16, 14, 0.3);
}

/* ============ VIDEO MODAL ============ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open { display: flex; }

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.86);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  animation: popIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.video-modal__frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal__close:hover {
  background: var(--amber);
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 560px) {
  .video-modal__close { top: -44px; }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 60px 0 auto 0;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem 0;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-135%);
    transition: transform 0.35s ease;
    z-index: 99;
  }

  .nav.is-open { transform: translateY(0); }
  .hamburger { display: flex; }
  .header__actions .link-login { display: none; }

  /* CTA button next to the hamburger, level with it */
  .header__inner { gap: 0.7rem; }
  .header__actions { margin-left: auto; }
  .header__actions .btn { padding: 0.55rem 1.05rem; font-size: 0.8rem; }

  .hero__inner,
  .split {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .split--media-left .split__media { order: -1; }

  /* geen sticky op mobiel — kolommen stapelen */
  .split__media { position: static; top: auto; }

  .hero__img-shape img { height: 320px; }
  .stacked-media__small { right: 0; bottom: -28px; }

  .rounded-img { height: 340px; }
  .compare { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .footer { padding-bottom: 84px; }
}

@media (max-width: 560px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .check-grid, .check-grid--wide { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.6rem; }
  .nutrition { flex-direction: column; text-align: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   WP / ELEMENTOR CONFLICT-FIX  (alleen op body.google-landing)
   Sommige plugins forceren globaal lettertypes én linkkleuren
   met !important en -webkit-text-fill-color. Onderstaande regels
   herstellen het originele ontwerp op de landingspagina.
   ============================================================ */
body.google-landing,
body.google-landing input,
body.google-landing button,
body.google-landing textarea,
body.google-landing select,
body.google-landing h1,
body.google-landing h2,
body.google-landing h3,
body.google-landing h4,
body.google-landing h5,
body.google-landing h6 { font-family: var(--font) !important; }

/* Geen onderstreping op links/knoppen (thema-reset is verwijderd) */
body.google-landing a { text-decoration: none !important; }

/* Knoppen — tekst weer zichtbaar */
body.google-landing .btn,
body.google-landing .nav__link,
body.google-landing .link-login {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.google-landing .btn--outline,
body.google-landing .btn--light,
body.google-landing .btn-video,
body.google-landing .sticky-cta {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

/* Footerlinks — originele grijstint i.p.v. plugin-geel */
body.google-landing .footer__col a,
body.google-landing .footer__contact,
body.google-landing .footer__socials a,
body.google-landing .footer__legal a {
  color: #8b867f !important;
  -webkit-text-fill-color: #8b867f !important;
}

/* Hover-states */
body.google-landing .nav__link:hover,
body.google-landing .footer__col a:hover,
body.google-landing .footer__socials a:hover,
body.google-landing .footer__legal a:hover {
  color: var(--amber) !important;
  -webkit-text-fill-color: var(--amber) !important;
}

/* <strong> in tekst niet inkleuren door plugins */
body.google-landing strong {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}
