/* ============================================
   Layout — All section styling
   Premium redesign — Lenvi Letselschade
   ============================================ */


/* ─────────────────────────────────────────────
   HEADER / NAV
   ───────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 700;
  padding: 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(1,14,11,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0;
}

.nav-logo img {
  height: 44px; width: auto;
}

.nav-links {
  display: none; gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta { display: none; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}


/* ─────────────────────────────────────────────
   HERO — Photo background, editorial
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 9rem 0 6rem;
}

/* Photo background */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/foto3.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

@media (max-width: 767px) {
  .hero-bg { background-attachment: scroll; }
}

/* Dark green overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(1,14,11,0.97) 0%, rgba(1,14,11,0.55) 55%, rgba(1,14,11,0.72) 100%),
    linear-gradient(to bottom, rgba(1,14,11,0.10) 0%, rgba(1,14,11,0.50) 100%);
  z-index: 1;
}

/* Canvas particles */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2; opacity: 0.40;
}

/* Content above overlay */
.hero-content-wrap {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 980px) {
  .hero-content-wrap {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
  }
}

/* Left column */
.hero-left {}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(180,157,114,0.12);
  border: 1px solid rgba(180,157,114,0.28);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.70rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero-left h1 {
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--white);
  margin: 1.75rem auto 2.5rem;
  max-width: 480px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.75rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}
.hero-trust-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
}

/* Right column — floating card */
.hero-right { display: flex; justify-content: center; }

.hero-card {
  background: rgba(1,20,15,0.75);
  border: 1px solid rgba(180,157,114,0.20);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  width: 100%; max-width: 390px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(180,157,114,0.08) inset;
  position: relative; overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,157,114,0.50), transparent);
}

.hero-card::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(180,157,114,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-card-logo {
  width: 56px; margin-bottom: 2rem;
  opacity: 0.85;
}

.hero-card-heading {
  font-family: var(--serif);
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 0.75rem;
}

.hero-card-sub {
  font-size: 0.88rem; color: var(--white);
  line-height: 1.65; margin-bottom: 1.75rem;
}

.hero-card-divider {
  width: 100%; height: 1px;
  background: rgba(180,157,114,0.15);
  margin: 1.5rem 0;
}

.hero-stats {
  display: flex; flex-direction: column; gap: 1rem;
}

.hero-stat {
  display: flex; justify-content: space-between; align-items: center;
}

.hero-stat-val {
  font-family: var(--serif);
  font-size: 1.75rem; color: var(--white);
  letter-spacing: -0.02em; line-height: 1;
}

.hero-stat-val span {
  font-size: 1rem; color: var(--gold); margin-left: 0.15rem;
}

.hero-stat-label {
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--white);
}

.hero-card-cta {
  display: block; width: 100%;
  margin-top: 2rem; padding: 0.95rem;
  text-align: center;
  background: var(--grad-gold);
  color: var(--green-deep);
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: opacity var(--dur);
}
.hero-card-cta:hover { opacity: 0.85; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px; height: 20px; stroke: var(--white); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


/* ─────────────────────────────────────────────
   NUMBERS / STATS STRIP
   ───────────────────────────────────────────── */
.numbers-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 0;
  position: relative;
}

.numbers-strip::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--grad-gold);
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

@media (min-width: 600px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0; } }

.number-item {
  padding: 1.5rem 2rem;
  position: relative;
}

@media (min-width: 600px) {
  .number-item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 1px; background: var(--line);
  }
}

.number-val {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 5rem);
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.04em;
}

.number-val .num-suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
}

.number-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}


/* ─────────────────────────────────────────────
   WHY SECTION — Dark, 3 pillars
   ───────────────────────────────────────────── */
.why-section {
  background: var(--green-dark);
  padding: 9rem 0;
  position: relative; overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(180,157,114,0.09) 0%, transparent 65%);
  top: -250px; right: -200px;
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.why-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .why-header { grid-template-columns: 1fr auto; }
}

.why-header h2 { color: var(--white); }
.why-header p { color: var(--white); max-width: 400px; font-size: 1rem; margin-top: 1rem; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative; z-index: 1;
}

@media (min-width: 640px) { .why-cards { grid-template-columns: repeat(3, 1fr); } }

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

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative; overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(180,157,114,0.35) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(180,157,114,0.25);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(180,157,114,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}

.why-card:hover::before { opacity: 1; }

