/* =========================================================
   LicentieSleutels.nl - dark SaaS theme
   Subtiele effecten: glassmorphism, soft glow, gradient accents.
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #07080d;
  --bg-2: #0b0c14;
  --surface: #11131c;
  --surface-2: #161824;
  --surface-3: #1c1f2c;
  --surface-elevated: #1f2230;

  /* Borders */
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(124, 92, 255, 0.4);

  /* Text */
  --text: #e8eaed;
  --text-muted: #a1a4ad;
  --text-subtle: #6b6e78;
  --text-inverse: #0a0a0f;

  /* Brand accent - indigo→violet SaaS gradient */
  --accent: #7c5cff;
  --accent-2: #a855f7;
  --accent-soft: rgba(124, 92, 255, 0.15);
  --accent-glow: rgba(124, 92, 255, 0.35);
  --gradient-accent: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --gradient-accent-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);

  /* Functional colors */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Star color (warm amber) */
  --star: #fbbf24;
  --star-empty: rgba(255, 255, 255, 0.1);

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows + glows (subtle on dark) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
  --shadow: 0 4px 20px rgba(0, 0, 0, .35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, .45);
  --glow-accent: 0 0 0 1px rgba(124, 92, 255, .25), 0 8px 30px rgba(124, 92, 255, .25);
  --glow-card: 0 0 0 1px rgba(255, 255, 255, .06), 0 12px 32px rgba(0, 0, 0, .4);

  /* Layout */
  --container: 1200px;
  --transition: 200ms cubic-bezier(.4, 0, .2, 1);
  --transition-slow: 400ms cubic-bezier(.4, 0, .2, 1);
}

/* ----- Reset & basis ----- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 92, 255, .12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(168, 85, 247, .08), transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--text);
}
h1 { font-size: 2.5rem; letter-spacing: -0.03em; }
h2 { font-size: 1.875rem; letter-spacing: -0.025em; }
h3 { font-size: 1.375rem; }

p { margin: 0 0 1em; color: var(--text); }

::selection { background: var(--accent-soft); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- Topbar ----- */
.topbar {
  background: rgba(7, 8, 13, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .8125rem;
  padding: .5rem 0;
  position: relative;
  z-index: 101;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}
.topbar a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--transition);
}
.topbar a:hover { color: var(--text); }
.topbar svg { width: 14px; height: 14px; fill: currentColor; }

/* ----- Header / Nav ----- */
.site-header {
  background: rgba(11, 12, 20, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: opacity var(--transition);
}
.brand:hover { opacity: .85; }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .9375rem;
  padding: .5rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--text); }
.nav a.active::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.nav-dropdown { position: relative; }
.nav-dropdown > button {
  background: none;
  border: 0;
  padding: .5rem 0;
  font: inherit;
  font-weight: 500;
  font-size: .9375rem;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--transition);
}
.nav-dropdown > button:hover { color: var(--text); }
.nav-dropdown > button::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .6;
  transition: transform var(--transition);
}
.nav-dropdown:hover > button::after,
.nav-dropdown.open > button::after { transform: rotate(180deg); opacity: 1; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 300px;
  background: rgba(17, 19, 28, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  list-style: none;
  margin: .75rem 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: .65rem .85rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 400;
  font-size: .875rem;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover {
  background: var(--surface-2);
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: var(--text);
}
.menu-toggle svg { width: 24px; height: 24px; stroke: currentColor; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 12, 20, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
  }
  .nav.open { max-height: 600px; }
  .nav a, .nav-dropdown > button {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: left;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: var(--surface);
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    border-radius: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 800px; }
  .nav-dropdown-menu a { padding-left: 2.5rem; border-bottom: 1px solid var(--border); border-radius: 0; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 92, 255, .35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 92, 255, .55);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: var(--surface-3);
  border-color: rgba(255, 255, 255, .2);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  background: var(--accent-soft);
  border-color: var(--border-accent);
  color: var(--text);
}

.btn-block { width: 100%; }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }

/* ----- Hero ----- */
.hero {
  padding: 6rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 92, 255, .25), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(168, 85, 247, .15), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero .eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, var(--text) 0%, rgba(232, 234, 237, 0.7) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero h1 .accent {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .hero { padding: 4rem 0 3rem; }
  .hero p { font-size: 1rem; }
}

