/* =====================================================
   REQX BV – Main Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --green:        #7DC242;
  --green-dark:   #5A9B2A;
  --green-light:  #A8D96F;
  --green-faint:  #F0F8E8;
  --charcoal:     #3D3D3D;
  --charcoal-mid: #5C5C5C;
  --white:        #FFFFFF;
  --off-white:    #F7F8F5;
  --border:       #E2E8D8;
  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── UTILITIES ── */
.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: .01em;
}
.section-heading em { font-style: normal; color: var(--green); }
.section-intro {
  font-size: 17px;
  color: var(--charcoal-mid);
  margin-top: 16px;
  line-height: 1.75;
}
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 3px;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); color: var(--white); }
.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,.75);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 14px 20px;
  border-bottom: 2px solid rgba(125,194,66,.4);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--green); }

/* ── NAV ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { width: 38px; height: 38px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--charcoal);
}
.logo-text span { color: var(--green); }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  text-decoration: none;
  transition: color .2s;
}
.main-nav a:hover { color: var(--green); }
.main-nav .nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 3px;
  transition: background .2s;
}
.main-nav .nav-cta:hover { background: var(--green-dark); color: var(--white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: .3s;
}

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}
.hero-left {
  background: var(--charcoal);
  padding: 100px 8% 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(125,194,66,.12);
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 40px; right: 40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 30px solid rgba(125,194,66,.08);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: .01em;
}
.hero-heading em { font-style: normal; color: var(--green); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-right {
  background: var(--green-faint);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8%;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--green); }
.stat-label {
  font-size: 13px;
  color: var(--charcoal-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.hero-quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  position: relative;
}
.hero-quote::before {
  content: '"';
  font-size: 80px;
  line-height: .5;
  color: var(--green);
  font-family: Georgia, serif;
  position: absolute;
  top: 20px; left: 20px;
  opacity: .3;
}
.hero-quote p { font-size: 15px; color: var(--charcoal-mid); font-style: italic; line-height: 1.65; padding-left: 8px; }
.hero-quote cite { display: block; margin-top: 12px; font-style: normal; font-size: 13px; font-weight: 600; color: var(--charcoal); padding-left: 8px; }

/* ── SECTION WRAPPER ── */
.section-inner { max-width: 1400px; margin: 0 auto; }

/* ── DIENSTEN ── */
.diensten-section { padding: 96px 8%; background: var(--white); }
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.dienst-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  transition: border-color .2s, transform .2s;
}
.dienst-card:hover { border-color: var(--green); transform: translateY(-3px); }
.dienst-icon {
  width: 52px; height: 52px;
  background: var(--green-faint);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.dienst-icon svg { width: 26px; height: 26px; stroke: var(--green); }
.dienst-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.dienst-desc { font-size: 15px; color: var(--charcoal-mid); line-height: 1.7; margin-bottom: 20px; }
.dienst-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.dienst-list li {
  font-size: 14px;
  color: var(--charcoal-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.dienst-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── WERKWIJZE ── */
.werkwijze-section { padding: 96px 8%; background: var(--charcoal); }
.werkwijze-section .section-label { color: var(--green-light); }
.werkwijze-section .section-heading { color: var(--white); }
.werkwijze-section .section-intro { color: rgba(255,255,255,.65); }
.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.werkwijze-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 14%; right: 14%;
  height: 1px;
  background: rgba(125,194,66,.3);
}
.stap { padding: 0 20px; text-align: center; }
.stap-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.stap-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.stap-text { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── OVER ── */
.over-section {
  padding: 96px 8%;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.over-right {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.profile-avatar {
  width: 72px; height: 72px;
  background: var(--green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: .02em;
}
.profile-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--charcoal); margin-bottom: 4px; }
.profile-title { font-size: 14px; color: var(--charcoal-mid); }
.profile-items { display: flex; flex-direction: column; gap: 16px; }
.profile-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.profile-item:last-child { border-bottom: none; padding-bottom: 0; }
.profile-item-icon {
  width: 36px; height: 36px;
  background: var(--green-faint);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-item-icon svg { width: 18px; height: 18px; stroke: var(--green); }
.profile-item h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--charcoal); margin-bottom: 2px; }
.profile-item p { font-size: 13px; color: var(--charcoal-mid); line-height: 1.5; }
.over-qualities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--green-dark);
  background: var(--green-faint);
  border: 1px solid rgba(125,194,66,.3);
  padding: 5px 14px;
  border-radius: 2px;
}

/* ── REFERENTIES ── */
.referenties-section { padding: 96px 8%; background: var(--white); }
.referenties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.ref-card { border: 1px solid var(--border); border-radius: 4px; padding: 32px 28px; }
.ref-quote-mark { font-size: 60px; line-height: .6; color: var(--green); font-family: Georgia, serif; opacity: .25; margin-bottom: 16px; }
.ref-text { font-size: 14px; color: var(--charcoal-mid); line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.ref-author { display: flex; align-items: center; gap: 12px; }
.ref-avatar {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
}
.ref-avatar.alt { background: var(--charcoal); }
.ref-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--charcoal); }
.ref-role { font-size: 12px; color: var(--charcoal-mid); }

/* ── CLIENTS BAR ── */
.clients-bar {
  background: var(--green-faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 8%;
  text-align: center;
}
.bar-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 28px;
}
.logos-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.client-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .06em;
  color: var(--charcoal-mid);
  opacity: .55;
  transition: opacity .2s;
}
.client-logo:hover { opacity: .9; }

/* ── CONTACT ── */
.contact-section {
  padding: 96px 8%;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-section .section-label { color: var(--green-light); }
.contact-section .section-heading { color: var(--white); }
.contact-section .section-intro { color: rgba(255,255,255,.65); }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(125,194,66,.15);
  border: 1px solid rgba(125,194,66,.25);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--green); }
.contact-item-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); font-weight: 600; margin-bottom: 2px; }
.contact-item-value { font-size: 15px; color: var(--white); }
.contact-item-value a { color: var(--green-light); text-decoration: none; }
.contact-item-value a:hover { text-decoration: underline; }

.contact-form-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 40px;
}
.form-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 24px; letter-spacing: .02em; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--charcoal); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  background: var(--green);
  border: none;
  border-radius: 3px;
  padding: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--green-dark); }
.form-success { color: var(--green-light); font-size: 15px; margin-top: 12px; display: none; }

/* ── FOOTER ── */
#site-footer {
  background: #2A2A2A;
  padding: 32px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: .06em; color: rgba(255,255,255,.7); }
.footer-brand span { color: var(--green); }
.footer-text { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--green); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: 1fr 1fr; }
  .werkwijze-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .werkwijze-steps::before { display: none; }
  .referenties-grid { grid-template-columns: 1fr 1fr; }
  .over-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-left { padding: 80px 6% 60px; }
  .hero-right { padding: 60px 6%; }
  .main-nav { display: none; }
  .main-nav.open { display: block; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 6%; }
  .main-nav.open ul { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hamburger { display: block; }
  .diensten-section, .werkwijze-section, .referenties-section { padding: 64px 6%; }
  .over-section, .contact-section { padding: 64px 6%; }
  .referenties-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .diensten-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .werkwijze-steps { grid-template-columns: 1fr; }
  #site-footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