.why-card-num {
  font-family: var(--serif);
  font-size: 5rem; line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute; top: 0.5rem; right: 1.5rem;
  pointer-events: none; user-select: none;
  transition: color var(--dur) var(--ease);
}
.why-card:hover .why-card-num { color: rgba(180,157,114,0.08); }

.why-card-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: rgba(180,157,114,0.12);
  border: 1px solid rgba(180,157,114,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-card:hover .why-card-icon {
  background: rgba(180,157,114,0.18);
  border-color: rgba(180,157,114,0.35);
  box-shadow: 0 0 20px rgba(180,157,114,0.12);
}
.why-card-icon svg { width: 24px; height: 24px; }

.why-card h3 { color: var(--white); margin-bottom: 0.85rem; font-size: 1.2rem; letter-spacing: -0.01em; }
.why-card p { color: var(--white); font-size: 0.93rem; line-height: 1.75; }


/* ─────────────────────────────────────────────
   PROCESS — Numbered editorial steps
   ───────────────────────────────────────────── */
.process-section {
  background: var(--cream);
  padding: 9rem 0;
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.process-header {
  text-align: center; margin-bottom: 6rem;
}

.process-header p {
  max-width: 520px; margin: 1.25rem auto 0;
  font-size: 1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 2px; }
}

.process-step {
  background: var(--white);
  padding: 3rem 2rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.35s var(--ease);
  display: flex; flex-direction: column; gap: 1.25rem;
}

.process-step::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.40s var(--ease);
}

.process-step:hover { background: var(--cream-mid); }
.process-step:hover::after { transform: scaleX(1); }

.process-step-num {
  font-family: var(--serif);
  font-size: 4.5rem; color: rgba(2,77,64,0.06);
  line-height: 1; position: absolute;
  bottom: 0.5rem; right: 1.25rem;
  pointer-events: none; user-select: none;
  transition: color var(--dur) var(--ease);
}

.process-step:hover .process-step-num { color: rgba(180,157,114,0.08); }

.process-step-icon {
  width: 48px; height: 48px;
  background: var(--grad-gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(180,157,114,0.28);
  flex-shrink: 0;
}

.process-step-icon svg { width: 22px; height: 22px; }

.process-step-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}

.process-step h3 { color: var(--green); font-size: 1.15rem; }
.process-step p { font-size: 0.9rem; line-height: 1.70; }


/* ─────────────────────────────────────────────
   ABOUT / FOTO SPLIT
   ───────────────────────────────────────────── */
.about-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}

@media (min-width: 900px) {
  .about-section { grid-template-columns: 1fr 1fr; }
}

/* Photo side */
.about-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.about-photo-img {
  position: absolute; inset: 0;
  background-image: url('../assets/images/foto1.png');
  background-size: cover;
  background-position: center top;
}

.about-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(1,14,11,0.45) 0%, rgba(2,77,64,0.15) 60%, transparent 100%),
    linear-gradient(to top, rgba(1,14,11,0.60) 0%, transparent 40%);
}

/* Floating badge on photo */
.about-photo-badge {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.about-photo-badge-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.25rem;
}

.about-photo-badge-val {
  font-family: var(--serif);
  font-size: 1.6rem; color: var(--green); line-height: 1;
}

/* Text side */
.about-content {
  background: var(--green-dark);
  padding: 6rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}

@media (max-width: 900px) {
  .about-content { padding: 5rem 1.5rem; }
}

.about-content::before {
  content: '';
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,157,114,0.08) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}

.about-content .label { color: var(--gold-light); }
.about-content .label::before { background: var(--gold-light); }

.about-content h2 { color: var(--white); margin-top: 1.25rem; font-size: clamp(1.9rem, 3.5vw, 2.75rem); }

.about-content p {
  color: var(--white);
  margin-top: 1.25rem; line-height: 1.78; font-size: 1rem;
}

.about-divider {
  width: 60px; height: 2px;
  background: var(--grad-gold);
  margin: 2.5rem 0;
  border-radius: 2px;
}

.about-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white); line-height: 1.5;
  font-style: italic;
  padding-left: 1.75rem;
  border-left: 2px solid var(--gold);
  position: relative;
}

.about-quote-text::before {
  content: '\201C';
  position: absolute;
  top: -2.5rem; left: -1rem;
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
  font-style: normal;
}

