/* ═══════════════════════════════════════════════════════════════
   KETAMINE.NL - MAIN STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 248, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(235, 225, 210, 0.4);
  box-shadow: 0 1px 3px rgba(120, 80, 40, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.header__logo:hover {
  text-decoration: none;
}

.header__logo-icon {
  width: 40px;
  height: 36px;
}

.header__logo-text {
  font-size: 1.5rem;
  font-weight: var(--font-extrabold);
  letter-spacing: -0.03em;
  color: var(--color-ink-dark);
}

.header__logo-text span {
  color: var(--color-electric-blue);
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}

.nav__link {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-slate-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-ink-dark);
  background-color: var(--color-snow);
  text-decoration: none;
}

.nav__link--active {
  color: var(--color-electric-blue);
  font-weight: var(--font-semibold);
}

.nav__link--active:hover {
  color: var(--color-electric-blue-dark);
}

/* ─── Dropdown Navigation ─── */
.nav__item {
  position: relative;
}

.nav__link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__link--has-dropdown::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav__item:hover .nav__link--has-dropdown::after {
  transform: rotate(180deg);
  opacity: 0.8;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 240px;
  background: rgba(255, 252, 248, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(235, 225, 210, 0.5);
  border-radius: var(--radius-xl);
  padding: var(--space-2);
  box-shadow: 0 12px 40px rgba(120, 80, 40, 0.1), 0 4px 12px rgba(120, 80, 40, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 200;
  pointer-events: none;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Invisible bridge between link and dropdown to prevent closing on gap */
.nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  pointer-events: none;
}

.nav__item:hover::after {
  pointer-events: auto;
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-slate-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: var(--leading-normal);
}

.nav__dropdown-link:hover {
  color: var(--color-electric-blue);
  background: rgba(74, 158, 255, 0.06);
  text-decoration: none;
}

.nav__dropdown-icon {
  display: none;
}

.nav__dropdown-text {
  display: flex;
  flex-direction: column;
}

.nav__dropdown-label {
  font-weight: var(--font-semibold);
  color: var(--color-ink-dark);
  font-size: var(--text-sm);
  line-height: 1.3;
}

.nav__dropdown-desc {
  display: none;
}

.nav__dropdown-link:hover .nav__dropdown-label {
  color: var(--color-electric-blue);
}

.nav__dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 225, 210, 0.5), transparent);
  margin: var(--space-1) var(--space-2);
}

/* ─── Mobile Menu Dropdowns (Accordion) ─── */
.mobile-menu__group {
  border-bottom: 1px solid rgba(235, 225, 210, 0.4);
}

.mobile-menu__group:last-child {
  border-bottom: none;
}

.mobile-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-ink-dark);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
  text-align: left;
}

.mobile-menu__toggle:hover {
  background-color: var(--color-snow);
}

.mobile-menu__toggle-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--color-slate-gray);
}

.mobile-menu__group.is-open .mobile-menu__toggle-arrow {
  transform: rotate(180deg);
}

.mobile-menu__sub {
  display: none;
  padding: 0 var(--space-4) var(--space-3);
}

.mobile-menu__group.is-open .mobile-menu__sub {
  display: block;
}

.mobile-menu__sub-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-slate-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-menu__sub-link:hover {
  color: var(--color-electric-blue);
  background: rgba(74, 158, 255, 0.06);
  text-decoration: none;
}

/* Emergency CTA in header */
.header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .header__cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
}

.btn--header-emergency {
  background-color: var(--color-coral);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn--header-emergency:hover {
  background-color: #DC3D32;
  color: var(--color-white);
}

.btn--header-emergency::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--color-white);
  border-radius: 50%;
  opacity: 0.8;
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-ink-dark);
}

@media (min-width: 1024px) {
  .header__menu-toggle {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   MOBILE MENU
   ───────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-warm-bg);
  z-index: 99;
  padding: var(--space-8);
  overflow-y: auto;
}

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

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-menu__link {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-ink-dark);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.mobile-menu__link:hover {
  background-color: var(--color-snow);
  text-decoration: none;
}

