/* CleanLinkr — gedeelde stylesheet voor alle sub-pagina's */

/* ─────────────────────────────────────
   RESET & BASE
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #138A4E;
  --green-deep:  #0B3D24;
  --green-mint:  #5BC48A;
  --yellow:      #F5B82E;
  --mist:        #F1F8F4;
  --white:       #FFFFFF;
  --text:        #1F2937;
  --subtext:     #6B7280;
  --urgent:      #DC2626;

  --h1:  clamp(2.625rem, 5.5vw + .5rem, 4.25rem);
  --h2:  clamp(1.875rem, 3vw + .5rem,   2.75rem);
  --h3:  clamp(1.25rem,  1.5vw + .25rem, 1.5rem);
  --lg:  1.125rem;
  --sm:  0.875rem;

  --shadow-xs: 0 1px 4px rgba(11,61,36,.06), 0 1px 2px rgba(11,61,36,.04);
  --shadow-sm: 0 2px 8px rgba(11,61,36,.08), 0 1px 3px rgba(11,61,36,.06);
  --shadow-md: 0 8px 24px rgba(11,61,36,.12), 0 3px 8px rgba(11,61,36,.08);
  --shadow-lg: 0 20px 48px rgba(11,61,36,.16), 0 8px 16px rgba(11,61,36,.10);

  --ease: cubic-bezier(.33,1,.68,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: 72px; /* vaste header hoogte */
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.12;
  letter-spacing: -.035em;
}

img { display: block; max-width: 100%; }

/* ─────────────────────────────────────
   UTILITIES
───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem); }
.section > .container, .section-inner { max-width: 1200px; margin: 0 auto; }

.bg-mist  { background: var(--mist); }
.bg-white { background: var(--white); }
.bg-deep  { background: var(--green-deep); }

.label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .875rem;
}

.section-title {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: .875rem;
}

.section-lead {
  font-size: var(--lg);
  color: var(--subtext);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  padding: .875rem 1.75rem;
  transition: background .18s, transform .15s var(--ease), box-shadow .18s;
  cursor: pointer;
  border: none;
}
.btn:active { transform: translateY(0) !important; }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(19,138,78,.35);
}
.btn-green:hover { background: #0f7040; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(19,138,78,.45); }

.btn-deep {
  background: var(--green-deep);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-deep:hover { background: #082b19; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-white {
  background: #fff;
  color: var(--green-deep);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.btn-white:hover { background: var(--mist); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }

.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.65); color: #fff; background: rgba(255,255,255,.06); }

.btn-outline-deep {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid rgba(11,61,36,.3);
}
.btn-outline-deep:hover {
  background: rgba(11,61,36,.07);
  border-color: rgba(11,61,36,.55);
  transform: translateY(-2px);
}
.btn-outline-deep:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

.btn-urgent {
  background: var(--urgent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .8125rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5625rem 1.125rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(220,38,38,.3);
  transition: background .18s, transform .15s var(--ease), box-shadow .18s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-urgent:hover { background: #b91c1c; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(220,38,38,.4); }
.btn-urgent:active { transform: translateY(0); }

/* ─────────────────────────────────────
   HEADER
───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-link svg { height: 40px; width: auto; }

/* ── Desktop nav ── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-list > li > a,
.nav-list > li > button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: .875rem;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .18s;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.site-header:not(.scrolled) .nav-list > li > a,
.site-header:not(.scrolled) .nav-list > li > button { color: var(--text); }
.site-header:not(.scrolled) .nav-list > li > a:hover,
.site-header:not(.scrolled) .nav-list > li > button:hover { color: var(--green); }
.site-header.scrolled .nav-list > li > a,
.site-header.scrolled .nav-list > li > button { color: var(--text); }
.site-header.scrolled .nav-list > li > a:hover,
.site-header.scrolled .nav-list > li > button:hover { color: var(--green); }

.nav-list > li > a.nav-active { color: var(--green); font-weight: 700; }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex !important;
  align-items: center !important;
  gap: .3rem !important;
}
.nav-dropdown-trigger svg { transition: transform .22s var(--ease); flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg { transform: rotate(180deg); }

/* invisible bridge to prevent hover gap between trigger and menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 14px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 56px rgba(11,61,36,.18), 0 4px 14px rgba(11,61,36,.1);
  padding: .5rem;
  min-width: 188px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 200;
  border: 1px solid rgba(11,61,36,.06);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem .875rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: .875rem;
  color: var(--text);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--mist); color: var(--green); }
.nav-dropdown-menu a.nav-active { color: var(--green); background: rgba(19,138,78,.08); font-weight: 700; }

/* ── Mobile toggle ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .375rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--green-deep);
  transition: transform .28s var(--ease), opacity .2s;
}

/* ─────────────────────────────────────
   MOBILE MENU
───────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--green-deep);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 5rem clamp(2rem, 8vw, 4rem) 3rem;
}
.mobile-menu.open { display: flex; }

.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff; cursor: pointer; padding: .5rem;
}

.mobile-menu-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .625rem;
}

.mobile-sub-links {
  display: flex;
  flex-direction: column;
  gap: .125rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255,255,255,.12);
  margin-bottom: 1.75rem;
}

.mobile-sub-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  letter-spacing: -.01em;
  padding: .3rem 0;
  transition: color .18s;
}
.mobile-sub-links a:hover { color: #fff; }

.mobile-main-links {
  display: flex;
  flex-direction: column;
  gap: .125rem;
  margin-bottom: 2rem;
}

.mobile-main-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.025em;
  padding: .3rem 0;
  transition: color .18s;
}
.mobile-main-links a:hover { color: var(--green-mint); }

/* ─────────────────────────────────────
   DIENSTEN SUB-NAV
───────────────────────────────────── */
.diensten-subnav {
  background: var(--white);
  border-bottom: 1px solid rgba(11,61,36,.08);
  position: sticky;
  top: 72px;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(11,61,36,.04);
}

.subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.subnav-inner::-webkit-scrollbar { display: none; }

.subnav-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  color: var(--subtext);
  text-decoration: none;
  padding: 1rem 1.125rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .18s, border-color .18s;
  flex-shrink: 0;
}
.subnav-item:hover { color: var(--green-deep); }
.subnav-item.active { color: var(--green); border-bottom-color: var(--green); font-weight: 700; }

/* ─────────────────────────────────────
   PAGE HERO
───────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.04) saturate(0.88) brightness(0.9);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,61,36,.25) 0%,
    rgba(11,61,36,.55) 55%,
    rgba(11,61,36,.82) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 5vw, 4.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero .label { color: var(--green-mint); opacity: .9; }

.page-hero-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.25rem, 5vw + .5rem, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
  max-width: 680px;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.5vw + .2rem, 1.1875rem);
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.page-hero-cta { display: flex; gap: .875rem; flex-wrap: wrap; }

/* ─────────────────────────────────────
   GRIDS
───────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

/* ─────────────────────────────────────
   CARDS
───────────────────────────────────── */
.dienst-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(11,61,36,.07);
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.dienst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.dienst-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(19,138,78,.09);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.dienst-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.dienst-card p { font-size: var(--sm); color: var(--subtext); line-height: 1.6; }

.model-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(11,61,36,.07);
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.model-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.model-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(19,138,78,.15);
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: 1rem;
}
.model-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-deep); letter-spacing: -.02em; margin-bottom: .4rem; }
.model-card p { font-size: var(--sm); color: var(--subtext); line-height: 1.6; }

.model-tag {
  display: inline-block;
  margin-top: .875rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(19,138,78,.1);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
}

.sector-card {
  background: var(--mist);
  border-radius: 14px;
  padding: 1.625rem;
  border: 1px solid rgba(11,61,36,.08);
  transition: background .2s, box-shadow .2s, transform .22s var(--ease);
}
.sector-card:hover { background: rgba(19,138,78,.07); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.sector-icon { margin-bottom: 1rem; }
.sector-card h4 { font-size: .9375rem; font-weight: 700; color: var(--green-deep); letter-spacing: -.02em; margin-bottom: .375rem; }
.sector-card p { font-size: var(--sm); color: var(--subtext); line-height: 1.5; }

/* Feature row (icon + tekst in lijst) */
.feature-list { display: flex; flex-direction: column; }

.feature-item {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(11,61,36,.1);
  align-items: flex-start;
}
.feature-item:first-child { border-top: 1px solid rgba(11,61,36,.1); }

.feature-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .1em;
  padding-top: .3rem;
}

.feature-item h4 { font-size: 1rem; font-weight: 700; color: var(--green-deep); letter-spacing: -.02em; margin-bottom: .25rem; }
.feature-item p  { font-size: var(--sm); color: var(--subtext); line-height: 1.6; }

/* ─────────────────────────────────────
   PANEL (donkergroen blok)
───────────────────────────────────── */
.dark-panel {
  background: var(--green-deep);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.dark-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 85% 5%, rgba(19,138,78,.3) 0%, transparent 65%);
  pointer-events: none;
}
.dark-panel::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.panel-inner { position: relative; z-index: 1; }

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.panel-stat {
  background: rgba(255,255,255,.07);
  padding: 1.125rem 1rem;
  text-align: center;
}

