/* Voedi marketing site — rustige, warme typografie; groen uit de app */

:root {
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-50: #f0fdf4;
  --amber-400: #fbbf24;
  --stone-900: #1c1917;
  --stone-700: #44403c;
  --stone-500: #78716c;
  --stone-100: #f5f5f4;
  --white: #fafaf9;
  --radius: 14px;
  --shadow: 0 12px 40px -12px rgb(28 25 23 / 0.12);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--stone-900);
  background: linear-gradient(165deg, var(--green-50) 0%, var(--white) 38%, var(--stone-100) 100%);
  min-height: 100vh;
}

a {
  color: var(--green-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-600);
}

.wrap {
  width: min(1040px, 92vw);
  margin-inline: auto;
}

/* Header */

.site-header {
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(250 250 249 / 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(231 229 228 / 0.8);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--stone-900);
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--stone-700);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--green-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  background: rgb(245 245 244);
  border: 1px solid rgb(231 229 228);
}

.lang-switch a {
  color: var(--stone-700);
  text-decoration: none;
  min-width: 1.75rem;
  text-align: center;
}

.lang-switch a:hover {
  color: var(--green-700);
}

.lang-switch__current {
  color: var(--green-700);
}

.lang-switch__sep {
  color: var(--stone-500);
  user-select: none;
  font-weight: 400;
  opacity: 0.85;
}

.footer-lang {
  margin-left: 0;
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .header-actions {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}

/* Hero */

.hero {
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 780px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero-logo {
  width: clamp(72px, 18vw, 96px);
  height: auto;
  aspect-ratio: 1;
  display: block;
  margin-bottom: 1.15rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  background: rgb(22 163 74 / 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--stone-700);
  margin: 0 0 1.75rem;
  max-width: 38ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  box-shadow: 0 4px 14px -4px rgb(22 163 74 / 0.55);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 20px -4px rgb(22 163 74 / 0.6);
}

.btn-ghost {
  background: #fff;
  color: var(--stone-700);
  border: 1px solid rgb(214 211 209);
}

.btn-ghost:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.btn[disabled],
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgb(231 229 228 / 0.9);
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-mini {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-mini li {
  margin: 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--stone-700);
  font-size: 0.98rem;
}

.feature-mini li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 0 3px rgb(251 191 36 / 0.25);
}

/* Sections */

section {
  padding: 3rem 0;
}

section.alt {
  background: rgb(255 255 255 / 0.65);
  border-block: 1px solid rgb(231 229 228 / 0.7);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.section-intro {
  color: var(--stone-500);
  max-width: 58ch;
  margin: 0 0 2rem;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgb(231 229 228);
  height: 100%;
}

.card .icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--stone-700);
}

.parent-box {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgb(22 163 74 / 0.08), rgb(251 191 36 / 0.12));
  border: 1px solid rgb(22 163 74 / 0.15);
}

.parent-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.parent-box p {
  margin: 0;
  color: var(--stone-700);
}

.parent-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--stone-700);
}

.parent-list li {
  margin-bottom: 0.35rem;
}

/* Store strip */

.store-strip {
  text-align: center;
  padding: 2.5rem 1rem;
}

.store-strip h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.store-strip p {
  color: var(--stone-500);
  margin: 0 auto 1.25rem;
  max-width: 42ch;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.note-small {
  font-size: 0.85rem;
  color: var(--stone-500);
  margin-top: 1rem;
}

/* Footer */

.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgb(231 229 228);
  font-size: 0.9rem;
  color: var(--stone-500);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.footer-mark {
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.footer-links a {
  color: var(--stone-700);
  text-decoration: none;
  font-weight: 500;
}

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

/* Legal pages */

.legal {
  padding: 2.5rem 0 4rem;
  max-width: 720px;
}

.legal h1 {
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.legal .meta {
  color: var(--stone-500);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal p,
.legal li {
  color: var(--stone-700);
}

.legal ul {
  padding-left: 1.25rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