.mobile-menu__cta {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION - WIDE VERSION WITH IMAGE
   ───────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #FFFCF8 0%, #FFF7EE 20%, #F2F7FF 50%, #FFFCF8 80%);
  padding: var(--space-20) 0 var(--space-24);
  border-bottom: none;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: radial-gradient(circle, rgba(255, 183, 107, 0.07) 0%, rgba(74, 158, 255, 0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: morph-bg 25s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.05) 0%, rgba(52, 211, 153, 0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: morph-bg 30s ease-in-out infinite reverse;
}

@keyframes morph-bg {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
}

.hero__grid {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-20);
  }
}

@media (min-width: 1400px) {
  .hero__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-24);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-electric-blue);
  margin-bottom: var(--space-4);
}

.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-electric-blue);
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.hero__title span {
  color: var(--color-electric-blue);
}

.hero__lead {
  font-size: var(--text-lg);
  color: var(--color-slate-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  max-width: 540px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
}

.hero__trust-icon {
  width: 20px;
  height: 20px;
  color: var(--color-emerald);
}

/* Hero visual with image */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(120, 80, 40, 0.12), 0 0 0 1px rgba(255, 210, 160, 0.15);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--transition-slow);
}

.hero__visual:hover .hero__image {
  transform: scale(1.01);
}

.hero__image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(120, 80, 40, 0.1), 0 0 0 1px rgba(255, 235, 210, 0.5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: transform var(--transition-base);
}

.hero__image-badge:hover {
  transform: translateY(-2px);
}

.hero__image-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-emerald-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero__image-badge-text {
  font-size: var(--text-sm);
}

.hero__image-badge-label {
  font-weight: var(--font-bold);
  color: var(--color-ink-dark);
}

.hero__image-badge-sublabel {
  font-size: var(--text-xs);
  color: var(--color-slate-gray);
}

/* ─────────────────────────────────────────────────────────────
   QUICK SUMMARY (IN HET KORT)
   ───────────────────────────────────────────────────────────── */
.quick-summary {
  background: linear-gradient(135deg, #FFFAF3 0%, var(--color-warm-bg) 100%);
  padding: var(--space-12) 0 var(--space-10);
  border-bottom: none;
}

.quick-summary__title {
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  font-weight: var(--font-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-slate-gray);
  margin-bottom: var(--space-4);
}

.quick-summary__list {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

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

.quick-summary__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, var(--color-warm-bg) 0%, rgba(255, 243, 232, 0.3) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(235, 225, 210, 0.5);
  transition: all var(--transition-base);
}

.quick-summary__item:hover {
  border-color: rgba(255, 183, 107, 0.25);
  box-shadow: 0 4px 12px rgba(120, 80, 40, 0.05);
  transform: translateY(-1px);
}

.quick-summary__bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-electric-blue);
  border-radius: 50%;
  margin-top: 0.6em;
}

.quick-summary__text {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-slate);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   CONTENT SECTIONS
   ───────────────────────────────────────────────────────────── */
.content-section {
  padding: var(--space-20) 0;
}

.content-section--alt {
  background: linear-gradient(135deg, #FFF9F2 0%, #F5F8FD 50%, #FAFCF8 100%);
}

.content-section__header {
  max-width: 720px;
  margin-bottom: var(--space-10);
}

.content-section__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-electric-blue);
  margin-bottom: var(--space-3);
}

.content-section__title {
  margin-bottom: var(--space-4);
}

.content-section__lead {
  font-size: var(--text-lg);
  color: var(--color-slate-gray);
}

/* ─────────────────────────────────────────────────────────────
   TOPIC CARDS (3 PILLARS) WITH IMAGES
   ───────────────────────────────────────────────────────────── */
.topics-grid {
  display: grid;
  gap: var(--space-6);
}

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

.topic-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  transition: transform var(--transition-slow);
}

.topic-card:hover .topic-card__image {
  transform: scale(1.03);
}

.topic-card {
  background: var(--color-warm-bg);
  border: 1px solid rgba(235, 225, 210, 0.5);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.topic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0), rgba(74, 158, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.35s ease;
  pointer-events: none;
}

.topic-card:hover::before {
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.4), rgba(52, 211, 153, 0.4));
}

.topic-card:hover {
  box-shadow: 0 20px 40px rgba(120, 80, 40, 0.08), 0 8px 16px rgba(120, 80, 40, 0.04);
  border-color: rgba(255, 183, 107, 0.2);
  transform: translateY(-6px);
}

.topic-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
}

.topic-card__icon--drug {
  background-color: var(--color-electric-blue-10);
}

