/* ============================================================
   DINOSAUR AUTOMATION AI — Design System
   Dark · premium · brand-aligned (teal / green / lime)
   ============================================================ */

:root {
  /* brand palette */
  --teal: #00BFB3;
  --green: #1F7D49;
  --lime: #7CFF6B;

  /* surfaces */
  --bg: #070A12;
  --bg-2: #0B0E17;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --glow-border: rgba(0, 191, 179, 0.45);

  /* text */
  --text: #E9F1EE;
  --heading: #FFFFFF;
  --muted: #94A3B2;
  --muted-2: #6B7888;

  /* gradients */
  --grad: linear-gradient(120deg, var(--lime) 0%, var(--teal) 60%, var(--green) 100%);
  --grad-soft: linear-gradient(120deg, rgba(124, 255, 107, 0.16), rgba(0, 191, 179, 0.14));

  /* effects */
  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --glow: 0 0 40px rgba(0, 191, 179, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1200px;
}

* { box-sizing: border-box; }

/* The HTML `hidden` attribute must always win, even over class rules that set `display`.
   Elements that toggle visibility do so via classes (.show/.open), never by fighting `hidden`.
   This prevents invisible-but-present elements from blocking clicks or showing prematurely. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--heading); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(124, 255, 107, 0.3); color: #fff; }

/* ---------- animated background ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -2; overflow: hidden; background: radial-gradient(ellipse at 50% -10%, #0d1424 0%, var(--bg) 55%); }
.aurora { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; will-change: transform; }
.aurora-1 { width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(0, 191, 179, 0.45), transparent 65%); top: -12%; left: -8%; animation: drift1 22s ease-in-out infinite; }
.aurora-2 { width: 46vw; height: 46vw; background: radial-gradient(circle, rgba(124, 255, 107, 0.28), transparent 65%); top: 28%; right: -12%; animation: drift2 26s ease-in-out infinite; }
.aurora-3 { width: 42vw; height: 42vw; background: radial-gradient(circle, rgba(31, 125, 73, 0.4), transparent 65%); bottom: -16%; left: 26%; animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 50% { transform: translate(8vw, 6vh) scale(1.15); } }
@keyframes drift2 { 50% { transform: translate(-7vw, 4vh) scale(1.1); } }
@keyframes drift3 { 50% { transform: translate(5vw, -6vh) scale(1.2); } }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 80%); }

/* ---------- scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1100; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--grad); box-shadow: 0 0 12px rgba(0, 191, 179, 0.6); }

/* ---------- layout helpers ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 6rem 1.5rem; }
.section-alt { position: relative; }
.section-alt::before { content: ''; position: absolute; inset: 0 0 0 0; left: 50%; transform: translateX(-50%); width: 100vw; background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(0, 191, 179, 0.025)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); z-index: -1; }

.section-head { max-width: 720px; margin: 0 auto 3.2rem; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1.08rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Roboto Mono', monospace; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin: 0 0 1.1rem; }
.eyebrow.center { justify-content: center; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.glass { background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

/* ---------- buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.95rem; border: 1px solid transparent; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease); white-space: nowrap; }
.btn svg { transition: transform 0.25s var(--ease); }
.btn-primary { background: var(--grad); color: #06210f; box-shadow: 0 10px 30px -8px rgba(0, 191, 179, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 42px -8px rgba(0, 191, 179, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: var(--surface-2); color: var(--text); border-color: var(--border-2); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--glow-border); box-shadow: var(--glow); color: #fff; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.35s var(--ease); padding: 1.1rem 0; }
.site-header.scrolled { background: rgba(7, 10, 18, 0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); padding: 0.7rem 0; }
.header-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0, 191, 179, 0.5)); }
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wm-top { font-weight: 900; font-size: 1.08rem; letter-spacing: 0.02em; color: #fff; display: inline-flex; align-items: center; gap: 0.32rem; }
.wm-ai { background: var(--grad); color: #06210f; font-size: 0.72rem; font-weight: 900; padding: 0.12rem 0.34rem; border-radius: 6px; letter-spacing: 0; box-shadow: 0 0 14px rgba(0, 191, 179, 0.5); }
.wm-sub { font-family: 'Roboto Mono', monospace; font-weight: 500; font-size: 0.62rem; letter-spacing: 0.42em; color: var(--lime); margin-top: 3px; }

.main-nav { display: flex; gap: 1.25rem; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: 0.92rem; position: relative; transition: color 0.2s; white-space: nowrap; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad); border-radius: 2px; transition: width 0.25s var(--ease); }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.cart-button { position: relative; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; transition: all 0.25s var(--ease); }
.cart-button:hover { border-color: var(--glow-border); color: #fff; box-shadow: var(--glow); transform: translateY(-1px); }
.cart-count { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--grad); color: #06210f; font-size: 0.72rem; font-weight: 800; display: grid; place-items: center; transition: transform 0.25s var(--ease); }
.cart-count[data-empty="true"] { display: none; }
.cart-count.bump { animation: bump 0.4s var(--ease); }
@keyframes bump { 30% { transform: scale(1.4); } }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ---------- hero ---------- */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 9rem 1.5rem 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center; }
.hero-copy h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; margin-bottom: 1.4rem; }
.hero-text { color: var(--muted); font-size: 1.12rem; max-width: 540px; margin-bottom: 2rem; }
.hero-text strong { color: var(--lime); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 2rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Roboto Mono', monospace; font-size: 1.7rem; font-weight: 600; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats span { color: var(--muted); font-size: 0.86rem; }

/* dynamic logo emblem */
.hero-emblem { position: relative; aspect-ratio: 1; max-width: 480px; margin: 0 auto; width: 100%; perspective: 1100px; transform-style: preserve-3d; transition: transform 0.18s ease-out; }
.emblem-glow { position: absolute; inset: 8%; border-radius: 50%; background: conic-gradient(from 0deg, rgba(0, 191, 179, 0.5), rgba(124, 255, 107, 0.4), rgba(31, 125, 73, 0.45), rgba(0, 191, 179, 0.5)); filter: blur(45px); animation: glowpulse 6s ease-in-out infinite; }
@keyframes glowpulse { 0%, 100% { transform: translateZ(-60px) scale(0.92); opacity: 0.6; } 50% { transform: translateZ(-60px) scale(1.08); opacity: 0.95; } }
.emblem-ring { position: absolute; inset: 4%; border-radius: 50%; }
.ring-outer { border: 1.5px dashed rgba(0, 191, 179, 0.4); animation: spin 26s linear infinite; }
.ring-inner { inset: 14%; border: 1px solid rgba(124, 255, 107, 0.18); border-top-color: rgba(124, 255, 107, 0.7); animation: spin 9s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.emblem-hex { position: absolute; inset: 6%; width: 88%; height: 88%; fill: none; stroke: url(#hexgrad); filter: drop-shadow(0 0 14px rgba(0, 191, 179, 0.5)); animation: hexpulse 5s ease-in-out infinite; }
.emblem-hex polygon { stroke: var(--teal); stroke-width: 1.5; opacity: 0.55; }
@keyframes hexpulse { 50% { opacity: 0.85; } }
.emblem-orbit { position: absolute; inset: 0; animation: spin 18s linear infinite; transform-style: preserve-3d; }
.emblem-orbit .node { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 16px var(--lime); }
.node.n1 { top: 4%; left: 50%; }
.node.n2 { bottom: 12%; left: 10%; background: var(--teal); box-shadow: 0 0 16px var(--teal); }
.node.n3 { top: 40%; right: 4%; width: 8px; height: 8px; }
.emblem-trex { position: absolute; inset: 14%; width: 72%; height: 72%; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(124, 255, 107, 0.35)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateZ(60px) translateY(-2%); } 50% { transform: translateZ(60px) translateY(4%); } }
.emblem-base { position: absolute; bottom: 10%; left: 50%; width: 55%; height: 26px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(0, 191, 179, 0.5), transparent 70%); filter: blur(10px); animation: glowpulse 6s ease-in-out infinite; }
.emblem-scan { position: absolute; left: 14%; right: 14%; top: 14%; height: 30%; background: linear-gradient(180deg, transparent, rgba(124, 255, 107, 0.18), transparent); mix-blend-mode: screen; animation: scan 4.5s ease-in-out infinite; pointer-events: none; }
@keyframes scan { 0%, 100% { transform: translateY(0); opacity: 0; } 50% { transform: translateY(150%); opacity: 1; } }

/* trust strip / marquee */
.trust-strip { margin-top: 4rem; text-align: center; }
.trust-strip p { font-family: 'Roboto Mono', monospace; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.4rem; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: 'Roboto Mono', monospace; font-size: 1.1rem; font-weight: 500; color: var(--muted); opacity: 0.6; transition: opacity 0.2s, color 0.2s; }
.marquee-track span:hover { opacity: 1; color: var(--lime); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { padding: 2rem; border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; }
.feature-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature-card:hover::after { opacity: 0.7; }
.feat-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.3rem; background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--lime); }
.feat-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card { padding: 2.2rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--glow-border); box-shadow: 0 0 0 1px var(--glow-border), 0 30px 70px -30px rgba(0, 191, 179, 0.5); background: linear-gradient(180deg, rgba(0, 191, 179, 0.08), var(--surface)); }
.price-card.featured::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.badge-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #06210f; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 999px; box-shadow: 0 8px 20px -6px rgba(0, 191, 179, 0.7); }
.price-top { margin-bottom: 1.5rem; }
.price-top h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.price-desc { color: var(--muted); font-size: 0.95rem; min-height: 2.6em; margin-bottom: 1.3rem; }
.price { display: flex; align-items: baseline; gap: 0.5rem; }
.price .amount { font-family: 'Roboto Mono', monospace; font-size: 2.6rem; font-weight: 600; color: #fff; }
.price .per { color: var(--muted); font-size: 0.9rem; }
.price-features { display: grid; gap: 0.8rem; margin: 1.5rem 0 2rem; flex: 1; }
.price-features li { position: relative; padding-left: 1.8rem; color: var(--text); font-size: 0.95rem; }
.price-features li::before { content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--glow-border); }
.price-features li::after { content: '✓'; position: absolute; left: 4px; top: 1px; font-size: 0.7rem; color: var(--lime); font-weight: 800; }
.price-note { text-align: center; color: var(--muted); margin-top: 2rem; }
.price-note a { color: var(--lime); font-weight: 600; border-bottom: 1px solid rgba(124, 255, 107, 0.4); }
.legal-note { display: block; font-size: 0.8rem; color: var(--muted-2); margin-top: 0.5rem; }

