/* ═══════════════════════════════════════════════════════
   Convypanel Landing Page
   ═══════════════════════════════════════════════════════ */

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.landing-body {
  font-family: 'Inter', sans-serif;
  background: #050a15;
  color: #e2e8f0;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Animated mesh background ── */
.mesh-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
  top: -300px; left: -200px;
  animation-delay: 0s;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #f97316 0%, transparent 70%);
  top: 50%; right: -150px;
  animation-delay: -7s;
  animation-duration: 25s;
}
.blob-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #818cf8 0%, transparent 70%);
  bottom: 100px; left: 30%;
  animation-delay: -14s;
  animation-duration: 22s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -40px) scale(1.05); }
  66%       { transform: translate(-40px, 30px) scale(0.95); }
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Everything above the fixed bg */
.l-nav, section, footer { position: relative; z-index: 2; }

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.l-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
}
.l-nav.scrolled {
  background: rgba(5, 10, 21, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.l-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 32px; height: 32px;
  border: 2px solid #22d3ee;
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::before {
  content: '';
  position: absolute;
  left: 6px; top: 6px;
  width: 5px; height: 14px;
  border-left: 2px solid #22d3ee;
  border-bottom: 2px solid #22d3ee;
}
.brand-mark::after {
  content: '';
  position: absolute;
  right: 6px; top: 6px;
  width: 5px; height: 14px;
  border-right: 2px solid #22d3ee;
  border-bottom: 2px solid #22d3ee;
}
.brand-mark.small { width: 22px; height: 22px; }
.brand-mark.small::before, .brand-mark.small::after { left: 4px; right: 4px; top: 4px; width: 3px; height: 10px; }
.brand-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #e2e8f0;
}
.brand-text.small { font-size: 11px; }

.l-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.l-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.l-links a:hover { color: #e2e8f0; }

/* Reuse .btn .btn-primary from panel.css, just ensure sizing */
.l-nav .btn { font-size: 13px; padding: 7px 18px; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 60px;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  flex: 1;
  max-width: 580px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #22d3ee;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 8px #22d3ee;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px #22d3ee; opacity: 1; }
  50%       { box-shadow: 0 0 14px #22d3ee; opacity: 0.7; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f8fafc;
  margin-bottom: 20px;
}

.grad-text {
  background: linear-gradient(120deg, #22d3ee 0%, #818cf8 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 6s ease-in-out infinite;
  background-size: 200% 100%;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Override panel.css btn sizes for hero */
.btn-lg {
  font-size: 15px !important;
  padding: 12px 28px !important;
  border-radius: 10px !important;
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: #94a3b8;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 500;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
  border-color: rgba(255,255,255,0.2);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
}
.hbadge:hover { background: rgba(255,255,255,0.08); color: #e2e8f0; }
.hbadge-ico {
  font-size: 13px;
  padding: 2px 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}
.mc-bg   { background: rgba(34,197,94,0.12) !important; }
.fivem-bg{ background: rgba(249,115,22,0.12) !important; }

/* ── Terminal mockup ── */
.hero-terminal {
  flex-shrink: 0;
  width: 420px;
  background: rgba(2, 8, 20, 0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(34,211,238,0.05),
    0 32px 80px rgba(0,0,0,0.5),
    0 0 40px rgba(34,211,238,0.04);
}
.term-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.term-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.term-dot.red    { background: #ef4444; }
.term-dot.yellow { background: #eab308; }
.term-dot.green  { background: #22c55e; }
.term-title {
  margin-left: 10px;
  font-size: 11px;
  color: #64748b;
  font-family: 'JetBrains Mono', monospace;
}
.term-body {
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #94a3b8;
  min-height: 260px;
  line-height: 1.7;
}
.term-body .t-green  { color: #22c55e; }
.term-body .t-cyan   { color: #22d3ee; }
.term-body .t-orange { color: #f97316; }
.term-body .t-yellow { color: #eab308; }
.term-body .t-dim    { color: #475569; }
.term-body .t-white  { color: #f1f5f9; }
.term-body .t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: #22d3ee;
  vertical-align: middle;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ══════════════════════════════════════════
   STATS
   ══════════════════════════════════════════ */
.stats-section {
  padding: 24px 24px 64px;
}
.stats-row {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.stat-item {
  background: rgba(5,10,21,0.95);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #f8fafc;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════ */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #22d3ee;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f8fafc;
  line-height: 1.15;
  margin-bottom: 48px;
}
.dim   { color: #64748b; }
.small { font-size: 13px; }

/* ══════════════════════════════════════════
   GAMES (expanding cards)
   ══════════════════════════════════════════ */
.games-section { padding: 80px 0; }

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.game-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.game-card.mc:hover, .game-card.mc.open {
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 0 40px rgba(34,197,94,0.05);
}
.game-card.fivem:hover, .game-card.fivem.open {
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 0 40px rgba(249,115,22,0.05);
}

.game-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.game-card-head:hover { background: rgba(255,255,255,0.02); }

.game-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.game-icon.mc-bg    { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.2); }
.game-icon.fivem-bg { background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.2); }

.game-meta { flex: 1; }
.game-meta h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.new-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(249,115,22,0.15);
  color: #f97316;
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px;
  padding: 2px 8px;
}

.game-card-arrow {
  font-size: 22px;
  color: #475569;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s;
  width: 28px;
  text-align: center;
}
.game-card.open .game-card-arrow {
  transform: rotate(90deg);
  color: #22d3ee;
}
.game-card.fivem.open .game-card-arrow { color: #f97316; }

.game-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.game-card.open .game-card-body { max-height: 500px; }

.game-features {
  padding: 0 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gf-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 16px;
}
.gf-ico {
  font-size: 18px;
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gf-item b { color: #e2e8f0; font-size: 14px; display: block; margin-bottom: 3px; }
.gf-item p { color: #64748b; font-size: 13px; line-height: 1.5; margin: 0; }

.game-ports {
  padding: 12px 24px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.port-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.15);
  color: #22d3ee;
}
.port-chip.fivem-port {
  background: rgba(249,115,22,0.08);
  border-color: rgba(249,115,22,0.2);
  color: #f97316;
}

/* ══════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════ */
.features-section { padding: 80px 0; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.feat-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(34,211,238,0.2);
  transform: translateY(-3px);
}
.feat-ico {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.feat-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}
.feat-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.how-section { padding: 80px 0; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step-item {
  padding: 0 32px 0 0;
  position: relative;
}
.step-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(34,211,238,0.15);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.step-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(34,211,238,0.4) 0%, rgba(34,211,238,0.05) 100%);
  margin-bottom: 20px;
  position: relative;
}
.step-line::before {
  content: '';
  position: absolute;
  left: 0; top: -4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 10px rgba(34,211,238,0.5);
}
.step-line.last {
  background: linear-gradient(90deg, rgba(249,115,22,0.4) 0%, transparent 100%);
}
.step-line.last::before { background: #f97316; box-shadow: 0 0 10px rgba(249,115,22,0.5); }

.step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════
   CTA
   ══════════════════════════════════════════ */
.cta-section { padding: 80px 0 100px; }

.cta-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(34,211,238,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f8fafc;
  margin-bottom: 12px;
}
.cta-content p { font-size: 16px; margin-bottom: 28px; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.l-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
}
.l-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding-top: 96px;
    gap: 40px;
  }
  .hero-terminal { width: 100%; max-width: 480px; }
  .games-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step-line { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .l-links { display: none; }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 40px 24px; }
  .l-footer-inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   HERO compact (nieuwe landing)
   ══════════════════════════════════════════ */
.hero-compact {
  padding: 120px 24px 60px;
  text-align: center;
  display: block;
}
.hero-compact .hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.hero-compact .hero-sub { max-width: 600px; margin: 0 auto 0; }
.hero-compact .hero-cta { justify-content: center; }

/* ══════════════════════════════════════════
   KEUZE SECTIE — Cloud vs Desktop
   ══════════════════════════════════════════ */
.choice-section { padding: 20px 0 80px; }

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.choice-card {
  position: relative;
  border-radius: 24px;
  padding: 36px 32px 32px;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .25s, border-color .25s;
}
.choice-card:hover { transform: translateY(-4px); }

.cloud-card {
  background: linear-gradient(145deg, rgba(34,211,238,.06), rgba(129,140,248,.04));
  border-color: rgba(34,211,238,.2);
}
.desktop-card {
  background: linear-gradient(145deg, rgba(249,115,22,.06), rgba(251,191,36,.04));
  border-color: rgba(249,115,22,.2);
}

.choice-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: .25;
}
.cloud-glow  { background: #22d3ee; }
.desktop-glow { background: #f97316; }

.choice-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
  width: fit-content;
}
.cloud-badge   { background: rgba(34,211,238,.1);  color: #22d3ee;  border: 1px solid rgba(34,211,238,.25); }
.desktop-badge { background: rgba(249,115,22,.1);  color: #f97316;  border: 1px solid rgba(249,115,22,.25); }

.choice-title {
  font-size: 26px;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.free-pill {
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: .06em;
}

.choice-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 24px;
}

.choice-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.choice-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}
.cf-check {
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.cloud-check   { color: #22d3ee; }
.desktop-check { color: #f97316; }

.choice-plans {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.choice-plan-pill {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid;
  border-radius: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,.03);
}

.desktop-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.ds-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
}
.ds-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(249,115,22,.15);
  color: #f97316;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(249,115,22,.25);
}

.choice-cta {
  width: 100%;
  justify-content: center;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: opacity .2s, transform .15s;
  display: flex;
  align-items: center;
}
.choice-cta:hover { opacity: .85; transform: translateY(-1px); }

.cloud-cta   { background: #22d3ee; color: #000 !important; border: none; }
.desktop-cta { background: #f97316; color: #000 !important; border: none; }

/* Migration strip */
.migration-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.ms-icon { font-size: 28px; flex-shrink: 0; }
.ms-text { flex: 1; font-size: 14px; color: #94a3b8; min-width: 200px; }
.ms-text strong { color: #f8fafc; }

/* ══════════════════════════════════════════
   HOW — twee kolommen
   ══════════════════════════════════════════ */
.how-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.how-col {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 28px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.how-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.how-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.cloud-num   { background: rgba(34,211,238,.12); color: #22d3ee; border: 1px solid rgba(34,211,238,.2); }
.desktop-num { background: rgba(249,115,22,.12); color: #f97316; border: 1px solid rgba(249,115,22,.2); }

.how-step strong { display: block; color: #f8fafc; font-size: 14px; margin-bottom: 4px; }
.how-step p      { color: #64748b; font-size: 13px; margin: 0; }

.how-col-badge { margin-bottom: 4px; }

/* ══════════════════════════════════════════
   DOWNLOAD PAGE
   ══════════════════════════════════════════ */
.download-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}

.dl-header {
  text-align: center;
  margin-bottom: 40px;
}

.dl-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 16px;
}

.dl-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.dl-sub {
  font-size: 16px;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.dl-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 20px;
}

.dl-coming-soon {
  text-align: center;
  border-color: rgba(249,115,22,.2);
}

.dl-cs-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.dl-coming-soon h2 {
  font-size: 24px;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 12px;
}

.dl-coming-soon > p {
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.7;
}

.dl-preview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-bottom: 32px;
}

.dl-pf {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 16px;
}

.dl-pf-ico { font-size: 24px; flex-shrink: 0; }
.dl-pf strong { display: block; color: #f8fafc; font-size: 13px; margin-bottom: 4px; }
.dl-pf p { color: #64748b; font-size: 12px; margin: 0; line-height: 1.5; }

.dl-btn-row { display: flex; justify-content: center; }

.btn-dl-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #22d3ee;
  border: none;
  border-radius: 14px;
  color: #000;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
  margin-bottom: 20px;
}
.btn-dl-main:hover { opacity: .88; transform: translateY(-2px); }

.dl-os-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dl-os-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dl-version-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(34,211,238,.1);
  color: #22d3ee;
  border: 1px solid rgba(34,211,238,.2);
  border-radius: 100px;
  padding: 4px 12px;
}

.dl-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #475569;
  justify-content: center;
}

.dl-alt-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(34,211,238,.04);
  border: 1px solid rgba(34,211,238,.15);
  border-radius: 14px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

/* Responsive toevoegingen */
@media (max-width: 720px) {
  .choice-grid  { grid-template-columns: 1fr; }
  .how-two-col  { grid-template-columns: 1fr; }
  .dl-preview-features { grid-template-columns: 1fr; }
  .dl-alt-strip { flex-direction: column; text-align: center; }
  .migration-strip { flex-direction: column; text-align: center; }
}
