/* ============================================================
   ZEEBODEM AGRO — Swifterbant, Flevoland, Netherlands
   Farm Process Automation
   Design: Dutch Precision · White + Forest Green · Syne + Outfit
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Forest / dutch green palette */
  --forest:      #1a3a2a;
  --forest-2:    #1f452f;
  --forest-3:    #254e36;
  --forest-4:    #2c5c3f;
  --meadow:      #4a9c59;
  --meadow-l:    #67b876;
  --meadow-xl:   #8ecf9a;
  --meadow-g:    rgba(74,156,89,0.1);
  --meadow-b:    rgba(74,156,89,0.22);

  /* Light / white */
  --white:       #ffffff;
  --off-white:   #f7f9f5;
  --pale-green:  #eef5ee;
  --pale-2:      #e0ede0;
  --pale-border: #c8dcc8;

  /* Text */
  --ink:         #111a14;
  --ink-2:       #1e2e22;
  --body:        #3d5244;
  --sub:         #6b8a72;
  --light-sub:   #a0b8a8;

  /* Accent warm */
  --earth:       #8b6914;
  --earth-l:     #b8911e;

  /* Fonts */
  --syne:        'Syne', sans-serif;
  --outfit:      'Outfit', sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);

  /* Shape */
  --r:           6px;
  --r-lg:        16px;
  --r-xl:        28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--outfit);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--outfit); }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 36px; }
.section { padding: 96px 0; }

/* ── TAG ── */
.tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--syne); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--meadow);
  margin-bottom: 18px;
}
.tag i { font-size: 0.6rem; }
.tag-dark { color: var(--forest-4); }

/* ── DISPLAY TYPE ── */
.display {
  font-family: var(--syne);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.04;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 22px;
}
.display em { font-style: normal; color: var(--meadow); }
.display.light { color: var(--white); }
.display.light em { color: var(--meadow-xl); }

.h2 {
  font-family: var(--syne);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 16px;
}
.h2.light { color: var(--white); }
.h2 em { font-style: normal; color: var(--meadow); }
.h2.light em { color: var(--meadow-xl); }

.body-t { font-size: 1.02rem; color: var(--body); line-height: 1.78; }
.body-t.light { color: rgba(255,255,255,0.65); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--syne); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 50px; border: none;
  cursor: pointer; transition: all 0.22s var(--ease);
}
.btn-green { background: var(--meadow); color: var(--white); }
.btn-green:hover { background: var(--meadow-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,156,89,0.35); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--forest-3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,42,0.35); }
.btn-outline { background: transparent; border: 1.5px solid var(--pale-border); color: var(--ink); }
.btn-outline:hover { border-color: var(--meadow); color: var(--meadow); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }
.btn-submit {
  width: 100%; background: var(--meadow); color: var(--white);
  font-family: var(--syne); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px; border-radius: 50px; border: none;
  cursor: pointer; transition: all 0.22s var(--ease);
}
.btn-submit:hover { background: var(--meadow-l); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(74,156,89,0.35); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: all 0.28s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--pale-border);
  box-shadow: 0 1px 24px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 36px;
  height: 70px; display: flex; align-items: center;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-leaf {
  width: 36px; height: 36px; background: var(--meadow);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-leaf i { color: white; font-size: 0.9rem; transform: rotate(45deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: var(--syne); font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.logo-name.dark { color: var(--ink); }
.logo-sub { font-family: var(--outfit); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.logo-sub.dark { color: var(--sub); }

.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a {
  font-family: var(--outfit); font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.65); transition: color 0.2s; position: relative;
}
.nav-links a.dark-link { color: var(--sub); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.dark-link:hover, .nav-links a.dark-link.active { color: var(--ink); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--meadow); border-radius: 2px; }
.nav-cta { margin-left: 24px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.2s; }
.hamburger.dark span { background: var(--ink); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--pale-border); }
.mobile-menu a { font-size: 0.9rem; font-weight: 500; color: var(--body); padding: 13px 36px; border-bottom: 1px solid var(--pale-border); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--meadow); }
.mobile-menu .btn { margin: 14px 36px 20px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--forest);
  position: relative; overflow: hidden; padding: 0;
}
/* Field rows pattern */
.hero-field {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      170deg,
      transparent 0px, transparent 60px,
      rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 62px
    );
}
/* Radial glow */
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,156,89,0.18) 0%, transparent 65%);
  pointer-events: none;
}
/* Bottom diagonal cut */
.hero-cut {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 120px; overflow: hidden; z-index: 3;
}
.hero-cut svg { width: 100%; height: 100%; display: block; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1160px; width: 100%; margin: 0 auto;
  padding: 0 36px 140px;
}
.hero-top { display: flex; align-items: flex-start; justify-content: space-between; padding-top: 140px; margin-bottom: 60px; }
.hero-coords { font-family: var(--outfit); font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); text-align: right; line-height: 1.9; }