/* ---------- management / recurring costs ---------- */
.price-mgmt { margin-top: 0.7rem; display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.3rem; font-family: 'Roboto Mono', monospace; font-size: 1.15rem; font-weight: 600; color: var(--teal); }
.price-mgmt span { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.85rem; color: var(--muted); }
.price-mgmt em { width: 100%; font-style: normal; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--lime); }
.bot-mgmt { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin: 0.2rem 0 0.9rem; }
.mgmt-amt { font-family: 'Roboto Mono', monospace; font-size: 0.95rem; font-weight: 600; color: var(--teal); }
.mgmt-amt small { font-family: 'Montserrat', sans-serif; font-size: 0.74rem; font-weight: 500; color: var(--muted); margin-left: 0.2rem; }
.tag-free { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.03em; color: var(--lime); background: rgba(124, 255, 107, 0.12); border: 1px solid rgba(124, 255, 107, 0.3); padding: 0.18rem 0.55rem; border-radius: 999px; white-space: nowrap; }
.cart-mgmt-block { margin-top: 0.2rem; padding-top: 0.7rem; border-top: 1px dashed var(--border-2); }
.cart-mgmt-block .cart-line span:last-child { color: var(--teal); }
.cart-mgmt-note { font-size: 0.76rem; color: var(--muted); margin-top: 0.4rem; }
.cs-row.cs-mgmt { border-top: 1px dashed var(--border-2); padding-top: 0.5rem; margin-top: 0.3rem; }
.cs-row.cs-mgmt span:last-child { color: var(--teal); }
.cs-row.cs-mgmt em { font-style: normal; color: var(--muted); font-size: 0.78rem; }

/* ---------- bots shop ---------- */
.shop-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.chip { background: var(--surface); border: 1px solid var(--border); color: var(--muted); padding: 0.55rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem; transition: all 0.25s var(--ease); }
.chip:hover { color: #fff; border-color: var(--border-2); }
.chip.active { background: var(--grad); color: #06210f; border-color: transparent; box-shadow: 0 8px 20px -8px rgba(0, 191, 179, 0.6); }

.bots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.bot-card { padding: 1.6rem; border-radius: var(--radius); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; animation: cardIn 0.5s var(--ease) both; }
.bot-card:hover { transform: translateY(-6px); border-color: var(--glow-border); box-shadow: var(--shadow); }
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } }
.bot-top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.bot-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; background: var(--grad-soft); border: 1px solid var(--border-2); flex-shrink: 0; }
.bot-cat { font-family: 'Roboto Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); }
.bot-card h3 { font-size: 1.12rem; margin-top: 2px; }
.bot-desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; flex: 1; }
.bot-specs { display: grid; gap: 0.4rem; margin-bottom: 1.2rem; }
.bot-specs li { position: relative; padding-left: 1.3rem; font-size: 0.85rem; color: var(--muted); }
.bot-specs li::before { content: '›'; position: absolute; left: 0; color: var(--lime); font-weight: 800; }
.bot-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.bot-price { font-family: 'Roboto Mono', monospace; font-size: 1.5rem; font-weight: 600; color: #fff; }
.bot-price small { display: block; font-family: 'Montserrat'; font-size: 0.68rem; color: var(--muted-2); font-weight: 500; letter-spacing: 0.04em; }
.add-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--surface-2); border: 1px solid var(--border-2); color: #fff; padding: 0.6rem 1rem; border-radius: 999px; font-weight: 700; font-size: 0.85rem; transition: all 0.25s var(--ease); }
.add-btn:hover { background: var(--grad); color: #06210f; border-color: transparent; transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(0, 191, 179, 0.6); }
.add-btn.added { background: var(--green); color: #fff; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { padding: 2rem; border-radius: var(--radius); position: relative; transition: transform 0.4s var(--ease), border-color 0.4s; }
.step:hover { transform: translateY(-6px); border-color: var(--glow-border); }
.step-num { font-family: 'Roboto Mono', monospace; font-size: 1.6rem; font-weight: 600; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.2rem; margin: 0.8rem 0 0.6rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

.impact-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; padding: 2.4rem; border-radius: var(--radius-lg); background: var(--grad-soft); border: 1px solid var(--border-2); text-align: center; }
.impact-band strong { font-family: 'Roboto Mono', monospace; font-size: 2.6rem; font-weight: 600; color: #fff; display: block; }
.impact-band span { color: var(--text); font-size: 0.92rem; }

/* ---------- ROI calculator ---------- */
.roi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.roi-calc { padding: 2.2rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 1.6rem; }
.roi-field { display: grid; gap: 0.7rem; }
.roi-field label { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.roi-field output { font-family: 'Roboto Mono', monospace; font-weight: 600; font-size: 1rem; color: #06210f; background: var(--grad); padding: 0.15rem 0.7rem; border-radius: 999px; min-width: 56px; text-align: center; box-shadow: 0 4px 14px -4px rgba(0, 191, 179, 0.6); }
.roi-disclaimer { font-size: 0.8rem; color: var(--muted-2); margin-top: auto; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--teal), var(--lime)) no-repeat, rgba(255, 255, 255, 0.08); background-size: var(--fill, 50%) 100%, 100% 100%; outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--teal); box-shadow: 0 0 0 4px rgba(0, 191, 179, 0.2), 0 4px 12px rgba(0, 0, 0, 0.4); transition: transform 0.15s var(--ease); }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--teal); box-shadow: 0 0 0 4px rgba(0, 191, 179, 0.2); }
input[type="range"]::-moz-range-progress { background: linear-gradient(90deg, var(--teal), var(--lime)); height: 8px; border-radius: 999px; }

