/* Shift for Good — site styles
 * Inherits all tokens from colors_and_type.css (GoodShift design system).
 */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--gs-font-body);
  background: var(--gs-white);
  color: var(--gs-fg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Layout primitives ─────────────────────────────────────────── */
.sfg-page { overflow-x: hidden; }
.sfg-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 900px) {
  .sfg-container { padding: 0 48px; }
}

/* ── Nav ───────────────────────────────────────────────────────── */
.sfg-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gs-divider-2);
}
@media (min-width: 900px) {
  .sfg-nav { padding: 18px 48px; }
}
.sfg-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.sfg-nav-logo, .sfg-nav-logo * { text-decoration: none !important; }
.sfg-nav-links { display: none; gap: 22px; align-items: center; }
.sfg-nav-links a {
  font-family: var(--gs-font-body);
  font-weight: 600; font-size: 15px;
  color: var(--gs-text); text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 1100px) { .sfg-nav-links { gap: 28px; } }
.sfg-nav-links a:hover { color: var(--gs-purple); }
@media (min-width: 900px) {
  .sfg-nav-links { display: flex; }
}
.sfg-nav-cta {
  background: var(--gs-text); color: var(--gs-white);
  border: 0; padding: 10px 18px; border-radius: 999px;
  font-family: var(--gs-font-display); font-weight: 700; font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.sfg-nav-cta:hover { background: var(--gs-purple); transform: translateY(-1px); }

/* ── Buttons ───────────────────────────────────────────────────── */
.sfg-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 0;
  font-family: var(--gs-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  text-decoration: none;
  line-height: 1;
}
.sfg-btn:hover { transform: translateY(-2px); }
.sfg-btn-primary { background: var(--gs-text); color: var(--gs-white); }
.sfg-btn-primary:hover { background: var(--gs-purple); box-shadow: 0 8px 24px rgba(104,93,253,0.35); }
.sfg-btn-orange  { background: var(--gs-orange); color: var(--gs-white); }
.sfg-btn-orange:hover { background: #e9523a; box-shadow: 0 8px 24px rgba(254,102,78,0.35); }
.sfg-btn-yellow  { background: var(--gs-yellow); color: var(--gs-text); }
.sfg-btn-ghost   { background: transparent; color: var(--gs-white); border: 2px solid var(--gs-white); }
.sfg-btn-ghost:hover { background: var(--gs-white); color: var(--gs-text); }
.sfg-btn-outline { background: transparent; color: var(--gs-text); border: 2px solid var(--gs-text); }
.sfg-btn-outline:hover { background: var(--gs-text); color: var(--gs-white); }
.sfg-btn-lg { padding: 20px 32px; font-size: 22px; }

/* ── Hero (split layout, post-NOA) ─────────────────────────────── */
.sfg-hero {
  position: relative;
  display: flex;
  padding: 100px 20px 56px;
  color: var(--gs-white);
  overflow: hidden;
}
@media (min-width: 900px) {
  .sfg-hero { padding: 110px 48px 80px; min-height: 820px; align-items: center; }
}
.sfg-hero-veil {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.7) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 60%);
}
.sfg-hero-content {
  position: relative; z-index: 1;
  width: 100%;
  display: grid;
  gap: 40px;
}
.sfg-hero-split .sfg-hero-content {
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .sfg-hero-split .sfg-hero-content {
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
  }
}
.sfg-hero-left { max-width: 620px; }
.sfg-hero-right {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
@media (max-width: 999px) {
  .sfg-hero-right { max-width: 100%; }
}
.sfg-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sfg-hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gs-green); box-shadow: 0 0 0 4px rgba(21,201,90,0.25);
}
.sfg-hero h1 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
}
@media (min-width: 1200px) {
  .sfg-hero-split h1 { font-size: clamp(56px, 5.6vw, 92px); }
}
.sfg-hero h1 .accent { color: var(--gs-yellow); }
.sfg-hero h1 .underline {
  display: inline-block;
  position: relative;
  text-decoration-line: underline;
  text-decoration-thickness: 0.05em;
  text-decoration-color: var(--gs-orange);
  text-underline-offset: 0.05em;
}
.sfg-hero p.sub {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 640px;
  margin: 0 0 32px;
  color: rgba(255,255,255,0.92);
}
.sfg-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Hero counter (replaces the old counter strip) ─────────────── */
.sfg-hero-counter {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  margin: 0 0 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gs-white);
}
.sfg-hero-counter .hc-tick {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-yellow);
}
.sfg-hero-counter .hc-tick .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gs-green);
  box-shadow: 0 0 0 4px rgba(21,201,90,0.25);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(21,201,90,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(21,201,90,0.1); }
}
.sfg-hero-counter .hc-stat {
  display: flex; flex-direction: column; gap: 2px;
}
.sfg-hero-counter .hc-stat .num {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gs-white);
}
.sfg-hero-counter .hc-stat.small .num { font-size: clamp(18px, 2.4vw, 26px); }
.sfg-hero-counter .hc-stat .lbl {
  font-family: var(--gs-font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.005em;
}
.sfg-hero-counter .hc-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.25);
}

