/* ===========================
   BESCHERMJEDATA.BE
   Design: Luxury minimal
   =========================== */

:root {
  --navy:       #0f1923;
  --navy-mid:   #1a2a38;
  --navy-light: #243447;
  --gold:       #c9a96e;
  --gold-light: #e2c99a;
  --cream:      #f7f4ef;
  --cream-dark: #ede9e1;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #e2ddd6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 24px rgba(15, 25, 35, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 25, 35, 0.14);

  --max-width: 1160px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-shield {
  font-size: 1.1rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(15, 25, 35, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 680px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(15, 25, 35, 0.2);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 25, 35, 0.25);
}

.btn-ghost {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 400;
  transition: color var(--transition);
}
.btn-ghost:hover { color: var(--navy); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat { text-align: left; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── SECTION COMMON ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-header {
  margin-bottom: 3.5rem;
}

/* ── TOPICS ── */
.topics {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.topic-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  cursor: pointer;
}
.topic-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.topic-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.topic-card--featured h3,
.topic-card--featured p { color: var(--cream); }
.topic-card--featured .topic-link { color: var(--gold-light); }

.topic-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}
.topic-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.topic-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.topic-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ── WHY ── */
.why {
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
  max-width: 460px;
}

.why-list { display: flex; flex-direction: column; gap: 0.85rem; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.check {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Why card */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.why-card-header {
  background: var(--cream-dark);
  padding: 0.85rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.why-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.why-card-dot--red    { background: #ff5f57; }
.why-card-dot--yellow { background: #ffbd2e; }
.why-card-dot--green  { background: #28c840; }

.why-card-body { padding: 1.75rem; }

.privacy-score { margin-bottom: 1.75rem; }
.score-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.score-bar {
  height: 6px;
  background: var(--cream-dark);
  border-radius: 100px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  background: linear-gradient(90deg, #e53e3e, #f6ad55);
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.score-value {
  font-size: 0.8rem;
  color: #e53e3e;
  font-weight: 500;
}

.quick-wins-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.quick-win {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--cream);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
}
.qw-icon { font-size: 1rem; flex-shrink: 0; }
.qw-impact {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: #38a169;
  background: rgba(56, 161, 105, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── GUIDES ── */
.guides {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.guide-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.guide-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.guide-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.guide-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.guide-excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.guide-time {
  font-size: 0.78rem;
  color: var(--text-light);
}
.guide-read {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.guide-read:hover { color: var(--gold); }

.guides-cta { text-align: center; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0 32px;
}

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

.footer .logo { color: var(--cream); }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(247,244,239,0.55);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(247,244,239,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(247,244,239,0.4);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 0 72px; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .topics-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