.roi-results { padding: 2.2rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 1.3rem; border-color: var(--glow-border); background: linear-gradient(180deg, rgba(0, 191, 179, 0.08), var(--surface)); position: relative; overflow: hidden; }
.roi-results::before { content: ''; position: absolute; top: -40%; right: -20%; width: 60%; height: 80%; background: radial-gradient(circle, rgba(124, 255, 107, 0.18), transparent 70%); pointer-events: none; }
.roi-kicker { font-family: 'Roboto Mono', monospace; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); }
.roi-big { display: flex; flex-direction: column; }
.roi-big span { font-family: 'Roboto Mono', monospace; font-size: clamp(2.6rem, 6vw, 3.8rem); font-weight: 600; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.roi-big small { color: var(--muted); margin-top: 0.4rem; font-size: 0.95rem; }
.roi-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.roi-tile { padding: 1.1rem 1.2rem; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); }
.roi-tile strong { display: block; font-family: 'Roboto Mono', monospace; font-size: 1.6rem; font-weight: 600; color: #fff; }
.roi-tile span { color: var(--muted); font-size: 0.84rem; }
.roi-payback { padding: 1.2rem; border-radius: var(--radius-sm); background: rgba(0, 0, 0, 0.25); border: 1px solid var(--border); }
.roi-payback-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.9rem; }
.roi-payback-head span { color: var(--muted); font-size: 0.92rem; }
.roi-payback-head strong { font-family: 'Roboto Mono', monospace; font-size: 1.5rem; color: var(--lime); }
.roi-invest { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.invest-chip { flex: 1; min-width: max-content; background: var(--surface); border: 1px solid var(--border-2); color: var(--muted); padding: 0.5rem 0.7rem; border-radius: 10px; font-size: 0.8rem; font-weight: 600; transition: all 0.2s var(--ease); }
.invest-chip:hover { color: #fff; }
.invest-chip.active { background: var(--grad-soft); border-color: var(--glow-border); color: #fff; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { padding: 2rem; border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s; }
.testi-card:hover { transform: translateY(-6px); border-color: var(--glow-border); }
.stars { color: var(--lime); letter-spacing: 0.2em; margin-bottom: 1rem; font-size: 0.95rem; }
.testi-card blockquote { margin: 0 0 1.5rem; font-size: 1.05rem; line-height: 1.6; color: var(--text); }
.testi-card figcaption { display: flex; align-items: center; gap: 0.8rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #06210f; display: grid; place-items: center; font-weight: 800; font-size: 0.95rem; }
.testi-card figcaption strong { display: block; color: #fff; font-size: 0.95rem; }
.testi-card figcaption small { color: var(--muted); font-size: 0.84rem; }

/* ---------- faq ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 0.8rem; }
.faq-item { border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--glow-border); }
.faq-q { width: 100%; background: none; border: none; color: #fff; font-weight: 700; font-size: 1.02rem; text-align: left; padding: 1.3rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-ic { font-size: 1.5rem; color: var(--lime); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }
.contact-list { display: grid; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.9rem; color: var(--text); font-weight: 500; }
.contact-list svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }
.contact-form { padding: 2.2rem; border-radius: var(--radius-lg); display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.field input, .field textarea { width: 100%; padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--border-2); background: rgba(0, 0, 0, 0.25); color: #fff; font-family: inherit; font-size: 0.95rem; transition: border-color 0.25s, box-shadow 0.25s; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 191, 179, 0.15); }
.field textarea { resize: vertical; }
.form-feedback { font-size: 0.9rem; color: var(--lime); min-height: 1.2em; text-align: center; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: 4rem; background: linear-gradient(180deg, transparent, rgba(0, 191, 179, 0.03)); }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding: 4rem 1.5rem 2.5rem; display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; }
.footer-brand p { color: var(--muted); margin-top: 1.2rem; max-width: 340px; font-size: 0.95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-cols h4 { font-size: 0.95rem; margin-bottom: 1rem; }
.footer-cols a { display: block; color: var(--muted); margin-bottom: 0.7rem; font-size: 0.92rem; transition: color 0.2s; }
.footer-cols a:hover { color: var(--lime); }
.foot-p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }
.news-form { display: flex; gap: 0.5rem; }
.news-form input { flex: 1; padding: 0.7rem 0.9rem; border-radius: 10px; border: 1px solid var(--border-2); background: rgba(0, 0, 0, 0.25); color: #fff; font-family: inherit; }
.news-form input:focus { outline: none; border-color: var(--teal); }
.news-form .btn { padding: 0.7rem 1.1rem; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--muted-2); font-size: 0.86rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--muted-2); font-size: 0.86rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--lime); }

/* ---------- cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); z-index: 1200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.show { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); background: rgba(11, 14, 23, 0.96); backdrop-filter: blur(20px); border-left: 1px solid var(--border-2); z-index: 1300; transform: translateX(100%); transition: transform 0.4s var(--ease); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 1.2rem; }
.cart-close, .modal-close { background: var(--surface-2); border: 1px solid var(--border); color: #fff; width: 36px; height: 36px; border-radius: 10px; font-size: 1rem; transition: all 0.2s; }
.cart-close:hover, .modal-close:hover { border-color: var(--glow-border); color: var(--lime); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: grid; gap: 0.8rem; align-content: start; }
.cart-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 0.8rem; align-items: center; padding: 0.9rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); animation: cardIn 0.3s var(--ease); }
.cart-item .ci-icon { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; font-size: 1.3rem; background: var(--grad-soft); border: 1px solid var(--border-2); }
.cart-item .ci-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.cart-item .ci-price { font-family: 'Roboto Mono', monospace; font-size: 0.84rem; color: var(--lime); }
.ci-controls { display: flex; align-items: center; gap: 0.4rem; }
.qty-btn { width: 26px; height: 26px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--border-2); color: #fff; font-size: 0.9rem; display: grid; place-items: center; transition: all 0.2s; }
.qty-btn:hover { border-color: var(--glow-border); color: var(--lime); }
.ci-qty { min-width: 20px; text-align: center; font-weight: 700; font-size: 0.9rem; }
.ci-remove { background: none; border: none; color: var(--muted-2); font-size: 1.1rem; transition: color 0.2s; }
.ci-remove:hover { color: #ff6b6b; }
.cart-empty { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 2rem; text-align: center; color: var(--muted); }
.cart-empty-ic { font-size: 3rem; opacity: 0.5; }
.cart-drawer.empty .cart-items, .cart-drawer.empty .cart-foot { display: none; }
.cart-drawer.empty .cart-empty { display: flex; }
.cart-foot { padding: 1.5rem; border-top: 1px solid var(--border); display: grid; gap: 0.6rem; }
.cart-line { display: flex; justify-content: space-between; font-size: 0.95rem; }
.cart-line.muted { color: var(--muted); font-size: 0.86rem; }
.cart-line.total { font-weight: 800; font-size: 1.15rem; color: #fff; margin: 0.3rem 0 0.6rem; padding-top: 0.6rem; border-top: 1px solid var(--border); }
.cart-line span:last-child { font-family: 'Roboto Mono', monospace; }
.cart-reassure { text-align: center; color: var(--muted-2); font-size: 0.8rem; margin-top: 0.3rem; }

/* ---------- modal / checkout ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(6px); z-index: 1400; display: grid; place-items: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
/* [hidden] must win over the display above, and pointer-events:none guarantees the invisible
   overlay never intercepts clicks while closed (it only blocked everything otherwise). */
.modal-overlay[hidden], .cart-overlay[hidden] { display: none; }
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal { position: relative; width: min(520px, 100%); max-height: 90vh; overflow-y: auto; padding: 2.2rem; border-radius: var(--radius-lg); background: rgba(13, 18, 28, 0.98); transform: translateY(20px) scale(0.98); transition: transform 0.35s var(--ease); }
.modal-overlay.show .modal { transform: none; }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; }
.modal h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.modal-sub { color: var(--muted); margin-bottom: 1.4rem; font-size: 0.95rem; }
.checkout-summary { display: grid; gap: 0.5rem; margin-bottom: 1.4rem; padding: 1rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); }
.cs-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.cs-row span:last-child { font-family: 'Roboto Mono', monospace; color: var(--lime); }
#checkout-form { display: grid; gap: 1rem; }
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.pay-opt { position: relative; display: flex; align-items: center; justify-content: center; padding: 0.8rem; border-radius: 12px; border: 1px solid var(--border-2); background: var(--surface); font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.pay-opt input { position: absolute; opacity: 0; }
.pay-opt:has(input:checked) { border-color: var(--teal); background: var(--grad-soft); color: #fff; box-shadow: 0 0 0 2px rgba(0, 191, 179, 0.2); }
.checkout-total-line { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0; border-top: 1px solid var(--border); }
.checkout-total-line strong { font-family: 'Roboto Mono', monospace; font-size: 1.4rem; color: #fff; }
.modal-fineprint { font-size: 0.76rem; color: var(--muted-2); text-align: center; }
.success-emblem { width: 70px; height: 70px; border-radius: 50%; background: var(--grad); color: #06210f; display: grid; place-items: center; font-size: 2rem; font-weight: 800; margin: 0 auto 1.2rem; box-shadow: 0 0 40px rgba(0, 191, 179, 0.5); animation: pop 0.5s var(--ease); }
#checkout-step-success { text-align: center; }
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.1); } }

/* ---------- chatbot ---------- */
.chatbot-toggle { position: fixed; bottom: 1.6rem; right: 1.6rem; width: 60px; height: 60px; border-radius: 50%; background: var(--grad); color: #06210f; border: none; display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(0, 191, 179, 0.6); z-index: 1150; transition: transform 0.25s var(--ease); }
.chatbot-toggle:hover { transform: scale(1.08) translateY(-2px); }
.chatbot-toggle::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--lime); opacity: 0.6; animation: ripple 2.2s ease-out infinite; }
@keyframes ripple { to { transform: scale(1.4); opacity: 0; } }
.chatbot { position: fixed; bottom: 6.2rem; right: 1.6rem; width: min(380px, calc(100vw - 2rem)); max-height: 560px; border-radius: 22px; background: rgba(11, 14, 23, 0.97); display: none; flex-direction: column; z-index: 1150; overflow: hidden; box-shadow: var(--shadow); animation: slideUp 0.35s var(--ease); }
.chatbot.open { display: flex; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } }
.chatbot-head { display: flex; align-items: center; gap: 0.7rem; padding: 1rem 1.2rem; background: var(--grad-soft); border-bottom: 1px solid var(--border); }
.chatbot-ava { width: 40px; height: 40px; border-radius: 11px; background: rgba(0, 0, 0, 0.3); display: grid; place-items: center; overflow: hidden; }
.chatbot-ava img { width: 32px; height: 32px; object-fit: contain; }
.chatbot-head h3 { font-size: 1rem; }
.chatbot-status { font-size: 0.74rem; color: var(--lime); display: flex; align-items: center; gap: 0.3rem; }
.chatbot-x { margin-left: auto; background: none; border: none; color: var(--muted); font-size: 1.1rem; width: 30px; height: 30px; border-radius: 8px; transition: all 0.2s; }
.chatbot-x:hover { color: #fff; background: var(--surface-2); }
.chatbot-body { flex: 1; overflow-y: auto; padding: 1.2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.cb-msg { display: flex; animation: cardIn 0.3s var(--ease); }
.cb-msg.user { justify-content: flex-end; }
.cb-msg p { margin: 0; padding: 0.7rem 1rem; border-radius: 14px; font-size: 0.9rem; line-height: 1.5; max-width: 85%; }
.cb-msg.bot p { background: var(--surface-2); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 4px; }
.cb-msg.user p { background: var(--grad); color: #06210f; font-weight: 600; border-bottom-right-radius: 4px; }
.cb-quick { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.2rem; }
.cb-quick button { background: var(--surface); border: 1px solid var(--border-2); color: var(--text); padding: 0.45rem 0.8rem; border-radius: 999px; font-size: 0.8rem; transition: all 0.2s; }
.cb-quick button:hover { border-color: var(--glow-border); color: var(--lime); }
.chatbot-input { display: flex; gap: 0.6rem; padding: 0.9rem 1.2rem; border-top: 1px solid var(--border); }
.chatbot-input input { flex: 1; padding: 0.7rem 0.9rem; border-radius: 12px; border: 1px solid var(--border-2); background: rgba(0, 0, 0, 0.3); color: #fff; font-family: inherit; font-size: 0.9rem; }
.chatbot-input input:focus { outline: none; border-color: var(--teal); }
.chatbot-input button { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #06210f; border: none; display: grid; place-items: center; transition: transform 0.2s; }
.chatbot-input button:hover { transform: scale(1.05); }

/* ---------- to-top ---------- */
.to-top { position: fixed; bottom: 1.6rem; left: 1.6rem; width: 46px; height: 46px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border-2); color: #fff; display: grid; place-items: center; font-size: 1.2rem; z-index: 1140; opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.3s var(--ease); backdrop-filter: blur(10px); }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { border-color: var(--glow-border); color: var(--lime); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- language switch ---------- */
.lang-switch { display: inline-flex; border: 1px solid var(--border-2); border-radius: 999px; overflow: hidden; background: var(--surface); }
.lang-switch a { padding: 0.45rem 0.7rem; font-family: 'Roboto Mono', monospace; font-size: 0.78rem; font-weight: 600; color: var(--muted); line-height: 1; transition: all 0.2s var(--ease); }
.lang-switch a.active { background: var(--grad); color: #06210f; }
.lang-switch a:not(.active):hover { color: #fff; }

/* ---------- sub-pages (legal / prose) ---------- */
.page-header { position: sticky; top: 0; z-index: 100; background: rgba(7, 10, 18, 0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.page-header .header-inner { padding-top: 0.8rem; padding-bottom: 0.8rem; }
.page-main { max-width: 820px; margin: 0 auto; padding: 4.5rem 1.5rem 4rem; }
.page-hero { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.8rem; }
.page-hero .lead { color: var(--muted); font-size: 1.1rem; max-width: 640px; }
.page-updated { font-family: 'Roboto Mono', monospace; font-size: 0.78rem; color: var(--muted-2); margin-top: 0.9rem; }
.prose > * { max-width: 720px; }
.prose h2 { font-size: 1.4rem; margin: 2.4rem 0 0.8rem; }
.prose h3 { font-size: 1.1rem; margin: 1.6rem 0 0.5rem; color: var(--lime); }
.prose p { color: var(--muted); line-height: 1.8; margin: 0 0 1.1rem; }
.prose ul { margin: 0 0 1.2rem; padding-left: 1.3rem; list-style: disc; }
.prose li { color: var(--muted); line-height: 1.8; margin-bottom: 0.5rem; }
.prose strong { color: var(--text); }
.prose a { color: var(--lime); border-bottom: 1px solid rgba(124, 255, 107, 0.4); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem; font-size: 0.92rem; }
.prose th, .prose td { text-align: left; padding: 0.65rem 0.9rem; border-bottom: 1px solid var(--border); }
.prose th { color: #fff; font-weight: 700; }
.prose td { color: var(--muted); }
.prose .callout { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--teal); border-radius: 12px; padding: 1.1rem 1.3rem; margin: 0 0 1.4rem; }
.prose .callout p { margin: 0; color: var(--text); }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--muted); font-weight: 600; margin-bottom: 2rem; transition: color 0.2s; }
.back-link:hover { color: var(--lime); }

/* ---------- booking / plan-a-call page ---------- */
.booking-page { max-width: 1060px; }
.form-intro { color: var(--muted); margin: -0.2rem 0 0.6rem; font-size: 0.93rem; }
.quick-contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.qc-card { display: flex; align-items: center; gap: 0.9rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.qc-card:hover { transform: translateY(-3px); border-color: var(--glow-border); box-shadow: var(--shadow); }
.qc-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); color: var(--lime); flex-shrink: 0; }
.qc-card.wa .qc-ic { background: rgba(37, 211, 102, 0.14); border-color: rgba(37, 211, 102, 0.4); color: #25D366; }
.qc-txt { display: flex; flex-direction: column; line-height: 1.3; }
.qc-txt strong { color: #fff; font-size: 0.98rem; }
.qc-txt small { color: var(--muted); font-size: 0.82rem; }
.qc-arrow { margin-left: auto; color: var(--muted-2); transition: transform 0.2s, color 0.2s; }
.qc-card:hover .qc-arrow { transform: translateX(3px); color: var(--lime); }

.booking-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; align-items: start; }
.booking-form { padding: 2rem; border-radius: var(--radius-lg); display: grid; gap: 1.1rem; }
.booking-form h2 { font-size: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field select { width: 100%; padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--border-2); background: rgba(0, 0, 0, 0.25); color: #fff; font-family: inherit; font-size: 0.95rem; appearance: none; -webkit-appearance: none; background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.3rem; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none" stroke="%2394A3B2" stroke-width="2" stroke-linecap="round"><path d="M3 5l4 4 4-4"/></svg>'); transition: border-color 0.25s, box-shadow 0.25s; }
.field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 191, 179, 0.15); }
.field select option { background: #0b0e17; color: #fff; }
.planner-group { display: grid; gap: 0.6rem; }
.planner-group > label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-row .chip { font-size: 0.84rem; padding: 0.5rem 0.9rem; }
.btn-wa { background: #25D366; color: #04210f; box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.7); }
.btn-wa:hover { transform: translateY(-2px); background: #21c35c; box-shadow: 0 16px 40px -10px rgba(37, 211, 102, 0.9); }
.booking-actions { display: grid; gap: 0.7rem; margin-top: 0.4rem; }
.booking-fineprint { text-align: center; font-size: 0.78rem; color: var(--muted-2); margin-top: -0.2rem; }
.booking-side { display: grid; gap: 1.2rem; position: sticky; top: 90px; }
.side-card { padding: 1.5rem; border-radius: var(--radius); }
.side-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.side-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.side-card .price-features { margin: 0; }
.scheduler-embed { min-height: 230px; border: 1px dashed var(--border-2); border-radius: 14px; display: grid; place-items: center; padding: 1.2rem; }
.scheduler-ph { text-align: center; color: var(--muted); }
.sch-ic { font-size: 2.2rem; display: block; margin-bottom: 0.5rem; opacity: 0.7; }
.scheduler-ph small { color: var(--muted-2); }
.booking-success { text-align: center; padding: 3rem 2rem; border-radius: var(--radius-lg); max-width: 620px; margin: 1rem auto 0; display: grid; gap: 1rem; place-items: center; }
.booking-success h2 { font-size: 1.6rem; }

/* ---------- a11y: visible keyboard focus ---------- */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible, .chip:focus-visible, .qc-card:focus-visible, .cart-button:focus-visible { outline-offset: 4px; }

/* ---------- subtle brand monogram at commerce + contact ---------- */
.cart-head-l { display: flex; align-items: center; gap: 0.6rem; }
.cart-brand img { width: 28px; height: 28px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(0, 191, 179, 0.5)); }
.modal-brand img { width: 38px; height: 38px; object-fit: contain; display: block; margin-bottom: 0.7rem; filter: drop-shadow(0 0 10px rgba(0, 191, 179, 0.45)); }

/* contact CTA panel (replaces the old demo form — booking page is the canonical intake) */
.contact-cta { padding: 2.4rem; border-radius: var(--radius-lg); display: grid; gap: 0.9rem; text-align: center; }
.cta-emblem { width: 66px; height: 66px; margin: 0 auto 0.3rem; border-radius: 18px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); }
.cta-emblem img { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(124, 255, 107, 0.4)); }
.contact-cta h3 { font-size: 1.4rem; }
.contact-cta > p { color: var(--muted); margin-bottom: 0.4rem; }

/* ---------- branded toast ---------- */
.toast-wrap { position: fixed; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 1250; display: grid; gap: 0.5rem; width: max-content; max-width: 92vw; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1.1rem; border-radius: 14px; background: rgba(11, 14, 23, 0.96); border: 1px solid var(--glow-border); box-shadow: var(--shadow); color: #fff; font-weight: 600; font-size: 0.9rem; transform: translateY(16px); opacity: 0; transition: transform 0.3s var(--ease), opacity 0.3s; backdrop-filter: blur(10px); }
.toast.show { transform: none; opacity: 1; }
.toast img { width: 26px; height: 26px; object-fit: contain; }
.toast .t-check { color: var(--lime); font-weight: 800; }

/* ---------- exit-intent popup (reuses .modal-overlay / .modal) ---------- */
.exit-emblem { width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 20px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); animation: floaty 6s ease-in-out infinite; }
.exit-emblem img { width: 50px; height: 50px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(124, 255, 107, 0.45)); }
.exit-pop { text-align: center; }
.exit-pop h3 { font-size: 1.55rem; margin-bottom: 0.5rem; }
.exit-pop p { color: var(--muted); margin-bottom: 1.4rem; }
.exit-actions { display: grid; gap: 0.6rem; }
.exit-dismiss { background: none; border: none; color: var(--muted-2); font-size: 0.85rem; cursor: pointer; padding: 0.3rem; }
.exit-dismiss:hover { color: var(--text); }

/* ---------- subtle T-rex brand watermarks (assets/trex.png) ---------- */
/* Footer of the homepages (only those have .footer-top) */
.site-footer:has(.footer-top) { position: relative; isolation: isolate; overflow: hidden; }
.site-footer:has(.footer-top)::after { content: ''; position: absolute; right: -20px; bottom: -40px; width: 340px; height: 340px; background: url('assets/trex.png') no-repeat center / contain; opacity: 0.08; z-index: -1; pointer-events: none; }
/* Behind the ROI section (homepages) */
#rendement { position: relative; isolation: isolate; }
#rendement::before { content: ''; position: absolute; top: 50%; right: 1%; transform: translateY(-50%); width: 380px; height: 380px; background: url('assets/trex.png') no-repeat center / contain; opacity: 0.07; z-index: -1; pointer-events: none; }
/* Booking page (conversion) */
.booking-page { position: relative; isolation: isolate; }
.booking-page::after { content: ''; position: absolute; top: 50px; right: -20px; width: 300px; height: 300px; background: url('assets/trex.png') no-repeat center / contain; opacity: 0.08; z-index: -1; pointer-events: none; }

/* ============================================================
   TECH EFFECTS — neural canvas, cursor, tilt, terminal
   ============================================================ */
.neural-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; opacity: 0.9; }

#cursor-glow { position: fixed; top: 0; left: 0; width: 460px; height: 460px; margin: -230px 0 0 -230px; border-radius: 50%; pointer-events: none; z-index: 1185; background: radial-gradient(circle, rgba(0, 191, 179, 0.10), rgba(124, 255, 107, 0.05) 35%, transparent 62%); mix-blend-mode: screen; opacity: 0; transition: opacity 0.4s ease; will-change: transform; }

/* 3D tilt + cursor spotlight on cards */
.tilt { position: relative; transform-style: preserve-3d; transition: transform 0.18s ease-out, box-shadow 0.4s, border-color 0.4s; }
.spotlight { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 0.35s ease; background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(124, 255, 107, 0.18), rgba(0, 191, 179, 0.07) 38%, transparent 60%); mix-blend-mode: screen; z-index: 4; }
.tilt:hover .spotlight { opacity: 1; }

/* live terminal */
.live-section { padding-top: 2rem; }
.live-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: center; }
.terminal { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.term-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: rgba(255, 255, 255, 0.04); border-bottom: 1px solid var(--border); }
.term-dot { width: 11px; height: 11px; border-radius: 50%; }
.term-dot.red { background: #ff5f57; } .term-dot.yellow { background: #febc2e; } .term-dot.green { background: #28c840; }
.term-title { font-family: 'Roboto Mono', monospace; font-size: 0.78rem; color: var(--muted); margin-left: 0.5rem; }
.term-live { margin-left: auto; display: flex; align-items: center; gap: 0.4rem; font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em; color: var(--lime); }
.term-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); animation: blink 1.4s ease-in-out infinite; }
.term-body { height: 250px; padding: 1.1rem 1.3rem; background: rgba(0, 0, 0, 0.4); font-family: 'Roboto Mono', monospace; font-size: 0.82rem; line-height: 1.75; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.term-line { white-space: pre-wrap; opacity: 0; transform: translateY(6px); animation: termIn 0.4s var(--ease) forwards; }
@keyframes termIn { to { opacity: 1; transform: none; } }
.term-time { color: var(--muted-2); }
.term-ok { color: var(--lime); } .term-arrow { color: var(--teal); } .term-warn { color: #febc2e; } .term-spark { color: var(--tech-purple, #a78bfa); }
.term-txt { color: var(--text); }
.term-caret { color: var(--lime); animation: blink 1s steps(1) infinite; }
.live-side h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin: 0.4rem 0 1rem; }
.live-text { color: var(--muted); margin-bottom: 1.5rem; }
.live-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.live-stat { padding: 1.1rem 1.2rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); position: relative; overflow: hidden; }
.live-stat::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--grad); opacity: 0.5; }
.live-stat strong { display: block; font-family: 'Roboto Mono', monospace; font-size: 1.55rem; font-weight: 600; color: #fff; }
.live-stat span { font-size: 0.76rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-emblem { max-width: 380px; order: -1; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; gap: 1.5rem; }
  .feature-grid, .pricing-grid, .bots-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .impact-band { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .roi-wrap { grid-template-columns: 1fr; }
  .live-wrap { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-side { position: static; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(300px, 82vw); flex-direction: column; justify-content: center; gap: 1.6rem; background: rgba(11, 14, 23, 0.98); backdrop-filter: blur(20px); border-left: 1px solid var(--border-2); padding: 2rem; transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 1050; }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-actions .btn-primary { display: none; }
  .section { padding: 4rem 1.2rem; }
  .hero { padding: 7rem 1.2rem 2rem; }
  .feature-grid, .pricing-grid, .bots-grid, .testi-grid, .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wordmark { display: none; }
  .impact-band { grid-template-columns: 1fr 1fr; }
  .quick-contacts { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   AI FEATURES — echte chatbot (streaming) + AI Bot-Adviseur
   ============================================================ */

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* streamed antwoorden behouden regelafbrekingen */
.cb-msg.bot p { white-space: pre-wrap; }

/* typing-indicator (dino-spinner in bot-bubbel) */
.cb-msg.cb-typing p { display: inline-flex; align-items: center; }
@keyframes cbDot { 0%, 80%, 100% { opacity: 0.3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }

/* ---------- Adviseur ---------- */
.adviseur { max-width: 860px; margin: 0 auto; border-radius: var(--radius); padding: 1.4rem; }
.adviseur-form { display: flex; flex-direction: column; gap: 1rem; }
.adviseur-form textarea {
  width: 100%; resize: vertical; min-height: 92px; padding: 1rem 1.1rem; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text);
  font: inherit; font-size: 1rem; line-height: 1.55; transition: border-color .2s, box-shadow .2s;
}
.adviseur-form textarea::placeholder { color: var(--muted-2); }
.adviseur-form textarea:focus { outline: none; border-color: var(--glow-border); box-shadow: 0 0 0 3px rgba(0,191,179,0.16); }
.adviseur-bar { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; justify-content: space-between; }
.adviseur-examples { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.ex-chip { background: var(--surface); border: 1px solid var(--border-2); color: var(--muted); padding: 0.42rem 0.85rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; transition: all .2s; }
.ex-chip:hover { color: var(--lime); border-color: var(--glow-border); }
#adviseur-submit { display: inline-flex; align-items: center; gap: 0.5rem; }
#adviseur-submit.loading { opacity: 0.7; pointer-events: none; }

.adviseur-result { margin-top: 1.3rem; }
.adv-loading { display: flex; align-items: center; gap: 0.8rem; color: var(--muted); padding: 0.6rem 0.2rem; }
.adv-loading p { margin: 0; font-size: 0.92rem; }

.adv-out { animation: cardIn 0.4s var(--ease); }
.adv-summary { font-size: 1.04rem; color: var(--text); margin: 0 0 1.1rem; padding-left: 0.9rem; border-left: 2px solid var(--glow-border); }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.9rem; }
.adv-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.adv-card-top { display: flex; align-items: center; gap: 0.7rem; }
.adv-icon { font-size: 1.5rem; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border-2); flex-shrink: 0; }
.adv-card-top h4 { margin: 0; font-size: 0.98rem; }
.adv-price { font-size: 0.82rem; color: var(--muted); font-family: 'Roboto Mono', monospace; }
.adv-reason { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; flex: 1; }
.adv-add { align-self: flex-start; background: var(--surface); border: 1px solid var(--border-2); color: var(--text); padding: 0.5rem 0.95rem; border-radius: 999px; font-size: 0.85rem; font-weight: 700; transition: all .2s; }
.adv-add:hover { border-color: var(--glow-border); color: var(--lime); }
.adv-add.added { background: var(--grad); color: #06210f; border-color: transparent; }

.adv-package { margin-top: 1.1rem; padding: 1rem 1.1rem; border-radius: var(--radius-sm); background: linear-gradient(180deg, rgba(0,191,179,0.08), var(--surface)); border: 1px solid var(--glow-border); }
.adv-package strong { display: block; margin-bottom: 0.3rem; }
.adv-package p { margin: 0 0 0.8rem; color: var(--muted); font-size: 0.92rem; }
.adv-roi { margin: 1.1rem 0 0; display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.95rem; color: var(--text); }
.adv-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.adv-disclaim { margin: 0.9rem 0 0; font-size: 0.78rem; color: var(--muted-2); }
.adv-error { text-align: center; padding: 0.5rem; }
.adv-error p { color: var(--muted); margin: 0 0 1rem; }
.adv-error .adv-cta { justify-content: center; }

@media (max-width: 560px) {
  .adviseur-bar { flex-direction: column; align-items: stretch; }
  #adviseur-submit { justify-content: center; }
}

/* ============================================================
   SEO LANDING- & BLOGPAGINA'S + footer-hub
   ============================================================ */
.lp-main { max-width: 880px; margin: 0 auto; padding: 6.5rem 1.5rem 4rem; }
.breadcrumb { font-size: 0.82rem; color: var(--muted-2); margin-bottom: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .sep { opacity: 0.5; }

.lp-hero { margin-bottom: 2.6rem; }
.lp-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.1; margin: 0.6rem 0 1rem; }
.lp-hero .lead { font-size: 1.15rem; color: var(--muted); max-width: 660px; }
.lp-price { display: inline-block; margin-top: 1.2rem; font-family: 'Roboto Mono', monospace; font-size: 0.95rem; color: var(--lime); border: 1px solid var(--glow-border); border-radius: 999px; padding: 0.45rem 1rem; background: var(--grad-soft); }
.lp-cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

.lp-body { max-width: 760px; }
.lp-body h2 { font-size: 1.5rem; margin: 2.2rem 0 0.8rem; }
.lp-body h3 { font-size: 1.1rem; margin: 1.4rem 0 0.4rem; color: var(--text); }
.lp-body p, .lp-body li { color: var(--muted); line-height: 1.7; }
.lp-body ul { padding-left: 1.2rem; display: grid; gap: 0.4rem; }
.lp-steps { padding-left: 1.3rem; display: grid; gap: 0.7rem; counter-reset: step; }
.lp-steps li { color: var(--muted); line-height: 1.6; }

.lp-related { max-width: 880px; margin: 3rem auto 0; }
.lp-related h2 { font-size: 1.4rem; margin-bottom: 1.1rem; }
.rel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0.8rem; }
.rel-card { display: flex; align-items: center; gap: 0.7rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--border); transition: all 0.2s; }
.rel-card:hover { border-color: var(--glow-border); transform: translateY(-2px); box-shadow: var(--glow); }
.rel-icon { font-size: 1.35rem; flex-shrink: 0; }
.rel-name { font-weight: 600; font-size: 0.92rem; color: var(--text); flex: 1; }
.rel-price { font-family: 'Roboto Mono', monospace; font-size: 0.82rem; color: var(--muted); }

.lp-final-cta { max-width: 880px; margin: 3.5rem auto 0; text-align: center; padding: 2.6rem 1.5rem; border-radius: var(--radius); background: linear-gradient(180deg, rgba(0,191,179,0.08), var(--surface)); border: 1px solid var(--glow-border); }
.lp-final-cta h2 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.lp-final-cta p { color: var(--muted); margin-bottom: 1.4rem; }
.lp-final-cta .lp-cta-row { justify-content: center; }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; }
.blog-card { display: block; padding: 1.4rem; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--border); transition: all 0.2s; }
.blog-card:hover { border-color: var(--glow-border); transform: translateY(-2px); box-shadow: var(--glow); }
.blog-card h3 { font-size: 1.15rem; margin: 0 0 0.5rem; color: var(--text); }
.blog-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin: 0 0 0.8rem; }
.blog-more { font-size: 0.85rem; font-weight: 700; color: var(--lime); }

/* ============================================================
   PROFESSIONALISERING — pijn, diensten, werkwijze-flow, cases,
   vertrouwen, ROI-verlies, team
   ============================================================ */

/* pijn-sectie */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.pain-card { padding: 1.5rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.55rem; }
.pain-ico { font-size: 1.7rem; }
.pain-card h3 { font-size: 1.08rem; margin: 0; }
.pain-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; margin: 0; flex: 1; }
.pain-fix { font-size: 0.86rem; font-weight: 700; color: var(--lime); transition: opacity 0.2s; }
.pain-fix:hover { opacity: 0.8; }
.pain-note { text-align: center; color: var(--muted); margin-top: 1.6rem; font-size: 0.95rem; }
.pain-note a { color: var(--lime); font-weight: 600; }

