/* cmsms stylesheet: main modified: Tuesday, June 23, 2026 4:14:17 PM */
/* Gebruik dit als startpunt in elke CSS of component */

:root {
  /* Achtergrond & tekst */
  --background:  270 40% 99%;
  --foreground:  269 50% 10%;

  /* Primaire kleur — #5A0DAC paars */
  --primary:     269 86% 36%;
  --primary-foreground: 269 20% 98%;

  /* Lichte accenten */
  --secondary:   269 40% 94%;   /* #E8E0F5 achtig */
  --accent:      269 60% 92%;   /* #E4DAEE achtig */

  /* Kaarten en randen */
  --card:        0 0% 100%;
  --card-border: 269 25% 91%;
  --border:      269 30% 88%;

  /* Gedempte tekst */
  --muted:           269 30% 94%;
  --muted-foreground: 269 20% 48%;

  /* Afrondingsradius */
  --radius: 0.75rem;

        --primary:       #5A0DAC;
      --primary-light: #E4DAEE;
      --primary-bg:    #F5F0FB;
      --foreground:    #190D26;
      --muted-fg:      #7A6A8A;
      --border:        #DEDAD6;
      --card:          #FFFFFF;
      --bg:            #FAFAF8;
      --secondary-bg:  #F0EAF8;
      --radius:        0.75rem;
      --shadow-sm:     0 1px 3px rgba(90,13,172,.08);
      --shadow-md:     0 4px 16px rgba(90,13,172,.12);
      --shadow-lg:     0 8px 32px rgba(90,13,172,.16);
}

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

    body {
      font-family: 'Poppins', system-ui, sans-serif;
      background: var(--bg);
      color: var(--foreground);
      line-height: 1.5;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    img { max-width: 100%; }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* ── NAVIGATION ── */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(250,250,248,.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: -.02em;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: var(--shadow-sm);
    }

    nav { display: flex; align-items: center; gap: 2rem; }

    nav a {
      font-size: .875rem;
      font-weight: 500;
      color: var(--muted-fg);
      transition: color .15s;
    }

    nav a:hover { color: var(--primary); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .375rem;
      padding: .625rem 1.25rem;
      border-radius: var(--radius);
      font-size: .875rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: opacity .15s, transform .1s;
    }

    .btn:hover { opacity: .9; }
    .btn:active { transform: scale(.98); }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .btn-outline {
      background: transparent;
      color: var(--foreground);
      border: 1px solid var(--border);
    }

    .btn-lg { padding: .875rem 2rem; font-size: 1rem; height: 56px; }

    /* ── HERO ── */
    .hero {
      padding: 5rem 0 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -8rem;
      right: -8rem;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(90,13,172,.05);
      filter: blur(80px);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -6rem;
      left: -6rem;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: var(--secondary-bg);
      filter: blur(60px);
      pointer-events: none;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 900;
      letter-spacing: -.03em;
      line-height: 1.05;
      max-width: 860px;
      margin-bottom: 1.5rem;
    }

    .hero h1 span { color: var(--primary); }

    .hero p {
      font-size: 1.125rem;
      color: var(--muted-fg);
      max-width: 600px;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

    /* App Mockup */
    .mockup-wrap {
      margin-top: 4rem;
      width: 100%;
      max-width: 900px;
      border-radius: 1.25rem;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.6);
      padding: 8px;
      box-shadow: var(--shadow-lg), 0 32px 80px rgba(90,13,172,.08);
    }

    .mockup-inner {
      border-radius: .875rem;
      border: 1px solid var(--border);
      background: var(--bg);
      height: 360px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .mockup-bar {
      height: 44px;
      border-bottom: 1px solid var(--border);
      background: rgba(240,234,248,.4);
      display: flex;
      align-items: center;
      padding: 0 1rem;
      justify-content: space-between;
    }

    .traffic-lights { display: flex; gap: .5rem; }

    .tl {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .tl-r { background: rgba(239,68,68,.6); }
    .tl-y { background: rgba(234,179,8,.6); }
    .tl-g { background: rgba(34,197,94,.6); }

    .mockup-url {
      height: 24px;
      width: 240px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: .375rem;
    }

    .mockup-body { display: flex; flex: 1; overflow: hidden; }

    .mockup-sidebar {
      width: 180px;
      border-right: 1px solid var(--border);
      background: rgba(240,234,248,.2);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .mock-row {
      height: 32px;
      border-radius: .5rem;
      background: var(--secondary-bg);
    }

    .mock-row.active { background: rgba(90,13,172,.15); }
    .mock-row.muted  { background: rgba(240,234,248,.8); }

    .mockup-main {
      flex: 1;
      padding: 1.5rem;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .mock-toprow { display: flex; justify-content: space-between; align-items: center; }
    .mock-title { height: 28px; width: 180px; background: rgba(240,234,248,.8); border-radius: .375rem; }
    .mock-action { height: 28px; width: 88px; background: rgba(90,13,172,.2); border-radius: .375rem; }
    .mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .mock-card { height: 88px; background: var(--card); border: 1px solid var(--border); border-radius: .75rem; box-shadow: var(--shadow-sm); }
    .mock-table { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: .75rem; box-shadow: var(--shadow-sm); min-height: 80px; }

    /* ── SECTION HEADER ── */
    .section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
    }

    .eyebrow {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: .5rem;
    }

    .section-header h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -.02em;
      margin-bottom: 1rem;
    }

    .section-header p { color: var(--muted-fg); font-size: 1.05rem; line-height: 1.7; }

    /* ── FEATURES ── */
    .features { padding: 6rem 0; background: rgba(240,234,248,.25); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .feature-card {
      background: var(--card);
      border-radius: 1rem;
      padding: 1.75rem;
      box-shadow: var(--shadow-sm);
      transition: transform .25s;
      display: flex;
      flex-direction: column;
    }

    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: .75rem;
      background: var(--primary-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .feature-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .feature-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .625rem; }

    .feature-card p { color: var(--muted-fg); font-size: .9375rem; line-height: 1.65; flex: 1; }

    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: .25rem;
      color: var(--primary);
      font-size: .875rem;
      font-weight: 600;
      margin-top: 1.25rem;
      transition: gap .15s;
    }

    .feature-link:hover { gap: .5rem; }
    .feature-link svg { width: 16px; height: 16px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ── PRICING ── */
    .pricing { padding: 6rem 0; }

    .pricing-grid {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .pricing-card {
      background: var(--card);
      border-radius: 1rem;
      border: 2px solid var(--primary);
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .pricing-badge {
      position: absolute;
      top: 0;
      right: 0;
      background: var(--primary);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      padding: .25rem 1rem;
      border-bottom-left-radius: .5rem;
    }

    .pricing-card h3 { font-size: 1.375rem; font-weight: 800; margin-bottom: .375rem; }

    .pricing-card .subtitle { color: var(--muted-fg); font-size: .9rem; margin-bottom: 1.5rem; }

    .price { display: flex; align-items: baseline; margin-bottom: 2rem; }

    .price-amount { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; }

    .price-period { color: var(--muted-fg); margin-left: .5rem; font-size: .9rem; }

    .feature-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

    .feature-list li { display: flex; align-items: center; gap: .75rem; font-size: .9375rem; }

    .check-icon { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

    .addons { display: flex; flex-direction: column; gap: 1rem; }

    .addon-card {
      background: var(--secondary-bg);
      border-radius: .875rem;
      padding: 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }

    .addon-card h4 { font-weight: 700; margin-bottom: .375rem; display: flex; align-items: center; gap: .5rem; font-size: .9375rem; }
    .addon-card h4 svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .addon-card p { color: var(--muted-fg); font-size: .8125rem; line-height: 1.5; }
    .addon-price { text-align: right; white-space: nowrap; }
    .addon-price strong { font-size: 1rem; font-weight: 700; display: block; }
    .addon-price span { color: var(--muted-fg); font-size: .75rem; }

    /* ── FAQ ── */
    .faq { padding: 6rem 0; background: rgba(240,234,248,.25); }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-sm);
    }

    details {
      border-bottom: 1px solid var(--border);
      padding: 1.125rem 0;
    }

    details:last-child { border-bottom: none; }

    summary {
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      user-select: none;
      transition: color .15s;
    }

    summary:hover { color: var(--primary); }

    summary::after {
      content: '+';
      font-size: 1.25rem;
      color: var(--muted-fg);
      flex-shrink: 0;
      transition: transform .2s;
    }

    details[open] summary::after { content: '−'; }

    .faq-body { margin-top: .875rem; color: var(--muted-fg); font-size: .9375rem; line-height: 1.7; }

    /* ── FOOTER ── */
    footer {
      background: var(--foreground);
      color: rgba(255,255,255,.85);
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.7; margin-top: 1rem; max-width: 320px; }

    .footer-logo { display: flex; align-items: center; gap: .625rem; margin-bottom: 1rem; }
    .footer-logo span { font-weight: 700; font-size: 1.25rem; }

    .footer-col h5 { font-weight: 700; font-size: .9375rem; color: #fff; margin-bottom: 1rem; }

    .footer-col ul { display: flex; flex-direction: column; gap: .625rem; }

    .footer-col a { color: rgba(255,255,255,.45); font-size: .875rem; transition: color .15s; }
    .footer-col a:hover { color: var(--primary-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p { color: rgba(255,255,255,.3); font-size: .8125rem; }

    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { color: rgba(255,255,255,.3); font-size: .8125rem; transition: color .15s; }
    .footer-links a:hover { color: #fff; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { display: none; }
      .pricing-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .hero { padding: 3rem 0 4rem; }
    }
