@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary: #3f6c5b;       /* gedempt groen */
  --primary-soft: #e3f0ea;  /* lichte groen-wassing */
  --accent: #d9a35f;        /* warm zand / oker */
  --bg: #faf5ef;            /* zacht off-white / zand */
  --bg-soft: #f4efe7;
  --text: #1f2524;
  --muted: #6b716f;
  --border-soft: #e1ddd5;
  --white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ==== INTRO SCREEN ==== */
        .intro-screen {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #ffffff;  /* Was: linear-gradient(135deg, #1a2420 0%, #2c3e37 50%, #1f2e28 100%) */
        }

        .animated-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border-radius: 20%;
            
            opacity: 0.5;  /* Was: 0.25 - nu veel opvallender */
            animation: float 25s infinite ease-in-out;
        }

        .shape-1 { width: 400px; height: 400px; background: linear-gradient(135deg, #2c5f4f, #3d7a64); top: -50px; left: -50px; }
        .shape-2 { width: 400px; height: 400px; background: linear-gradient(135deg, #d4915d, #b87744); top: 50%; right: -200px; animation-delay: 4s; }
        .shape-3 { width: 400px; height: 400px; background: linear-gradient(135deg, #1f4538, #2c5f4f); bottom: -50px; left: 30%; animation-delay: 2s; }
        .shape-4 { width: 400px; height: 400px; background: linear-gradient(90deg, #d4915d, #c9823f); top: 20%; left: 60%; animation-delay: 6s; }

      @keyframes float {
        0%,100% { transform: translate(0,0) rotate(0deg); }
        25% { transform: translate(200px, 150px) rotate(90deg); }  /* Was: 80px, 60px */
        50% { transform: translate(-150px, 200px) rotate(180deg); }  /* Was: 40px, 120px */
        75% { transform: translate(-200px, -100px) rotate(270deg); }  /* Was: -60px, 40px */
    }

        .intro-content {
            text-align: center;
            z-index: 2;
            position: relative;
            padding: 0 20px;
        }

        .intro-logo {
            max-width: 800px;
            width: 90%;
            filter: drop-shadow(0 0 40px rgba(88, 123, 0, 0.6));
            animation: glow 4s ease-in-out infinite alternate;
            margin-bottom: 40px;
        }

        .intro-tag {
            font-size: 20px;
            font-weight: 400;
            letter-spacing: 2px;
            color: #333333;  /* Was: rgba(255, 255, 255, 0.9) - nu donker voor leesbaarheid */
            margin-bottom: 80px;
            line-height: 1.6;
        }

            .scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
            color: rgba(0,0,0,0.6);  /* Was: rgba(255,255,255,0.7) */
            font-size: 14px;
        }

            .mouse {
            width: 30px; height: 50px;
            border: 2px solid rgba(0,0,0,0.4);  /* Was: rgba(255,255,255,0.5) */
            border-radius: 20px;
            position: relative;
        }

        .wheel {
            width: 4px; height: 10px;
            background: #333;  /* Was: white */
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 1.5s infinite;
        }

@keyframes glow {
    from { filter: drop-shadow(0 0 40px rgba(212, 145, 93, 0.4)); }
    to { filter: drop-shadow(0 0 60px rgba(232, 184, 139, 0.6)); }
}

@keyframes scroll { 
    0% { transform: translateX(-50%) translateY(0); opacity: 1; } 
    100% { transform: translateX(-50%) translateY(22px); opacity: 0; } 
}

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


/* ====== HEADER ====== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 245, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.header-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.header-logo-img {
  height: 80px;
  width: auto;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-nav a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.header-nav a.active {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-cta {
  border: 1px solid rgba(63,108,91,0.15);
}

/* ====== HERO ====== */

.hero-section {
  padding: 64px 20px 80px;
  background: radial-gradient(circle at top left, #fce8c6, var(--bg) 40%);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-section h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}

.lead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(27, 63, 52, 0.18);
}

.btn-primary:hover {
  background: #365a4d;
  box-shadow: 0 10px 22px rgba(27, 63, 52, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.7);
}

/* Hero side card */

.hero-card {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 20px 20px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.hero-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.hero-card ul {
  list-style: none;
  padding-left: 0;
}

.hero-card li {
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
}

/* ====== GENERIC SECTIONS ====== */

.section {
  padding: 64px 20px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  text-align: left;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--text);
}

.section-header p {
  font-size: 15px;
  color: var(--muted);
}

/* ====== SERVICES ====== */

.services-section {
  background: var(--bg-soft);
  border-top: 1px solid rgba(0,0,0,0.02);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.services-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .services-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid-three {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 22px rgba(0,0,0,0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.05);
  border-color: rgba(63,108,91,0.3);
}

.service-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.service-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(63,108,91,0.06);
  color: #304a40;
  font-size: 12px;
  font-weight: 500;
}

.service-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-link .service-card {
  cursor: pointer;
}


/* ====== SPLIT LAYOUTS ====== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 32px;
  align-items: flex-start;
}

.soft-section {
  background: #f7f3ec;
  border-top: 1px solid rgba(0,0,0,0.02);
}

.split-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.split-text p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.9);
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
}

.chip:hover {
  border-color: rgba(63,108,91,0.4);
}

/* Right card in onderwijs section */

.split-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px dashed rgba(63,108,91,0.3);
}

.split-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* Over Paul image placeholder */

.split-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
    width: 300px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ====== TESTIMONIALS ====== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -12px;
  left: 10px;
  font-size: 60px;
  color: rgba(63,108,91,0.15);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* ====== CTA ====== */

.cta-section {
  background: #314842;
  color: var(--white);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  margin-bottom: 6px;
}

.cta-inner p {
  font-size: 14px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-actions .btn-primary {
  background: var(--white);
  color: #314842;
  box-shadow: none;
}

.cta-actions .btn-primary:hover {
  background: #f4efe7;
}

/* ====== FOOTER ====== */

footer {
  background: #252c2a;
  color: rgba(255,255,255,0.8);
  padding: 32px 20px 20px;
}

.footer-content {
  max-width: 1120px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

footer .logo-mark {
  background: #fdf4d6;
  color: #252c2a;
}

footer .logo-text {
  color: rgba(255,255,255,0.85);
}

footer p {
  font-size: 13px;
}

footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}

footer a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: left;
}

/* ====== SINGLE SESSIONS PAGE ELEMENTS ====== */

.hero-inner-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-soft);
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.text-block-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.text-block-centered h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--text);
}

.text-block-centered p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-soft);
  text-align: center;
}

.info-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}

.info-card p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

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

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

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

/* Mobile menu toggle - hidden by default */
.mobile-menu-toggle {
  display: none;
}


/* ====== OVER PAUL PAGE ====== */

.hero-inner-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px;
  align-items: center;
  max-width: 920px;
}