/* diensten */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; }
.service-card { padding: 1.7rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.6rem; transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); border-color: var(--glow-border); box-shadow: var(--glow); }
.service-card h3 { font-size: 1.15rem; margin: 0.2rem 0 0; }
.service-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.65; margin: 0; flex: 1; }
.service-tag { font-family: 'Roboto Mono', monospace; font-size: 0.8rem; color: var(--teal); border-top: 1px solid var(--border); padding-top: 0.8rem; }
.service-tag a { color: var(--lime); }
.service-card-cta { justify-content: center; text-align: center; background: linear-gradient(180deg, rgba(0,191,179,0.09), var(--surface)); border-color: var(--glow-border); }
.service-card-cta .btn { align-self: center; margin-top: 0.6rem; }

/* werkwijze-flow */
.flow-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; }
.flow-step { padding: 1.6rem; border-radius: var(--radius); }
.flow-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.9rem; }
.flow-tag { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; padding: 0.3rem 0.7rem; border-radius: 999px; border: 1px solid var(--border-2); color: var(--muted); white-space: nowrap; }
.flow-tag.flow-free { color: var(--lime); border-color: var(--glow-border); background: var(--grad-soft); }
.flow-step h3 { font-size: 1.08rem; margin: 0 0 0.5rem; }
.flow-step p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* ROI: kosten van wachten */
.roi-waiting { margin: 0.9rem 0 0; padding: 0.75rem 1rem; border-radius: var(--radius-sm); background: rgba(255, 120, 90, 0.07); border: 1px solid rgba(255, 120, 90, 0.25); font-size: 0.92rem; color: var(--text); }
.roi-waiting strong { color: #FF9A7B; }

/* praktijkcases — 2×2 voor balans */
.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
@media (max-width: 760px) { .case-grid { grid-template-columns: 1fr; } }
.case-card { padding: 1.6rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.9rem; }
.case-branche { font-weight: 800; font-size: 1.02rem; display: flex; align-items: center; gap: 0.6rem; }
.case-branche::before { content: ''; width: 9px; height: 9px; border-radius: 3px; background: var(--grad); box-shadow: 0 0 10px rgba(0, 191, 179, 0.6); flex-shrink: 0; }
.case-row { border-left: 2px solid var(--border-2); padding-left: 0.9rem; }
.case-row p { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.case-label { font-family: 'Roboto Mono', monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); }
.case-result { border-left-color: var(--glow-border); }
.case-result .case-label { color: var(--lime); }
.case-card .pain-fix { margin-top: auto; }

/* vertrouwen */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.trust-card { padding: 1.5rem; border-radius: var(--radius); }
.trust-ico { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.trust-card h3 { font-size: 1.05rem; margin: 0 0 0.45rem; }
.trust-card p { color: var(--muted); font-size: 0.91rem; line-height: 1.6; margin: 0; }

/* ============================================================
   DINO BOOT-LOADER + mini-spinner
   ============================================================ */
html.dl-lock { overflow: hidden; }
.dino-loader {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  background: radial-gradient(ellipse at 50% 40%, #0C1220 0%, #070A12 70%);
  transition: opacity 0.55s ease, visibility 0.55s;
}
.dino-loader.dl-hide { opacity: 0; visibility: hidden; pointer-events: none; }
.dl-emblem { position: relative; width: 168px; height: 168px; display: grid; place-items: center; }
.dl-hex { position: absolute; inset: 0; width: 100%; height: 100%; }
.dl-hex polygon { fill: none; stroke: var(--teal); stroke-width: 2.4; stroke-dasharray: 90 420; stroke-linecap: round; opacity: 0.85; animation: dlDash 2.2s linear infinite; }
.dl-hex2 { transform: scale(0.82); }
.dl-hex2 polygon { stroke: var(--lime); stroke-dasharray: 60 450; animation-duration: 1.6s; animation-direction: reverse; opacity: 0.6; }
@keyframes dlDash { to { stroke-dashoffset: -510; } }
.dl-trex { width: 84px; filter: drop-shadow(0 0 22px rgba(0, 191, 179, 0.55)); animation: dlPulse 1.5s ease-in-out infinite; }
@keyframes dlPulse { 0%, 100% { transform: scale(1); opacity: 0.95; } 50% { transform: scale(1.07); opacity: 1; } }
.dl-text { font-family: 'Roboto Mono', monospace; font-size: 0.88rem; color: var(--muted); margin: 0; }
.dl-prompt { color: var(--lime); }
.dl-caret { animation: dlBlink 0.85s step-end infinite; color: var(--teal); }
@keyframes dlBlink { 50% { opacity: 0; } }
.dl-bar { width: min(240px, 60vw); height: 3px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.dl-bar span { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--grad); box-shadow: 0 0 12px rgba(0, 191, 179, 0.7); transition: width 0.3s ease; }
@media (prefers-reduced-motion: reduce) { .dino-loader { display: none; } }

/* mini dino-spinner (AI-laadmomenten: chatbot + adviseur) */
.dino-spin { position: relative; width: 34px; height: 34px; flex-shrink: 0; display: inline-grid; place-items: center; }
.dino-spin::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.08); border-top-color: var(--teal); border-right-color: var(--lime); animation: dsSpin 0.9s linear infinite; }
.dino-spin img { width: 20px; height: 20px; object-fit: contain; animation: dlPulse 1.5s ease-in-out infinite; }
@keyframes dsSpin { to { transform: rotate(360deg); } }
.cb-msg.cb-typing p { padding: 0.55rem 0.8rem; }
.cb-msg.cb-typing .dino-spin { width: 28px; height: 28px; }
.cb-msg.cb-typing .dino-spin img { width: 16px; height: 16px; }

/* slogan-kaart (hero, vervangt het grote embleem) */
.hero-slogan { display: flex; align-items: center; justify-content: center; }
.slogan-card { position: relative; max-width: 470px; width: 100%; border-radius: var(--radius-lg); padding: 2.5rem 2.3rem; overflow: hidden; border-color: var(--glow-border); background: linear-gradient(160deg, rgba(0, 191, 179, 0.09), var(--surface)); box-shadow: 0 30px 80px -30px rgba(0, 191, 179, 0.35); }
.slogan-kicker { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin: 0 0 1.2rem; }
.slogan-line1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.45rem; line-height: 1.35; color: var(--text); margin: 0 0 0.5rem; }
.slogan-line2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.1rem; line-height: 1.15; margin: 0 0 1.8rem; }
.slogan-btn { width: 100%; justify-content: center; position: relative; z-index: 1; }
.slogan-trex { position: absolute; right: -36px; bottom: -40px; width: 200px; opacity: 0.08; transform: rotate(-6deg); pointer-events: none; }
@media (max-width: 980px) { .hero-slogan { margin-top: 2rem; } }

