/* ===========================================================
   Greenfield Recruitment — gedeelde stylesheet
   Clean & corporate, groen accent
   =========================================================== */

:root {
  --green: #1f9d55;
  --green-dark: #157f43;
  --green-light: #e9f7ef;
  --ink: #1a1f24;
  --ink-soft: #4a545e;
  --muted: #6b7680;
  --line: #e6e9ec;
  --bg: #ffffff;
  --bg-alt: #f6f8f9;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(16, 24, 32, .06), 0 1px 3px rgba(16, 24, 32, .04);
  --shadow-md: 0 4px 14px rgba(16, 24, 32, .08);
  --shadow-lg: 0 18px 40px rgba(16, 24, 32, .12);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 750; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 680px; }
.center .lead { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-dark); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-light); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--green-light); color: var(--green-dark); }
.btn--lg { padding: 16px 32px; font-size: 1.06rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--ink-soft);
  font-weight: 550;
  font-size: .98rem;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--ink); background: var(--bg-alt); text-decoration: none; }
.nav__links a.is-active { color: var(--green-dark); }
.nav__cta { margin-left: 8px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 84px;
  background:
    radial-gradient(900px 420px at 78% -8%, var(--green-light), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 44px;
  align-items: center;
}
.hero__grid > * { min-width: 0; }
.hero h1 { margin-bottom: .35em; font-size: clamp(1.85rem, 3vw, 2.45rem); }
.hero h1 br { display: none; }
.hero h1 .line { display: block; }
.hero h1 .accent { color: var(--green); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__note { margin-top: 20px; font-size: .95rem; color: var(--muted); }
.hero__note strong { color: var(--ink); }

/* Decorative code card in hero */
.hero__card {
  background: #0f172a;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero__card .dots { display: flex; gap: 7px; margin-bottom: 16px; }
.hero__card .dots i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.hero__card .dots i:nth-child(1) { background: #ff5f57; }
.hero__card .dots i:nth-child(2) { background: #febc2e; }
.hero__card .dots i:nth-child(3) { background: #28c840; }
.hero__card .k { color: #7dd3fc; }
.hero__card .s { color: #86efac; }
.hero__card .c { color: #64748b; }
.hero__card .fn { color: #fca5a5; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7e8de; }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }

.icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--green-light);
  color: var(--green-dark);
  margin-bottom: 18px;
}
.icon svg { width: 26px; height: 26px; stroke: currentColor; }

.card__num {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* check list */
.checks { list-style: none; margin: 14px 0 0; padding: 0; }
.checks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  color: var(--ink-soft);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--green-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23157f43' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- USP feature rows ---------- */
.feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.feature + .feature { margin-top: 22px; }
.feature__num {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 800; font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.feature h3 { font-size: 1.35rem; }
.feature .tagline { color: var(--green-dark); font-weight: 600; margin: -2px 0 12px; }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 14px; }
.step__dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2px solid var(--green);
  color: var(--green-dark); font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; }
.step p { font-size: .97rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #0f172a 0%, #14532d 100%);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #cde6d6; max-width: 600px; margin: 0 auto 26px; }
.cta-band .hero__cta { justify-content: center; margin-top: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat__num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--green); line-height: 1; }
.stat__label { color: var(--muted); font-weight: 550; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-size: 1.1rem; font-weight: 650; color: var(--ink);
  padding: 22px 40px 22px 0; position: relative; font-family: inherit;
}
.faq__q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--green); font-weight: 400; transition: transform .2s ease;
}
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { padding: 0 0 22px; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info .info-item .icon { margin-bottom: 0; flex: 0 0 auto; width: 46px; height: 46px; }
.contact-info .info-item h3 { font-size: 1.05rem; margin-bottom: 2px; }
.contact-info .info-item p { margin: 0; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 157, 85, .14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .88rem; color: var(--muted); margin: 6px 0 0; }
.form__success {
  display: none;
  background: var(--green-light);
  border: 1px solid #bfe6cd;
  color: var(--green-dark);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 18px;
}
.form__success.is-visible { display: block; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  padding: 72px 0 60px;
  background:
    radial-gradient(700px 320px at 85% -20%, var(--green-light), transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { margin-top: 6px; }
.page-hero__cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer img { height: 26px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.site-footer p { color: #94a3b8; font-size: .95rem; }
.footer__col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: #94a3b8; font-size: .96rem; }
.footer__col a:hover { color: #fff; text-decoration: none; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .88rem; color: #64748b;
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.section-head { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.section-head .lead { margin-top: 8px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__card { order: -1; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav__links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .25s ease, visibility 0s linear .25s;
    height: auto;
  }
  .nav__links.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform .25s ease, visibility 0s linear 0s;
  }
  .nav__links a { padding: 14px 6px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav__links .nav__cta { margin: 14px 0 0; }
  .nav__links .nav__cta .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: flex; }
  .nav__logo img { height: 36px; }
  .grid--3, .grid--4, .grid--2, .stats { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 40px 26px; }
  .feature { grid-template-columns: 1fr; }
  .hero__cta .btn, .page-hero__cta .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