.panel-stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.panel-stat-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .6875rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: .25rem;
}

.panel-quote blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.panel-quote cite {
  font-style: normal;
  font-size: var(--sm);
  color: var(--green-mint);
  font-weight: 500;
}

.panel-cta-block {
  margin-top: 1.875rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.panel-phone {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.025em;
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  transition: color .18s;
}
.panel-phone:hover { color: var(--green-mint); }

.badge-urgent {
  display: inline-block;
  background: var(--urgent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
}

/* ─────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────── */
.testimonial-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 95% 50%, rgba(19,138,78,.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 50%, rgba(91,196,138,.1) 0%, transparent 55%);
  pointer-events: none;
}

.testimonial-inner {
  position: relative; z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
}

.qmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 5rem;
  color: rgba(19,138,78,.35);
  line-height: .65;
  margin-bottom: 1.875rem;
}

.testimonial-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.375rem, 2.8vw, 2.125rem);
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -.025em;
  margin-bottom: 2rem;
}

.testimonial-author { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--green-mint); font-size: 1rem; }
.testimonial-company { font-size: var(--sm); color: rgba(255,255,255,.4); margin-top: .25rem; }

/* ─────────────────────────────────────
   CONTACT CTA
───────────────────────────────────── */
.contact-cta {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0 50%, rgba(11,61,36,.45) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(91,196,138,.2) 0%, transparent 55%);
  pointer-events: none;
}

.contact-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin-bottom: .875rem;
}

.contact-sub { font-size: var(--lg); color: rgba(255,255,255,.72); line-height: 1.65; }
.contact-btns { display: flex; flex-direction: column; gap: .875rem; min-width: 260px; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.55); }

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p { font-size: var(--sm); line-height: 1.75; margin-top: 1.125rem; max-width: 280px; }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  margin-top: 1.125rem;
  letter-spacing: -.015em;
  transition: color .18s;
}
.footer-phone:hover { color: var(--green-mint); }

.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col a { color: rgba(255,255,255,.5); text-decoration: none; font-size: var(--sm); transition: color .18s; }
.footer-col a:hover { color: var(--green-mint); }

.footer-vca-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: 1.5rem;
  background: rgba(19,138,78,.2);
  border: 1px solid rgba(19,138,78,.3);
  color: var(--green-mint);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.28); }
.footer-bottom a { color: rgba(255,255,255,.28); text-decoration: none; font-size: .75rem; transition: color .18s; }
.footer-bottom a:hover { color: rgba(255,255,255,.55); }

/* ─────────────────────────────────────
   MODAL & FORMS
───────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(11,61,36,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 500px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(11,61,36,.28), 0 8px 24px rgba(11,61,36,.18);
  position: relative;
  animation: modalIn .32s var(--ease) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(28px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--mist); border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--subtext); transition: background .18s, color .18s;
}
.modal-close:hover { background: rgba(11,61,36,.12); color: var(--green-deep); }
.modal-close:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

.modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -.03em;
  margin-bottom: .375rem;
  padding-right: 2.5rem;
}

.modal-sub { font-size: var(--sm); color: var(--subtext); line-height: 1.6; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: .375rem;
  letter-spacing: .01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .6875rem .9375rem;
  border: 1.5px solid rgba(11,61,36,.16);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--text);
  background: var(--mist);
  transition: border-color .18s, background .18s, box-shadow .18s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(19,138,78,.12);
}
.form-group textarea { resize: vertical; min-height: 88px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }

.modal-submit {
  width: 100%;
  margin-top: .625rem;
  padding: .9375rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .18s, transform .15s var(--ease), box-shadow .18s;
  box-shadow: 0 4px 16px rgba(19,138,78,.3);
}
.modal-submit:hover { background: #0f7040; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(19,138,78,.4); }
.modal-submit:active { transform: translateY(0); }

.modal-success { display: none; text-align: center; padding: 1.5rem 0; }
.modal-success.show { display: block; }

.modal-success-icon {
  width: 56px; height: 56px;
  background: rgba(19,138,78,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}

.modal-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -.025em;
  margin-bottom: .5rem;
}
.modal-success p { font-size: var(--sm); color: var(--subtext); line-height: 1.6; }

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────
   CHECK LIST
───────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .875rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%;
  background: rgba(19,138,78,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23138A4E' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

@media (max-width: 768px) {
  .nav-list { display: none; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-btns { flex-direction: row; flex-wrap: wrap; min-width: unset; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .grid-auto { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
