/* DuifHosting WHMCS Template - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
  --bg: #050F1F;
  --dark: #0A2540;
  --card: #0D1F35;
  --secondary: #0F3A5F;
  --border: #1a3a5c;
  --accent: #00BFFF;
  --accent-hover: #00E5FF;
  --blue: #1E90FF;
  --text: #E0F0FF;
  --muted: #A0C4FF;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
	
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; }




.hero-section {
  position: relative;
  overflow: hidden;

  background-image: url('/templates/duifhosting/img/bannerhome.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Donkere overlay (voor leesbaarheid) */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.7) 0%,
    rgba(10, 10, 15, 0.85) 60%,
    rgba(10, 10, 15, 0.95) 100%
  );
  z-index: 0;
}

/* Zorg dat content erboven blijft */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Glow effect (subtiel, premium feel) */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 140, 255, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

/* Extra polish voor tekst */
.text-glow {
  text-shadow: 0 0 25px rgba(0, 140, 255, 0.25);
}

/* Gradient text iets mooier */
.gradient-text {
  background: linear-gradient(90deg, #00d4ff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons iets strakker */
.btn.glow-hover:hover {
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.4);
  transform: translateY(-2px);
  transition: 0.2s ease;
}


/* einde van eigen code

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { color: var(--text); font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
.gradient-text {
  background: linear-gradient(135deg, #00BFFF, #1E90FF, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-white { color: var(--text); }

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.main-content { flex: 1; padding-top: 104px; }

/* ===== Grid Background ===== */
.grid-bg {
  background-image:
    linear-gradient(rgba(0, 191, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== Glow Effects ===== */
.glow { box-shadow: 0 0 20px rgba(0, 191, 255, 0.25), 0 0 40px rgba(0, 191, 255, 0.1); }
.glow-hover:hover { box-shadow: 0 0 25px rgba(0, 229, 255, 0.4), 0 0 50px rgba(0, 229, 255, 0.15); }
.glow-border { border-color: rgba(0, 191, 255, 0.4) !important; box-shadow: 0 0 15px rgba(0, 191, 255, 0.1); }

/* ===== Cards ===== */
.card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 191, 255, 0.35);
  box-shadow: 0 8px 40px rgba(0, 191, 255, 0.12);
}
.card-flat { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; }
.card-secondary { background: var(--secondary); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; }
.card-popular { background: var(--secondary); border: 1px solid var(--accent); border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: 0 0 20px rgba(0, 191, 255, 0.25); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #16a34a; color: #fff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== Forms ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: rgba(160, 196, 255, 0.4); }
.form-control option { background: var(--dark); color: var(--text); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-check { display: flex; align-items: center; gap: 0.5rem; }
.form-check input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
.form-check label { color: var(--muted); font-size: 0.875rem; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-error { color: var(--danger); font-size: 0.8rem; margin-top: 0.35rem; }
.form-hint { color: var(--muted); font-size: 0.8rem; margin-top: 0.35rem; opacity: 0.7; }

/* ===== Promo Banner ===== */
.promo-banner {
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.promo-code {
  background: rgba(5,15,31,0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  margin: 0 0.25rem;
}
.promo-link {
  color: var(--bg);
  text-decoration: underline;
  margin-left: 0.75rem;
  font-weight: 700;
}
.promo-link:hover { text-decoration: none; color: var(--bg); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 15, 31, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(5, 15, 31, 0.98);
  backdrop-filter: blur(16px);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar-logo img { height: 36px; width: auto; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.navbar-nav a {
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--accent);
  background: var(--dark);
}
.navbar-actions { display: flex; align-items: center; gap: 0.75rem; }
.navbar-actions .btn-login {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.navbar-actions .btn-login:hover { color: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--accent); background: var(--dark); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: none;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--accent); background: var(--secondary); }

/* Mega dropdown */
.nav-mega {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  overflow: hidden;
  flex-direction: row;
}
.nav-dropdown:hover .nav-mega { display: flex; }
.mega-left { flex: 1; padding: 1.25rem; border-right: 1px solid var(--border); }
.mega-right { width: 260px; padding: 1.25rem; }
.mega-label { color: var(--muted); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 0.25rem;
}
.mega-item:hover { background: var(--secondary); }
.mega-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,191,255,0.1);
  border: 1px solid rgba(0,191,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.mega-item-text { display: flex; flex-direction: column; }
.mega-item-name { color: var(--text); font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.mega-item-desc { color: var(--muted); font-size: 0.75rem; margin-top: 0.15rem; }
.mega-feature { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem; }
.mega-feature-name { color: var(--text); font-size: 0.875rem; font-weight: 500; }
.mega-feature-desc { color: var(--muted); font-size: 0.75rem; }
.mega-status { margin-top: 1.25rem; padding: 0.75rem; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.25rem; }

/* Navbar discord + divider */
.navbar-discord {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.navbar-discord:hover { color: #5865F2; border-color: var(--border); background: var(--dark); }
.navbar-divider { width: 1px; height: 20px; background: var(--border); }

/* Mobile nav */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu {
  display: none;
  background: rgba(10, 37, 64, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.mobile-menu a:hover { color: var(--accent); background: var(--secondary); }
.mobile-menu-divider { border-top: 1px solid var(--border); margin: 0.75rem 0; }
@media (max-width: 1024px) {
  .navbar-nav, .navbar-actions .btn-login { display: none; }
  .navbar-toggle { display: flex; }
}

/* ===== Footer ===== */



.footer-payments {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 36px;
  padding: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.payment-badge:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.3);
}

.payment-badge img {
  width: 40px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.payment-badge:hover img {
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .footer-payments {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .payment-badge {
    width: 46px;
    height: 32px;
  }
  
  .payment-badge img {
    width: 34px;
    height: 20px;
  }
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-legal p:last-child {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-legal {
    order: 3;
    text-align: center;
  }
}



.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin: 1rem 0; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.footer-social-btn:hover { color: var(--accent); border-color: var(--accent); }
.footer-col h4 { color: var(--text); font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-payments { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.payment-badge {
  padding: 0.25rem 0.5rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}
.footer-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ===== Alerts / Flash Messages ===== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid;
}
.alert-success { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: #86efac; }
.alert-danger, .alert-error { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: #fca5a5; }
.alert-warning { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: #fcd34d; }
.alert-info { background: rgba(0, 191, 255, 0.1); border-color: rgba(0, 191, 255, 0.3); color: var(--accent); }

/* ===== Badges ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-accent { background: rgba(0, 191, 255, 0.15); color: var(--accent); border: 1px solid rgba(0, 191, 255, 0.3); }
.badge-success { background: rgba(34, 197, 94, 0.15); color: #86efac; border: 1px solid rgba(34, 197, 94, 0.3); }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: #fcd34d; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-muted { background: rgba(160, 196, 255, 0.1); color: var(--muted); border: 1px solid var(--border); }
.badge-popular { background: var(--accent); color: var(--bg); }

/* ===== Tables ===== */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-xl); border: 1px solid var(--border); }
table.duif-table { width: 100%; border-collapse: collapse; }
.duif-table thead tr { background: var(--secondary); }
.duif-table thead th {
  padding: 0.875rem 1rem;
  text-align: left;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.duif-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.duif-table tbody tr:last-child { border-bottom: none; }
.duif-table tbody tr:hover { background: rgba(10, 37, 64, 0.5); }
.duif-table tbody td { padding: 0.875rem 1rem; color: var(--text); font-size: 0.875rem; }
.duif-table tbody td.muted { color: var(--muted); }

/* ===== Pagination ===== */
.pagination { display: flex; align-items: center; gap: 0.35rem; justify-content: center; margin-top: 1.5rem; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--dark);
  color: var(--muted);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .active { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* ===== Tabs ===== */
.tabs { display: flex; background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0.25rem; gap: 0.25rem; }
.tab-btn {
  flex: 1;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--muted);
  transition: all 0.2s;
}
.tab-btn.active { background: var(--accent); color: var(--bg); }
.tab-btn:hover:not(.active) { color: var(--text); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== Sidebar Layout ===== */
.client-layout { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; align-items: start; }
.sidebar {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  position: sticky;
  top: 112px;
}
.sidebar-section { margin-bottom: 1.5rem; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-label { color: var(--muted); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; padding: 0 0.5rem; }
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  color: var(--muted);
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.sidebar-nav li a:hover, .sidebar-nav li a.active {
  color: var(--accent);
  background: rgba(0, 191, 255, 0.08);
}
.sidebar-nav li a svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 1024px) { .client-layout { grid-template-columns: 1fr; } .sidebar { position: static; } }

/* ===== Page Header ===== */
.page-header { padding: 3rem 0 2rem; }
.page-header-label { color: var(--accent); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.page-header p { font-size: 1.05rem; max-width: 560px; }

/* ===== Pricing Cards ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.pricing-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 191, 255, 0.35);
  box-shadow: 0 8px 40px rgba(0, 191, 255, 0.12);
}
.pricing-card.popular {
  background: var(--secondary);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.25);
}
.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.pricing-name { color: var(--text); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.pricing-price { display: flex; align-items: flex-end; gap: 0.25rem; margin-bottom: 1.25rem; }
.pricing-price .amount { font-size: 2rem; font-weight: 800; color: var(--accent); }
.pricing-price .period { color: var(--muted); font-size: 0.8rem; margin-bottom: 0.25rem; }
.pricing-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.25rem; }
.pricing-spec { background: rgba(5, 15, 31, 0.5); border-radius: 8px; padding: 0.5rem; text-align: center; }
.pricing-spec .spec-label { color: var(--muted); font-size: 0.7rem; }
.pricing-spec .spec-value { color: var(--text); font-size: 0.85rem; font-weight: 600; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 1.25rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0.3rem 0;
}
.pricing-features li svg { color: var(--accent); flex-shrink: 0; width: 13px; height: 13px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 0.75rem 0; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row .label { color: var(--muted); }
.pricing-row .value { color: var(--text); font-weight: 500; }

/* ===== Order Flow ===== */
.order-steps { display: flex; align-items: center; gap: 0; margin-bottom: 2.5rem; }
.order-step { display: flex; align-items: center; gap: 0.5rem; }
.order-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--muted);
  background: var(--dark);
  flex-shrink: 0;
}
.order-step.active .order-step-num { border-color: var(--accent); color: var(--accent); background: rgba(0, 191, 255, 0.1); }
.order-step.done .order-step-num { border-color: var(--success); background: var(--success); color: #fff; }
.order-step-label { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.order-step.active .order-step-label { color: var(--text); }
.order-step-line { flex: 1; height: 1px; background: var(--border); margin: 0 0.75rem; }
.order-step-line.done { background: var(--success); }
@media (max-width: 640px) { .order-step-label { display: none; } }

/* ===== Cart / Checkout ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 1.5rem; align-items: start; }
.cart-summary { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; position: sticky; top: 112px; }
.cart-summary h3 { margin-bottom: 1.25rem; font-size: 1.1rem; }
.cart-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.cart-item:last-of-type { border-bottom: none; }
.cart-item-name { color: var(--text); font-size: 0.9rem; font-weight: 500; }
.cart-item-desc { color: var(--muted); font-size: 0.8rem; margin-top: 0.2rem; }
.cart-item-price { color: var(--accent); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.cart-total { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; margin-top: 0.5rem; border-top: 1px solid var(--border); }
.cart-total .label { color: var(--text); font-weight: 600; }
.cart-total .amount { color: var(--accent); font-size: 1.25rem; font-weight: 800; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .cart-summary { position: static; } }

/* ===== Invoice ===== */
.invoice-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.invoice-meta p { font-size: 0.875rem; margin-bottom: 0.25rem; }
.invoice-meta strong { color: var(--text); }
.invoice-table th { text-align: left; padding: 0.75rem 1rem; color: var(--muted); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
.invoice-table td { padding: 0.875rem 1rem; font-size: 0.875rem; border-bottom: 1px solid var(--border); }
.invoice-totals { margin-top: 1rem; display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.invoice-total-row { display: flex; gap: 3rem; font-size: 0.875rem; }
.invoice-total-row.grand { font-size: 1.1rem; font-weight: 700; color: var(--text); border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.25rem; }
.invoice-total-row .label { color: var(--muted); }
.invoice-total-row .value { color: var(--text); min-width: 80px; text-align: right; }
.invoice-total-row.grand .value { color: var(--accent); }

/* ===== Ticket ===== */
.ticket-message { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1rem; }
.ticket-message.staff { background: var(--secondary); border-color: rgba(0, 191, 255, 0.2); }
.ticket-message-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.ticket-message-author { font-weight: 600; font-size: 0.875rem; color: var(--text); }
.ticket-message.staff .ticket-message-author { color: var(--accent); }
.ticket-message-date { color: var(--muted); font-size: 0.8rem; }
.ticket-message-body { color: var(--muted); font-size: 0.875rem; line-height: 1.7; white-space: pre-wrap; }

/* ===== Service Details ===== */
.service-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.service-stat { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; }
.service-stat .stat-value { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 0.25rem; }
.service-stat .stat-label { color: var(--muted); font-size: 0.8rem; }

/* ===== Hero Section ===== */
.hero-section { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: rgba(0,191,255,0.05);
  filter: blur(80px);
  pointer-events: none;
}
.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ===== Text Glow ===== */
.text-glow { text-shadow: 0 0 30px rgba(0, 191, 255, 0.5); }

/* ===== Noise Overlay ===== */
.noise { position: relative; }
.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===== Upgrade / Plan comparison ===== */
.upgrade-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.upgrade-card { background: var(--dark); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.upgrade-card:hover { transform: translateY(-3px); border-color: rgba(0,191,255,0.35); box-shadow: 0 8px 40px rgba(0,191,255,0.12); }
.upgrade-card.current { border-color: var(--accent); box-shadow: 0 0 20px rgba(0,191,255,0.2); }
.upgrade-card.current::before { content: "Huidig pakket"; display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.75rem; }

/* ===== Credit card form ===== */
.card-preview {
  background: linear-gradient(135deg, var(--secondary), var(--dark));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  font-family: 'Courier New', monospace;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.card-preview::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(0,191,255,0.06);
}
.card-preview .card-number { font-size: 1.25rem; letter-spacing: 0.2em; color: var(--text); margin-bottom: 1.25rem; }
.card-preview .card-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); }

/* ===== Service Details Grid ===== */
.service-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } }

/* ===== Animations ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.animate-fade-up { animation: fadeUp 0.5s ease forwards; }
.animate-fade-in { animation: fadeIn 0.4s ease forwards; }

/* ===== Utilities ===== */
/* ===== Two-column responsive grid ===== */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .grid-2col { grid-template-columns: 1fr; gap: 2rem; } }

.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.w-full { width: 100%; }
.hidden { display: none; }
.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; }
