:root {
  --sw-bg: #f5f8f6;
  --sw-bg-muted: #edf3f1;
  --sw-bg-hero: #f4fbf7;
  --sw-card: #ffffff;
  --sw-border: #d4e1db;

  --sw-green-dark: #0f3a31;
  --sw-green: #1f5c4c;
  --sw-mint: #d9fdd2;
  --sw-gold: #f4b86a;

  --sw-text-main: #10231d;
  --sw-text-muted: #5a6f67;

  --sw-radius-lg: 18px;
  --sw-radius-md: 14px;
  --sw-radius-pill: 999px;

  --sw-shadow-soft: 0 18px 45px rgba(15, 58, 49, 0.06);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--sw-bg);
  color: var(--sw-text-main);
  -webkit-font-smoothing: antialiased;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--sw-bg-muted);
}

.section-cta {
  background: var(--sw-bg-hero);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 248, 246, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 225, 219, 0.8);
  box-shadow: 0 8px 20px rgba(15, 58, 49, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  max-height: 36px;   /* perfect voor jouw layout */
  height: auto;
  width: auto;
  margin-right: 10px;
}

/* oude variant; kan blijven staan maar wordt nu niet gebruikt */
.brand-logo-only .brand-logo {
  margin: 0;
}

.brand-mark {
  width: 70px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 20% 20%, var(--sw-mint), var(--sw-green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(15, 58, 49, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 17px;
  color: var(--sw-green-dark);
}

.brand-tagline {
  font-size: 12px;
  color: var(--sw-text-muted);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--sw-text-muted);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: var(--sw-mint);
  color: var(--sw-green-dark);
}

/* Hero */

.hero {
  padding: 72px 0 64px;
  background: radial-gradient(circle at top left, #d9fdd2 0, #f5f8f6 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 12px 0 16px;
  color: var(--sw-green-dark);
}

.hero-sub {
  font-size: 16px;
  max-width: 520px;
  color: var(--sw-text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--sw-radius-pill);
  background: rgba(217, 253, 210, 0.8);
  border: 1px solid rgba(15, 58, 49, 0.1);
  font-size: 12px;
  color: var(--sw-green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 8px;
}

.hero-note {
  font-size: 13px;
  color: var(--sw-text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--sw-radius-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease,
              box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--sw-green-dark);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 58, 49, 0.35);
}

.btn-primary:hover {
  background: #0c3029;
  box-shadow: 0 14px 30px rgba(15, 58, 49, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--sw-green);
  border-color: rgba(15, 58, 49, 0.08);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: rgba(15, 58, 49, 0.2);
}

.btn-outline {
  background: #ffffff;
  border-color: rgba(15, 58, 49, 0.2);
  color: var(--sw-green-dark);
}

.btn-outline:hover {
  background: var(--sw-mint);
  border-color: rgba(15, 58, 49, 0.4);
}

.btn-disabled {
  background: #dde5e1;
  color: #7a8b84;
  border-color: transparent;
  cursor: not-allowed;
}

.btn-disabled:hover {
  box-shadow: none;
}

/* Hero right side */

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

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--sw-radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--sw-shadow-soft);
  border: 1px solid rgba(212, 225, 219, 0.9);
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sw-text-muted);
  padding: 4px 0;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sw-gold);
}

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

.mini-card {
  background: #ffffff;
  border-radius: var(--sw-radius-md);
  padding: 12px 12px 10px;
  border: 1px solid rgba(212, 225, 219, 0.9);
  font-size: 13px;
}

.mini-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(217, 253, 210, 0.8);
  font-size: 11px;
  color: var(--sw-green);
  margin-bottom: 4px;
}

.mini-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sw-green-dark);
}

.mini-card p {
  margin: 0 0 6px;
  color: var(--sw-text-muted);
  font-size: 12px;
}

.mini-link {
  font-size: 12px;
  text-decoration: none;
  color: var(--sw-green);
}

.mini-link.disabled {
  color: #9da9a4;
  cursor: default;
}

/* Sections */

.section-header {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 8px 0 12px;
  font-size: 26px;
  color: var(--sw-green-dark);
}

.section-header p {
  margin: 0;
  color: var(--sw-text-muted);
  font-size: 14px;
}

.section-tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: var(--sw-radius-pill);
  background: rgba(15, 58, 49, 0.04);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sw-green);
}

/* Grids */

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

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

/* Cards */

.product-card,
.feature-card,
.platform-card {
  background: var(--sw-card);
  border-radius: var(--sw-radius-lg);
  border: 1px solid rgba(212, 225, 219, 0.9);
  padding: 20px 18px 18px;
  box-shadow: var(--sw-shadow-soft);
}

.product-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--sw-radius-pill);
  background: rgba(217, 253, 210, 0.5);
  font-size: 11px;
  color: var(--sw-green-dark);
  margin-bottom: 6px;
}

.pill-soon {
  background: rgba(244, 184, 106, 0.18);
  color: #b0731e;
}

.pill-soon-inline {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: var(--sw-radius-pill);
  background: rgba(244, 184, 106, 0.18);
  font-size: 12px;
  color: #b0731e;
}

.product-card h3 {
  margin: 0 0 8px;
}

.product-sub {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--sw-text-muted);
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 14px;
}

.product-list li {
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
  color: var(--sw-text-muted);
}

.product-list li::before {
  content: "•";
  position: absolute;
  left: 3px;
  top: 2px;
  font-size: 16px;
  color: var(--sw-green);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--sw-text-muted);
}

/* CTA */

.section-cta {
  padding: 52px 0 60px;
}

.cta-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(212, 225, 219, 0.9);
  box-shadow: var(--sw-shadow-soft);
  padding: 26px 26px 24px;
}

.cta-box h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--sw-green-dark);
}

.cta-box p {
  margin: 0;
  font-size: 14px;
  color: var(--sw-text-muted);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.cta-note {
  font-size: 12px;
  color: var(--sw-text-muted);
}

/* Footer */

.site-footer {
  background: #0f201b;
  color: #d9e6e0;
  padding-top: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 18px;
}

.footer-col h4,
.footer-col h5 {
  margin-top: 0;
  margin-bottom: 8px;
}

.footer-col p {
  margin: 0;
  font-size: 13px;
  color: #a9b9b3;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  color: #e4f2ec;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0 14px;
  font-size: 12px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #8ba49a;
}

.footer-meta {
  opacity: 0.8;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 56px;
  }

  .hero-panel {
    order: -1;
  }

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

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

  .cta-box {
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .nav {
    display: none; /* quick simple mobile: only logo visible */
  }

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

  .section {
    padding: 52px 0;
  }
}