/* ----- Section ----- */
.section { padding: 5rem 0; position: relative; }
.section-soft {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: .75rem;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ----- Trust strip ----- */
.trust-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trust-strip .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.trust-strip-item .icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-strip-item .icon svg { width: 18px; height: 18px; fill: currentColor; }
.trust-strip-item strong {
  color: var(--text);
  display: block;
  font-weight: 600;
  font-size: .9375rem;
}

/* ----- Product grid ----- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, var(--border-accent) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--glow-card);
}
.product-card:hover::before { opacity: 1; }
.product-card .product-image {
  background: var(--surface-2);
  padding: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  overflow: hidden;
}
.product-card .product-image img {
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-image img {
  transform: scale(1.04);
}
.product-card .ribbon {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: .35rem .75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .025em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(124, 92, 255, .4);
  backdrop-filter: blur(8px);
}
.product-card .product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 .75rem;
  letter-spacing: -0.01em;
}
.product-card h3 a {
  color: var(--text);
}
.product-card h3 a:hover { color: var(--accent); }
.product-card .price-row {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  margin-bottom: 1rem;
}
.product-card .price-original {
  text-decoration: line-through;
  color: var(--text-subtle);
  font-size: .9375rem;
}
.product-card .price-sale {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.product-card .rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.product-card .features {
  font-size: .85rem;
  color: var(--text-muted);
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.product-card .features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .35rem;
}
.product-card .features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237c5cff'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card .actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.product-card .learn-more {
  text-align: center;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.product-card .learn-more:hover { color: var(--accent); }

/* ----- Stars ----- */
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--star);
}
.stars svg { width: 14px; height: 14px; fill: currentColor; }
.stars .empty { color: var(--star-empty); }

/* ----- Rating summary ----- */
.rating-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.rating-summary::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  pointer-events: none;
}
.rating-summary-score {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 2rem;
  position: relative;
}
.rating-summary-score .number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
}
.rating-summary-score .label {
  color: var(--text-muted);
  font-size: .8125rem;
  margin-top: .5rem;
}
.rating-summary-score .stars { font-size: 1.5rem; margin: .75rem 0 .5rem; }
.rating-summary-score .stars svg { width: 20px; height: 20px; }
.rating-bars { display: flex; flex-direction: column; gap: .65rem; position: relative; }
.rating-bar {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  align-items: center;
  gap: .85rem;
  font-size: .8125rem;
}
.rating-bar-label { color: var(--text-muted); }
.rating-bar-track {
  height: 6px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 999px;
  transition: width 800ms cubic-bezier(.4, 0, .2, 1);
}
.rating-bar-count {
  text-align: right;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .rating-summary { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
  .rating-summary::before { top: -30%; right: 5%; width: 45%; height: 120%; opacity: .55; filter: blur(24px); }
  .rating-summary-score { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
}

/* ----- Testimonial cards ----- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: .5rem;
  right: 1rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-soft);
  pointer-events: none;
}
.testimonial:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface-3);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  margin: 0;
  color: var(--text);
}
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--success);
  font-weight: 500;
  margin-top: .25rem;
}
.testimonial-verified svg { width: 12px; height: 12px; fill: currentColor; }
.testimonial-quote {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: .9375rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ----- FAQ accordion ----- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .65rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open {
  border-color: var(--border-accent);
  background: var(--surface-2);
}
.faq-question {
  width: 100%;
  background: none;
  border: 0;
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a4ad' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c5cff' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(.4, 0, .2, 1);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .9375rem;
}
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-item.open .faq-answer { max-height: 1200px; }

/* ----- Product detail page ----- */
.product-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 60% at 30% 20%, rgba(124, 92, 255, .12), transparent 60%);
  pointer-events: none;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.product-hero-image {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.product-hero-image::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 50%);
  opacity: .6;
  pointer-events: none;
}
.product-hero-image img {
  max-height: 440px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.product-hero-info h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}