.about-hero-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-hero-text h1 {
  margin-bottom: 16px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text);
}

.story-content p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.qualities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.quality-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-soft);
}

.quality-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text);
}

.quality-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.qualifications-section {
  max-width: 720px;
  margin: 0 auto;
}

.qualifications-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  margin-bottom: 24px;
  color: var(--text);
}

.qualifications-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qualification-item {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border-soft);
}

.qualification-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}

.qualification-item p {
  font-size: 14px;
  color: var(--muted);
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.tool-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-soft);
}

.tool-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.tool-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.tool-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.tool-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero-inner-about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-image {
    display: flex;
    justify-content: center;
  }

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

@media (max-width: 640px) {
  .qualities-grid {
    grid-template-columns: 1fr;
  }
}
/* ====== DOCENTEN PAGE ====== */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.comparison-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-soft);
}

.comparison-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text);
}

.comparison-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.comparison-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.comparison-card strong {
  color: var(--text);
}

.comparison-card .btn-secondary {
  margin-top: 12px;
  display: inline-block;
}

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


/* ====== CONTACT PAGE ====== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  text-align: center;
}

.contact-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.contact-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 13px !important;
  color: var(--muted) !important;
  margin-top: 8px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-soft);
}

.faq-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

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


/* ====== RESPONSIVE ====== */

/* Mobile menu toggle - hidden by default */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .header-nav ul {
    gap: 10px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 48px;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .lead {
    font-size: 15px;
  }

  .section {
    padding: 48px 16px;
  }

  .header-container {
    padding-inline: 16px;
  }

  /* Hamburger menu */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    z-index: 1000;
  }

  .header-nav.active {
    right: 0;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .header-nav li {
    border-bottom: 1px solid var(--border-soft);
  }

  .header-nav a {
    display: block;
    padding: 16px 10px;
    border-radius: 0;
  }
}