.topic-card__icon--help {
  background-color: var(--color-coral-light);
}

.topic-card__icon--care {
  background-color: var(--color-emerald-light);
}

.topic-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

.topic-card__text {
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.topic-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-electric-blue);
  margin-top: auto;
}

.topic-card__link:hover {
  color: var(--color-electric-blue-dark);
}

.topic-card__link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.topic-card:hover .topic-card__link::after {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border: 1px solid rgba(235, 225, 210, 0.45);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  background: var(--color-warm-bg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(255, 183, 107, 0.2);
  box-shadow: 0 2px 8px rgba(120, 80, 40, 0.04);
}

.faq-item.is-open {
  border-color: rgba(74, 158, 255, 0.15);
  box-shadow: 0 4px 16px rgba(120, 80, 40, 0.05);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-5);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-ink-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--color-electric-blue);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-electric-blue);
  background: var(--color-electric-blue-10);
  border-radius: var(--radius-full);
  padding: 4px;
  transition: all var(--transition-base);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background: var(--color-electric-blue);
  color: var(--color-white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
  padding: 0 var(--space-5) var(--space-5);
}

.faq-item__text {
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   EMERGENCY BANNER
   ───────────────────────────────────────────────────────────── */
.emergency-banner {
  background: linear-gradient(135deg, rgba(240, 68, 56, 0.06) 0%, rgba(247, 159, 26, 0.06) 50%, rgba(240, 68, 56, 0.04) 100%);
  border: 1px solid rgba(240, 68, 56, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-amber), var(--color-coral));
}

.emergency-banner__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.emergency-banner__icon {
  font-size: var(--text-2xl);
}

.emergency-banner__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-coral);
}

.emergency-banner__grid {
  display: grid;
  gap: var(--space-4);
}

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

.emergency-banner__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: rgba(255, 252, 248, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 68, 56, 0.08);
  transition: all var(--transition-base);
}

.emergency-banner__item:hover {
  background: var(--color-warm-bg);
  box-shadow: 0 4px 12px rgba(240, 68, 56, 0.08);
  transform: translateY(-1px);
}

.emergency-banner__number {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-coral);
}

.emergency-banner__label {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-ink-dark);
}

.emergency-banner__description {
  font-size: var(--text-xs);
  color: var(--color-slate-gray);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0F1A2B 0%, #0B1420 100%);
  color: var(--color-white);
  padding: var(--space-20) 0 var(--space-10);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.3), transparent);
}