.product-card-price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.product-card-price::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}
.product-card-price .discount-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: .375rem .85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .025em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(124, 92, 255, .35);
}
.product-card-price .prices {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.product-card-price .price-original {
  text-decoration: line-through;
  color: var(--text-subtle);
  font-size: 1.125rem;
}
.product-card-price .price-sale {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.product-card-price hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
}
.product-features li {
  padding: .55rem 0 .55rem 1.85rem;
  position: relative;
  color: var(--text);
  font-size: .9375rem;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .8rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237c5cff'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card-price .stars-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: .8125rem;
}
.product-short-desc {
  background: var(--bg-2);
  border-left: 2px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
  font-size: .9375rem;
  color: var(--text-muted);
}
.product-short-desc p { color: var(--text-muted); margin-bottom: .5rem; }
.product-short-desc p:last-child { margin-bottom: 0; }
.product-notice {
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .2);
  border-left: 2px solid var(--warning);
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--warning);
  margin: 1rem 0;
}
.payment-badge {
  display: block;
  margin-top: 1rem;
  max-width: 100%;
  opacity: .8;
}

@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-hero-image { min-height: 360px; padding: 2rem; }
  .product-hero-image img { max-height: 320px; }
  .product-card-price .price-sale { font-size: 2rem; }
}

/* ----- Long description ----- */
.product-long-desc {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}
.product-long-desc h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text);
}
.product-long-desc strong {
  color: var(--text);
  font-weight: 600;
}
.product-long-desc ul { padding-left: 1.5rem; }
.product-long-desc li { margin-bottom: .5rem; }

/* ----- Related products ----- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.related-card img {
  height: 130px;
  object-fit: contain;
  margin: 0 auto;
}
.related-card h4 {
  font-size: .9375rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}
.related-card .btn {
  font-size: .8125rem;
  padding: .5rem 1rem;
  margin-top: auto;
}

/* ----- Contact page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.contact-card h3 {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.contact-card p { color: var(--text-muted); margin-bottom: 1rem; font-size: .9375rem; }
.contact-card .icon {
  width: 52px; height: 52px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.contact-card .icon svg { width: 24px; height: 24px; fill: currentColor; }
.contact-card .social-links {
  display: flex;
  justify-content: center;
  gap: .65rem;
  margin: 1rem 0;
}
.contact-card .social-links a {
  width: 38px; height: 38px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.contact-card .social-links a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--border-accent);
}
.contact-card .social-links svg { width: 18px; height: 18px; fill: currentColor; }
.contact-card iframe {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  filter: invert(.92) hue-rotate(180deg) saturate(.65);
}

/* ----- Static page (voorwaarden / gdpr) ----- */
.static-page {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-muted);
}
.static-page h1 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}
.static-page h2 {
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  font-size: 1.25rem;
  color: var(--text);
}
.static-page h3 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.0625rem;
}
.static-page p { color: var(--text-muted); }
.static-page strong { color: var(--text); }
.static-page .meta {
  color: var(--text-subtle);
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* ----- Footer ----- */
.site-footer {
  background: var(--bg-2);
  color: var(--text-muted);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.site-footer .container > .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.site-footer h4 {
  color: var(--text);
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: .65rem;
}
.site-footer a {
  color: var(--text-muted);
  font-size: .9375rem;
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--text); }

.site-footer .footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8125rem;
  color: var(--text-subtle);
}

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   SHOP MODAL POPUP
   ========================================================= */

.shop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.shop-overlay[hidden] { display: none; }

@keyframes goldenGlow {
  0%, 100% {
    box-shadow:
      0 0 0 2px #7c5cff,
      0 0 18px rgba(212, 175, 55, .30),
      0 8px 48px rgba(0, 0, 0, .55);
  }
  50% {
    box-shadow:
      0 0 0 2px #a78bfa,
      0 0 36px rgba(212, 175, 55, .65),
      0 8px 64px rgba(212, 175, 55, .18);
  }
}

.shop-popup {
  background: var(--surface);
  border: 2px solid #7c5cff;
  border-radius: 16px;
  animation: goldenGlow 2.5s ease-in-out infinite;
  max-width: 620px;
  width: 100%;
  padding: 36px 28px 24px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 92, 255, .4) transparent;
}
.shop-popup::-webkit-scrollbar { width: 4px; }
.shop-popup::-webkit-scrollbar-thumb { background: rgba(124, 92, 255, .4); border-radius: 4px; }

