/* ============================================================
   Nandoe Advocatuur — style.css
   Kleurenschema: #12331c (donkergroen) + wit
   ============================================================ */

:root {
  --green: #12331c;
  --green-md: #1c4f2b;
  --green-lt: #2a6b3c;
  --green-pale: #e8f0ea;
  --green-tint: #f2f6f3;
  --white: #FFFFFF;
  --cream: #F7FAF7;
  --warm: #EEF3EF;
  --slate: #3D5244;
  --mist: #7A9484;
  --border: rgba(18, 51, 28, 0.15);
  --border-lt: rgba(18, 51, 28, 0.08);
  --shadow: 0 8px 40px rgba(18, 51, 28, 0.10);
  --shadow-lg: 0 20px 60px rgba(18, 51, 28, 0.16);
  --radius: 4px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--green);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}


/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

/* ── PAGES ── */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 51, 28, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
}

.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-logo-text span:last-child {
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
}

.nav-links li a {
  padding: 0.5rem 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  display: block;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--white) !important;
  color: var(--green) !important;
  font-weight: 600 !important;
  padding: 0.48rem 1.25rem !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover {
  background: var(--green-pale) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}

/* Hamburger animatie: streepjes → X */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--green);
  z-index: 999;
  padding: 1rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu a:last-child {
  border: none;
}

.mobile-menu a:hover {
  color: var(--white);
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-lt);
  border-bottom: 1.5px solid var(--green-lt);
  padding-bottom: 4px;
  margin-bottom: 1.25rem;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.2;
}

.h-section {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--green);
}

.subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.85;
  max-width: 640px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--green-lt);
  margin: 1.5rem 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-md);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(18, 51, 28, 0.25);
}

.btn-white {
  background: var(--white);
  color: var(--green);
}

.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  text-decoration: none;
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--green-pale);
  color: var(--green);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,
      rgba(10, 28, 16, 0.82) 0%,
      rgba(10, 28, 16, 0.60) 45%,
      rgba(10, 28, 16, 0.10) 100%),
    url('Danusha_def2-1.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.25) 70%, transparent 100%);
}

.hero-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 2rem;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6fcf8a;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.hero h1 em {
  font-style: italic;
  color: #a8d5b5;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 2.75rem;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: #a8d5b5;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 5px;
  display: block;
}

.hero-service-bar {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

.hero-service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform: translateY(-50%);
  box-shadow: 0 24px 60px rgba(18, 51, 28, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.hero-scard {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-right: 1px solid var(--border-lt);
  transition: all 0.3s;
  cursor: pointer;
}

.hero-scard:last-child {
  border-right: none;
}

.hero-scard--featured {
  background: var(--green);
}

.hero-scard:hover {
  background: var(--green-pale);
}

.hero-scard--featured:hover {
  background: var(--green-md);
}

.hero-scard-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.hero-scard--featured .hero-scard-icon {
  background: rgba(255, 255, 255, 0.14);
}

.hero-scard-text h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.2rem;
}

.hero-scard--featured .hero-scard-text h4 {
  color: var(--white);
}

.hero-scard-text p {
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.5;
}

.hero-scard--featured .hero-scard-text p {
  color: rgba(255, 255, 255, 0.72);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.trust-item .ti-icon {
  font-size: 0.85rem;
  color: #a8d5b5;
}

/* ── USP GRID ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.usp-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-lt);
  box-shadow: 0 2px 16px rgba(18, 51, 28, 0.05);
  transition: all 0.3s;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.usp-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.usp-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ── RECHTSGEBIEDEN PREVIEW ── */
.rg-bg {
  background: var(--green);
}

.rg-bg .h-section {
  color: var(--white);
}

.rg-bg .subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* 4-item 2x2 override voor homepage */
.rg-grid-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
/* 6-item 3x2 override voor homepage */
.rg-grid-6 {
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.rg-item {
  background: var(--green);
  padding: 2.5rem 2.5rem 3rem;
  border: 1px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.rg-item:hover {
  background: var(--green-md);
  border-color: rgba(255, 255, 255, 0.12);
}

.rg-item-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.rg-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: rgba(168, 213, 181, 0.5);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  margin-top: 1rem;
}

.rg-item h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.rg-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  max-width: 380px;
}

.rg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #a8d5b5;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: gap 0.2s;
}

.rg-item:hover .rg-link {
  gap: 0.7rem;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-pale);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band::before {
  content: 'N';
  position: absolute;
  font-family: var(--font-head);
  font-size: 24rem;
  font-weight: 700;
  color: rgba(18, 51, 28, 0.04);
  top: -6rem;
  right: 3rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green);
  max-width: 560px;
}

.cta-band-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── HOME CONTACT ── */
.home-contact-section {
  background: var(--white);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}

.home-contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--green);
}

.home-contact-info p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.home-contact-detail {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.home-contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.home-contact-detail p {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
  margin: 0;
}

/* ── FORMULIER ── */
.contact-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  color: var(--green);
}

.contact-form>p {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(18, 51, 28, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--green);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* Checkbox apart — geen appearance:none */
.form-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--green);
  appearance: auto;
  -webkit-appearance: auto;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 51, 28, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2312331c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--white);
  padding-right: 2.5rem;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.25rem;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
}

