/* Rasp landingspagina — warme, eerlijke, kok-vriendelijke stijl */

:root {
  --primary: #C4593B;
  --primary-hover: #A84B30;
  --accent: #3B5C4A;
  --bg: #FBF7F0;
  --bg-soft: #F5EFE3;
  --bg-card: #FFFFFF;
  --text: #1C1A17;
  --text-muted: #6B6357;
  --border: #E5DDCD;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(28, 26, 23, 0.04);
  --shadow-md: 0 4px 16px rgba(28, 26, 23, 0.08);
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

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

a:hover {
  color: var(--primary-hover);
}

.accent {
  color: var(--primary);
}

/* === Header === */

.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.logo-dot {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
}

.site-nav a:hover {
  color: var(--primary);
}

.site-nav .nav-login {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  transition: background 0.15s;
}

.site-nav .nav-login:hover {
  background: var(--primary-dark, #a14732);
  color: #fff;
}

/* === Buttons === */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.15s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--text-muted);
  color: var(--text);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}

/* === Hero === */

.hero {
  padding: 64px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 32px;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  background: rgba(196, 89, 59, 0.08);
  color: var(--primary, #C4593B);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
}

.price-strike {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* === Sites strip === */

.sites-strip {
  padding: 32px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sites-strip-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sites-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  max-width: 800px;
  margin: 0 auto;
}

.sites-strip-list span {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.sites-strip-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 0;
  font-style: italic;
}

/* === Why === */

/* === How it works === */
.how-it-works {
  padding: 72px 0;
  background: var(--bg-card, #fff);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.why {
  padding: 80px 0;
}

.section-lead {
  text-align: center;
  font-size: 19px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 32px 24px;
}

.why-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.why-item p {
  color: var(--text-muted);
  margin: 0;
}

/* === Features === */

.features {
  padding: 80px 0;
  background: var(--bg-soft);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.feature:last-child {
  border-bottom: none;
}

.feature-reverse {
  direction: rtl;
}

.feature-reverse > * {
  direction: ltr;
}

.feature-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
}

.feature-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* === Pricing === */

.pricing {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-grid-3 {
  max-width: 1100px;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 880px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr 1.05fr 1fr;
    align-items: stretch;
  }
}

.pricing-intro {
  text-align: center;
  color: var(--text-muted);
  margin: -16px auto 32px;
  max-width: 560px;
  font-size: 15px;
}

.price-features li.muted {
  color: var(--text-muted);
  font-size: 13px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card h3 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.price-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-compare {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.price-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  flex: 1;
}

.price-features li {
  padding: 8px 0;
  color: var(--text);
  font-size: 16px;
}

.price-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* === Download / Wachtlijst === */

.download {
  padding: 80px 0;
  background: var(--bg-soft);
}

.download-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.download p {
  font-size: 18px;
  color: var(--text-muted);
}

.download-sub {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-sub a {
  color: var(--primary);
  text-decoration: underline;
}

.download-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

/* === FAQ === */

.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq summary {
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 32px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.15s;
}

.faq details[open] summary::after {
  content: '−';
}

.faq details p {
  margin-top: 16px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* === CTA Final === */

.cta-final {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.cta-final-inner {
  text-align: center;
}

.cta-final h2 {
  margin-bottom: 12px;
}

.cta-final-sub {
  color: var(--text-muted);
  margin: 0 0 24px;
  font-size: 16px;
}

.cta-final-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Footer === */

.site-footer {
  padding: 64px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 280px;
}

.footer-links h4 {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text);
  padding: 4px 0;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* === Legal pages (privacy, terms) === */

.legal-page {
  padding: 64px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 8px;
  text-align: left;
}

.legal-page h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
  text-align: left;
}

.legal-page h3 {
  font-size: 18px;
  margin-top: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.legal-page ul {
  margin: 16px 0 16px 24px;
}

.legal-page .last-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-page .placeholder-note {
  background: #FFF8E5;
  border: 1px solid #E5D9A8;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin: 16px 0;
}

/* === Responsive === */

@media (max-width: 900px) {
  .hero-grid,
  .feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-reverse {
    direction: ltr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav a {
    font-size: 14px;
  }

  .site-nav .nav-login {
    padding: 6px 14px;
    font-size: 13px;
  }

  .hero-cta,
  .download-buttons,
  .cta-final-buttons {
    flex-direction: column;
  }

  .hero-cta .btn,
  .cta-final-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .why,
  .features,
  .pricing,
  .download,
  .faq {
    padding: 56px 0;
  }
}

/* ============================================================
   Functionele-cookies-banner (GDPR informeren, geen consent-UI)
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card, #fff);
  border-top: 1px solid var(--border, #e0d8c5);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  z-index: 100;
  transition: opacity 0.3s;
  font-size: 14px;
}
#cookie-banner .cb-msg {
  flex: 1;
  color: var(--text, #2a2a2a);
  line-height: 1.4;
}
#cookie-banner .cb-link {
  color: var(--primary, #d97757);
  text-decoration: underline;
  white-space: nowrap;
}
#cookie-banner .cb-ok {
  padding: 8px 16px;
  background: var(--primary, #d97757);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  font-size: 13px;
}
#cookie-banner .cb-ok:hover {
  opacity: 0.9;
}
@media (max-width: 640px) {
  #cookie-banner {
    flex-wrap: wrap;
    padding: 10px 12px;
  }
  #cookie-banner .cb-msg {
    flex-basis: 100%;
  }
}

/* ===== App-first pivot: nieuwe secties ===== */
.hero-platform-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--text-muted, #6B655D);
}
.pain {
  padding: 64px 0;
  text-align: center;
}
.pain h2 {
  max-width: 720px;
  margin: 0 auto 0.5rem;
}
.mobile-features {
  padding: 80px 0;
  text-align: center;
}
.mobile-features .why-grid {
  text-align: left;
  margin-top: 32px;
}
.earn {
  padding: 80px 0;
  text-align: center;
  background: var(--accent-soft, #FBE9E1);
}
.earn h2 {
  max-width: 720px;
  margin: 0 auto 0.5rem;
}
.earn .section-lead {
  margin-bottom: 1.5rem;
}
.extension-aside {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--border, #E5DDD0);
}
.extension-aside h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.extension-aside .section-lead {
  max-width: 620px;
  margin: 0 auto 1.2rem;
  font-size: 0.98rem;
}
.lang-switch {
  display: inline-flex;
  gap: 6px;
  margin-left: 12px;
  font-size: 0.85rem;
}
.lang-switch a {
  color: var(--text-muted, #6B655D);
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
}
.lang-switch a:hover { color: var(--primary, #C4593B); }
.lang-switch a.lang-active {
  color: var(--primary, #C4593B);
  font-weight: 700;
}

/* ---- App-store badges (toegevoegd: Android live op Google Play) ---- */
.store-badges { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.hero-cta .store-badges, .download-inner .store-badges { justify-content: inherit; }
.btn-store {
  display: inline-flex; align-items: center; gap: .65rem;
  background: #000; color: #fff; border-radius: 11px;
  padding: .55rem 1rem; text-decoration: none; line-height: 1.05;
  border: 1px solid #000; transition: background .15s ease;
}
.btn-store:hover { background: #1d1d1f; }
.btn-store svg { flex: 0 0 auto; }
.btn-store .bs-small { font-size: .62rem; letter-spacing: .04em; text-transform: uppercase; opacity: .85; display: block; }
.btn-store .bs-big { font-size: 1.05rem; font-weight: 600; display: block; margin-top: 1px; }
.hero-store-note { font-size: .85rem; color: var(--text-muted); margin-top: .5rem; }
.hero-store-note a { color: var(--primary); }

/* ---- Geanimeerde hero-demo: deel-sheet -> AI -> opgeslagen recept ---- */
.hero-demo { width: 100%; max-width: 290px; margin: 0 auto; }
.demo-phone {
  position: relative; width: 100%; aspect-ratio: 9 / 19;
  background: #1c1a17; border-radius: 34px; padding: 9px;
  box-shadow: 0 24px 50px rgba(28,26,23,.20);
}
.demo-screen { position: relative; width: 100%; height: 100%; border-radius: 26px; overflow: hidden; background: var(--bg); }
.demo-scene { position: absolute; inset: 0; opacity: 0; }
.demo-scene img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes demoS1 { 0%{opacity:1} 29%{opacity:1} 35%{opacity:0} 94%{opacity:0} 100%{opacity:1} }
@keyframes demoS2 { 0%{opacity:0} 29%{opacity:0} 35%{opacity:1} 62%{opacity:1} 68%{opacity:0} 100%{opacity:0} }
@keyframes demoS3 { 0%{opacity:0} 62%{opacity:0} 68%{opacity:1} 94%{opacity:1} 100%{opacity:0} }
.demo-s1 { animation: demoS1 12s infinite; }
.demo-s2 { animation: demoS2 12s infinite; }
.demo-s3 { animation: demoS3 12s infinite; }
.demo-post { display:flex; flex-direction:column; height:100%; }
.demo-post-img { flex:1; background: linear-gradient(140deg,#8a5234,#36210f); display:flex; align-items:center; justify-content:center; font-size:64px; }
.demo-post-cap { padding:9px 13px; font-size:12px; color:var(--text); background:#fff; }
.demo-sheet { position:absolute; left:0; right:0; bottom:0; background:#fff; border-top-left-radius:18px; border-top-right-radius:18px; padding:14px 12px; box-shadow:0 -8px 24px rgba(0,0,0,.14); }
.demo-sheet-row { display:flex; gap:10px; }
.demo-app { flex:1; text-align:center; }
.demo-app .ic { width:42px;height:42px;border-radius:13px;margin:0 auto;background:var(--bg-soft); display:flex;align-items:center;justify-content:center;font-size:20px; }
.demo-app .lbl { font-size:10px; color:var(--primary); font-weight:700; margin-top:4px; }
.demo-app.is-rasp .ic { background: var(--primary); color:#fff; animation: demoTap 1.5s infinite; }
@keyframes demoTap { 0%{box-shadow:0 0 0 0 rgba(196,89,59,.45)} 70%{box-shadow:0 0 0 12px rgba(196,89,59,0)} 100%{box-shadow:0 0 0 0 rgba(196,89,59,0)} }
.demo-ai { display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:16px;padding:24px;text-align:center; }
.demo-ai .dot { width:16px;height:16px;border-radius:50%;background:var(--primary); }
.demo-spinner { width:34px;height:34px;border-radius:50%;border:3px solid var(--border);border-top-color:var(--primary);animation:demoSpin .9s linear infinite; }
@keyframes demoSpin { to { transform: rotate(360deg); } }
.demo-ai p { font-size:13px;color:var(--text-muted);margin:0; }
.demo-cap { text-align:center; margin-top:14px; font-size:.92rem; color:var(--text-muted); }
@media (prefers-reduced-motion: reduce){
  .demo-s1,.demo-s2,.demo-app.is-rasp .ic,.demo-spinner{animation:none}
  .demo-s1,.demo-s2{opacity:0} .demo-s3{opacity:1}
}

/* ---- Referral uitgelegd in 3 simpele stappen ---- */
.earn-steps { counter-reset: earnstep; display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; max-width:920px; margin:1.6rem auto .2rem; text-align:left; }
.earn-step { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:1.1rem 1.2rem; font-size:.97rem; color:var(--text); line-height:1.55; }
.earn-step::before { counter-increment:earnstep; content:counter(earnstep); display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; background:var(--primary); color:#fff; font-weight:700; font-size:.95rem; margin-bottom:.6rem; }
.earn-note { max-width:680px; margin:1rem auto 0; color:var(--text-muted); font-size:.95rem; }
@media (max-width:720px){ .earn-steps{ grid-template-columns:1fr; } }