.footer__grid {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

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

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.footer__logo-icon {
  width: 32px;
  height: 28px;
}

.footer__logo-text {
  font-size: var(--text-xl);
  font-weight: var(--font-extrabold);
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.footer__logo-text span {
  color: var(--color-electric-blue);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.footer__column-title {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Disclaimer bar */
.footer__disclaimer {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-8);
}

.footer__disclaimer-text {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   BREADCRUMBS
   ───────────────────────────────────────────────────────────── */
.breadcrumbs {
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(235, 225, 210, 0.4);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  font-size: var(--text-sm);
}

.breadcrumbs__link {
  color: var(--color-slate-gray);
}

.breadcrumbs__link:hover {
  color: var(--color-electric-blue);
}

.breadcrumbs__current {
  color: var(--color-ink-dark);
  font-weight: var(--font-medium);
}

.breadcrumbs__separator {
  color: var(--color-gray-light);
}

/* ─────────────────────────────────────────────────────────────
   ARTICLE CONTENT
   ───────────────────────────────────────────────────────────── */
.article {
  max-width: 720px;
  margin: 0 auto;
}

.article h2 {
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
}

.article h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.article p {
  color: var(--color-slate-light);
  line-height: var(--leading-relaxed);
}

.article ul, .article ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.article li {
  margin-bottom: var(--space-2);
  color: var(--color-slate-light);
  line-height: var(--leading-relaxed);
}

.article a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────
   SOURCES SECTION
   ───────────────────────────────────────────────────────────── */
.sources {
  background: linear-gradient(135deg, var(--color-warm-bg) 0%, rgba(255, 243, 232, 0.25) 100%);
  border: 1px solid rgba(235, 225, 210, 0.5);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-top: var(--space-10);
}

.sources__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.sources__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sources__item {
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
  padding-left: var(--space-4);
  position: relative;
}

.sources__item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-electric-blue);
}

/* ─────────────────────────────────────────────────────────────
   FORM ELEMENTS
   ───────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-ink-dark);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-ink-dark);
  background-color: var(--color-white);
  border: 1px solid var(--color-cloud);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-electric-blue);
  box-shadow: 0 0 0 3px var(--color-electric-blue-20);
}

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

/* ─────────────────────────────────────────────────────────────
   TABLE OF CONTENTS
   ───────────────────────────────────────────────────────────── */
.toc {
  background: linear-gradient(135deg, var(--color-warm-bg) 0%, rgba(255, 243, 232, 0.2) 100%);
  border: 1px solid rgba(235, 225, 210, 0.45);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.toc__title {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-slate-gray);
  margin-bottom: var(--space-3);
}

.toc__list {
  list-style: none;
}

.toc__item {
  border-bottom: 1px solid rgba(235, 225, 210, 0.35);
}

.toc__item:last-child {
  border-bottom: none;
}

.toc__link {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-slate);
  transition: color var(--transition-fast);
}

.toc__link:hover {
  color: var(--color-electric-blue);
}

/* ─────────────────────────────────────────────────────────────
   IMAGE SHOWCASE SECTION
   ───────────────────────────────────────────────────────────── */
.showcase {
  padding: var(--space-24) 0;
  background: linear-gradient(180deg, var(--color-warm-bg) 0%, #FFF6ED 30%, #F2F6FC 60%, var(--color-warm-bg) 100%);
}

.showcase__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.showcase__grid {
  display: grid;
  gap: var(--space-6);
}

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

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

.showcase__item {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(120, 80, 40, 0.06);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(222, 212, 196, 0.3);
}

.showcase__item:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 20px 48px rgba(120, 80, 40, 0.09);
}

.showcase__image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase__item:hover .showcase__image {
  transform: scale(1.06);
}

.showcase__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  background: linear-gradient(transparent, rgba(16, 24, 40, 0.85));
  color: var(--color-white);
}

.showcase__overlay .content-section__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.showcase__title {
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.showcase__text {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Image section eyebrow text - white when over dark backgrounds */
.showcase .content-section__eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.showcase__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-1);
}

.showcase__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   MEDICAL REVIEW BOX
   ───────────────────────────────────────────────────────────── */
.medical-review {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.08) 0%, rgba(52, 211, 153, 0.04) 100%);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-xl);
  margin-top: var(--space-8);
  transition: all var(--transition-base);
}

.medical-review:hover {
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.06);
}

.medical-review__icon {
  flex-shrink: 0;
  font-size: var(--text-xl);
}

.medical-review__content {
  flex: 1;
}

.medical-review__title {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-ink-dark);
  margin-bottom: var(--space-1);
}

.medical-review__text {
  font-size: var(--text-xs);
  color: var(--color-slate-gray);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   STATISTICS COUNTER SECTION
   ───────────────────────────────────────────────────────────── */
.stats {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, #0c1524 0%, #152038 50%, #0f1a2e 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(74, 158, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  gap: var(--space-6);
  text-align: center;
}

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

.stats__item {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
}

.stats__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(74, 158, 255, 0.15);
  transform: translateY(-3px);
}

.stats__number {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-electric-blue-light);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stats__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.stats__divider {
  display: none;
}

@media (min-width: 768px) {
  .stats__divider {
    display: block;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
  }
}

/* ─────────────────────────────────────────────────────────────
   TRUST BADGES ROW
   ───────────────────────────────────────────────────────────── */
.trust-bar {
  padding: var(--space-4) 0;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.6) 0%, rgba(255, 252, 248, 0.95) 100%);
  border-bottom: 1px solid rgba(235, 225, 210, 0.35);
}

.trust-bar__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
  font-weight: var(--font-medium);
}

.trust-bar__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ─────────────────────────────────────────────────────────────
   NEWSLETTER / CTA BANNER
   ───────────────────────────────────────────────────────────── */
.newsletter {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, #3a8ef5 0%, #2b6dd6 50%, #4a9eff 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.newsletter__text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-6);
}

.newsletter__form {
  display: flex;
  gap: var(--space-3);
  max-width: 460px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .newsletter__form {
    flex-direction: column;
  }
}

.newsletter__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.25);
}

