    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 0;
      background: var(--bg);
    }
    #hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      opacity: 0.45;
    }
    .hero-content {
      position: relative; z-index: 10;
      max-width: 820px;
      padding: 0 48px;
    }
    .hero-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: #F4A9C3;
      opacity: 0.85;
      margin-bottom: 28px;
      animation: fadeUp 1s ease both 0.3s;
    }
    .hero-title {
      font-size: clamp(48px, 6.5vw, 88px);
      font-weight: 900;
      line-height: 1.02;
      letter-spacing: 0.5px;
      color: var(--text-dark-bright);
      margin-bottom: 28px;
      animation: fadeUp 1s ease both 0.5s;
    }
    .hero-title em {
      font-style: normal;
      color: #F4A9C3;
    }
    .hero-sub {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.75;
      color: var(--text-dark);
      max-width: 520px;
      margin: 0 auto 48px;
      animation: fadeUp 1s ease both 0.7s;
    }
    .hero-actions {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 1s ease both 0.9s;
    }
    .hero-trust {
      margin-top: 24px;
      font-size: 12px;
      font-weight: 400;
      color: var(--text-dark-dim);
      animation: fadeUp 1s ease both 1.1s;
    }
    .hero-trust strong { color: var(--text-dark); font-weight: 600; }
    .scroll-indicator {
      position: absolute;
      bottom: 40px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: scrollPulse 2.5s ease-in-out infinite;
    }
    .scroll-indicator span {
      font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--text-dark-dim);
    }
    .scroll-line {
      width: 1px; height: 32px;
      background: linear-gradient(180deg, var(--pink-light) 0%, transparent 100%);
      opacity: 0.3;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
      50% { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
    }
    .hero-vignette {
      position: absolute; inset: 0; z-index: 2; pointer-events: none;
      background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(19,11,25,0.55) 100%);
    }
    .hero-float-icon { position: absolute; z-index: 50; pointer-events: none; }
    .hero-float-1 { top: 22%; right: 6%; opacity: 1; animation: heroFloat1 7s ease-in-out infinite; }
    .hero-float-2 { top: 40%; right: 18%; opacity: 1; animation: heroFloat2 9s ease-in-out infinite; animation-delay: -3s; }
    @keyframes heroFloat1 { 0%,100%{transform:translateY(0) rotate(-4deg);} 50%{transform:translateY(-14px) rotate(2deg);} }
    @keyframes heroFloat2 { 0%,100%{transform:translateY(0) rotate(3deg);} 50%{transform:translateY(-10px) rotate(-3deg);} }

    /* ══════════════════════════════════════════════════════════
       PROBLEEM — white
       ══════════════════════════════════════════════════════════ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .section-probleem {
      background: var(--bg-white);
      color: var(--text-light);
      position: relative;
      overflow: hidden;
      padding: 110px 0;
    }
    .probleem-icon {
      margin-bottom: 20px;
    }
    .probleem-icon svg {
      filter: drop-shadow(0 6px 16px rgba(244,169,195,0.25));
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .probleem-icon svg:hover {
      transform: translateY(-4px) rotate(-4deg);
    }
    .probleem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .probleem-text h2 {
      font-size: clamp(28px, 3.4vw, 44px);
      font-weight: 800;
      color: var(--text-light-bright);
      letter-spacing: 0.3px;
      line-height: 1.08;
      margin-bottom: 28px;
    }
    .probleem-text p {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.8;
      margin-bottom: 24px;
      color: var(--text-light);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .stat-card {
      background: var(--bg-offwhite);
      border-radius: 12px;
      padding: 32px 28px;
      transition: background 0.3s, transform 0.3s;
    }
    .stat-card:hover {
      background: #FDF0F6;
      transform: translateY(-3px);
    }
    .stat-num {
      font-size: 52px;
      font-weight: 800;
      color: var(--text-light-bright);
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -2px;
    }
    .stat-num span { color: var(--pink); }
    .stat-label {
      font-size: 13px;
      font-weight: 400;
      color: var(--text-light-dim);
      line-height: 1.5;
    }

    /* ══════════════════════════════════════════════════════════
       AANPAK / LICHT — white block
       ══════════════════════════════════════════════════════════ */
    .section-aanpak {
      background: var(--bg-white);
      color: var(--text-light);
    }
    /* ══ LICHT icon grid ════════════════════════════════════════════════════ */
    .aanpak-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 72px;
    }
    .aanpak-header h2 {
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 800;
      color: var(--text-light-bright);
      letter-spacing: 0.3px;
      line-height: 1.08;
      margin-bottom: 16px;
    }
    .aanpak-header p {
      font-size: 16px;
      color: var(--text-light);
      line-height: 1.75;
    }

    .licht-icon-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 48px;
    }
    @media (max-width: 900px) {
      .licht-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
      }
    }
    @media (max-width: 560px) {
      .licht-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
      }
    }

    .licht-icon-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0;
      text-decoration: none;
      color: inherit;
      border-radius: 16px;
      padding: 16px 8px;
      transition: background 0.2s;
    }
    .licht-icon-item:hover {
      background: rgba(244,169,195,0.06);
    }
    .licht-icon-item:hover .licht-icon-arrow {
      opacity: 1;
      transform: translateX(3px);
    }
    .licht-icon-arrow {
      font-size: 11px;
      color: #F4A9C3;
      font-weight: 600;
      margin-top: 8px;
      opacity: 0;
      transform: translateX(0);
      transition: opacity 0.2s, transform 0.2s;
      letter-spacing: 0.04em;
    }

    .licht-icon-bubble {
      width: 140px;
      height: 140px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0 8px 24px rgba(244,169,195,0.15));
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
    }
    .licht-icon-item:hover .licht-icon-bubble {
      transform: translateY(-6px) scale(1.05);
      filter: drop-shadow(0 16px 32px rgba(244,169,195,0.3));
    }
    .licht-icon-bubble svg {
      width: 100%;
      height: 100%;
    }

    .licht-icon-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-light-bright);
      margin: 0 0 8px;
      letter-spacing: -0.3px;
    }
    .licht-icon-desc {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.65;
      margin: 0;
    }

    /* reveal: stagger each item */
    .licht-icon-item.reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
    }
    .licht-icon-item.reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .licht-icon-item:nth-child(1) { transition-delay: 0s; }
    .licht-icon-item:nth-child(2) { transition-delay: 0.1s; }
    .licht-icon-item:nth-child(3) { transition-delay: 0.2s; }
    .licht-icon-item:nth-child(4) { transition-delay: 0.3s; }
    .licht-icon-item:nth-child(5) { transition-delay: 0.4s; }

    /* ══ Engine scroll reveal section ══════════════════════════════════════ */
    .section-engine {
      background: var(--bg);
      overflow: hidden;
      padding-bottom: 0;
    }
    .engine-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .engine-header h2 {
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 800;
      color: var(--text-dark-bright);
      letter-spacing: 0.3px;
      line-height: 1.08;
      margin-bottom: 16px;
    }
    .engine-header p {
      font-size: 16px;
      color: var(--text-dark);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* Scroll tilt container */
    .engine-scroll-wrap {
      perspective: 1000px;
      padding-bottom: 80px;
    }
    .engine-card-outer {
      max-width: 980px;
      margin: 0 auto;
      transform-origin: top center;
      will-change: transform;
    }
    .engine-card {
      border: 3px solid #3a3a3a;
      border-radius: 24px;
      background: #1a1a1a;
      padding: 8px;
      box-shadow:
        0 0 0 0 #0000004d,
        0 9px 20px #0000004a,
        0 37px 37px #00000042,
        0 84px 50px #00000026;
      overflow: hidden;
    }
    .engine-card-inner {
      border-radius: 18px;
      overflow: hidden;
      background: #f4f5f7;
    }

    /* ── Dashboard mockup ── */
    .dash-wrap {
      display: grid;
      grid-template-columns: 220px 1fr;
      height: 520px;
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
    }
    .dash-sidebar {
      background: #1b2538;
      color: #8fa3bf;
      padding: 20px 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .dash-logo {
      padding: 0 20px 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .dash-nav-section {
      padding: 12px 20px 4px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #4a6080;
    }
    .dash-nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 20px;
      color: #8fa3bf;
      cursor: pointer;
      font-size: 12px;
      font-weight: 500;
      transition: background 0.15s;
      border-left: 3px solid transparent;
    }
    .dash-nav-item.active {
      background: rgba(244,169,195,0.1);
      color: #F4A9C3;
      border-left-color: #F4A9C3;
      font-weight: 600;
    }
    .dash-nav-item svg {
      width: 14px; height: 14px;
      opacity: 0.7;
      flex-shrink: 0;
    }
    .dash-main {
      background: #f4f5f7;
      overflow: hidden;
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .dash-top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
    }
    .dash-page-title {
      font-size: 13px;
      font-weight: 700;
      color: #1b2538;
    }
    .dash-client-badge {
      font-size: 10px;
      font-weight: 600;
      background: #F4A9C3;
      color: #28363D;
      padding: 3px 10px;
      border-radius: 999px;
    }
    .dash-highlights-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #8fa3bf;
      margin-bottom: 8px;
    }
    .dash-stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .dash-stat {
      background: #fff;
      border-radius: 10px;
      padding: 12px 14px;
      border: 1px solid #e8ecf0;
    }
    .dash-stat-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #8fa3bf;
      margin-bottom: 4px;
    }
    .dash-stat-num {
      font-size: 20px;
      font-weight: 800;
      color: #1b2538;
      letter-spacing: -0.5px;
      line-height: 1;
      margin-bottom: 4px;
    }
    .dash-stat-trend {
      font-size: 9px;
      font-weight: 600;
      color: #22c55e;
    }
    .dash-stat-trend.neg { color: #ef4444; }
    .dash-chart-area {
      background: #fff;
      border-radius: 10px;
      padding: 14px;
      border: 1px solid #e8ecf0;
      flex: 1;
    }
    .dash-chart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .dash-chart-title {
      font-size: 11px;
      font-weight: 700;
      color: #1b2538;
    }
    .dash-period-btns {
      display: flex;
      gap: 4px;
    }
    .dash-period-btn {
      font-size: 9px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 6px;
      border: 1px solid #e0e4e8;
      background: transparent;
      color: #8fa3bf;
      cursor: pointer;
    }
    .dash-period-btn.active {
      background: #F4A9C3;
      color: #28363D;
      border-color: #F4A9C3;
    }
    /* SVG mini bar chart */
    .dash-chart-svg {
      width: 100%;
      height: 80px;
    }
    .dash-bottom-row {
      display: grid;
      grid-template-columns: 1fr 240px;
      gap: 10px;
    }
    .dash-table {
      background: #fff;
      border-radius: 10px;
      padding: 12px 14px;
      border: 1px solid #e8ecf0;
    }
    .dash-table-title {
      font-size: 11px;
      font-weight: 700;
      color: #1b2538;
      margin-bottom: 8px;
    }
    .dash-table-head {
      display: grid;
      grid-template-columns: 1fr 60px 60px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #B57AA0;
      padding-bottom: 6px;
      border-bottom: 1px solid #f0f0f0;
      margin-bottom: 4px;
    }
    .dash-table-row {
      display: grid;
      grid-template-columns: 1fr 60px 60px;
      font-size: 10px;
      color: #4a5568;
      padding: 4px 0;
      border-bottom: 1px solid #f8f8f8;
    }
    .dash-table-row:last-child { border-bottom: none; }
    .dash-sources {
      background: #fff;
      border-radius: 10px;
      padding: 12px 14px;
      border: 1px solid #e8ecf0;
    }
    .dash-sources-title {
      font-size: 11px;
      font-weight: 700;
      color: #1b2538;
      margin-bottom: 10px;
    }
    .dash-source-row {
      margin-bottom: 8px;
    }
    .dash-source-label {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: #4a5568;
      margin-bottom: 3px;
    }
    .dash-source-bar {
      height: 3px;
      background: #f0f0f0;
      border-radius: 2px;
      overflow: hidden;
    }
    .dash-source-fill {
      height: 100%;
      background: linear-gradient(90deg, #F4A9C3, #B57AA0);
      border-radius: 2px;
    }

    /* ══════════════════════════════════════════════════════════
       BILLING TOGGLE
       ══════════════════════════════════════════════════════════ */
    .billing-toggle-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 48px;
    }
    .billing-tabs {
      display: inline-flex;
      background: rgba(40,54,61,0.06);
      border: 1px solid var(--border-light);
      padding: 4px;
      gap: 4px;
    }
    .billing-tab {
      padding: 8px 20px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-light);
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
    }
    .billing-tab.active {
      background: var(--bg-white);
      color: var(--text-light-bright);
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }
    .billing-save-badge {
      background: var(--pink);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 6px;
      letter-spacing: 0.3px;
    }

    /* ══════════════════════════════════════════════════════════
       PAKKETTEN — offwhite
       ══════════════════════════════════════════════════════════ */
    .section-pakketten {
      background: #F4A9C3;
      color: var(--text-light);
      position: relative;
      overflow: hidden;
    }
    .section-pakketten::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
      z-index: 0;
    }
    .section-pakketten::after {
      content: '';
      position: absolute;
      top: -150px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(233,30,99,0.10) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    /* ── PRICING FLOATING ICONS ── */
    .pricing-float-icon {
      position: absolute;
      pointer-events: none;
      z-index: 1;
      top: 16%;
      right: 22%;
      filter: drop-shadow(0 6px 24px rgba(0,0,0,0.12));
      animation: pricingFloat1 9s ease-in-out infinite;
    }
    @keyframes pricingFloat1 {
      0%, 100% { transform: translateY(0) rotate(-3deg); }
      50%       { transform: translateY(-20px) rotate(2deg); }
    }

    .pakketten-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .pakketten-header h2 {
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 800;
      color: var(--text-light-bright);
      letter-spacing: 0.3px;
      line-height: 1.08;
      margin-bottom: 20px;
    }
    .pakketten-header p {
      font-size: 17px;
      font-weight: 400;
      color: var(--text-light);
      max-width: 440px;
      margin: 0 auto;
    }
    .pakketten-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      align-items: start;
    }
    .pakket-card-wrap { position: relative; }
    .featured-wrap { padding-top: 24px; }
    .pakket-card {
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      padding: 40px 32px 36px;
      position: relative;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .pakket-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    }
    .pakket-card.featured {
      border-color: var(--pink);
      background: #fff;
    }
    .pakket-card.featured:hover {
      box-shadow: 0 20px 60px rgba(181,122,160,0.14);
    }
    .featured-badge {
      position: absolute;
      top: -1px; left: -1px; right: -1px;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--pink-light));
    }
    .pakket-badge {
      position: absolute;
      top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--pink);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 14px;
      white-space: nowrap;
    }
    .pakket-svg-icon {
      width: 72px;
      height: 72px;
      display: block;
      margin-bottom: 20px;
    }
    .pakket-naam {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-light-bright);
      letter-spacing: -0.5px;
      margin-bottom: 4px;
    }
    .pakket-sub {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--pink);
      font-weight: 600;
      margin-bottom: 24px;
    }
    .pakket-prijs-wrap { margin-bottom: 4px; }
    .pakket-prijs {
      display: flex;
      align-items: baseline;
      gap: 2px;
    }
    .pakket-prijs .euro { font-size: 18px; color: var(--text-light); font-weight: 600; }
    .bedrag-inner {
      display: inline-flex;
      align-items: baseline;
    }
    .pakket-digit {
      font-size: 48px;
      font-weight: 800;
      color: var(--text-light-bright);
      letter-spacing: -2px;
      line-height: 1;
      display: inline-block;
      overflow: hidden;
      transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
    }
    .pakket-prijs .per { font-size: 14px; color: var(--text-light-dim); padding-bottom: 6px; margin-left: 2px; }
    .pakket-btw {
      font-size: 12px; font-weight: 400;
      color: var(--text-light-dim); margin-bottom: 8px;
    }
    .pakket-saving {
      font-size: 12px; font-weight: 600;
      color: var(--pink); margin-bottom: 20px;
    }
    .pakket-saving.hidden { display: none; }
    .hidden { display: none; }
    .pakket-desc {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.7;
      color: var(--text-light);
      margin-bottom: 24px;
      min-height: 44px;
    }
    .pakket-divider {
      border: none;
      border-top: 1px solid var(--border-light);
      margin: 0 0 24px;
    }
    .pakket-features { list-style: none; margin-bottom: 32px; }
    .pakket-features li {
      font-size: 13.5px;
      font-weight: 400;
      color: var(--text-light);
      padding: 9px 0;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      line-height: 1.5;
    }
    .pakket-features li:last-child { border-bottom: none; }
    .pakket-check {
      width: 16px; height: 16px;
      flex-shrink: 0;
      color: var(--pink);
      margin-top: 1px;
    }
    .pakket-btn {
      display: block;
      text-align: center;
      padding: 13px 14px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: all 0.3s;
    }
    .pakket-btn-outline {
      border: 1px solid var(--border-light);
      color: var(--text-light);
    }
    .pakket-btn-outline:hover {
      border-color: var(--pink);
      color: var(--pink);
    }
    .pakket-btn-pink {
      background: var(--pink);
      color: #fff;
      box-shadow: 0 4px 20px rgba(181,122,160,0.30);
    }
    .pakket-btn-pink:hover {
      background: var(--pink-light);
      box-shadow: 0 8px 32px rgba(181,122,160,0.40);
      transform: translateY(-1px);
    }
    .pakketten-footer {
      text-align: center;
      margin-top: 52px;
      font-size: 14px;
      font-weight: 400;
      color: var(--text-light-dim);
    }
    .pakketten-footer a { color: var(--pink); text-decoration: none; font-weight: 500; }
    .pakketten-footer a:hover { text-decoration: underline; }

    /* ══════════════════════════════════════════════════════════
       OVER — white
       ══════════════════════════════════════════════════════════ */
    .section-over {
      background: var(--bg-white);
      color: var(--text-light);
    }
    .over-profile-wrap {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 80px;
      align-items: start;
    }
    .over-profile-img {
      position: relative;
    }
    .over-profile-img img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .over-profile-img::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--pink-light));
    }
    .over-profile-name {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-light-bright);
      letter-spacing: 0.3px;
      margin-bottom: 6px;
    }
    .over-profile-title {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--pink);
      margin-bottom: 28px;
    }
    .over-profile-bio {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 32px;
    }
    .over-values {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 36px;
      border-top: 1px solid var(--border-light);
    }
    .over-value {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light-bright);
      padding: 14px 0;
      border-bottom: 1px solid var(--border-light);
    }
    .over-value::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--pink);
      flex-shrink: 0;
    }
    .over-social-links {
      display: flex;
      gap: 12px;
    }
    .over-social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px; height: 40px;
      border: 1px solid var(--border-light);
      color: var(--text-light);
      transition: all 0.25s;
    }
    .over-social-link svg {
      width: 16px; height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .over-social-link:hover {
      border-color: var(--pink);
      color: var(--pink);
    }

    /* ══════════════════════════════════════════════════════════
       CTA — dark
       ══════════════════════════════════════════════════════════ */
    .section-cta {
      background: var(--bg);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .section-cta::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(244,169,195,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .section-cta h2 {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 900;
      color: var(--text-dark-bright);
      letter-spacing: 0.3px;
      line-height: 1.05;
      margin-bottom: 20px;
      position: relative;
    }
    .section-cta p {
      font-size: 17px;
      font-weight: 400;
      color: var(--text-dark);
      max-width: 440px;
      margin: 0 auto 48px;
      line-height: 1.75;
      position: relative;
    }
    .cta-trust {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-dark-dim);
      margin-top: 20px;
      position: relative;
      letter-spacing: 2px;
    }

    /* ══════════════════════════════════════════════════════════
       FOOTER — dark
       ══════════════════════════════════════════════════════════ */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border-dark);
      padding: 36px 48px;
    }
    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .footer-logo-img {
      height: 40px;
      width: auto;
      display: block;
    }
    .footer-links {
      display: flex; gap: 24px; list-style: none;
    }
    .footer-links a {
      color: var(--text-dark-dim);
      font-size: 12px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text-dark); }
    .footer-copy { font-size: 12px; font-weight: 400; color: var(--text-dark-dim); }

    /* ══════════════════════════════════════════════════════════
       RESPONSIVE
       ══════════════════════════════════════════════════════════ */
    @media (max-width: 1000px) {
      .licht-icon-grid { grid-template-columns: repeat(3, 1fr); }
      .pakketten-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .container, .container-wide { padding: 0 24px; }
      section { padding: 100px 0; }
      .probleem-grid { grid-template-columns: 1fr; gap: 60px; }
      .licht-icon-grid { grid-template-columns: repeat(3, 1fr); }
      .pakketten-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
      .over-profile-wrap { grid-template-columns: 1fr; gap: 40px; }
      .over-profile-img { max-width: 280px; }
      .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
      .hero-title { letter-spacing: 0.3px; }
    }
    @media (max-width: 600px) {
      .nav-links { display: none; }
      .stats-grid { grid-template-columns: 1fr; }
      .licht-icon-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
    }

    /* ══════════════════════════════════════════════════════════
       PRICING COMPONENT — scoped vars + styles
       ══════════════════════════════════════════════════════════ */
    #pricing-app {
      --pink:      #F4A9C3;
      --pink-dim:  rgba(244,169,195,0.18);
      --pink-glow: rgba(244,169,195,0.45);
      --bg:        #F4A9C3;
      --surface:   #0d0d1a;
      --surface2:  #111122;
      --border:    rgba(255,255,255,0.07);
      --border-hi: rgba(255,255,255,0.13);
      --text:      #e1e1f0;
      --muted:     #9090b0;
      --on-bg:     #1a0612;
      --on-bg-sub: #6b2040;
      --mono:      'JetBrains Mono', monospace;
      --sans:      'Inter', system-ui, sans-serif;
      position: relative;
      z-index: 1;
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
    }
    .wrap {
      max-width: 1300px;
      margin: 0 auto;
      padding: 72px 32px 96px;
    }
    .label-chip {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.25);
      border: 1px solid rgba(255,255,255,0.5);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
      text-transform: uppercase; color: #fff;
      font-family: 'JetBrains Mono', monospace;
      margin-bottom: 20px;
    }
    .label-chip::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 6px rgba(255,255,255,0.7);
      animation: priceBlink 2s ease infinite;
    }
    @keyframes priceBlink {
      0%,100% { opacity: 1; }
      50%      { opacity: 0.3; }
    }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      letter-spacing: 0.3px;
      line-height: 1.1;
      margin-bottom: 12px;
      color: #1a0612;
    }
    .section-sub {
      font-size: 15px;
      color: #6b2040;
      max-width: 480px;
      line-height: 1.6;
      margin-bottom: 40px;
    }
    .pkg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 20px;
    }
    @media (max-width: 720px) { .pkg-grid { grid-template-columns: 1fr; } }
    .glow-wrap {
      --mx: 50%;
      --my: 50%;
      padding: 1px;
      border-radius: 16px;
      background: radial-gradient(
        380px circle at var(--mx) var(--my),
        rgba(233,30,99,0.45) 0%,
        rgba(255,255,255,0.06) 55%,
        rgba(255,255,255,0.07) 100%
      );
      cursor: pointer;
      transition: transform 0.2s;
    }
    .glow-wrap:hover { transform: translateY(-3px); }
    .glow-wrap.selected {
      background: radial-gradient(
        380px circle at var(--mx) var(--my),
        rgba(233,30,99,0.7) 0%,
        rgba(233,30,99,0.2) 50%,
        rgba(255,255,255,0.07) 100%
      );
      transform: translateY(-3px);
    }
    .pkg-card {
      background: #0d0d1a;
      border-radius: 15px;
      padding: 28px 24px 24px;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: background 0.2s;
      color: #e1e1f0;
    }
    .glow-wrap:hover .pkg-card { background: #111122; }
    .rec-badge {
      position: absolute;
      top: -12px; left: 50%; transform: translateX(-50%);
      background: #F4A9C3;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(233,30,99,0.4);
      font-family: 'JetBrains Mono', monospace;
    }
    .pkg-top {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      margin-bottom: 20px;
    }
    .pkg-status {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      color: #9090b0;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 3px 8px;
      border-radius: 4px;
    }
    .pkg-name {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.3px;
      margin-bottom: 4px;
    }
    .pkg-tagline {
      font-size: 13px;
      color: #9090b0;
      font-family: 'JetBrains Mono', monospace;
      margin-bottom: 10px;
    }
    .pkg-promise {
      font-size: 13.5px;
      color: rgba(225,225,240,0.75);
      line-height: 1.55;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .pkg-price-row {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 4px;
    }
    .pkg-from { font-size: 11px; color: #9090b0; font-family: 'JetBrains Mono', monospace; }
    .pkg-price-val {
      font-size: 32px;
      font-weight: 800;
      font-family: 'JetBrains Mono', monospace;
      color: #fff;
      letter-spacing: -1px;
    }
    .pkg-price-unit { font-size: 13px; color: #9090b0; margin-left: 2px; }
    .pkg-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.07);
      margin: 20px 0;
    }
    .pkg-features { list-style: none; flex: 1; }
    .pkg-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: rgba(225,225,240,0.82);
      padding: 7px 0;
      border-bottom: 1px solid rgba(255,255,255,0.03);
      line-height: 1.5;
    }
    .pkg-features li:last-child { border-bottom: none; }
    .feat-dot {
      width: 14px; height: 14px;
      border-radius: 50%;
      border: 1.5px solid #F4A9C3;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .feat-dot::after {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #F4A9C3;
    }
    .pkg-btn {
      margin-top: 20px;
      width: 100%;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.13);
      color: rgba(255,255,255,0.6);
      border-radius: 8px;
      padding: 10px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.5px;
      transition: all 0.15s;
    }
    .pkg-btn:hover,
    .glow-wrap.selected .pkg-btn {
      border-color: #F4A9C3;
      color: #F4A9C3;
      background: rgba(244,169,195,0.18);
    }
    .pkg-more-link {
      display: block;
      text-align: center;
      margin-top: 10px;
      font-size: 11px;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.28);
      text-decoration: none;
      transition: color 0.15s;
    }
    .pkg-more-link:hover { color: #F4A9C3; }
    .variant-section {
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 16px;
      background: #0d0d1a;
      padding: 32px 28px;
      margin-top: 12px;
      animation: fadeSlide 0.28s cubic-bezier(0.16,1,0.3,1);
    }
    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(-10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .var-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }
    .var-title { font-size: 15px; font-weight: 700; color: #e1e1f0; }
    .var-title span { color: #F4A9C3; }
    .var-close {
      width: 28px; height: 28px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.05);
      border-radius: 6px;
      cursor: pointer;
      color: #9090b0;
      font-size: 14px;
      transition: all 0.15s;
      border: none;
    }
    .var-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
    .var-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    @media (max-width: 640px) { .var-grid { grid-template-columns: 1fr; } }
    .var-card {
      background: #0a0a14;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px;
      padding: 20px;
      transition: border-color 0.2s;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .var-card.highlight { border-color: rgba(244,169,195,0.35); }
    .var-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .var-label::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
    }
    .var-card:nth-child(1) .var-label { color: #f8bbd0; }
    .var-card:nth-child(1) .var-label::before { background: #f8bbd0; box-shadow: 0 0 6px #f8bbd0; }
    .var-card:nth-child(2) .var-label { color: #f06292; }
    .var-card:nth-child(2) .var-label::before { background: #f06292; box-shadow: 0 0 6px #f06292; }
    .var-card:nth-child(3) .var-label { color: #F4A9C3; }
    .var-card:nth-child(3) .var-label::before { background: #F4A9C3; box-shadow: 0 0 6px #F4A9C3; }
    .var-price {
      font-family: 'JetBrains Mono', monospace;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -1px;
      color: #fff;
      margin-bottom: 2px;
    }
    .var-price-unit { font-size: 12px; color: #9090b0; font-weight: 400; }
    .var-desc {
      font-size: 13px;
      color: #9090b0;
      margin: 10px 0 14px;
      line-height: 1.6;
      font-style: italic;
      font-family: 'Poppins', sans-serif;
    }
    .var-items { list-style: none; margin-bottom: 18px; flex: 1; }
    .var-items li {
      font-size: 13px;
      color: rgba(225,225,240,0.8);
      padding: 5px 0;
      display: flex;
      gap: 8px;
      align-items: flex-start;
      border-bottom: 1px solid rgba(255,255,255,0.03);
      font-family: 'Poppins', sans-serif;
      line-height: 1.5;
    }
    .var-items li:last-child { border-bottom: none; }
    .var-items li::before {
      content: '›';
      color: #F4A9C3;
      flex-shrink: 0;
      font-weight: 700;
      font-size: 14px;
      line-height: 1.3;
    }
    .var-cta {
      margin-top: 20px;
      width: 100%;
      background: transparent;
      border: 1px solid rgba(244,169,195,0.3);
      color: #F4A9C3;
      border-radius: 7px;
      padding: 11px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.5px;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
    }
    .var-cta:hover {
      background: rgba(244,169,195,0.1);
      border-color: #F4A9C3;
    }
    /* highlight variant krijgt wél een gevulde stijl */
    .var-card.highlight .var-cta {
      background: #F4A9C3;
      border-color: #F4A9C3;
      color: #0F1A1F;
    }
    .var-card.highlight .var-cta:hover {
      background: #e8a0ba;
      border-color: #e8a0ba;
    }
    .var-cta.ghost {
      background: transparent;
      border: 1px solid rgba(244,169,195,0.3);
      color: #F4A9C3;
    }
    .var-cta.ghost:hover {
      background: rgba(244,169,195,0.12);
      box-shadow: none;
    }
    /* LICHT banner above pricing grid */
    .licht-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      background: #0d0d1a;
      border: 1px solid rgba(244,169,195,0.2);
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    .licht-banner::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, transparent, #F4A9C3, transparent);
    }
    .licht-banner-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: rgba(225,225,240,0.9);
      margin-bottom: 3px;
    }
    .licht-banner-text span {
      font-size: 12.5px;
      color: #9090b0;
    }
    .licht-banner-free {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      font-weight: 600;
      color: #F4A9C3;
      background: rgba(244,169,195,0.12);
      border: 1px solid rgba(244,169,195,0.25);
      padding: 4px 12px;
      border-radius: 100px;
      letter-spacing: 1.5px;
      white-space: nowrap;
    }
    .btn-licht {
      background: #F4A9C3;
      color: #0F1A1F;
      border: none;
      cursor: pointer;
      padding: 9px 20px;
      border-radius: 8px;
      font-size: 12.5px;
      font-weight: 700;
      font-family: 'JetBrains Mono', monospace;
      white-space: nowrap;
      transition: background 0.15s, transform 0.1s;
      flex-shrink: 0;
    }
    .btn-licht:hover { background: #e8a0ba; transform: translateY(-1px); }
    /* wgl-domain highlight */
    .wgl-domain { color: #F4A9C3; font-weight: 600; }
    .variant-note {
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      text-align: center;
    }
    .vn-item label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9.5px;
      color: rgba(225,225,240,0.5);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 4px;
    }
    .vn-item span {
      font-size: 12px;
      color: rgba(225,225,240,0.7);
    }
    @media (max-width: 640px) {
      .variant-note { grid-template-columns: 1fr; }
    }

    /* ── RESULTATEN section ── */
    .section-resultaten {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .section-resultaten::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(244,169,195,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .resultaten-header {
      max-width: 580px;
      margin-bottom: 56px;
    }
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 56px;
    }
    @media (max-width: 720px) { .stats-row { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }
    .section-resultaten .stat-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 28px 24px;
      transition: border-color 0.2s, background 0.2s;
    }
    .section-resultaten .stat-card:hover {
      background: rgba(255,255,255,0.05);
      border-color: rgba(244,169,195,0.25);
    }
    .section-resultaten .stat-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 700;
      color: #F4A9C3;
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 8px;
    }
    .section-resultaten .stat-label {
      font-size: 14px;
      color: rgba(225,225,240,0.6);
      line-height: 1.4;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }
    .testimonial-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 28px 26px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: border-color 0.2s;
    }
    .testimonial-card:hover { border-color: rgba(244,169,195,0.2); }
    .testimonial-quote {
      font-size: 15px;
      color: rgba(225,225,240,0.85);
      line-height: 1.65;
      font-style: italic;
      flex: 1;
      position: relative;
      padding-left: 18px;
    }
    .testimonial-quote::before {
      content: '"';
      position: absolute;
      left: 0; top: -4px;
      font-size: 28px;
      color: #F4A9C3;
      font-style: normal;
      line-height: 1;
      font-weight: 700;
    }
    .testimonial-meta {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(244,169,195,0.4), rgba(244,169,195,0.1));
      border: 1px solid rgba(244,169,195,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700;
      color: #F4A9C3;
      font-family: 'JetBrains Mono', monospace;
      flex-shrink: 0;
    }
    .testimonial-name {
      font-size: 13px;
      font-weight: 700;
      color: #e1e1f0;
      margin-bottom: 2px;
    }
    .testimonial-company {
      font-size: 11px;
      color: #9090b0;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.5px;
    }
    .testimonial-result {
      margin-top: auto;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.5px;
      color: #F4A9C3;
      background: rgba(244,169,195,0.08);
      border: 1px solid rgba(244,169,195,0.18);
      border-radius: 6px;
      padding: 5px 10px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
    }
    .testimonial-result::before {
      content: '↑';
      font-weight: 700;
    }

    /* ── BLOG section ── */
    .section-blog {
      background: #f7f1ee;
      position: relative;
    }
    .blog-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }
    .blog-header-text { flex: 1; }
    .blog-header .section-title { margin-bottom: 6px; }
    .blog-all-link {
      font-size: 13px;
      font-weight: 600;
      color: #1a0612;
      text-decoration: none;
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.5px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 6px;
      opacity: 0.7;
      transition: opacity 0.15s;
      padding-bottom: 4px;
    }
    .blog-all-link:hover { opacity: 1; }
    @media (max-width: 640px) { .blog-header { flex-direction: column; align-items: flex-start; } }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
    .blog-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(26,6,18,0.07);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(26,6,18,0.1);
    }
    .blog-img {
      height: 180px;
      background: linear-gradient(135deg, #f0e3ea, #fce8f0);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .blog-img-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(26,6,18,0.35);
    }
    .blog-card-body {
      padding: 22px 22px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .blog-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #F4A9C3;
      background: rgba(244,169,195,0.12);
      border: 1px solid rgba(244,169,195,0.3);
      border-radius: 4px;
      padding: 3px 8px;
      display: inline-block;
      margin-bottom: 12px;
    }
    .blog-title {
      font-size: 16px;
      font-weight: 800;
      color: #1a0612;
      line-height: 1.35;
      margin-bottom: 10px;
    }
    .blog-excerpt {
      font-size: 13px;
      color: #5a3a4a;
      line-height: 1.6;
      flex: 1;
    }
    .blog-footer {
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid rgba(26,6,18,0.07);
    }
    .blog-date {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      color: #9090b0;
      letter-spacing: 0.5px;
    }
    .blog-read {
      font-size: 12px;
      font-weight: 600;
      color: #1a0612;
      display: flex;
      align-items: center;
      gap: 4px;
    }