/* kaart-iconen: strakker in pijn/vertrouwen-kaarten */
.pain-card .feat-icon, .trust-card .feat-icon { margin-bottom: 0.4rem; }

/* hero microcopy onder CTA's */
.hero-micro { margin: 0.9rem 0 0; font-family: 'Roboto Mono', monospace; font-size: 0.78rem; color: var(--muted-2); letter-spacing: 0.04em; }

/* agitatie-blok (pijn-sectie) */
.agitate { position: relative; margin-top: 1.6rem; padding: 1.8rem 2rem; border-radius: var(--radius); display: grid; grid-template-columns: 1fr auto; gap: 1.2rem 2rem; align-items: center; overflow: hidden; border-color: rgba(255, 120, 90, 0.25); background: linear-gradient(120deg, rgba(255, 120, 90, 0.06), var(--surface)); }
.agitate-trex { position: absolute; right: -30px; bottom: -30px; width: 200px; opacity: 0.06; pointer-events: none; }
.agitate-copy h3 { margin: 0 0 0.45rem; font-size: 1.2rem; line-height: 1.35; }
.agitate-copy p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.agitate-cta { display: flex; flex-direction: column; gap: 0.6rem; position: relative; z-index: 1; }
@media (max-width: 720px) { .agitate { grid-template-columns: 1fr; } .agitate-cta { flex-direction: row; flex-wrap: wrap; } }