.newsletter__btn {
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  background: var(--color-white);
  color: var(--color-electric-blue-dark);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: var(--color-snow);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────────
   "LEES OOK" RELATED ARTICLES CARDS
   ───────────────────────────────────────────────────────────── */
.related {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, #FFF8F0 0%, var(--color-warm-bg) 100%);
  border-top: none;
}

.related__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  margin-bottom: var(--space-6);
}

.related__grid {
  display: grid;
  gap: var(--space-6);
}

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

.related__card {
  background: var(--color-warm-bg);
  border: 1px solid rgba(235, 225, 210, 0.5);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(120, 80, 40, 0.04);
}

.related__card:hover {
  box-shadow: 0 20px 40px rgba(120, 80, 40, 0.08), 0 0 0 1px rgba(255, 210, 160, 0.2);
  transform: translateY(-6px);
  text-decoration: none;
  color: inherit;
  border-color: rgba(255, 183, 107, 0.15);
}

.related__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.related__card:hover .related__card-image {
  transform: scale(1.04);
}

.related__card-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related__card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-electric-blue);
  margin-bottom: var(--space-2);
}

.related__card-title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-ink-dark);
  margin-bottom: var(--space-2);
}

.related__card-text {
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.related__card-arrow {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-electric-blue);
  margin-top: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

/* ─────────────────────────────────────────────────────────────
   COOKIE BANNER
   ───────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 200;
  background: rgba(16, 24, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--color-white);
  padding: var(--space-5) var(--space-6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
  min-width: 250px;
}

.cookie-banner__text a {
  color: var(--color-electric-blue-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-banner__btn--accept {
  background: var(--color-electric-blue);
  color: var(--color-white);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-electric-blue-dark);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

/* ─────────────────────────────────────────────────────────────
   SCROLL TO TOP BUTTON
   ───────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 150;
  width: 44px;
  height: 44px;
  background: var(--color-electric-blue);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-electric-blue-dark);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   READING PROGRESS BAR
   ───────────────────────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 72px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-electric-blue) 0%, var(--color-emerald) 50%, var(--color-electric-blue-light) 100%);
  background-size: 200% 100%;
  z-index: 101;
  transition: width 50ms linear;
  box-shadow: 0 1px 4px rgba(74, 158, 255, 0.3);
}

/* ─────────────────────────────────────────────────────────────
   BLOG
   ───────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.blog-card {
  background: var(--color-warm-bg);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(120, 80, 40, 0.04);
  border: 1px solid rgba(235, 225, 210, 0.5);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(120, 80, 40, 0.08), 0 0 0 1px rgba(255, 210, 160, 0.2);
  text-decoration: none;
  border-color: rgba(255, 183, 107, 0.15);
}

.blog-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.04);
}

.blog-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-slate-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.blog-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-ink-dark);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.blog-card__text {
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-card__link {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-electric-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-fast);
}

.blog-card__link:hover {
  gap: var(--space-2);
  text-decoration: none;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(235, 225, 210, 0.4);
}

.blog-article__date {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
}

.blog-article__tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-electric-blue);
  background: rgba(74, 158, 255, 0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-article__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin: var(--space-6) 0;
  display: block;
}

.blog-cta {
  background: linear-gradient(135deg, #FFF9F0 0%, #F0FAF4 100%);
  border: 1px solid rgba(235, 225, 210, 0.4);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-10);
  text-align: center;
  margin: var(--space-8) 0;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-electric-blue), var(--color-emerald));
}

.blog-cta:hover {
  box-shadow: 0 8px 24px rgba(120, 80, 40, 0.06);
  border-color: rgba(255, 183, 107, 0.2);
}

.blog-cta__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-ink-dark);
  margin-bottom: var(--space-3);
}

.blog-cta__text {
  font-size: var(--text-base);
  color: var(--color-slate-gray);
  margin-bottom: var(--space-5);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card__image {
    height: 180px;
  }

  .blog-article__image {
    height: 200px;
  }
}

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — DECORATIVE DIVIDERS
   ───────────────────────────────────────────────────────────── */
.kn-divider-gradient {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-electric-blue), transparent);
  border: none;
  margin: 0;
}

.kn-divider-dots {
  border: none;
  height: 2px;
  background-image: radial-gradient(circle, var(--color-electric-blue) 1px, transparent 1px);
  background-size: 12px 2px;
  margin: 0;
}