/* ── Hero form card (right column) ─────────────────────────────── */
.sfg-hero-formhead {
  margin-bottom: 12px;
}
.sfg-hero-formhead-eyebrow {
  display: inline-block;
  padding: 5px 10px;
  background: var(--gs-yellow);
  color: var(--gs-text);
  border-radius: 999px;
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sfg-hero-formhead h2 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  color: var(--gs-white);
}

/* ── Photo placeholder (stockfoto-stijl) ─────────────────────── */
.sfg-photo {
  position: relative; overflow: hidden;
  background: var(--gs-purple);
}
.sfg-photo .grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.12) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1.5px 1.5px;
  mix-blend-mode: overlay;
  opacity: 0.55;
}
.sfg-photo .wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 30% 30%, rgba(255,255,255,0.25), transparent 60%),
    radial-gradient(700px 500px at 80% 80%, rgba(0,0,0,0.35), transparent 60%);
}
.sfg-photo-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.55);
  color: var(--gs-white);
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
  backdrop-filter: blur(6px);
}

/* ── Counter strip ─────────────────────────────────────────────── */
.sfg-counter {
  background: var(--gs-text);
  color: var(--gs-white);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.sfg-counter-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 18px 32px;
  align-items: center;
}
@media (max-width: 700px) {
  .sfg-counter-inner { grid-template-columns: 1fr 1fr; }
  .sfg-counter-label { grid-column: 1 / -1; }
}
.sfg-counter-label {
  font-family: var(--gs-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--gs-yellow);
  text-transform: lowercase;
}
.sfg-counter-stat .num {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sfg-counter-stat .lbl {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ── Generic section ───────────────────────────────────────────── */
.sfg-section {
  padding: 80px 0;
}
@media (min-width: 900px) {
  .sfg-section { padding: 120px 0; }
}
.sfg-section-sm { padding: 56px 0; }
@media (min-width: 900px) {
  .sfg-section-sm { padding: 72px 0; }
}
.sfg-section.bg-purple { background: var(--gs-purple); color: var(--gs-white); }
.sfg-section.bg-orange { background: var(--gs-orange); color: var(--gs-white); }
.sfg-section.bg-yellow { background: var(--gs-yellow); color: var(--gs-text); }
.sfg-section.bg-soft   { background: var(--gs-surface-1); }
.sfg-section.bg-ink    { background: var(--gs-text); color: var(--gs-white); }

.sfg-eyebrow {
  display: inline-block;
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
}
.sfg-section.bg-purple .sfg-eyebrow,
.sfg-section.bg-orange .sfg-eyebrow,
.sfg-section.bg-ink    .sfg-eyebrow { background: rgba(255,255,255,0.18); color: var(--gs-white); }

.sfg-h1 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.sfg-h2 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.sfg-h3 {
  font-family: var(--gs-font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.sfg-lead {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 720px;
}

/* ── 'Wat is dit?' block (section 2) ───────────────────────────── */
.sfg-what {
  display: grid; gap: 32px;
}
@media (min-width: 900px) {
  .sfg-what { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
}
.sfg-what-bullets {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 16px;
}
.sfg-what-bullets li {
  display: flex; gap: 16px; align-items: flex-start;
  font-family: var(--gs-font-body);
  font-size: 18px; font-weight: 500;
  line-height: 1.4;
}
.sfg-what-bullets .pip {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  background: var(--gs-yellow);
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--gs-font-display);
  font-weight: 800;
  color: var(--gs-text);
  font-size: 16px;
}
.sfg-what-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
}

/* ── 'Wat krijg je terug' — concept + concreet ───────────────── */
.sfg-rewards-concept {
  display: grid; gap: 18px;
}
@media (min-width: 700px) {
  .sfg-rewards-concept { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1100px) {
  .sfg-rewards-concept { grid-template-columns: repeat(4, 1fr); }
}
.sfg-reward-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.sfg-reward-card .glyph {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--gs-yellow);
  display: grid; place-items: center;
  color: var(--gs-text);
  margin-bottom: 16px;
}
.sfg-reward-card h4 {
  font-family: var(--gs-font-display);
  font-weight: 800; font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.sfg-reward-card p {
  font-family: var(--gs-font-body);
  font-weight: 500; font-size: 15px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}
.sfg-rewards-concrete {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.sfg-rewards-concrete .label {
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-right: 8px;
}
.sfg-chip-row {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  font-family: var(--gs-font-body);
  font-weight: 600; font-size: 15px;
}

/* ── 3-axis block ──────────────────────────────────────────────── */
.sfg-axes {
  display: grid; gap: 18px;
}
@media (min-width: 900px) {
  .sfg-axes { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.sfg-axis {
  background: var(--gs-white);
  color: var(--gs-text);
  border-radius: 28px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  min-height: 380px;
  border: 1px solid var(--gs-divider-2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sfg-axis:hover { transform: translateY(-4px); box-shadow: var(--gs-shadow-lg); }
.sfg-axis-num {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.sfg-axis.color-purple .sfg-axis-num { color: var(--gs-purple); }
.sfg-axis.color-orange .sfg-axis-num { color: var(--gs-orange); }
.sfg-axis.color-yellow .sfg-axis-num { color: var(--gs-amber); }
.sfg-axis h3 {
  font-family: var(--gs-font-display);
  font-weight: 800; font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.sfg-axis .axis-q {
  font-family: var(--gs-font-body);
  font-weight: 600; font-size: 15px;
  color: var(--gs-fg-secondary);
  margin: 0 0 22px;
}
.sfg-axis-opts {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
}
.sfg-axis-opt {
  padding: 14px 18px;
  background: var(--gs-surface-1);
  border-radius: 14px;
  font-family: var(--gs-font-body);
  font-weight: 600;
  font-size: 16px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.sfg-axis-opt:hover { background: var(--gs-text); color: var(--gs-white); }
.sfg-axis-opt[data-checked="true"] { background: var(--gs-text); color: var(--gs-white); }
.sfg-axis-opt .arrow { opacity: 0.5; transition: transform .2s ease; }
.sfg-axis-opt:hover .arrow { transform: translateX(3px); opacity: 1; }

/* ── Group CTA (section 5) ─────────────────────────────────────── */
.sfg-group-cta {
  background: var(--gs-text);
  color: var(--gs-white);
  border-radius: 32px;
  padding: 56px 40px;
  display: grid; gap: 32px;
  position: relative; overflow: hidden;
}
@media (min-width: 900px) {
  .sfg-group-cta { grid-template-columns: 1.3fr 1fr; padding: 80px; gap: 64px; align-items: center; }
}
.sfg-group-cta::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 999px;
  background: var(--gs-orange);
  opacity: 0.35;
  filter: blur(40px);
  pointer-events: none;
}
.sfg-group-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; padding: 0; }
.sfg-group-tags li {
  list-style: none;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-family: var(--gs-font-body);
  font-weight: 600;
  font-size: 14px;
}

/* ── Wat speelt er nu (sectie 6) ───────────────────────────────── */
.sfg-actions {
  display: grid; gap: 20px;
}
@media (min-width: 700px) {
  .sfg-actions { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .sfg-actions { grid-template-columns: repeat(3, 1fr); }
}
.sfg-action {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; align-items: flex-end;
  cursor: pointer;
  transition: transform .25s ease;
}
.sfg-action:hover { transform: translateY(-4px); }
.sfg-action-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.sfg-action-top {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 2;
}
.sfg-action-tag {
  background: var(--gs-yellow);
  color: var(--gs-text);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.sfg-action-tag.live { background: var(--gs-orange); color: var(--gs-white); }
.sfg-action-tag.soon { background: var(--gs-white); color: var(--gs-text); }
.sfg-action-partner {
  background: rgba(0,0,0,0.55);
  color: var(--gs-white);
  backdrop-filter: blur(6px);
  font-family: var(--gs-font-body);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.sfg-action-body {
  position: relative; z-index: 2;
  padding: 24px;
  color: var(--gs-white);
}
.sfg-action-type {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}
.sfg-actions-footer {
  margin-top: 36px;
  display: flex; justify-content: center;
}
.sfg-action-body h4 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.sfg-action-body p {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}
.sfg-action-meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px;
  font-family: var(--gs-font-body);
  font-weight: 600;
  font-size: 13px;
  opacity: 0.95;
}
.sfg-action-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* ── Samen met (logos strip) ───────────────────────────────────── */
.sfg-partners {
  border-top: 1px solid var(--gs-divider-2);
  border-bottom: 1px solid var(--gs-divider-2);
  padding: 56px 0;
  background: var(--gs-white);
}
.sfg-partners-title {
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gs-fg-secondary);
  margin: 0 0 32px;
}
.sfg-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) { .sfg-partners-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .sfg-partners-grid { grid-template-columns: repeat(6, 1fr); } }
.sfg-partner {
  height: 64px;
  display: grid; place-items: center;
  border: 1px solid var(--gs-divider-2);
  border-radius: 12px;
  background: var(--gs-white);
  font-family: var(--gs-font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--gs-text-3);
  text-align: center;
  padding: 0 14px;
  transition: border-color .15s ease, color .15s ease;
}
.sfg-partner:hover { border-color: var(--gs-text); color: var(--gs-text); }

/* ── Form ──────────────────────────────────────────────────────── */
.sfg-form-wrap {
  display: grid; gap: 32px;
}
@media (min-width: 900px) {
  .sfg-form-wrap { grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
}
.sfg-form-card {
  background: var(--gs-white);
  border-radius: 28px;
  border: 1px solid var(--gs-divider-2);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  color: var(--gs-text);
}
@media (min-width: 900px) {
  .sfg-form-card { padding: 36px; }
}
.sfg-form-card-compact { padding: 24px; }
@media (min-width: 900px) {
  .sfg-form-card-compact { padding: 28px; }
}
.sfg-form-step {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--gs-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gs-purple);
  margin: 0 0 12px;
}
.sfg-form-step .of { color: var(--gs-text-4); }
.sfg-form-q {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.sfg-form-hint {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--gs-fg-secondary);
  margin: 0 0 24px;
}
.sfg-input, .sfg-textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--gs-divider);
  border-radius: 14px;
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 18px;
  background: var(--gs-white);
  color: var(--gs-text);
  transition: border-color .15s ease;
}
.sfg-input:focus, .sfg-textarea:focus {
  outline: none;
  border-color: var(--gs-text);
}
.sfg-input.error { border-color: var(--gs-orange); }
.sfg-error {
  font-family: var(--gs-font-body);
  font-size: 13px; font-weight: 600;
  color: var(--gs-orange);
  margin-top: 6px;
}

.sfg-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.sfg-pills-big { gap: 12px; }
.sfg-pills-big .sfg-pill { padding: 14px 20px; font-size: 16px; }

/* ── Intent row (Q1: Ja/Nee) ───────────────────────────────────── */
.sfg-intent-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}
.sfg-intent {
  appearance: none;
  border: 2px solid var(--gs-divider);
  background: var(--gs-white);
  border-radius: 18px;
  padding: 24px 18px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
  text-align: center;
}
.sfg-intent:hover { transform: translateY(-2px); border-color: var(--gs-text); }
.sfg-intent .big {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.sfg-intent .small {
  font-family: var(--gs-font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--gs-fg-secondary);
}
.sfg-intent-yes[data-checked="true"],
.sfg-intent-yes:hover {
  background: var(--gs-text);
  color: var(--gs-white);
  border-color: var(--gs-text);
}
.sfg-intent-yes[data-checked="true"] .small,
.sfg-intent-yes:hover .small { color: rgba(255,255,255,0.8); }
.sfg-intent-no[data-checked="true"] {
  background: var(--gs-surface-2);
  border-color: var(--gs-text);
}

/* ── Off-ramp (Q1 = Nee) ───────────────────────────────────────── */
.sfg-offramp {
  text-align: center;
  padding: 16px 4px;
}
.sfg-offramp-mark {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--gs-surface-1);
  color: var(--gs-fg-secondary);
  display: grid; place-items: center;
}
.sfg-offramp h3 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.sfg-offramp p {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gs-fg-secondary);
  margin: 0 0 22px;
  max-width: 380px;
  margin-left: auto; margin-right: auto;
}
.sfg-offramp-actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.sfg-pill {
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid var(--gs-divider);
  background: var(--gs-white);
  font-family: var(--gs-font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.sfg-pill:hover { border-color: var(--gs-text); }
.sfg-pill[aria-pressed="true"] {
  background: var(--gs-text);
  color: var(--gs-white);
  border-color: var(--gs-text);
}
.sfg-pill .check { width: 16px; height: 16px; opacity: 0; transition: opacity .15s ease; }
.sfg-pill[aria-pressed="true"] .check { opacity: 1; }

.sfg-form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gs-divider-2);
}
.sfg-progress {
  height: 4px;
  background: var(--gs-divider-2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 22px;
}
.sfg-progress-bar {
  height: 100%;
  background: var(--gs-text);
  border-radius: 999px;
  transition: width .35s cubic-bezier(.2,.8,.2,1);
}

.sfg-checkbox {
  display: flex; gap: 12px; align-items: flex-start;
  cursor: pointer;
  margin: 12px 0;
}
.sfg-checkbox input { display: none; }
.sfg-checkbox .box {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border: 2px solid var(--gs-divider);
  border-radius: 6px;
  display: grid; place-items: center;
  margin-top: 2px;
  transition: all .15s ease;
}
.sfg-checkbox input:checked + .box {
  background: var(--gs-text);
  border-color: var(--gs-text);
}
.sfg-checkbox .box svg { width: 14px; height: 14px; opacity: 0; }
.sfg-checkbox input:checked + .box svg { opacity: 1; }
.sfg-checkbox .lbl {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--gs-fg-secondary);
}
.sfg-checkbox .lbl a { color: var(--gs-text); text-decoration: underline; }

/* ── Form summary side ─────────────────────────────────────────── */
.sfg-form-side {
  position: sticky; top: 90px;
}
.sfg-form-side h3 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.sfg-form-side p {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: var(--gs-fg-secondary);
  margin: 0 0 24px;
}
.sfg-form-side .wink {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gs-yellow);
  font-family: var(--gs-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--gs-text);
}
.sfg-side-bullets { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.sfg-side-bullets li {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--gs-font-body);
  font-weight: 500; font-size: 15px;
}
.sfg-side-bullets svg { flex: 0 0 22px; color: var(--gs-purple); }

/* ── FAQ ───────────────────────────────────────────────────────── */
.sfg-faq { max-width: 880px; margin: 0 auto; }
.sfg-faq-item {
  border-bottom: 1px solid var(--gs-divider);
  padding: 24px 0;
}
.sfg-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: var(--gs-font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: -0.01em;
  color: var(--gs-text);
  padding: 0;
  line-height: 1.2;
}
.sfg-faq-q .ico {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--gs-surface-1);
  display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease;
}
.sfg-faq-item[data-open="true"] .ico { transform: rotate(45deg); background: var(--gs-text); color: var(--gs-white); }
.sfg-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--gs-fg-secondary);
}
.sfg-faq-item[data-open="true"] .sfg-faq-a {
  max-height: 400px;
  padding-top: 14px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.sfg-footer {
  background: var(--gs-text);
  color: var(--gs-white);
  padding: 64px 0 32px;
}
.sfg-footer-top {
  display: grid; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 900px) {
  .sfg-footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.sfg-footer h5 {
  font-family: var(--gs-font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.6);
}
.sfg-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sfg-footer a {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.sfg-footer a:hover { color: var(--gs-yellow); }
.sfg-footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  padding-top: 24px;
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ── Section header layout ─────────────────────────────────────── */
.sfg-section-head {
  display: grid; gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 900px) {
  .sfg-section-head { grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
}

/* ── Success state ─────────────────────────────────────────────── */
.sfg-success {
  text-align: center;
  padding: 40px 20px;
}
.sfg-success-mark {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--gs-green);
  display: grid; place-items: center;
  color: var(--gs-white);
  animation: pop .4s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.sfg-success h2 {
  font-family: var(--gs-font-display);
  font-weight: 800; font-size: 44px;
  line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 12px;
}

/* ── Shareable section (Instagram templates) ───────────────────── */
.sfg-shareables {
  display: grid; gap: 24px;
  margin-top: 40px;
}
@media (min-width: 800px) {
  .sfg-shareables { grid-template-columns: 1fr 0.6fr; }
}
.sfg-shareable {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--gs-shadow-lg);
}
.sfg-shareable .frame-label {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--gs-font-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 5;
}

/* ── Hoe werkt 't — mini steps (post-NOA, subtieler) ──────────── */
.sfg-how-head {
  margin-bottom: 36px;
  text-align: center;
}
.sfg-how-head .sfg-h2 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 10px 0 0;
}
.sfg-how-mini {
  display: grid;
  gap: 16px;
}
@media (min-width: 800px) {
  .sfg-how-mini { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.sfg-how-step {
  display: flex; gap: 16px;
  padding: 24px;
  background: var(--gs-white);
  border-radius: 18px;
  border: 1px solid var(--gs-divider-2);
}
.sfg-how-step .num {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gs-purple);
  flex: 0 0 auto;
}
.sfg-how-step h4 {
  font-family: var(--gs-font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.sfg-how-step p {
  font-family: var(--gs-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  color: var(--gs-fg-secondary);
}

/* ── Modal ─────────────────────────────────────────────────────── */
.sfg-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(28,24,40,0.6);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.sfg-modal {
  position: relative;
  width: 100%; max-width: 720px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--gs-white);
  border-radius: 28px;
  padding: 40px 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  animation: pop .25s cubic-bezier(.2,.8,.2,1);
}
@media (min-width: 700px) {
  .sfg-modal { padding: 56px 56px; }
}
.sfg-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--gs-surface-1);
  border: 0;
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 2;
}
.sfg-modal-close:hover { background: var(--gs-text); color: var(--gs-white); }
.sfg-form-2col { display: grid; gap: 18px; }
@media (min-width: 600px) { .sfg-form-2col { grid-template-columns: 1fr 1fr; } }

/* hide nav cta button text on tiny screens */
@media (max-width: 380px) {
  .sfg-nav-cta { padding: 8px 14px; font-size: 13px; }
}
