/* NoFaena marketing site — nofaena.es
   Modern + ITARR-warmte: dennegroen + terracotta + cream */

:root {
  color-scheme: light;
  --c-fir: #1e3a2f;
  --c-fir-soft: #2a4d3f;
  --c-fir-dark: #14271f;
  --c-clay: #c8794d;
  --c-clay-soft: #d99372;
  --c-cream: #f8f5ef;
  --c-cream-warm: #f3ede0;
  --c-sand: #e8dfc9;
  --c-ink: #1a1a1a;
  --c-ink-soft: #4a4a4a;
  --c-ink-muted: #7a7a7a;
  --c-line: #d9d2c1;
  --c-white: #ffffff;
  --c-whatsapp: #25D366;
  --c-whatsapp-dark: #128C7E;

  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "DM Sans", system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 100px;

  --sh-soft: 0 2px 12px rgba(30, 58, 47, 0.08);
  --sh-card: 0 8px 32px rgba(30, 58, 47, 0.12);
  --sh-hover: 0 16px 48px rgba(30, 58, 47, 0.18);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(200, 121, 77, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--c-clay);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Skip-link for keyboard users */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--c-fir);
  color: var(--c-cream);
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:where(section, h1, h2, h3, [id]) {
  scroll-margin-top: 80px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-fir);
  letter-spacing: -0.01em;
}

.brand .b-strike {
  position: relative;
  display: inline-block;
}

.brand .b-strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  top: 55%;
  height: 2px;
  background: var(--c-clay);
  transform: rotate(-3deg);
}

.brand small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--c-ink-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: var(--c-fir);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--c-clay);
  transition: width 0.3s;
}

.nav a:hover::after,
.nav a:focus-visible::after { width: 100%; }

@media (min-width: 768px) {
  .nav { display: flex; }
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--c-fir);
  color: var(--c-cream);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s, transform 0.2s;
  min-height: 36px;
}

.cta-pill:hover { background: var(--c-fir-soft); transform: translateY(-1px); }

@media (pointer: coarse) {
  .cta-pill { min-height: 44px; padding: 0.6rem 1.25rem; }
}

/* Header lang-switch */
.header-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--c-cream-warm);
  border-radius: var(--r-sm);
  padding: 0.25rem;
  margin-right: 0.5rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.625rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-ink-muted);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s, color 0.2s;
  min-height: 32px;
}

.lang-btn:hover { color: var(--c-fir); }

.lang-btn.active,
.lang-btn[aria-pressed="true"] {
  background: var(--c-fir);
  color: var(--c-cream);
}

.lang-flag {
  width: 18px;
  height: auto;
  display: block;
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(30, 58, 47, 0.12);
}

@media (pointer: coarse) {
  .lang-btn { min-height: 44px; padding: 0.5rem 0.75rem; }
}

@media (max-width: 480px) {
  .lang-code { display: none; }
  .lang-btn { padding: 0.4rem; gap: 0; }
  .header-lang { margin-right: 0.25rem; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary { background: var(--c-fir); color: var(--c-cream); }
.btn-primary:hover { background: var(--c-fir-soft); transform: translateY(-2px); box-shadow: var(--sh-card); }

.btn-ghost {
  background: transparent;
  color: var(--c-fir);
  border-color: var(--c-line);
}
.btn-ghost:hover { border-color: var(--c-fir); background: var(--c-cream-warm); }

.btn-whatsapp { background: var(--c-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--c-whatsapp-dark); transform: translateY(-2px); box-shadow: var(--sh-card); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, rgba(200, 121, 77, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(30, 58, 47, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(232, 223, 201, 0.45) 0%, transparent 70%),
    var(--c-cream);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
  }
}

/* Decorative diagonal accent line (top-right corner) */
.hero::after {
  content: "";
  position: absolute;
  top: 4rem; right: -8rem;
  width: 320px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-clay) 60%, transparent);
  transform: rotate(35deg);
  opacity: 0.4;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-clay);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-clay);
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--c-fir);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero h1 .strike {
  position: relative;
  display: inline-block;
  color: var(--c-clay);
  font-style: italic;
}