/* CTA-strip (na de shop) */
.cta-strip { margin-top: 2rem; padding: 1.4rem 1.8rem; border-radius: var(--radius); display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; border-color: var(--glow-border); background: linear-gradient(120deg, rgba(0, 191, 179, 0.07), var(--surface)); }
.cta-strip img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.cta-strip p { margin: 0; flex: 1; min-width: 240px; color: var(--muted); font-size: 0.96rem; }
.cta-strip p strong { color: var(--text); }

/* chatbot-toggle met monogram */
.chatbot-toggle-logo { width: 30px; height: 30px; object-fit: contain; }

/* mobiele sticky CTA */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  /* verschijnt pas voorbij de hero — anders dubbelt hij met de knop in de hero */
  .mobile-cta { display: flex; align-items: center; justify-content: center; position: fixed; left: 0.8rem; right: 4.6rem; bottom: 0.8rem; z-index: 1100; padding: 0.9rem 1rem; border-radius: 14px; background: var(--grad); color: #06210f; font-weight: 800; font-size: 0.95rem; box-shadow: 0 10px 30px -8px rgba(0, 191, 179, 0.65); opacity: 0; pointer-events: none; transform: translateY(120%); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
  body.scrolled .mobile-cta { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .chatbot-toggle { bottom: 0.8rem; right: 0.8rem; }
  .to-top { bottom: 4.6rem; }
}

/* "wat je krijgt"-pagina */
.get-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.2rem; margin: 1rem 0 2.4rem; }
.get-block { border-radius: var(--radius); padding: 1.7rem; }
.get-block h2 { font-size: 1.15rem; margin: 0 0 1rem; }
.get-block-hl { border-color: var(--glow-border); background: linear-gradient(180deg, rgba(0, 191, 179, 0.08), var(--surface)); }
.get-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.8rem; }
.get-list li { position: relative; padding-left: 1.7rem; color: var(--muted); font-size: 0.93rem; line-height: 1.6; }
.get-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--lime); font-weight: 800; }
.get-list strong { color: var(--text); }