.about-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.75rem;
  font-size: 0.80rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--gold-light);
}
.about-author::before {
  content: ''; width: 30px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}


/* ─────────────────────────────────────────────
   CTA STRIP (home)
   ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #010E0B 0%, #024d40 50%, #011F1A 100%);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(180,157,114,0.35) 50%, transparent 100%);
}

.cta-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(180,157,114,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 3rem;
}

.cta-strip-text h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-strip-text p { color: var(--white); margin-top: 0.75rem; max-width: 420px; }

.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, #011F1A 0%, var(--green-deep) 35%);
  padding: 5.5rem 0 2.5rem;
  font-size: 0.88rem;
  color: var(--white);
  position: relative;
}

footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(180,157,114,0.30) 30%, rgba(180,157,114,0.30) 70%, transparent 100%);
}

.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 5rem; } }

.footer-logo { height: 34px; margin-bottom: 1.25rem; }

.footer-tagline { max-width: 290px; line-height: 1.70; color: var(--white) !important; }

.footer-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(180,157,114,0.18);
  border-radius: 100px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold-light);
}
.footer-badge::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: rgba(248,245,240,1); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
footer .footer-col ul > li { color: var(--white) !important; }

.footer-bottom {
  padding-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: 0.76rem; color: var(--white);
}
.footer-bottom a { color: var(--white); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }


/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 58vh;
  padding: 13rem 0 7rem;
  overflow: hidden;
  display: flex; align-items: flex-end;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 6s ease;
}

.page-hero:hover .page-hero-bg { transform: scale(1); }

.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(1,14,11,0.96) 0%, rgba(2,77,64,0.60) 50%, rgba(1,14,11,0.85) 100%),
    linear-gradient(to top, rgba(1,14,11,0.70) 0%, transparent 50%);
  z-index: 1;
}

.page-hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding-bottom: 1rem;
}

.page-hero-content h1 {
  color: var(--white); margin-top: 1rem;
  text-shadow: 0 2px 24px rgba(1,14,11,0.45);
}
.page-hero-content p {
  color: var(--white);
  font-size: 1.08rem; margin-top: 1.4rem; max-width: 520px; line-height: 1.78;
}

.page-hero-deco {
  position: absolute; right: -3rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(16rem, 24vw, 26rem);
  color: rgba(255,255,255,0.028);
  line-height: 1; pointer-events: none; user-select: none;
  z-index: 1;
  letter-spacing: -0.05em;
}


/* ─────────────────────────────────────────────
   PAGE CTA BOTTOM STRIP
   ───────────────────────────────────────────── */
.page-cta {
  background: linear-gradient(135deg, #010E0B 0%, #024d40 50%, #011F1A 100%);
  padding: 7rem 0;
  position: relative; overflow: hidden;
  text-align: center;
}

.page-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(180,157,114,0.35) 50%, transparent 100%);
}

.page-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(180,157,114,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.page-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.page-cta-inner h2 { color: var(--white); }
.page-cta-inner p { color: var(--white); margin-top: 1rem; font-size: 1.05rem; }
.page-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }


/* ─────────────────────────────────────────────
   WERKWIJZE INNER PAGE
   ───────────────────────────────────────────── */
.ww-intro { background: var(--white); }

.ww-intro-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: center;
}
@media (min-width: 900px) { .ww-intro-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.ww-intro-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 80px -15px rgba(1,14,11,0.30), 0 0 0 1px rgba(2,77,64,0.06);
  position: relative;
}

.ww-intro-image::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  pointer-events: none;
}

.ww-intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ww-intro-image:hover img { transform: scale(1.03); }

.ww-intro-text h2 { margin-top: 1rem; }
.ww-intro-text p { margin-top: 1.25rem; font-size: 1rem; line-height: 1.78; }

.ww-promises {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2.5rem;
}

.ww-promise {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.ww-promise-icon {
  width: 36px; height: 36px;
  background: var(--grad-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ww-promise-icon svg { width: 16px; height: 16px; fill: var(--gold-light); }

.ww-promise strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--green); }
.ww-promise span { font-size: 0.82rem; color: var(--muted); }

/* Timeline */
.ww-timeline { background: var(--cream); }

.ww-steps { display: flex; flex-direction: column; max-width: 860px; position: relative; }

.ww-steps::before {
  content: '';
  position: absolute; left: 2.25rem; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-pale) 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
}
@media (min-width: 768px) {
  .ww-steps::before { left: 2.75rem; }
}

