/* ============================================
   ARshop.nl — Gedeelde stijlen
   ============================================ */

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

:root {
  --black: #0e0e0e;
  --white: #f5f3ee;
  --accent: #c8ff4a;
  --gray: #aaa;
  --card-bg: #161616;
  --border: rgba(255,255,255,0.08);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Navigatie ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}

.logo span { color: var(--accent); }

nav ul { display: flex; gap: 2.5rem; list-style: none; }
nav ul a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
nav ul a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
}

/* ── Hero ── */
.hero { padding: 6rem 4rem 4rem; max-width: 1200px; margin: 0 auto; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,255,74,0.1);
  border: 1px solid rgba(200,255,74,0.25);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ar-explain {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #1c1c1c;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.ar-explain-label { font-size: 0.75rem; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.ar-explain-text { font-size: 0.85rem; color: #ffffff; }

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #ffffff;
}

h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* ── Knoppen ── */
.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-ghost {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.btn-ghost:hover { opacity: 1; }

/* ── Browser mockup ── */
.hero-visual {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
}

.browser-bar {
  background: #1c1c1c;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.browser-url {
  background: #252525;
  border-radius: 0.4rem;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  color: var(--gray);
  margin-left: 0.75rem;
  flex: 1;
  max-width: 300px;
}

.demo-screen {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.demo-product {
  background: #1e1e1e;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  position: relative;
}

.product-icon {
  width: 80px;
  height: 80px;
  background: #2a2a2a;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.ar-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ar-btn {
  background: rgba(200,255,74,0.12);
  border: 1px solid rgba(200,255,74,0.3);
  color: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.ar-btn:hover { background: rgba(200,255,74,0.2); }
.product-name { font-size: 0.85rem; color: #ffffff; font-weight: 500; text-align: center; }
.product-price { font-size: 0.8rem; color: var(--gray); }

/* ── Stats ── */
.stats {
  display: flex;
  gap: 3rem;
  padding: 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-item { flex: 1; min-width: 140px; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: #ffffff; letter-spacing: -0.03em; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--gray); margin-top: 0.25rem; }

/* ── Secties ── */
.section { padding: 6rem 4rem; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #ffffff;
}

.section-sub { color: #bbbbbb; font-size: 1rem; max-width: 480px; margin-bottom: 3.5rem; }

/* ── Stappen ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: border-color 0.2s;
}

.step:hover { border-color: rgba(200,255,74,0.3); }
.step-num { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 1rem; }
.step-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.step h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: #ffffff; }
.step p { font-size: 0.85rem; color: #aaaaaa; line-height: 1.6; }

/* ── Prijzen ── */
.pricing { padding: 6rem 4rem; max-width: 1200px; margin: 0 auto; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.25rem; margin-top: 3.5rem; }

.plan {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.plan:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.plan.featured { border-color: var(--accent); background: #141a0a; }

.plan-badge {
  background: var(--accent);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.plan-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: #ffffff; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: #ffffff; letter-spacing: -0.03em; line-height: 1; margin: 0.75rem 0 0.25rem; }
.plan-price sup { font-size: 1rem; font-weight: 400; vertical-align: super; margin-right: 2px; }
.plan-period { font-size: 0.8rem; color: var(--gray); margin-bottom: 1rem; }
.plan-products { font-size: 0.9rem; color: #ffffff; font-weight: 500; padding: 0.75rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 0.5rem 0; }
.plan-products span { color: var(--accent); }
.plan-per { font-size: 0.8rem; color: var(--gray); }

.plan-features { list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.plan-features li { font-size: 0.82rem; color: #aaaaaa; display: flex; align-items: center; gap: 0.5rem; }
.plan-features li::before { content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

.plan-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.plan-btn:hover { transform: translateY(-1px); opacity: 0.85; }
.plan-btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.15) !important; color: #ffffff; }
.plan-btn-solid { background: var(--accent); color: var(--black); }

/* ── CTA sectie ── */
.cta-section {
  margin: 2rem 4rem 6rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,255,74,0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section p { color: #bbbbbb; font-size: 1rem; max-width: 420px; margin: 1rem auto 2.5rem; }

/* ── Forms ── */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 480px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; color: #cccccc; margin-bottom: 0.5rem; }

.form-input {
  width: 100%;
  background: #1c1c1c;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus { border-color: rgba(200,255,74,0.5); }
.form-input::placeholder { color: #555; }

select.form-input option { background: #1c1c1c; }

/* ── Dashboard cards ── */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }

.dash-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.dash-card-label { font-size: 0.8rem; color: var(--gray); margin-bottom: 0.5rem; }
.dash-card-value { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: #ffffff; }
.dash-card-value span { color: var(--accent); font-size: 1rem; font-weight: 400; margin-left: 0.25rem; }

/* ── Upload zone ── */
.upload-zone {
  border: 2px dashed rgba(200,255,74,0.3);
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover { border-color: var(--accent); background: rgba(200,255,74,0.03); }
.upload-zone-icon { font-size: 3rem; margin-bottom: 1rem; }
.upload-zone-text { color: #cccccc; font-size: 0.95rem; }
.upload-zone-sub { color: var(--gray); font-size: 0.8rem; margin-top: 0.5rem; }

/* ── Status badges ── */
.badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 1rem; font-size: 0.75rem; font-weight: 500; }
.badge-processing { background: rgba(250,199,117,0.15); color: #fac775; }
.badge-live { background: rgba(200,255,74,0.15); color: var(--accent); }
.badge-error { background: rgba(226,75,74,0.15); color: #e24b4a; }

/* ── Tabel ── */
.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; font-size: 0.75rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
.table td { padding: 1rem; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: #cccccc; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── Footer ── */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p { font-size: 0.8rem; color: var(--gray); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--gray); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* ── Pagina wrapper ── */
.page-wrapper { padding: 4rem; max-width: 1200px; margin: 0 auto; }
.page-header { margin-bottom: 3rem; }
.page-header h2 { margin-bottom: 0.5rem; }
.page-header p { color: var(--gray); font-size: 0.95rem; }