.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 56%;
  height: 4px;
  background: var(--c-clay);
  transform: rotate(-3deg);
  opacity: 0.95;
}

.hero p.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: var(--c-ink-soft);
  margin-bottom: 2rem;
  max-width: 580px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Hero trust badges (terug, kort) */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  font-size: 0.85rem;
  color: var(--c-ink-muted);
}

.hero-trust .check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust .check svg { color: var(--c-fir); flex-shrink: 0; }

/* Hero language showcase: laat zien wat je krijgt */
.hero-langs {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  padding-left: 1rem;
  border-left: 1px solid var(--c-line);
  max-width: 320px;
}

.hl {
  position: relative;
  color: var(--c-ink-muted);
  padding: 0.15rem 0 0.15rem 1.5rem;
  transition: color 0.4s, padding-left 0.4s;
}

.hl::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0.75rem; height: 1px;
  background: var(--c-line);
  transform: translateY(-50%);
  transition: width 0.4s, background-color 0.4s, height 0.4s;
}

.hl[data-active="true"] {
  color: var(--c-fir);
  padding-left: 2rem;
}

.hl[data-active="true"]::before {
  width: 1.5rem;
  height: 2px;
  background: var(--c-clay);
}

.hl small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-clay);
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .hero-langs {
    border-left: none;
    border-top: 1px solid var(--c-line);
    padding-left: 0;
    padding-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    font-size: 1.1rem;
    max-width: 100%;
  }
  .hl, .hl[data-active="true"] { padding: 0.15rem 0; }
  .hl::before, .hl[data-active="true"]::before { display: none; }
  .hl[data-active="true"] {
    border-bottom: 2px solid var(--c-clay);
  }
  .hl small { display: none; }
}

/* Hero visual: stacked browser mockups */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.mockup {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--sh-hover);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  transform: rotate(-2deg);
  transition: transform 0.4s;
}

.mockup-bar {
  display: flex;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  background: #ebe4d3;
  border-bottom: 1px solid #d4cbb6;
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
}

.mockup-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mockup-line {
  height: 8px;
  background: var(--c-line);
  border-radius: 4px;
}
.mockup-line.w70 { width: 70%; }
.mockup-line.w50 { width: 50%; }
.mockup-line.w40 { width: 40%; background: var(--c-clay); }
.mockup-line.h-title {
  height: 18px;
  background: var(--c-fir);
  width: 60%;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.mockup-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.mockup-card {
  flex: 1;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-sand), var(--c-cream-warm));
  border-radius: 8px;
}

.mockup-flags {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.mockup-flag {
  width: 18px; height: 12px;
  border-radius: 2px;
  background: var(--c-line);
  box-shadow: 0 0 0 1px rgba(30, 58, 47, 0.1);
}
.mockup-flag.es { background: linear-gradient(to bottom, #AA151B 25%, #F1BF00 25% 75%, #AA151B 75%); }
.mockup-flag.ca { background: repeating-linear-gradient(to bottom, #FCDD09, #FCDD09 1.3px, #DA121A 1.3px, #DA121A 2.6px); }
.mockup-flag.en { background: #012169; }
.mockup-flag.fr { background: linear-gradient(to right, #002654 33%, #fff 33% 66%, #ED2939 66%); }
.mockup-flag.de { background: linear-gradient(to bottom, #0a0a0c 33%, #DD0000 33% 66%, #FFCE00 66%); }

.mockup-2 {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  transform: rotate(4deg) scale(0.78);
  z-index: -1;
  opacity: 0.95;
}

@media (min-width: 900px) {
  .mockup { transform: rotate(-3deg) scale(1.05); }
  .mockup-2 { transform: rotate(5deg) scale(0.82); }
}

/* ============ SECTION SHARED ============ */
section {
  padding: 6rem 0;
}

.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-clay);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-fir);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--c-ink-soft);
  max-width: 640px;
  line-height: 1.6;
  text-wrap: pretty;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header.left {
  text-align: left;
  margin: 0 0 3.5rem;
  max-width: 720px;
}

/* ============ SECTORS ============ */
.sectors {
  background: var(--c-cream-warm);
}

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

@media (min-width: 600px) {
  .sector-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .sector-grid { grid-template-columns: repeat(4, 1fr); }
}

.sector-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-card);
  border-color: var(--c-clay);
}

.sector-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-fir);
  color: var(--c-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sector-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-fir);
  line-height: 1.2;
}

.sector-tagline {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
}

.sector-from {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-line);
  font-size: 0.85rem;
  color: var(--c-ink-muted);
  font-variant-numeric: tabular-nums;
}

.sector-from strong {
  color: var(--c-fir);
  font-weight: 700;
}

/* ============ HOW IT WORKS ============ */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.how-step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
}

.how-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--c-clay);
  margin-bottom: 1rem;
  font-style: italic;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-fir);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.how-step p {
  color: var(--c-ink-soft);
  line-height: 1.6;
}

