/* ===========================================================
   Breaze Intelligence — styles
   Kleur, type en spacing staan als variabelen bovenaan.
   Pas --clay aan om de hoofdkleur overal te wijzigen.
   =========================================================== */

:root {
  --bg:        #f6f1ea;   /* warme off-white achtergrond */
  --ink:       #2c2621;   /* warm bijna-zwart (tekst)     */
  --muted:     #6f655a;   /* gedempte tekst               */
  --clay:      #6f8a5f;   /* HOOFDKLEUR (groen)           */
  --clay-deep: #57704a;   /* donkerder groen              */
  --sage:      #bd6843;   /* tweede accent (terracotta)   */
  --card:      #f0e9df;   /* zand-vlak / cards            */
  --line:      #e4dacb;   /* lijnen / randen              */

  --maxw: 1180px;
  --serif: 'Newsreader', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, sans-serif;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
::selection { background: rgba(111,138,95,.2); }
img { max-width: 100%; display: block; }

/* ---------- helpers ---------- */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 12px;
}
.eyebrow--center { text-align: center; }
.eyebrow--light  { color: #b9cda4; }

.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 14px 24px; border-radius: 999px; border: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--accent { background: var(--clay); color: #fff; box-shadow: 0 6px 20px -8px var(--clay); }
.btn--ink    { background: var(--ink); color: var(--bg); padding: 11px 19px; font-size: 14px; }
.btn--ghost  { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--white  { background: #fff; color: var(--clay-deep); font-weight: 700; }
.btn--outline{ background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.4); }

.link { position: relative; text-decoration: none; color: inherit; }
.link::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  height: 1.5px; width: 0; background: var(--clay); transition: width .25s ease;
}
.link:hover::after { width: 100%; }

/* ---------- brand ---------- */
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.brand__name { font-family: var(--serif); font-size: 23px; font-weight: 500; letter-spacing: -.01em; }
.brand__suffix { color: var(--muted); font-weight: 400; }
.brand__mark { color: var(--clay); flex: none; }
.brand__dot {
  width: 11px; height: 11px; border-radius: 50%; background: var(--clay);
  display: inline-block; animation: breathe 4s ease-in-out infinite;
}
.brand__dot--static { width: 10px; height: 10px; animation: none; }
@keyframes breathe {
  0%, 100% { transform: scale(1);    opacity: .9; }
  50%      { transform: scale(1.35); opacity: .5; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px); background: rgba(246,241,234,.82);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; gap: 32px;
}
.nav__links { display: flex; gap: 26px; margin-left: 14px; font-size: 15px; color: var(--muted); }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.lang {
  display: flex; align-items: center; gap: 6px; background: none;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px;
  cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--muted); letter-spacing: .02em;
}
.lang__active { color: var(--clay); }
.lang__sep    { opacity: .4; }

/* ---------- hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto; padding: 78px 28px 64px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__title {
  font-family: var(--serif); font-weight: 500; font-size: 54px;
  line-height: 1.06; letter-spacing: -.02em; margin-bottom: 22px;
}
.hero__lead { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 480px; margin-bottom: 30px; }
.hero__cta  { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__points { display: flex; gap: 24px; margin-top: 34px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.hero__media { position: relative; }

.placeholder {
  background-image: repeating-linear-gradient(135deg, #e7dccd 0 2px, transparent 2px 11px);
  border: 1px solid var(--line); border-radius: 18px;
  display: flex; align-items: flex-end; padding: 18px;
}
.placeholder--portrait { aspect-ratio: 4/5; }
.placeholder--square   { aspect-ratio: 1/1; }
.placeholder__label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--muted);
  background: var(--bg); padding: 5px 9px; border-radius: 6px; border: 1px solid var(--line);
}
/* ---------- decoratieve illustraties (i.p.v. foto-placeholders) ---------- */
.art {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  position: relative; background: var(--card); line-height: 0;
}
.art svg { display: block; width: 100%; height: 100%; }
.art img  { display: block; width: 100%; height: 100%; object-fit: cover; }
.art--hero  { aspect-ratio: 3/2; box-shadow: 0 24px 50px -30px rgba(44,38,33,.45); }
.art--hero img { object-position: 55% 50%; }
.art--about { aspect-ratio: 1/1; }
.art__sun   { transform-origin: center; transform-box: fill-box; animation: breathe-soft 7s ease-in-out infinite; }
.art__float { transform-origin: center; transform-box: fill-box; animation: float-soft 9s ease-in-out infinite; }
@keyframes breathe-soft { 0%, 100% { transform: scale(1); opacity: .92; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes float-soft   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .art__sun, .art__float { animation: none; } }

.stat-card {
  position: absolute; top: 24px; left: -22px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 12px 30px -16px rgba(44,38,33,.4); max-width: 200px;
}
.stat-card__num   { font-family: var(--serif); font-size: 22px; color: var(--clay); }
.stat-card__label { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ---------- trust ---------- */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--card); text-align: center; padding: 20px 28px;
  font-size: 14px; color: var(--muted);
}

/* ---------- generic section ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 84px 28px; }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.section__title {
  font-family: var(--serif); font-weight: 500; font-size: 40px;
  line-height: 1.1; letter-spacing: -.02em; max-width: 560px;
}
.section__title--center { max-width: none; text-align: center; margin-bottom: 42px; }
.section__intro { font-size: 16px; color: var(--muted); max-width: 320px; line-height: 1.55; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ---------- service cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon--accent { background: rgba(111,138,95,.14); color: var(--clay); }
.card__icon--alt    { background: rgba(189,104,67,.16); color: var(--sage); }
.card__title { font-family: var(--serif); font-size: 25px; font-weight: 500; margin-bottom: 10px; }
.card__text  { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }

.ticks { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ticks li { font-size: 14px; color: var(--ink); display: flex; gap: 9px; }
.ticks li::before { content: "→"; color: var(--clay); }
.ticks--alt li::before { color: var(--sage); }

/* ---------- computerhulp ---------- */
.help { background: var(--ink); color: #f1ebe2; }
.help__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 84px 28px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.help__title { font-family: var(--serif); font-weight: 500; font-size: 40px; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.help__lead  { font-size: 17px; line-height: 1.6; color: #c9c0b4; max-width: 420px; }
.help__grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.help__item  { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 26px; }
.help__item-title { font-family: var(--serif); font-size: 21px; margin-bottom: 8px; color: #b9cda4; }
.help__item p { font-size: 14px; color: #c9c0b4; line-height: 1.55; }

/* ---------- nederlandse servers / privacy ---------- */
.promise { background: var(--ink); color: #f1ebe2; }
.promise__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 84px 28px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.promise__title { font-family: var(--serif); font-weight: 500; font-size: 40px; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.promise__lead  { font-size: 17px; line-height: 1.6; color: #c9c0b4; max-width: 420px; }
.promise__grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.promise__item  { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 24px; }
.promise__item-title { font-family: var(--serif); font-size: 19px; margin-bottom: 8px; color: #b9cda4; }
.promise__item p { font-size: 14px; color: #c9c0b4; line-height: 1.55; }

/* ---------- voor wie tiles ---------- */
.tile { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.tile h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.tile p  { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- werkwijze ---------- */
.steps { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps__inner { max-width: var(--maxw); margin: 0 auto; padding: 84px 28px; }
.steps__inner .section__title { margin-bottom: 44px; }
.step__num { font-family: var(--serif); font-size: 34px; color: var(--clay); margin-bottom: 12px; }
.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 9px; }
.step p  { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ---------- over ---------- */
.about {
  max-width: var(--maxw); margin: 0 auto; padding: 84px 28px;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center;
}
.about__title { font-family: var(--serif); font-weight: 500; font-size: 38px; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 20px; }
.about__text  { font-size: 17px; color: var(--muted); line-height: 1.65; max-width: 520px; }

/* ---------- contact cta ---------- */
.cta-wrap { max-width: var(--maxw); margin: 0 auto 84px; padding: 0 28px; }
.cta {
  background: var(--clay); border-radius: 24px; padding: 62px 48px;
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta__blob { position: absolute; border-radius: 50%; }
.cta__blob--1 { width: 240px; height: 240px; background: rgba(255,255,255,.1);  top: -90px; right: -50px; }
.cta__blob--2 { width: 160px; height: 160px; background: rgba(255,255,255,.08); bottom: -70px; left: -30px; }
.cta__title { font-family: var(--serif); font-weight: 500; font-size: 42px; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; position: relative; }
.cta__text  { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.9); max-width: 480px; margin: 0 auto 30px; position: relative; }
.cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--card); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 46px 28px;
  display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start;
}
.footer__brand { max-width: 280px; }
.footer__brand .brand { margin-bottom: 12px; }
.footer__brand p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.footer__cols { display: flex; gap: 54px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--muted); }
.footer__heading { font-size: 13px; font-weight: 700; margin-bottom: 4px; letter-spacing: .03em; color: var(--ink); }
.footer__bar { border-top: 1px solid var(--line); }
.footer__bar span { display: block; max-width: var(--maxw); margin: 0 auto; padding: 16px 28px; font-size: 13px; color: var(--muted); }

/* ---------- diensten / tarieven ---------- */
.section--narrow { max-width: 820px; }
.section--top0   { padding-top: 0; }
.lead-center {
  text-align: center; font-size: 18px; color: var(--muted);
  max-width: 620px; margin: 0 auto; line-height: 1.6;
}
.link--active { color: var(--clay); }
.link--active::after { width: 100%; }

.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px; display: flex; flex-direction: column;
}
.price__title { font-family: var(--serif); font-size: 23px; font-weight: 500; margin-bottom: 8px; }
.price__desc  { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.price__amount {
  font-family: var(--serif); font-size: 30px; color: var(--clay);
  display: flex; align-items: baseline; gap: 7px; margin-bottom: 18px;
}
.price__amount strong { font-weight: 600; }
.price__from {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.price__unit { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--muted); }
.price .ticks { margin-top: auto; }
.price-note {
  text-align: center; font-size: 14px; color: var(--muted);
  max-width: 680px; margin: 34px auto 0; line-height: 1.6;
}
.section__more { text-align: center; margin-top: 36px; }

/* ---------- pakketten (onderhoud & vindbaarheid) ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; margin-top: 8px; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 30px; display: flex; flex-direction: column; position: relative;
}
.plan--featured { border-color: var(--clay); box-shadow: 0 20px 44px -26px rgba(111,138,95,.6); }
.plan__badge {
  position: absolute; top: -12px; left: 30px; background: var(--clay); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.plan__name { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 10px; }
.plan__desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 4px 0 16px; }
.plan .ticks { margin-top: 4px; }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 22px; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; color: var(--clay); font-size: 24px; line-height: 1; flex: none;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p { padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 900px) {
  .hero, .help__inner, .about, .promise__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .help__grid { grid-template-columns: 1fr 1fr; }
  .prices { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero__title { font-size: 42px; }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4, .help__grid, .prices, .promise__grid { grid-template-columns: 1fr; }
  .nav__inner { gap: 12px; padding: 14px 18px; }
  .brand { min-width: 0; }                       /* merknaam mag wijken als het krap is */
  .nav__actions { gap: 10px; margin-left: auto; flex: 0 0 auto; }  /* taalknop nooit wegdrukken */
  .nav__actions .btn--ink { display: none; }     /* zwarte "Plan een gesprek" weg op telefoon */
  .brand__name { font-size: 20px; }
  .brand__mark { width: 26px; height: 26px; }
  .hero { padding: 48px 22px; }
  .section, .help__inner, .steps__inner, .about { padding: 56px 22px; }
  .hero__title { font-size: 34px; }
  .section__title, .help__title, .cta__title { font-size: 30px; }
  .cta { padding: 44px 26px; }
  .stat-card { left: 0; }
}