.checkbox-group label {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.form-submit:hover {
  background: var(--green-md);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(18, 51, 28, 0.25);
}

.form-note {
  font-size: 0.76rem;
  color: var(--mist);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.form-success h4 {
  color: #166534;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: #166534;
  font-size: 0.88rem;
}

/* ── TARIEVEN ── */
.tarief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.tarief-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-lt);
  box-shadow: 0 2px 16px rgba(18, 51, 28, 0.05);
  transition: all 0.3s;
}

.tarief-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tarief-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 8px 40px rgba(18, 51, 28, 0.14);
}

.tarief-head {
  padding: 2rem;
  background: var(--green-pale);
  border-bottom: 1px solid var(--border-lt);
}

.tarief-card.featured .tarief-head {
  background: var(--green);
}

.tarief-card.featured .tarief-head * {
  color: var(--white) !important;
}

.tarief-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 0.75rem;
}

.tarief-card.featured .tarief-label {
  color: rgba(168, 213, 181, 0.85) !important;
}

.tarief-price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.tarief-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.tarief-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--slate);
}

.tarief-desc {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.5rem;
}

.tarief-body {
  padding: 2rem;
}

.tarief-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tarief-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--slate);
}

.tarief-features li::before {
  content: '✓';
  color: var(--green-lt);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.tarief-body .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.75rem;
}

.tarief-info {
  background: var(--green-pale);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tarief-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tarief-info h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--green);
}

.tarief-info p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ── ALGEMENE VOORWAARDEN ── */
.av-content {
  background: var(--white);
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow);
}

.av-content h2 {
  font-size: 1.4rem;
  color: var(--green);
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-lt);
}

.av-content h2:first-child {
  padding-top: 0;
  margin-top: 0;
  border: none;
}

.av-content h3 {
  font-size: 1.1rem;
  color: var(--green);
  margin-top: 1.5rem;
}

.av-content p {
  font-size: 0.92rem;
  color: var(--slate);
  margin-top: 0.75rem;
  line-height: 1.8;
}

.av-content ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}

.av-content ul li {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.8;
}

/* ── OVER ONS ── */
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.over-img-wrap {
  position: relative;
}

.over-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-md) 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.over-img-placeholder .oi-icon {
  font-size: 4rem;
  opacity: 0.2;
}

.over-img-placeholder p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

.over-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
}

.over-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.over-badge span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.waarden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.waarde-item {
  background: var(--green-pale);
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.waarde-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.waarde-item p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── CONTACT PAGINA ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-lt);
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact-detail h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.2rem;
}

.contact-detail p {
  font-size: 0.92rem;
  color: var(--green);
  font-weight: 500;
}

.contact-form-page {
  background: var(--white);
}

/* ── RECHTSGEBIEDEN PAGINA ── */
.rg-page-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-lt);
  box-shadow: 0 2px 16px rgba(18, 51, 28, 0.04);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: box-shadow 0.3s;
}

.rg-page-item:hover {
  box-shadow: var(--shadow);
}

.rg-page-sidebar {
  background: var(--green);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rg-page-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(168, 213, 181, 0.18);
  line-height: 1;
}

.rg-page-sidebar h2 {
  font-size: 1.4rem;
  color: var(--white);
}

.rg-page-sidebar .tag {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.rg-page-body {
  padding: 2.5rem;
}

.rg-page-body p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.rg-voor {
  margin-bottom: 1.25rem;
}

.rg-voor h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.rg-voor ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rg-voor ul li {
  background: var(--green-pale);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--slate);
  border: 1px solid var(--border-lt);
}

/* ── FOOTER ── */
footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.58);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
}

.footer-logo-text span:first-child {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.footer-logo-text span:last-child {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 280px;
}

footer h4 {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

footer ul li a {
  font-size: 0.85rem;
  transition: color 0.2s;
  cursor: pointer;
}

footer ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--green);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at right center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 560px;
}

.page-header .section-label {
  color: rgba(168, 213, 181, 0.8);
  border-color: rgba(168, 213, 181, 0.45);
}

/* ── ANIMATIES ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s forwards;
}

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

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  /* Tarieven intro grid */
  .tarieven-intro-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .hero-service-cards {
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(-30px);
  }

  .hero-scard {
    border-right: none;
    border-bottom: 1px solid var(--border-lt);
    border-radius: 0 !important;
  }

  .hero-scard:last-child {
    border-bottom: none;
  }

  .hero-scard:nth-child(2) {
    border-right: none;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tarief-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .over-grid {
    grid-template-columns: 1fr;
  }

  .over-badge {
    bottom: 1rem;
    right: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rg-page-item {
    grid-template-columns: 1fr;
  }

  .rg-page-sidebar {
    padding: 2rem;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 768px) {

  .hero {
    min-height: 75vh;
  }

  .hero-main {
    min-height: 75vh;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }


  * {
    max-width: 100%;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .rg-page-item,
  .rg-item,
  .tarief-card,
  .usp-card {
    min-width: 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .rg-grid {
    grid-template-columns: 1fr;
  }

  .hero-service-cards {
    grid-template-columns: 1fr;
    transform: translateY(-20px);
  }

  .rg-grid-4 {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .waarden-grid {
    grid-template-columns: 1fr;
  }

  .av-content {
    padding: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

}