.kn-divider-wave {
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='40' height='8' viewBox='0 0 40 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 Q5 0 10 4 Q15 8 20 4 Q25 0 30 4 Q35 8 40 4' fill='none' stroke='%234A9EFF' stroke-width='1.5' opacity='0.3'/%3E%3C/svg%3E") repeat-x;
  border: none;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — BADGES
   ───────────────────────────────────────────────────────────── */
.kn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
}

.kn-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(120, 80, 40, 0.06);
}

.kn-badge svg { width: 14px; height: 14px; }
.kn-badge-blue { background: #E8F2FF; color: #2B7DE9; }
.kn-badge-green { background: #E6FAF2; color: #0d9668; }
.kn-badge-amber { background: #FEF3E0; color: #b87408; }
.kn-badge-red { background: #FEE4E2; color: #F04438; }

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — FEATURE CARDS WITH ICONS
   ───────────────────────────────────────────────────────────── */
.kn-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.kn-feature-card {
  background: var(--color-warm-bg);
  border: 1px solid rgba(222, 212, 196, 0.4);
  border-radius: var(--radius-2xl);
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.kn-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  opacity: 0;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.03), rgba(52, 211, 153, 0.03));
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.kn-feature-card:hover::after {
  opacity: 1;
}

.kn-feature-card:hover {
  border-color: rgba(255, 183, 107, 0.2);
  box-shadow: 0 16px 32px rgba(120, 80, 40, 0.07), 0 4px 8px rgba(120, 80, 40, 0.04);
  transform: translateY(-4px);
}

.kn-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.kn-feature-icon svg { width: 24px; height: 24px; }
.kn-feature-icon-blue { background: #E8F2FF; }
.kn-feature-icon-blue svg { color: #4A9EFF; }
.kn-feature-icon-green { background: #E6FAF2; }
.kn-feature-icon-green svg { color: #34D399; }
.kn-feature-icon-amber { background: #FEF3E0; }
.kn-feature-icon-amber svg { color: #F79F1A; }
.kn-feature-icon-red { background: #FEE4E2; }
.kn-feature-icon-red svg { color: #F04438; }
.kn-feature-icon-dark { background: #101828; }
.kn-feature-icon-dark svg { color: #FFFFFF; }

.kn-feature-card h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-ink-dark);
  margin-bottom: 6px;
}

.kn-feature-card p {
  font-size: var(--text-sm);
  color: var(--color-slate-gray);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — CTA BANNERS
   ───────────────────────────────────────────────────────────── */
.kn-cta {
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-8) var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.kn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(120, 80, 40, 0.1);
}

.kn-cta h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

.kn-cta p {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  opacity: 0.85;
}

.kn-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}

.kn-cta-btn svg { width: 16px; height: 16px; }

.kn-cta-dark {
  background: linear-gradient(135deg, #101828 0%, #1a2744 100%);
  color: #FFFFFF;
}
.kn-cta-dark .kn-cta-btn { background: linear-gradient(135deg, #4A9EFF, #3A8EEF); color: #FFFFFF; box-shadow: 0 2px 8px rgba(74,158,255,0.3); }
.kn-cta-dark .kn-cta-btn:hover { background: linear-gradient(135deg, #3A8EEF, #2B7DE9); box-shadow: 0 4px 16px rgba(74,158,255,0.4); transform: translateY(-1px); }

.kn-cta-blue {
  background: linear-gradient(135deg, #4A9EFF 0%, #2B7DE9 50%, #4A9EFF 100%);
  background-size: 200% 200%;
  color: #FFFFFF;
}
.kn-cta-blue .kn-cta-btn { background: #FFFFFF; color: #2B7DE9; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.kn-cta-blue .kn-cta-btn:hover { background: #F8FAFC; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transform: translateY(-1px); }

.kn-cta-light {
  background: var(--color-white);
  border: 1px solid var(--color-cloud);
  color: #101828;
}
.kn-cta-light .kn-cta-btn { background: #101828; color: #FFFFFF; }
.kn-cta-light .kn-cta-btn:hover { background: #1D2939; }

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — ENHANCED ALERTS
   ───────────────────────────────────────────────────────────── */
.kn-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius-xl);
  border-left: 4px solid;
  transition: all var(--transition-base);
}

.kn-alert:hover {
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(120, 80, 40, 0.04);
}

.kn-alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.kn-alert-title { font-size: var(--text-sm); font-weight: var(--font-semibold); margin-bottom: 2px; }
.kn-alert-text { font-size: 13px; opacity: 0.8; }

.kn-alert-info {
  background: #E8F2FF;
  border-color: #4A9EFF;
  color: #1a5fbd;
}

.kn-alert-success {
  background: #E6FAF2;
  border-color: #34D399;
  color: #0d9668;
}

.kn-alert-warning {
  background: #FEF3E0;
  border-color: #F79F1A;
  color: #92610a;
}

.kn-alert-danger {
  background: #FEE4E2;
  border-color: #F04438;
  color: #b42318;
}

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — BACKGROUND PATTERNS
   ───────────────────────────────────────────────────────────── */
.kn-bg-dots {
  background-color: var(--color-warm-bg);
  background-image: radial-gradient(circle, rgba(200, 170, 130, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.kn-bg-grid-lines {
  background-color: var(--color-warm-bg);
  background-image:
    linear-gradient(rgba(200, 170, 130, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 170, 130, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.kn-bg-molecules {
  position: relative;
}

.kn-bg-molecules::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='3' fill='%234A9EFF' opacity='0.08'/%3E%3Ccircle cx='80' cy='40' r='2' fill='%2334D399' opacity='0.08'/%3E%3Ccircle cx='50' cy='90' r='2.5' fill='%234A9EFF' opacity='0.06'/%3E%3Cline x1='20' y1='20' x2='80' y2='40' stroke='%234A9EFF' stroke-width='0.5' opacity='0.06'/%3E%3Cline x1='80' y1='40' x2='50' y2='90' stroke='%2334D399' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
  z-index: 0;
}

.kn-bg-molecules > * { position: relative; z-index: 1; }

.kn-bg-mesh-light {
  background: var(--color-warm-bg);
  background-image:
    radial-gradient(at 0% 0%, rgba(255, 183, 107, 0.06) 0%, transparent 50%),
    radial-gradient(at 100% 100%, rgba(52,211,153,0.05) 0%, transparent 50%);
}

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — GLOW ACCENTS
   ───────────────────────────────────────────────────────────── */
.kn-glow-blue {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,255,0.3) 0%, transparent 70%);
  animation: kn-pulse 3s ease-in-out infinite;
}

.kn-glow-green {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,0.3) 0%, transparent 70%);
  animation: kn-pulse 3s ease-in-out infinite 1s;
}

@keyframes kn-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — STAT COUNTERS ENHANCED
   ───────────────────────────────────────────────────────────── */
.kn-stat-icon {
  margin: 0 auto 12px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kn-stat-icon svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────────────────────────────
   TOOLKIT — RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .kn-feature-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────
   SMOOTH ENTRANCE ANIMATIONS
   ───────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content,
.hero__visual {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero__visual {
  animation-delay: 0.15s;
}

/* ─────────────────────────────────────────────────────────────
   GLOBAL POLISH & SELECTION
   ───────────────────────────────────────────────────────────── */
::selection {
  background: rgba(74, 158, 255, 0.2);
  color: var(--color-ink-dark);
}

::-moz-selection {
  background: rgba(74, 158, 255, 0.2);
  color: var(--color-ink-dark);
}

/* Smooth focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--color-electric-blue);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Better scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-snow);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gray-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray);
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM UPGRADES v2 - Warm, Los, Organisch
   ═══════════════════════════════════════════════════════════════ */

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Warm body background */
body {
  position: relative;
  background-color: #FFFCF8;
}

/* Warm header glassmorphism */
.header {
  background: rgba(255, 252, 248, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(235, 225, 210, 0.3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(120, 80, 40, 0.06), 0 1px 3px rgba(120, 80, 40, 0.04);
  border-bottom-color: rgba(235, 225, 210, 0.15);
}

/* Nav link base */
.nav__link {
  position: relative;
}

/* Warm hero base */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFCF8 0%, #FFF6ED 25%, #F0F6FF 55%, #FFFCF8 80%);
}

/* Warm cards */
.card {
  border: 1px solid rgba(235, 225, 210, 0.45);
  border-radius: var(--radius-2xl);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  background: rgba(255, 252, 248, 0.6);
}

.card:hover {
  box-shadow: 0 12px 36px -6px rgba(120, 80, 40, 0.08), 0 4px 10px -2px rgba(120, 80, 40, 0.04);
  transform: translateY(-4px);
  border-color: rgba(255, 183, 107, 0.15);
}

/* Warm alternating sections */
.content-section--alt {
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.6) 0%, rgba(240, 246, 255, 0.35) 100%);
  position: relative;
}

.content-section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 225, 210, 0.5), transparent);
}

.content-section--alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 225, 210, 0.5), transparent);
}

/* Warm emergency banner */
.emergency-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 20px rgba(240, 68, 56, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-amber), #FFB76B, var(--color-coral));
  background-size: 300% 100%;
  animation: gradient-shift 5s ease infinite;
}

/* Warm related cards */
.related__card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(235, 225, 210, 0.4);
}

.related__card:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 20px 48px -8px rgba(120, 80, 40, 0.09), 0 8px 20px -4px rgba(120, 80, 40, 0.04);
  border-color: rgba(255, 183, 107, 0.15);
}

.related__card-image {
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.related__card:hover .related__card-image {
  transform: scale(1.04);
}

/* Warm footer */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(255, 183, 107, 0.25) 25%, rgba(74, 158, 255, 0.2) 50%, rgba(52, 211, 153, 0.15) 75%, transparent 95%);
}

/* Warm FAQ items */
.faq-item {
  border-radius: var(--radius-xl);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(235, 225, 210, 0.4);
  background: rgba(255, 252, 248, 0.7);
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(255, 183, 107, 0.15);
  box-shadow: 0 2px 10px rgba(120, 80, 40, 0.04);
}

.faq-item.is-open {
  border-color: rgba(74, 158, 255, 0.15);
  box-shadow: 0 4px 20px rgba(120, 80, 40, 0.05), 0 2px 6px rgba(120, 80, 40, 0.03);
  background: rgba(255, 255, 255, 0.95);
}

/* Warm form inputs */
.form-input,
.form-textarea {
  border: 1.5px solid rgba(235, 225, 210, 0.5);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255, 252, 248, 0.85);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-electric-blue);
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.08);
  background: var(--color-white);
}

/* Warm cookie banner */
.cookie-banner {
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(235, 225, 210, 0.3);
  box-shadow: 0 -8px 32px rgba(120, 80, 40, 0.06);
  color: var(--color-ink-dark);
}

.cookie-banner__text {
  color: var(--color-slate-light);
}

.cookie-banner__btn--decline {
  color: var(--color-slate-gray);
  border: 1px solid rgba(235, 225, 210, 0.5);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(120, 80, 40, 0.2);
  color: var(--color-ink-dark);
}

/* Warm scroll-to-top */
.scroll-top {
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(235, 225, 210, 0.4);
  box-shadow: 0 8px 24px rgba(120, 80, 40, 0.06), 0 2px 8px rgba(120, 80, 40, 0.03);
  border-radius: var(--radius-xl);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(74, 158, 255, 0.1), 0 4px 12px rgba(255, 183, 107, 0.06);
  border-color: rgba(74, 158, 255, 0.15);
}

/* Warm TOC */
.toc {
  background: rgba(255, 252, 248, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(235, 225, 210, 0.35);
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 20px rgba(120, 80, 40, 0.04), 0 1px 3px rgba(120, 80, 40, 0.03);
  position: relative;
  overflow: hidden;
}

.toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #FFB76B, var(--color-electric-blue), rgba(74, 158, 255, 0.1));
  border-radius: 0 2px 2px 0;
}

/* Warm blog cards */
.blog-card {
  border-radius: var(--radius-2xl) !important;
  border: 1px solid rgba(235, 225, 210, 0.4) !important;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
  box-shadow: 0 2px 8px rgba(120, 80, 40, 0.03) !important;
  overflow: hidden !important;
}

.blog-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px -8px rgba(120, 80, 40, 0.09), 0 8px 20px -4px rgba(120, 80, 40, 0.04) !important;
  border-color: rgba(255, 183, 107, 0.15) !important;
}

.blog-card__image {
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.04);
}

/* Warm progress bar */
.progress-bar {
  background: linear-gradient(90deg, #FFB76B, var(--color-electric-blue), #34D399, #FFB76B);
  background-size: 300% 100%;
  animation: gradient-shift 4s ease infinite;
  height: 3px;
}