/* tagline-band — merkmoment */
.tagline-band { position: relative; text-align: center; padding: 5rem 1.5rem; overflow: hidden; }
.tagline-band img { position: absolute; right: -50px; top: 50%; transform: translateY(-50%) rotate(-4deg); width: min(360px, 55vw); opacity: 0.07; pointer-events: none; }
.tagline-band p { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2rem, 5.5vw, 3.6rem); letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
.tagline-band small { display: block; margin-top: 1rem; font-family: 'Roboto Mono', monospace; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }

/* subtiel trex-watermerk op werkwijze + teampagina */
#werkwijze { position: relative; overflow: hidden; }
#werkwijze::after { content: ''; position: absolute; right: -70px; bottom: -50px; width: 320px; height: 320px; background: url('assets/trex.png') no-repeat center / contain; opacity: 0.05; pointer-events: none; }
.team-page { position: relative; }
.team-page::before { content: ''; position: absolute; right: -80px; top: 60px; width: 340px; height: 340px; background: url('assets/trex.png') no-repeat center / contain; opacity: 0.055; pointer-events: none; z-index: -1; }

/* team-teaser in contactsectie */
.team-teaser { display: flex; align-items: center; gap: 0.9rem; margin: 1.2rem 0 1.4rem; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--border); }
.tt-avatars { display: flex; }
.tt-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 0.82rem; color: #06210f; background: var(--grad); border: 2px solid var(--bg-2, #0B0E17); }
.tt-avatar + .tt-avatar { margin-left: -10px; }
.team-teaser p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.team-teaser a { color: var(--lime); font-weight: 700; }

/* team-pagina */
.team-page .lp-hero h1 { max-width: 720px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.3rem; margin: 1.2rem 0 2.6rem; }
.team-card { border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; gap: 1.2rem; }
.team-photo { position: relative; width: 128px; height: 128px; border-radius: 26px; background: var(--grad-soft); border: 1px solid var(--glow-border); display: grid; place-items: center; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.team-photo-note { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); font-family: 'Roboto Mono', monospace; font-size: 0.6rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.team-info h2 { font-size: 1.5rem; margin: 0 0 0.15rem; }
.team-role { font-family: 'Roboto Mono', monospace; font-size: 0.85rem; color: var(--teal); margin: 0 0 0.9rem; }
.team-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin: 0 0 0.8rem; }
.team-tags { list-style: none; padding: 0; margin: 0.4rem 0 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.team-tags li { font-size: 0.78rem; font-weight: 600; color: var(--text); background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 999px; padding: 0.35rem 0.8rem; }

/* "Meer info"-link op bot-kaarten → landingspagina */
.bot-more { display: inline-block; margin: 0.1rem 0 0.9rem; font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: color 0.2s; }
.bot-more:hover { color: var(--lime); }

/* footer link-hub */
.footer-hub { max-width: 1200px; margin: 0 auto; padding: 2.4rem 0 0.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.6rem; border-top: 1px solid var(--border); }
.footer-hub h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin: 0 0 0.7rem; }
.footer-hub a { display: block; color: var(--muted); font-size: 0.88rem; padding: 0.2rem 0; transition: color 0.2s; }
.footer-hub a:hover { color: var(--lime); }
@media (max-width: 720px) { .footer-hub { grid-template-columns: 1fr; gap: 1.4rem; } }


