/* ============================================================
   FreshNG Meldingssysteem — Pantheon Automatisering
   Design: Dark mode, glassmorphism, premium aesthetics
   ============================================================ */

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

:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --emerald-400: #34d399;
  --emerald-500: #10b981;

  --slate-800: #1e293b;
  --slate-850: #172033;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.07);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(45, 212, 191, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--slate-950);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- Animated Background Particles ---- */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 12s infinite;
}

.particle:nth-child(1) { width: 6px; height: 6px; left: 10%; background: var(--teal-400); animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(2) { width: 4px; height: 4px; left: 25%; background: var(--emerald-400); animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(3) { width: 8px; height: 8px; left: 50%; background: var(--teal-300); animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 70%; background: var(--emerald-500); animation-delay: 6s; animation-duration: 13s; }
.particle:nth-child(5) { width: 3px; height: 3px; left: 85%; background: var(--teal-400); animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 40%; background: var(--teal-500); animation-delay: 8s; animation-duration: 15s; }

@keyframes floatUp {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ---- Gradient mesh background ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(13, 148, 136, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(45, 212, 191, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ---- Brand ---- */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.4));
  transition: filter var(--transition);
}

.nav-brand:hover .brand-logo svg {
  filter: drop-shadow(0 0 20px rgba(45, 212, 191, 0.7));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--teal-400);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ---- Nav Actions ---- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--glass-hover);
}

/* ---- Buttons ---- */
.btn-login,
.btn-primary,
.btn-secondary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-login {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  color: white;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 4px 16px rgba(45, 212, 191, 0.25);
}

.btn-login::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-login:hover::before { opacity: 1; }
.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.4);
}
.btn-login:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: white;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(45, 212, 191, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 212, 191, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-secondary);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  color: var(--text-primary);
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1em;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 120px 2rem 80px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--teal-300);
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal-300) 0%, var(--emerald-400) 50%, var(--teal-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.hero-subtitle strong {
  color: var(--teal-300);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.25rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: fit-content;
  margin-top: 0.5rem;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-300);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* ---- Hero Visual ---- */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card-main {
  width: 340px;
  padding: 1.5rem;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.card-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28c840; }

.card-title-sm {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.data-row:hover {
  background: rgba(255,255,255,0.06);
}

.data-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.data-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.data-badge.green  { background: rgba(52, 211, 153, 0.15); color: var(--emerald-400); border: 1px solid rgba(52, 211, 153, 0.2); }
.data-badge.yellow { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.2); }
.data-badge.blue   { background: rgba(96, 165, 250, 0.15); color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.2); }

.progress-section { margin-top: 0.25rem; }

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
  border-radius: 999px;
  animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
  from { width: 0; }
}

.card-float-1 {
  position: absolute;
  top: 20px;
  right: 0;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: floatCard 7s ease-in-out infinite 1s;
  border-radius: var(--radius-md);
}

.card-float-2 {
  position: absolute;
  bottom: 40px;
  right: 20px;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: floatCard 8s ease-in-out infinite 2s;
  border-radius: var(--radius-md);
}

.float-icon {
  font-size: 1.25rem;
}

.float-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ---- Sections ---- */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.section-dark {
  background: rgba(15, 23, 42, 0.6);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-cta {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  color: var(--teal-400);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Info Cards Grid ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-500), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.info-card:hover {
  border-color: rgba(45, 212, 191, 0.2);
  background: var(--glass-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(45, 212, 191, 0.08);
}

.info-card:hover::before {
  opacity: 1;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.info-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.info-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Features List ---- */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.feature-item:hover {
  background: var(--glass-hover);
  border-color: rgba(45, 212, 191, 0.2);
  transform: translateX(4px);
}

.feature-check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
}

.feature-content { flex: 1; }

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- CTA Section ---- */
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(45, 212, 191, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  animation: bellRing 3s ease-in-out infinite;
}

@keyframes bellRing {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%  { transform: rotate(12deg); }
  94%  { transform: rotate(-10deg); }
  96%  { transform: rotate(8deg); }
  98%  { transform: rotate(-6deg); }
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.cta-text strong {
  color: var(--teal-300);
  font-weight: 600;
}

.cta-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.15);
  color: var(--teal-300);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.cta-support {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-support a {
  color: var(--teal-400);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.cta-support a:hover {
  color: var(--teal-300);
  text-decoration: underline;
}

/* ---- Footer ---- */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(2, 6, 23, 0.9);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: var(--teal-400);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ---- Modal / Access Denied ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(45, 212, 191, 0.1);
  animation: slideUpModal 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.modal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal-500), transparent);
}

@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.modal-text {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-text strong {
  color: var(--teal-300);
}

.modal-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.modal-support {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.modal-support a {
  color: var(--teal-400);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.modal-support a:hover {
  color: var(--teal-300);
  text-decoration: underline;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar        { width: 8px; }
::-webkit-scrollbar-track  { background: var(--slate-950); }
::-webkit-scrollbar-thumb  { background: var(--slate-800); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-800); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
    gap: 2.5rem;
  }

  .hero-subtitle { margin: 0 auto; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { margin: 0 auto; }
  .hero-badge    { margin: 0 auto; }

  .hero-visual {
    height: 340px;
    order: -1;
  }

  .card-main { width: 280px; }
}

@media (max-width: 600px) {
  .nav-inner     { padding: 0 1rem; }
  .section       { padding: 4rem 1.25rem; }
  .hero          { padding: 100px 1.25rem 60px; }
  .hero-title    { font-size: 2.4rem; }
  .info-grid     { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .cta-box       { padding: 2rem 1.5rem; }
  .modal-box     { padding: 2rem 1.5rem; }
  .hero-stats    { flex-direction: column; gap: 0.5rem; }
  .stat-divider  { width: 80px; height: 1px; }
  .nav-link      { display: none; }
  .brand-sub     { display: none; }
}