.hero-title {
  font-family: var(--syne);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.04em; color: var(--white);
}
.hero-title em { font-style: normal; color: var(--meadow-xl); display: block; }

.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 44px; gap: 32px; flex-wrap: wrap; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.78; max-width: 420px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Stats strip */
.hero-strip {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px; padding-top: 28px;
}
.hero-strip-item { flex: 1; padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-strip-item:last-child { border-right: none; }
.hero-strip-num { font-family: var(--syne); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.hero-strip-num span { color: var(--meadow-xl); }
.hero-strip-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 5px; letter-spacing: 0.04em; }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--off-white);
  border-bottom: 1px solid var(--pale-2);
  padding: 28px 0;
}
.intro-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.intro-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--pale-border);
  border-radius: 50px; padding: 7px 16px;
  font-family: var(--outfit); font-size: 0.78rem; font-weight: 500; color: var(--body);
  transition: all 0.2s;
}
.intro-pill i { color: var(--meadow); font-size: 0.8rem; }
.intro-pill:hover { border-color: var(--meadow); color: var(--meadow); }
.intro-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--pale-border); }

/* ── SERVICES ── */
.services-section { background: var(--white); }
.services-head { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; margin-bottom: 56px; align-items: end; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--off-white); border: 1px solid var(--pale-2);
  border-radius: var(--r-xl); padding: 36px 28px;
  transition: all 0.28s var(--ease); cursor: default;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--meadow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); border-color: var(--pale-border); box-shadow: 0 16px 40px rgba(26,58,42,0.08); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-n { font-family: var(--syne); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light-sub); margin-bottom: 16px; }