/* uitleg-bubbel in de chat wanneer de echte AI niet bereikbaar was */
.cb-msg.cb-warn p { background: rgba(217,119,6,0.14); border: 1px solid rgba(217,119,6,0.45); color: #fbbf24; font-size: 0.85rem; line-height: 1.5; }
.adv-why { margin-top: 0.6rem; font-size: 0.85rem; color: #fbbf24; }

/* ===== Launch-fixes ===== */
/* 1. Ankerlinks: sectietitel niet meer onder de vaste balk laten verdwijnen */
section[id], [id].section-anchor { scroll-margin-top: 104px; }
@media (max-width: 720px) { section[id], [id].section-anchor { scroll-margin-top: 88px; } }

/* 2. "AI-bots" nooit midden in het woord afbreken */
h1 .grad-text { white-space: nowrap; }

/* 3. Kaarten met ongelijke tekstlengte: geen grote lege gaten meer */
.team-grid, .get-grid { align-items: start; }

/* ===================================================================
   AANBOD-UPDATE: nieuwe prijsopbouw, echte reviews, Raptorflow
   =================================================================== */

/* --- botkaart: SVG-icoon i.p.v. emoji --- */
.bot-icon svg { width: 24px; height: 24px; color: var(--lime); }
.ci-icon svg { width: 20px; height: 20px; color: var(--lime); }

/* --- prijsblok op de botkaart --- */
.bot-prices { display: grid; gap: 0.35rem; margin: 1rem 0 0.9rem; padding: 0.85rem 0 0; border-top: 1px solid var(--border); }
.bot-prices > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.bot-prices dt { color: var(--muted); font-size: 0.86rem; }
.bot-prices dd { margin: 0; font-family: 'Roboto Mono', monospace; font-size: 0.95rem; font-weight: 500; color: var(--text); font-variant-numeric: tabular-nums; }
.bot-prices dd small { font-size: 0.75em; color: var(--muted-2); margin-left: 1px; }
.bot-prices .bp-main dt { color: var(--text); font-weight: 600; }
.bot-prices .bp-main dd { font-size: 1.35rem; font-weight: 600; color: var(--lime); }
.bot-foot { margin-top: auto; }
.add-btn.btn-block { width: 100%; justify-content: center; }

/* --- pakketkaart: waarde-opbouw --- */
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; margin-inline: auto; }
.price-save { margin: 0.7rem 0 0; font-size: 0.88rem; color: var(--muted); }
.price-save strong { color: var(--lime); font-weight: 700; }
.price-lead { margin: 0.35rem 0 0; font-size: 0.85rem; color: var(--muted-2); font-family: 'Roboto Mono', monospace; }
.pf-head { margin: 1.3rem 0 0.6rem; font-family: 'Roboto Mono', monospace; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.price-features li { display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem; padding-left: 1.8rem; }
.pf-val { font-family: 'Roboto Mono', monospace; font-size: 0.82rem; color: var(--muted-2); white-space: nowrap; font-variant-numeric: tabular-nums; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

/* --- reviews --- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; align-items: start; max-width: var(--maxw); margin-inline: auto; }
.review-card { padding: 1.7rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.9rem; }
.rev-stars { display: flex; gap: 2px; color: var(--lime); font-size: 1rem; line-height: 1; }
.rev-highlight { margin: 0; font-size: 1.08rem; font-weight: 700; line-height: 1.35; color: var(--text); text-wrap: balance; }
.rev-body { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.rev-body p { margin: 0 0 0.7rem; }
.rev-rest p:last-child { margin-bottom: 0; }
.rev-toggle { background: none; border: none; padding: 0; font-family: 'Roboto Mono', monospace; font-size: 0.78rem; color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.rev-toggle:hover { color: var(--lime); }
.rev-toggle:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
.rev-saving { margin: 0; padding: 0.7rem 0.9rem; border-radius: 10px; background: rgba(124, 255, 107, 0.08); border: 1px solid rgba(124, 255, 107, 0.22); font-size: 0.88rem; color: var(--text); }
.rev-saving span { display: block; font-family: 'Roboto Mono', monospace; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 0.2rem; }
.rev-meta { margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--border); display: flex; align-items: flex-end; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap; }
.rev-meta strong { font-size: 0.92rem; }
.rev-role { display: block; font-size: 0.8rem; color: var(--muted-2); }
.rev-lang { font-size: 0.75rem; color: var(--muted-2); font-weight: 400; }
.rev-product { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; color: var(--teal); text-align: right; max-width: 48%; line-height: 1.4; }
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: 1fr; max-width: 640px; } }

/* --- Raptorflow --- */
.rf-wrap { max-width: var(--maxw); margin-inline: auto; padding: 2.6rem 2.8rem; border-radius: var(--radius); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.rf-text { max-width: 46rem; }
.rf-title { font-size: clamp(2rem, 5vw, 2.8rem); margin: 0 0 0.7rem; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rf-desc { color: var(--muted); font-size: 1.02rem; margin: 0 0 1rem; }
.rf-date { margin: 0 0 1.4rem; font-family: 'Roboto Mono', monospace; font-size: 0.9rem; color: var(--muted); }
.rf-date strong { color: var(--lime); font-weight: 600; }
.rf-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.rf-promise { margin: 1rem 0 0; font-size: 0.84rem; color: var(--muted-2); }
.rf-mark { width: 180px; opacity: 0.16; flex: none; }
.rf-mark img { width: 100%; display: block; }
@media (max-width: 860px) { .rf-wrap { grid-template-columns: 1fr; padding: 2rem 1.5rem; } .rf-mark { display: none; } }

/* --- footer-linkcontainers --- */
.fh-links { display: contents; }

/* ===== Losse diensten — trainingspakket vooraan ===== */
.diensten-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; align-items: stretch; max-width: var(--maxw); margin-inline: auto; }
.dienst-card { position: relative; padding: 1.5rem 1.4rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.5rem; }
.dienst-card h3 { font-size: 1.05rem; margin: 0; }
.dienst-prijs { margin: 0; font-family: 'Roboto Mono', monospace; font-size: 1.25rem; font-weight: 600; color: var(--lime); font-variant-numeric: tabular-nums; }
.dienst-prijs small { font-size: 0.6em; font-weight: 400; color: var(--muted-2); margin-left: 2px; }
.dienst-desc { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.dienst-card .btn { margin-top: 0.8rem; }
.dienst-top { border-color: var(--glow-border); box-shadow: 0 0 0 1px var(--glow-border), var(--shadow); padding-top: 3.4rem; }
.dienst-top .badge-pop { top: 0.9rem; left: 1.4rem; transform: none; font-size: 0.66rem; padding: 0.3rem 0.75rem; }
@media (max-width: 1000px) { .diensten-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .diensten-grid { grid-template-columns: 1fr; } }

/* ===== Leerpakket als koopbaar artikel tussen de bots ===== */
.bot-extra { border-color: var(--glow-border); box-shadow: 0 0 0 1px var(--glow-border), var(--shadow); }
.bot-extra .bot-icon { background: var(--grad); }
.bot-extra .bot-icon svg { color: #06210f; }
.bot-reden { margin: 0 0 0.9rem; padding-left: 0.75rem; border-left: 2px solid var(--lime); color: var(--lime); font-size: 0.86rem; line-height: 1.55; }
.shop-note { max-width: 46rem; margin: 1.8rem auto 0; text-align: center; color: var(--muted-2); font-size: 0.9rem; line-height: 1.65; }
.shop-note strong { color: var(--muted); font-weight: 600; }

/* ===== Direct betalen in de checkout ===== */
.pay-block { margin: 1.1rem 0 0.6rem; padding: 1.1rem; border-radius: 12px; background: var(--surface); border: 1px solid var(--glow-border); }
.pay-note { margin: 0 0 0.8rem; font-size: 0.86rem; color: var(--muted); line-height: 1.55; }
.pay-terms { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.9rem; font-size: 0.86rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.pay-terms input { margin-top: 0.2rem; width: 17px; height: 17px; flex: none; accent-color: var(--lime); cursor: pointer; }
.pay-terms a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.pay-or { margin: 0.9rem 0 -0.2rem; text-align: center; font-size: 0.8rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.14em; }

/* ===== Resultaatpagina na betalen ===== */
.pay-result { max-width: 34rem; margin: 4rem auto; padding: 2.6rem 2.2rem; border-radius: var(--radius); text-align: center; }
.pay-result h1 { font-size: clamp(1.5rem, 4vw, 2rem); margin: 0 0 0.8rem; }
.pay-result .lead { color: var(--muted); margin: 0 0 1.4rem; }
.pay-result.is-paid { border-color: var(--glow-border); box-shadow: 0 0 0 1px var(--glow-border), var(--shadow); }
.pay-spinner { width: 36px; height: 36px; margin: 0 auto 1.2rem; border-radius: 50%; border: 3px solid var(--border-2); border-top-color: var(--lime); animation: paySpin 0.8s linear infinite; }
@keyframes paySpin { to { transform: rotate(360deg); } }
.pay-meta { display: flex; justify-content: center; gap: 2rem; margin: 0 0 1.6rem; flex-wrap: wrap; }
.pay-meta div { text-align: center; }
.pay-meta dt { font-family: 'Roboto Mono', monospace; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.2rem; }
.pay-meta dd { margin: 0; font-family: 'Roboto Mono', monospace; font-size: 1.05rem; color: var(--text); }
.pay-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.pay-fine { margin: 1.3rem 0 0; font-size: 0.82rem; color: var(--muted-2); }
@media (prefers-reduced-motion: reduce) { .pay-spinner { animation: none; } }

/* ===== Teamfoto's ===== */
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.tt-avatar { object-fit: cover; }
