:root {
      --bg: #fbfbf8;
      --text-soft: #444444;
      --text-muted: #777777;
      --green: #04B120;
      --green-hover: #26C743;
      --green-soft: #7dd35d;
      --green-soft-hover: #69c24b;
      --white: #ffffff;
      --card-border: rgba(17, 17, 17, 0.08);
      --card-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      --section-width: 1200px;
      --radius: 18px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-soft);
  overflow-x: hidden;
  background: url("images/Blog.png") center center / cover no-repeat;
}

    img {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      font: inherit;
    }

    .innerSection {
      width: min(var(--section-width), calc(100% - 40px));
      margin: 0 auto;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
    }

    /* ===== Navbar (gekopieerd van samplats.css) ===== */
    .navbar {
        position: sticky;
        top: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        z-index: 1000;
    }

    .nav-container {
        max-width: 1200px;
        margin: auto;
        padding: 16px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'DM Sans', sans-serif;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: 18px;
        font-family: 'DM Sans', sans-serif;
    }

    .logo span {
        font-family: "DM Sans", sans-serif;
    }

    .logo-placeholder img{
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #3cd07c, #2ca65c);
        border-radius: 6px;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 24px;
    }

    .nav-links a {
      font-family: 'DM Sans', sans-serif;
        text-decoration: none;
        color: #555;
        font-weight: 700;
        padding: 6px 14px;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .nav-links a:hover {
        background: #e6f5ec;
        color: #26C743;
    }

    .nav-links a.active {
        background: #E9F7EC;
        color: #26C743;
        box-shadow: 0 4px 4px rgba(0,0,0,0.1);
    }

    .cta-btn {
        background: #26C743;
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 900;
        transition: 0.2s ease;
    }

    .cta-btn:hover {
        background: #26C743;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .hamburger span {
        width: 24px;
        height: 3px;
        background: #333;
        border-radius: 2px;
    }

    @media (max-width: 768px) {
        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 20px 0;
            display: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .nav-links.active {
            display: flex;
        }

        .cta-btn {
            display: none;
        }

        .hamburger {
            display: flex;
        }
    }

    /* ===== Hero ===== */
    .hero {
      padding: 70px 0 40px;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 42% 45%, rgba(125, 211, 93, 0.1), transparent 24%),
        radial-gradient(circle at 58% 55%, rgba(125, 211, 93, 0.08), transparent 26%);
      pointer-events: none;
      z-index: 0;
    }

    .heroWrap {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: clamp(40px, 8vw, 140px);
      min-height: 70vh;
    }

    .heroImage {
      flex: 0 1 420px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .heroImage img {
      width: 85%;
      max-width: 480px;
      border-radius: 20px;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .heroImage img:hover {
      transform: translateY(-4px) rotate(-1deg);
    }

    .heroContent {
      max-width: 600px;
      flex: 1 1 460px;
    }

    .heroContent h1 {
      font-size: clamp(2.2rem, 4.8vw, 3.6rem);
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.08;
      letter-spacing: -0.02em;
    }

    .heroContent p {
      font-size: 1.12rem;
      margin-bottom: 32px;
      line-height: 1.65;
      color: var(--text-muted);
    }

    .heroButtons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .heroButtons a:nth-of-type(2) {
      background-color: #f3f4f6;
      color: #111;
      border: 1px solid rgba(17, 17, 17, 0.08);
    }

    .heroContent .btn {
      padding: 14px 26px;
      font-weight: 600;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
    }

    .btn-primary {
      background-color: var(--green);
      color: #fff;
    }

    .btn-primary:hover {
      background-color: var(--green-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(34, 197, 94, 0.22);
    }

    .btn-secondary {
      background-color: #f3f4f6;
      color: #111;
      border: 1px solid rgba(17, 17, 17, 0.08);
    }

    .btn-secondary:hover {
      background-color: #e5e7eb;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    }

    /* ===== Mini Stats ===== */
    .miniStats {
      padding: 10px 0 24px;
    }

    .miniStats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .statCard {
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(17, 17, 17, 0.07);
      border-radius: 16px;
      padding: 22px 20px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .statCard h3 {
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      color: var(--green-hover);
      margin-bottom: 6px;
      line-height: 1;
    }

    .statCard p {
      color: var(--text-muted);
      font-size: 0.96rem;
      line-height: 1.5;
    }

    /* ===== Trust Signals ===== */
    .trustSignals {
      padding: 4px 0 50px;
    }

    .trustLabel {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.92rem;
      font-weight: 600;
      margin-bottom: 18px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .trustLogos {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .trustLogo {
      min-width: 140px;
      padding: 14px 18px;
      text-align: center;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(17, 17, 17, 0.08);
      color: #444;
      font-weight: 700;
      letter-spacing: 0.01em;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    }

    .trustLogo:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
      background: rgba(255, 255, 255, 0.96);
    }

    /* ===== Features ===== */
    .features {
      padding: 30px 0 60px;
    }

    .features h2 {
      text-align: center;
      color: #555;
      margin-bottom: 28px;
      font-size: clamp(1.7rem, 3vw, 2.2rem);
      font-weight: 700;
    }

    .feature-carousel {
      max-width: 980px;
      margin: 0 auto;
      position: relative;
      padding: 0 18px;
    }

    .carousel-viewport {
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.45s ease-in-out;
      gap: 20px;
      will-change: transform;
    }

    .feature-card {
      flex: 0 0 calc((100% - 40px) / 3);
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--card-border);
      border-radius: 14px;
      padding: 26px 18px;
      text-align: center;
      box-shadow: var(--card-shadow);
      min-height: 170px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .feature-card .icon img {
      width: 40px;
      height: 40px;
      display: block;
      margin: 0 auto;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    }

    .feature-card .icon {
      font-size: 1.9rem;
      margin-bottom: 14px;
      line-height: 1;
    }

    .feature-card h3 {
      margin: 0 0 10px;
      font-size: 1.05rem;
      line-height: 1.3;
    }

    .feature-card p {
      color: #555;
      font-size: 0.92rem;
      line-height: 1.55;
    }

    .prev,
    .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: rgba(255, 255, 255, 0.92);
      border-radius: 999px;
      cursor: pointer;
      width: 45px;
      height: 45px;
      z-index: 10;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: background 0.2s ease, opacity 0.2s ease;
    }

    .prev { left: -6px; }
    .next { right: -6px; }

    .prev:hover,
    .next:hover {
      background: rgba(255, 255, 255, 1);
    }

    .prev:disabled,
    .next:disabled {
      opacity: 0.45;
      cursor: default;
    }

    /* ===== Testimonials Mosaic ===== */
    .testimonials-layout {
      padding: 30px 0 70px;
    }

    .testimonials-shell {
      background: rgba(255, 255, 255, 0.55);
      border-radius: 34px;
      padding: 34px 28px 30px;
      position: relative;
      overflow: hidden;
    }

    .testimonials-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 18%, rgba(125, 211, 93, 0.06), transparent 18%),
        radial-gradient(circle at 78% 70%, rgba(125, 211, 93, 0.05), transparent 20%);
      pointer-events: none;
    }

    .testimonials-header {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 760px;
      margin: 0 auto 28px;
    }

    .testimonials-header h2 {
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.08;
      margin-bottom: 10px;
      color: var(--text-soft);
    }

    .testimonials-header p {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }

    .testimonials-layout-wrap {
      position: relative;
      z-index: 1;
      padding: 0 48px;
    }

    .testimonials-viewport {
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: transform 0.45s ease;
      will-change: transform;
    }

    .testimonial-column {
      display: flex;
      flex-direction: column;
      gap: 18px;
      flex: 0 0 auto;
    }

    .testimonial-column.narrow {
      width: 260px;
    }

    .testimonial-column.wide {
      width: 360px;
    }

    .testimonial-card {
      border-radius: 18px;
      padding: 20px 18px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 150px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card.tall {
      min-height: 190px;
    }

    .testimonial-card.tone-1 { background: #eef7ea; }
    .testimonial-card.tone-2 { background: #f6f8f2; }
    .testimonial-card.tone-3 { background: #edf5ef; }
    .testimonial-card.tone-4 { background: #f8f7f1; }

    .testimonial-text {
      font-size: 0.97rem;
      line-height: 1.65;
      color: var(--text-soft);
      margin-bottom: 18px;
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(34, 197, 94, 0.14);
      color: #15803d;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      flex-shrink: 0;
      overflow: hidden;
      padding: 0;
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      display: block;
    }

    .testimonial-user h3 {
      font-size: 1rem;
      margin-bottom: 2px;
      color: var(--text-soft);
    }

    .testimonial-user span {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .testimonial-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(17, 17, 17, 0.08);
      background: rgba(255, 255, 255, 0.95);
      cursor: pointer;
      font-size: 1.4rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      z-index: 2;
    }

    .testimonial-prev { left: 0; }
    .testimonial-next { right: 0; }

    .testimonial-nav:disabled {
      opacity: 0.45;
      cursor: default;
    }

    /* ===== Learning Process ===== */
    .learning-process {
      padding: 40px 0 80px;
      position: relative;
    }

    .learning-process::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 40%, rgba(125, 211, 93, 0.08), transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(125, 211, 93, 0.06), transparent 24%);
      pointer-events: none;
      z-index: 0;
    }

    .learning-process-container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 320px;
      align-items: center;
      gap: 56px;
    }

    .phone-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .mockup-image {
      width: 260px;
      max-width: 100%;
      border-radius: 32px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .mockup-image:hover {
      transform: translateY(-4px) rotate(-1deg);
    }

    .learning-process-content h2 {
      margin: 0 0 8px;
      font-size: clamp(2rem, 3vw, 2.9rem);
      line-height: 1.1;
      font-weight: 700;
      color: var(--text-soft);
    }

    .timeline {
      margin-top: 26px;
      display: grid;
      gap: 26px;
      position: relative;
      max-width: 520px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 8px;
      top: 16px;
      bottom: 16px;
      width: 2px;
      background: var(--text-soft);
    }

    .step {
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 18px;
      align-items: start;
      position: relative;
    }

    .dot {
      width: 18px;
      height: 14px;
      border-radius: 3px;
      background: #111;
      margin-top: 5px;
      position: relative;
      z-index: 1;
    }

    .step h3 {
      margin: 0 0 6px;
      color: var(--green-soft);
      font-size: 1.18rem;
      line-height: 1.2;
      font-weight: 700;
    }

    .step p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.98rem;
      line-height: 1.55;
      max-width: 390px;
    }

    /* ===== Patchnote Preview ===== */
    .patchnote-preview {
      padding: 10px 0 70px;
    }

    .patchnote-card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      padding: 28px 32px;
      border-radius: 18px;
      transition: transform 0.25s ease;
    }

    .patchnote-text h2 {
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      margin: 10px 0 8px;
      color: #222;
    }

    .patchnote-text p {
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 560px;
    }

    .patchnote-badge {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.12);
      color: var(--green-soft-hover);
      font-size: 0.82rem;
      font-weight: 700;
    }

    .patchnote-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      flex-shrink: 0;
    }

    .patchnote-btn {
      display: inline-block;
      background: #22c55e;
      color: #fff;
      padding: 13px 22px;
      border-radius: 10px;
      font-weight: 700;
      transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }

    .patchnote-btn:hover {
      background: #16a34a;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(34, 197, 94, 0.22);
    }

    .patchnote-meta {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    /* ===== Footer ===== */
    .foot {
      width: 100%;
      background: #efefef;
      margin-top: 40px;
    }

    .footwrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 36px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .footbrand {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footsocials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footsocials a {
  font-size: 20px;
  color: #555;
  transition: .2s ease;
}

.footsocials a:hover {
  color: #05c925;
}

    .footlogo {
      width: 150px;
      height: auto;
    }

    .foottext-desktop {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
      max-width: 260px;
    }

    .foottext-mobile {
      display: none;
    }

    .footL,
    .footR {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footL h3,
    .footR h3 {
      font-size: 16px;
      font-weight: 700;
      color: #444;
      margin-bottom: 6px;
    }

    .footL a,
    .footR a {
      text-decoration: none;
      color: #555;
      font-size: 14px;
      transition: .2s ease;
    }

    .footL a:hover,
    .footR a:hover {
      color: #05c925;
    }

    .foott {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
    }

    .footbtn {
      font-size: 14px;
      padding: 14px 22px;
      border-radius: 8px;
      background: #3adb5a;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 4px 10px rgba(58,219,90,.25);
    }

    .footbtn:hover {
      background: #05c925;
    }

    /* ===== Responsive ===== */
    @media (max-width: 1100px) {
      .testimonial-column.narrow,
      .testimonial-column.wide {
        width: 300px;
      }
    }

    @media (max-width: 1024px) {
      .heroWrap {
        gap: 60px;
      }

      .learning-process-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .timeline {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
      }

      .patchnote-card {
        flex-direction: column;
        align-items: flex-start;
      }

      .patchnote-actions {
        align-items: flex-start;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 48px 0 24px;
      }

      .heroWrap {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        gap: 36px;
      }

      .heroContent p {
        font-size: 1rem;
      }

      .heroButtons {
        justify-content: center;
      }

      .feature-card {
        flex: 0 0 calc((100% - 20px) / 2);
      }

      .prev,
      .next {
        display: none;
      }

      .footwrap {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
      }

      .footbrand {
        align-items: flex-start;
      }

      .footlogo {
        width: 110px;
      }

      .foottext-desktop {
        display: none;
      }

      .foottext-mobile {
        display: block;
        font-size: 13px;
        color: #555;
      }

      .footL,
      .footR {
        gap: 6px;
      }

      .footL h3,
      .footR h3 {
        font-size: 15px;
      }

      .footL a,
      .footR a {
        font-size: 13px;
      }

      .foott {
        margin-top: 10px;
      }

      .footbtn {
        font-size: 13px;
        padding: 12px 18px;
      }
    }

    @media (max-width: 560px) {
      .innerSection {
        width: min(var(--section-width), calc(100% - 24px));
      }

      .heroContent .btn {
        width: 100%;
      }

      .heroButtons {
        flex-direction: column;
      }

      .feature-card {
        flex: 0 0 100%;
      }

      .features,
      .learning-process {
        padding-bottom: 50px;
      }

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

      .miniStats-grid .statCard:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 9px);
        margin: 0 auto;
      }

      .testimonials-shell {
        padding: 26px 16px 22px;
        border-radius: 24px;
      }

      .testimonials-layout-wrap {
        padding: 0 50px;
      }

      .testimonial-nav {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .testimonial-column.narrow,
      .testimonial-column.wide {
        width: calc(100vw - 140px);
        max-width: 340px;
        min-width: 0;
      }
    }