.svc-icon { width: 46px; height: 46px; background: var(--meadow-g); border: 1px solid var(--meadow-b); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon i { color: var(--meadow); font-size: 1.05rem; }
.svc-card h3 { font-family: var(--syne); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.svc-card p { font-size: 0.87rem; color: var(--body); line-height: 1.7; }
.svc-more { display: inline-flex; align-items: center; gap: 5px; font-family: var(--syne); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--meadow); margin-top: 16px; transition: gap 0.2s; }
.svc-card:hover .svc-more { gap: 8px; }

/* ── HOW IT WORKS ── */
.hiw-section { background: var(--forest); position: relative; overflow: hidden; }
.hiw-bg { position: absolute; inset: 0; background: repeating-linear-gradient(170deg, transparent 0px, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 62px); }
.hiw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; z-index: 1; }
.hiw-step { padding: 0 32px 0 0; border-right: 1px solid rgba(255,255,255,0.08); }
.hiw-step:last-child { border-right: none; padding-right: 0; }
.hiw-num { font-family: var(--syne); font-size: 3.5rem; font-weight: 800; color: rgba(255,255,255,0.06); line-height: 1; letter-spacing: -0.04em; margin-bottom: 20px; }
.hiw-icon { width: 44px; height: 44px; background: rgba(74,156,89,0.15); border: 1px solid rgba(74,156,89,0.3); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hiw-icon i { color: var(--meadow-xl); font-size: 1rem; }
.hiw-step h4 { font-family: var(--syne); font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.hiw-step p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── WHY ── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-visual {
  height: 480px; background: var(--pale-green);
  border-radius: var(--r-xl); position: relative; overflow: hidden;
  border: 1px solid var(--pale-2);
}
/* Abstract farm field visual */
.why-field {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(175deg, rgba(74,156,89,0.06) 0px, rgba(74,156,89,0.06) 28px, transparent 28px, transparent 32px),
    repeating-linear-gradient(85deg, rgba(74,156,89,0.04) 0px, rgba(74,156,89,0.04) 60px, transparent 60px, transparent 66px);
}
.why-stat-cards { position: absolute; display: flex; flex-direction: column; gap: 12px; right: 24px; top: 50%; transform: translateY(-50%); }
.wsc {
  background: var(--white); border: 1px solid var(--pale-border);
  border-radius: var(--r-lg); padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(26,58,42,0.08);
  display: flex; align-items: center; gap: 12px;
}
.wsc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--meadow); flex-shrink: 0; }
.wsc-dot.amber { background: var(--earth-l); }
.wsc-val { font-family: var(--syne); font-size: 1.2rem; font-weight: 800; color: var(--ink); line-height: 1; }
.wsc-lbl { font-size: 0.7rem; color: var(--sub); }
.why-tag-float {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--meadow); color: var(--white);
  border-radius: 50px; padding: 8px 18px;
  font-family: var(--syne); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.why-points { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.why-pt {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--off-white); border: 1px solid var(--pale-2);
  border-radius: var(--r-lg); padding: 16px 18px;
  transition: border-color 0.2s;
}
.why-pt:hover { border-color: var(--meadow-b); }
.why-pt-icon { width: 34px; height: 34px; background: var(--meadow-g); border: 1px solid var(--meadow-b); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-pt-icon i { color: var(--meadow); font-size: 0.82rem; }
.why-pt h4 { font-family: var(--syne); font-weight: 700; font-size: 0.9rem; color: var(--ink); margin-bottom: 3px; }
.why-pt p { font-size: 0.83rem; color: var(--body); line-height: 1.6; }

/* ── SECTORS ── */
.sectors-section { background: var(--off-white); border-top: 1px solid var(--pale-2); border-bottom: 1px solid var(--pale-2); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.sector-card {
  background: var(--white); border: 1px solid var(--pale-2);
  border-radius: var(--r-xl); padding: 28px 22px; text-align: center;
  transition: all 0.25s var(--ease); cursor: default;
}
.sector-card:hover { transform: translateY(-4px); border-color: var(--meadow-b); box-shadow: 0 12px 32px rgba(74,156,89,0.1); }
.sector-card:hover .sector-icon { background: var(--meadow); border-color: var(--meadow); }
.sector-card:hover .sector-icon i { color: var(--white); }
.sector-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--pale-green); border: 1px solid var(--pale-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: all 0.25s; }
.sector-icon i { color: var(--meadow); font-size: 1.15rem; transition: color 0.25s; }
.sector-card h4 { font-family: var(--syne); font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.sector-card p { font-size: 0.78rem; color: var(--sub); line-height: 1.6; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 50%, #1e4832 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; background: repeating-linear-gradient(170deg, transparent 0px, transparent 70px, rgba(255,255,255,0.015) 70px, rgba(255,255,255,0.015) 72px); }
.cta-section h2 { font-family: var(--syne); font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section h2 em { font-style: normal; color: var(--meadow-xl); }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── CONTACT ── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
.contact-info h2 { font-family: var(--syne); font-size: 2rem; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 12px; }
.contact-deets { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.cd {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--off-white); border: 1px solid var(--pale-2);
  border-radius: var(--r-lg); padding: 14px 16px;
  transition: border-color 0.2s;
}
.cd:hover { border-color: var(--meadow-b); }
.cd-icon { width: 34px; height: 34px; background: var(--meadow-g); border: 1px solid var(--meadow-b); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon i { color: var(--meadow); font-size: 0.82rem; }
.cd-lbl { font-family: var(--syne); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--meadow); margin-bottom: 3px; }
.cd-val { font-size: 0.86rem; color: var(--body); line-height: 1.55; }
.cd-val a { color: var(--body); transition: color 0.2s; }
.cd-val a:hover { color: var(--meadow); }

.contact-form-box {
  background: var(--forest); border-radius: var(--r-xl);
  padding: 40px; overflow: hidden; position: relative;
}
.contact-form-box::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(170deg, transparent 0px, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 62px);
  pointer-events: none;
}
.contact-form-box h3 { font-family: var(--syne); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white); margin-bottom: 5px; position: relative; z-index: 1; }
.contact-form-box .sub { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 28px; position: relative; z-index: 1; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; position: relative; z-index: 1; }
.fg label { font-family: var(--syne); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 11px 14px;
  font-family: var(--outfit); font-size: 0.88rem; color: var(--white);
  outline: none; transition: border-color 0.2s; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(74,156,89,0.5); }
.fg select { appearance: none; cursor: pointer; }
.fg select option { background: var(--forest-3); color: var(--white); }
.fg textarea { resize: vertical; min-height: 96px; }
.f-note { font-size: 0.72rem; color: rgba(255,255,255,0.25); text-align: center; margin-top: 10px; position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer { background: var(--forest); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.35); margin-top: 16px; max-width: 240px; line-height: 1.75; }
.footer-col h5 { font-family: var(--syne); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--meadow-xl); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.25); }
.footer-nl { display: flex; align-items: center; gap: 8px; font-size: 0.7rem; color: rgba(255,255,255,0.25); }
.nl-flag { width: 22px; height: 14px; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; flex-shrink: 0; }
.nl-r { flex: 1; background: #AE1C28; }
.nl-w { flex: 1; background: #ffffff; }
.nl-b { flex: 1; background: #21468B; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.74rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── PAGE HERO ── */
.page-hero { background: var(--forest); padding: 154px 0 80px; position: relative; overflow: hidden; }
.ph-rows { position: absolute; inset: 0; background: repeating-linear-gradient(170deg, transparent 0px, transparent 60px, rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 62px); }
.ph-glow { position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(74,156,89,0.12) 0%, transparent 65%); pointer-events: none; }
.ph-inner { position: relative; z-index: 1; max-width: 680px; }
.ph-inner h1 { font-family: var(--syne); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--white); margin-bottom: 16px; }
.ph-inner h1 em { font-style: normal; color: var(--meadow-xl); }
.ph-inner p { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.78; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hiw-step { border-right: none; padding-right: 0; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-head { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-top .hero-coords { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-strip { flex-wrap: wrap; gap: 20px; }
  .hero-strip-item { min-width: 120px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content { padding: 0 20px 120px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
}