.ww-step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 2.5rem; padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}
.ww-step:last-child { border-bottom: none; }
@media (min-width: 768px) { .ww-step { grid-template-columns: 88px 1fr; gap: 3.5rem; } }

.ww-step-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--green-deep); flex-shrink: 0;
  position: relative; z-index: 1;
  margin: 0 auto;
}

.ww-step-body { padding-top: 0.5rem; }
.ww-step-body h3 { color: var(--green); font-size: clamp(1.15rem, 2vw, 1.4rem); }
.ww-step-body p { margin-top: 0.85rem; font-size: 0.97rem; line-height: 1.75; }

.ww-step-details { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }

.ww-step-detail {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.88rem; color: var(--muted);
}
.ww-step-detail::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 0.45rem;
}


/* ─────────────────────────────────────────────
   OVER ONS INNER PAGE
   ───────────────────────────────────────────── */
.over-founder { background: var(--white); }

.founder-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 5rem; align-items: center;
}
@media (min-width: 900px) { .founder-grid { grid-template-columns: 1fr 1fr; gap: 7rem; } }

.founder-visual {
  background: var(--grad-dark);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}

.founder-visual::before {
  content: '';
  position: absolute; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(180,157,114,0.10) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}

.founder-mark { width: 60px; margin-bottom: 2rem; opacity: 0.85; }

.founder-visual h3 { color: var(--white); font-size: 1.65rem; margin-bottom: 0.3rem; }

.founder-role {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); display: block; margin-bottom: 1.5rem;
}

.founder-visual p { color: var(--white); font-size: 0.94rem; line-height: 1.75; }

.founder-line { width: 40px; height: 1px; background: var(--gold); margin: 2rem 0; }

.founder-contact { display: flex; flex-direction: column; gap: 0.65rem; }

.founder-contact-row {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.86rem; color: var(--white);
}
.founder-contact-row svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

.founder-text h2,
h2.founder-text { margin-top: 1.25rem; }
.founder-text p { margin-top: 1.25rem; font-size: 1rem; line-height: 1.78; }
.founder-text blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--green); line-height: 1.45;
  margin-top: 2.5rem; padding-left: 1.75rem;
  border-left: 2px solid var(--gold);
}
.founder-sig {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.5rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.founder-sig::before { content: ''; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }


/* Values */
.over-values { background: var(--cream); }

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 580px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative; overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.40s var(--ease);
}

.value-card:hover { box-shadow: 0 16px 48px -8px rgba(1,14,11,0.14); transform: translateY(-4px); border-color: rgba(180,157,114,0.22); }
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 50px; height: 50px;
  background: var(--grad-gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.value-icon svg { width: 22px; height: 22px; }

.value-card h3 { color: var(--green); margin-bottom: 0.6rem; font-size: 1.1rem; }
.value-card p { font-size: 0.9rem; }


/* ─────────────────────────────────────────────
   FAQ INNER PAGE
   ───────────────────────────────────────────── */
.faq-page-body { background: var(--white); }

.faq-page-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 960px) {
  .faq-page-layout { grid-template-columns: 280px 1fr; gap: 6rem; align-items: start; }
}

.faq-sidebar {
  position: sticky; top: 8rem;
}

.faq-sidebar-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1rem;
}

.faq-sidebar-links {
  display: flex; flex-direction: column; gap: 0.25rem;
}

.faq-sidebar-link {
  display: block; padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 700;
  color: var(--muted);
  transition: all 0.2s;
  border: 1.5px solid transparent;
}
.faq-sidebar-link:hover, .faq-sidebar-link.active {
  color: var(--green);
  background: var(--green-pale);
  border-color: rgba(2,77,64,0.12);
}

.faq-content { display: flex; flex-direction: column; gap: 3.5rem; }

.faq-group-title {
  font-family: var(--serif);
  font-size: 0.88rem; color: var(--gold);
  letter-spacing: 0.10em; text-transform: uppercase;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.faq-group { display: flex; flex-direction: column; }


/* ─────────────────────────────────────────────
   CONTACT INNER PAGE
   ───────────────────────────────────────────── */
.contact-page-body { background: var(--white); }

.contact-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 4.5rem;
}
@media (min-width: 968px) {
  .contact-layout { grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }
}

.contact-channels { display: flex; flex-direction: column; gap: 1rem; }