.shop-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(226, 228, 239, .45);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.shop-popup-close:hover { color: #fff; background: rgba(255, 255, 255, .08); }

.shop-popup-text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  padding-right: 2rem;
}
.shop-popup-text p {
  font-size: .875rem;
  color: rgba(226, 228, 239, .7);
  margin-bottom: 6px;
  line-height: 1.6;
}

.shop-popup-widget { margin: 20px 0 16px; }
.shop-popup-loading {
  text-align: center;
  color: rgba(226, 228, 239, .4);
  font-size: .875rem;
  padding: 24px 0;
}

.shop-popup-badge {
  max-height: 36px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: .75;
}

@media (max-width: 480px) {
  .shop-popup { padding: 28px 18px 20px; }
}

  /* =========================================================
     SHOP WIDGET / CODESHOP FORM STYLING
     ========================================================= */
  
  .codeshop-input,
  .codeshop-mainbox input[type="text"],
  .codeshop-mainbox input[type="email"],
  .codeshop-mainbox input[type="number"],
  .codeshop-mainbox input[type="tel"] {
    width: 100% !important;
    background: var(--bg-2) !important;
    border: 1px solid var(--border-strong) !important;
    border-radius: 10px !important;
    padding: 13px 16px !important;
    color: var(--text) !important;
    font-size: .9375rem !important;
    font-family: inherit !important;
    outline: none !important;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease !important;
    margin-bottom: 12px !important;
    box-sizing: border-box !important;
  }
  
  .codeshop-input:hover,
  .codeshop-mainbox input:hover {
    border-color: rgba(124, 92, 255, .3) !important;
    background: rgba(11, 12, 20, .8) !important;
  }
  
  .codeshop-input:focus,
  .codeshop-mainbox input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(124, 92, 255, .15), 0 4px 12px rgba(124, 92, 255, .1) !important;
    background: rgba(11, 12, 20, .9) !important;
  }
  
  .codeshop-button,
  .codeshop-mainbox .codeshop-button {
    background: var(--gradient-accent) !important;
    border: none !important;
    color: #fff !important;
    padding: 0 20px !important;
    border-radius: 10px !important;
    font-size: .9375rem !important;
    font-weight: 600 !important;
    line-height: 48px !important;
    height: 48px !important;
    min-width: 0 !important;
    cursor: pointer !important;
    transition: opacity .2s, transform .2s, box-shadow .2s !important;
    box-shadow: 0 4px 14px rgba(124, 92, 255, .25) !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }
  
  .codeshop-button:hover,
  .codeshop-mainbox .codeshop-button:hover {
    opacity: .9 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(124, 92, 255, .45) !important;
    color: #fff !important;
  }
  
  /* Selectors / Dropdowns for Payment Methods */
  .codeshop-payment-selected {
    background-color: var(--surface) !important;
    border: 1px solid var(--border-strong) !important;
    border-radius: 10px !important;
    transition: border-color .2s ease !important;
  }
  .codeshop-payment-selected:hover {
    border-color: rgba(124, 92, 255, .4) !important;
  }
  .codeshop-payment-providers {
    background-color: var(--surface) !important;
    border: 1px solid var(--border-strong) !important;
    border-radius: 10px !important;
  }
  .codeshop-payment-providers a:hover {
    background-color: var(--bg-2) !important;
  }

  /* Fix text colors */
  .codeshop-mainbox, .codeshop-table, .codeshop-table-cell {
    color: var(--text) !important;
  }
  
  /* Fix layout issues if any */
  .codeshop-table {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
  }
  .codeshop-table-cell {
    flex: 1 !important;
  }

  /* Form container - match .contact-form-box look */
  .codeshop-mainbox {
    background: var(--surface) !important;
    border: 1px solid var(--border-accent) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 0 0 1px rgba(124, 92, 255, .1), var(--shadow-lg) !important;
    padding: 1.75rem 1.5rem 1.25rem !important;
    position: relative !important;
    overflow: hidden !important;
  }
  .codeshop-mainbox .codeshop-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .codeshop-mainbox .codeshop-row:last-child {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }
  .codeshop-mainbox::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 2;
  }
  .codeshop-mainbox::after {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 92, 255, .06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .codeshop-mainbox > * {
    position: relative;
    z-index: 1;
  }

  /* =========================================================
     COOKIE BAR
     ========================================================= */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 12, 20, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(124, 92, 255, 0.28);
  z-index: 9000;
  padding: 1rem 1.5rem;
  box-shadow: 0 -6px 32px rgba(0, 0, 0, .55);
}
.cookie-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.cookie-bar p {
  margin: 0;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cookie-bar a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar a:hover { color: var(--accent-2); }
.cookie-btn {
  background: var(--gradient-accent);
  border: none;
  color: #fff;
  padding: 9px 28px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(124, 92, 255, .3);
}
.cookie-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 92, 255, .45);
}