/* ============ PROOF / EXAMPLES ============ */
.proof {
  background: var(--c-fir);
  color: var(--c-cream);
}

.proof .section-eyebrow { color: var(--c-clay-soft); }
.proof .section-title { color: var(--c-cream); }
.proof .section-subtitle { color: rgba(248, 245, 239, 0.75); }

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

@media (min-width: 768px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.proof-card {
  background: rgba(248, 245, 239, 0.04);
  border: 1px solid rgba(248, 245, 239, 0.15);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.proof-card:hover {
  background: rgba(248, 245, 239, 0.07);
  border-color: rgba(248, 245, 239, 0.3);
  transform: translateY(-3px);
}

.proof-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-clay-soft);
  margin-bottom: 0.75rem;
}

.proof-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}

.proof-meta {
  font-size: 0.9rem;
  color: rgba(248, 245, 239, 0.6);
  margin-bottom: 1rem;
}

.proof-desc {
  color: rgba(248, 245, 239, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-clay-soft);
  font-weight: 600;
  border-bottom: 1px solid var(--c-clay-soft);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.proof-link:hover {
  color: var(--c-clay);
  border-color: var(--c-clay);
}

/* ============ PRICING ============ */
.pricing {
  background: var(--c-cream);
}

.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-cream-warm);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 3rem;
  text-align: center;
}

.pricing-from {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--c-fir);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-from .euro {
  color: var(--c-clay);
}

.pricing-from .month {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.pricing-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--c-ink-soft);
}

.pricing-includes li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pricing-includes li svg { color: var(--c-fir); }

.pricing-note {
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  margin-top: 1rem;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--c-fir);
  color: var(--c-cream);
}

.contact .section-eyebrow { color: var(--c-clay-soft); }
.contact .section-title { color: var(--c-cream); }
.contact .section-subtitle { color: rgba(248, 245, 239, 0.75); }

.contact-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.contact-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-or {
  font-size: 0.95rem;
  color: rgba(248, 245, 239, 0.6);
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.contact-channels a {
  color: var(--c-clay-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-channels a:hover {
  color: var(--c-clay);
  border-color: var(--c-clay);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--c-fir-dark);
  color: rgba(248, 245, 239, 0.7);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(248, 245, 239, 0.1);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-block h4 {
  color: var(--c-cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.footer-block p,
.footer-block a {
  color: rgba(248, 245, 239, 0.6);
  line-height: 1.7;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.footer-block a:hover { color: var(--c-cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(248, 245, 239, 0.5);
}

/* ============ FADE-IN ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .sector-card:hover,
  .proof-card:hover,
  .btn-primary:hover,
  .btn-whatsapp:hover,
  .cta-pill:hover { transform: none; }
}

/* Polish: tabular-nums op prijzen en getallen */
.sector-from,
.pricing-from,
.contact-channels { font-variant-numeric: tabular-nums; }

/* Polish: balanced wrapping op section subtitles */
.section-subtitle,
.sector-tagline,
.how-step p,
.proof-desc { text-wrap: pretty; }

/* Polish: trust check icon alignment */
.hero-trust .check svg { flex-shrink: 0; }