.contact-channel {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.6rem;
  transition: all 0.30s var(--ease);
  color: inherit;
}
.contact-channel:hover {
  border-color: rgba(180,157,114,0.55);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(1,14,11,0.09);
  transform: translateX(6px);
}

.contact-channel-icon {
  width: 44px; height: 44px;
  background: var(--grad-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon svg { width: 20px; height: 20px; fill: var(--gold-light); }
.contact-channel-icon svg polyline,
.contact-channel-icon svg line { stroke: var(--gold-light); fill: none; }

.contact-channel strong {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.2rem;
}
.contact-channel span { font-size: 0.92rem; color: var(--muted); }

.contact-open-note {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 1rem 1.25rem;
  background: var(--green-pale);
  border: 1px solid rgba(2,77,64,0.12);
  border-radius: var(--radius-lg);
  font-size: 0.84rem; font-weight: 600; color: var(--green);
  margin-top: 0.5rem;
}
.contact-open-note::before {
  content: ''; width: 8px; height: 8px;
  background: #22C55E; border-radius: 50%;
  flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}


/* ─────────────────────────────────────────────
   FAQ HOME SECTION (index.html)
   ───────────────────────────────────────────── */
.faq-home-section {
  background: var(--white);
  padding: 8rem 0;
}

.faq-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .faq-home-grid { grid-template-columns: 1fr 1.2fr; }
}


/* ─────────────────────────────────────────────
   MOBILE — iPhone / small screens
   ───────────────────────────────────────────── */

/* Hide hero floating card on mobile */
@media (max-width: 979px) {
  .hero-right { display: none; }
}

@media (max-width: 767px) {
  /* Hero */
  .hero { padding: 7rem 0 5rem; min-height: auto; }
  .hero-scroll { display: none; }
  .hero-left h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-sub { margin: 1.25rem auto 2rem; font-size: 1rem; }
  .hero-trust { gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; }

  /* Section paddings */
  .why-section { padding: 6rem 0; }
  .process-section { padding: 5.5rem 0; }
  .faq-home-section { padding: 5rem 0; }
  .faq-home-grid { gap: 2.5rem; }
  .cta-strip { padding: 5rem 0; }
  .page-cta { padding: 5rem 0; }

  /* Inner page hero */
  .page-hero { padding: 9rem 0 5rem; min-height: auto; }

  /* About section */
  .about-content { padding: 4rem 1.5rem; }
  .about-photo { min-height: 320px; }

  /* Werkwijze timeline */
  .ww-step { grid-template-columns: 60px 1fr; gap: 1.5rem; padding: 2rem 0; }
  .ww-steps::before { left: 1.75rem; }

  /* Process steps */
  .process-step { padding: 2rem 1.5rem 1.75rem; }

  /* Footer bottom — stack on mobile */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* iPhone 14 en kleiner (≤ 480px) */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 6.5rem 0 4.5rem; }
  .hero-left h1 { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .hero-badge { font-size: 0.62rem; }
  .hero-trust { flex-direction: column; gap: 0.6rem; }
  .hero-trust-item { font-size: 0.72rem; }

  /* Hero knoppen: full-width gestapeld */
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* Sectie padding */
  .why-section { padding: 5rem 0; }
  .process-section { padding: 5rem 0; }
  .faq-home-section { padding: 4rem 0; }
  .cta-strip { padding: 4rem 0; }
  .page-cta { padding: 4rem 0; }
  .page-hero { padding: 8rem 0 4rem; }

  /* About section */
  .about-photo { min-height: 260px; }
  .about-content { padding: 3.5rem 1.25rem; }

  /* CTA knoppen gestapeld */
  .page-cta-actions { flex-direction: column; align-items: center; }
  .page-cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; text-align: center; }

  /* Werkwijze */
  .ww-step { grid-template-columns: 54px 1fr; gap: 1.25rem; padding: 1.75rem 0; }
  .ww-steps::before { left: 1.5rem; }
  .ww-step-circle { width: 42px; height: 42px; font-size: 1rem; }

  /* Process step */
  .process-step { padding: 1.75rem 1.25rem 1.5rem; }

  /* Value cards */
  .value-card { padding: 1.75rem 1.5rem; }

  /* Founder / over-ons kaart */
  .founder-visual { padding: 2rem 1.5rem; }

  /* Footer */
  .footer-grid { gap: 2rem; }
  footer { padding: 4rem 0 2rem; }
}