/* =========================================================
   CONTACT PAGE - 2-column layout + form box
   ========================================================= */

.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}
@media (max-width: 820px) { .contact-2col { grid-template-columns: 1fr; } }

/* ---- Contact form box ---- */
.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 0 0 1px rgba(124, 92, 255, .1), var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.contact-form-box::after {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(124, 92, 255, .06) 0%, transparent 60%);
  pointer-events: none;
}
.contact-form-box h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
  position: relative;
  z-index: 1;
}
.contact-form-box > p {
  color: var(--text-muted);
  font-size: .9375rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.contact-form { width: 100%; position: relative; z-index: 1; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: .9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }
.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(124, 92, 255, .3);
  background: rgba(11, 12, 20, .8);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, .15), 0 4px 12px rgba(124, 92, 255, .1);
  background: rgba(11, 12, 20, .9);
}
.form-group textarea { min-height: 140px; }

.contact-form .btn-primary {
  padding: 14px 2rem;
  font-size: 1rem;
  border-radius: 10px;
  margin-top: .5rem;
  letter-spacing: .01em;
}
.contact-form .btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.cf-status {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .875rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.cf-success { background: rgba(16, 185, 129, .12); border: 1px solid rgba(16, 185, 129, .3); color: #6ee7b7; }
.cf-error   { background: rgba(239, 68, 68, .12);  border: 1px solid rgba(239, 68, 68, .3);  color: #fca5a5; }

.footer-recaptcha {
  font-size: .7rem;
  color: var(--text-subtle);
  margin: .5rem 0 0;
  line-height: 1.5;
}
.footer-recaptcha a { color: rgba(124, 92, 255, .6); }

/* =========================================================
   OFFICE ACTIVATIE PAGINA
   ========================================================= */

.office-activatie { max-width: 720px; margin: 0 auto; }
.office-activatie h1 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.office-activatie p  { margin-bottom: 1rem; line-height: 1.7; }
.office-activatie ol.activatie-steps { margin: 1rem 0 1rem 1.5rem; }
.office-activatie ol.activatie-steps li { margin-bottom: .6rem; line-height: 1.65; }

.activatie-figure {
  margin: 1.5rem 0;
  text-align: center;
}
.activatie-figure img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.activatie-intro {
  text-align: center;
  font-size: 1.05rem;
  margin: 1.5rem 0 1rem;
}

.activatie-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
}

.activatie-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.activatie-block .methode-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7c5cff;
  background: rgba(124, 92, 255, .12);
  padding: .3rem .7rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

.activatie-block h2 {
  font-size: 1.4rem;
  margin: 0 0 .75rem;
  line-height: 1.3;
}

.activatie-block p { margin-bottom: 1rem; line-height: 1.7; }

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin: 1rem 0 1.25rem;
  background: #000;
  border: 1px solid var(--border);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.activatie-links {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1.25rem;
}
.activatie-links li {
  margin-bottom: .5rem;
}
.activatie-links a {
  display: inline-block;
  word-break: break-all;
  padding: .4rem .75rem;
  background: rgba(124, 92, 255, .08);
  border: 1px solid rgba(124, 92, 255, .25);
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  font-size: .95rem;
}
.activatie-links a:hover {
  background: rgba(124, 92, 255, .18);
}

@media (min-width: 900px) {
  .office-activatie { max-width: 1100px; }
  .activatie-blocks { grid-template-columns: 1fr 1fr; align-items: start; }
  .activatie-blocks > .activatie-block:nth-child(3):last-child { grid-column: 1 / -1; }
}
