/* 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-creator {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.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;
  }
}
