:root {
  /* Primary Colors */
  --neon-cyan: #00fff9;
  --neon-magenta: #ff00ff;
  --neon-green: #39ff14;
  --neon-yellow: #ffff00;

  /* Backgrounds */
  --dark-bg: #0a0a0f;
  --darker-bg: #050508;
  --glass-bg: rgba(10, 10, 15, 0.95);
  --card-bg: rgba(0, 0, 0, 0.4);
  --card-bg-hover: rgba(0, 255, 249, 0.02);

  /* Text Colors (Gray Scale) */
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #999999;
  --text-dim: #888888;
  --text-subtle: #666666;
  --text-faint: #555555;
  --text-ghost: #444444;

  /* Border Colors */
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-cyan: rgba(0, 255, 249, 0.2);
  --border-cyan-hover: rgba(0, 255, 249, 0.4);
  --border-green: rgba(57, 255, 20, 0.3);
  --border-magenta: rgba(255, 0, 255, 0.2);

  /* Warning/Notice Colors */
  --warning-bg: rgba(255, 215, 0, 0.1);
  --warning-border: rgba(255, 215, 0, 0.3);
  --warning-text: #ffd700;
  --error-bg: rgba(255, 100, 100, 0.1);
  --error-border: rgba(255, 100, 100, 0.3);
  --error-text: #ff6b6b;
  --success-bg: rgba(57, 255, 20, 0.1);
  --success-border: rgba(57, 255, 20, 0.3);
  --success-text: var(--neon-green);

  /* Typography Scale - Increased base size */
  --text-xs: 0.8rem;
  --text-sm: 0.95rem;
  --text-base: 1.1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.4rem;
  --text-2xl: 1.65rem;
  --text-3xl: 2.2rem;
  --text-4xl: 3.2rem;

  /* Font Families - IBM 3270 Terminal Aesthetic */
  --font-mono: '3270 Nerd Font Mono', 'JetBrains Mono', 'Courier New', monospace;
  --font-terminal: '3270 Nerd Font', 'Exo 2', monospace;
  --font-sans: 'Exo 2', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: '3270 Nerd Font', 'Exo 2', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Max Widths (per CLAUDE.md) */
  --max-content: 1200px;
  --max-text: 1000px;
  --max-narrow: 800px;
  --max-card: 600px;

  /* Shadows */
  --glow-cyan: 0 0 20px rgba(0, 255, 249, 0.3);
  --glow-green: 0 0 20px rgba(57, 255, 20, 0.3);
  --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-nav: 1000;
  --z-modal: 9500;
  --z-loading: 9999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  height: auto;
  overflow-y: scroll;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  background: var(--dark-bg);
  color: #e0e0e0;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  height: auto;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Container widths */
.container { max-width: var(--max-content); margin: 0 auto; padding: 0 var(--space-lg); }
.container-text { max-width: var(--max-text); margin: 0 auto; padding: 0 var(--space-lg); }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--space-lg); }

/* Section spacing */
.section { padding: var(--space-xl) var(--space-lg); }
.section-tight { padding: var(--space-lg) var(--space-lg); }

/* Text utilities */
.text-center { text-align: center; }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }
.text-cyan { color: var(--neon-cyan); }
.text-green { color: var(--neon-green); }
.text-magenta { color: var(--neon-magenta); }
.text-mono { font-family: var(--font-mono); }
.text-terminal { font-family: var(--font-terminal); }

/* Apply terminal font to code/pre elements */
code, pre, kbd, samp {
  font-family: var(--font-mono);
}

/* Terminal aesthetic for monospace elements */
.terminal, .console, .cli {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }

/* ==========================================================================
   REUSABLE COMPONENTS
   ========================================================================== */

/* Standard Card */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-cyan);
  border-radius: 10px;
  padding: var(--space-md);
  transition: border-color var(--transition-base), background var(--transition-base);
}
.card:hover {
  border-color: var(--border-cyan-hover);
  background: var(--card-bg-hover);
}
.card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--neon-cyan);
  margin: 0 0 var(--space-sm);
}
.card-text {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* Notice/Alert Box */
.notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  padding: var(--space-sm);
  border-radius: 6px;
  font-size: var(--text-sm);
  line-height: 1.5;
}
.notice-warning {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  color: var(--warning-text);
}
.notice-error {
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  color: var(--error-text);
}
.notice-success {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--success-text);
}
.notice-info {
  background: rgba(0, 255, 249, 0.08);
  border: 1px solid var(--border-cyan);
  color: var(--text-muted);
}
.notice-icon { flex-shrink: 0; }
.notice-text { flex: 1; }
.notice-text strong { color: inherit; }

/* Badge/Tag */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
}
.badge-cyan {
  background: rgba(0, 255, 249, 0.15);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
}
.badge-green {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--neon-green);
}
.badge-magenta {
  background: rgba(255, 0, 255, 0.15);
  border: 1px solid var(--border-magenta);
  color: var(--neon-magenta);
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  border-color: var(--neon-cyan);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}
.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border-color: var(--border-cyan-hover);
}
.btn-secondary:hover {
  background: rgba(0, 255, 249, 0.1);
  border-color: var(--neon-cyan);
}
.btn-green {
  background: var(--neon-green);
  color: var(--dark-bg);
  border-color: var(--neon-green);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}

/* Stat Display */
.stat {
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neon-cyan);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  color: var(--neon-cyan);
  opacity: 0.7;
}
.stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--card-bg) 25%, rgba(255,255,255,0.05) 50%, var(--card-bg) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}
.skeleton-text { height: 1em; margin-bottom: 0.5em; }
.skeleton-text:last-child { width: 60%; }
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--darker-bg);
  z-index: var(--z-loading);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-text {
  font-family: var(--font-mono);
  color: var(--neon-green);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.loading-bar {
  width: 200px;
  height: 3px;
  background: rgba(57, 255, 20, 0.2);
  overflow: hidden;
}

.loading-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: loadingFill 1.5s ease-out forwards;
}

@keyframes loadingFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Matrix Background */
.matrix-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.matrix-column {
  position: absolute;
  top: -100%;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--neon-green);
  opacity: 0.15;
  writing-mode: vertical-rl;
  animation: matrixFall linear infinite;
}

@keyframes matrixFall {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200vh); }
}

/* Grid background */
.bg-grid {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0, 255, 249, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 249, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Scroll Animations (GPU-accelerated) */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
  will-change: auto; /* Remove will-change after animation */
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch:hover {
  animation: glitch 0.3s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch:hover::before {
  animation: glitchBefore 0.3s infinite;
  color: var(--neon-cyan);
  z-index: -1;
}

.glitch:hover::after {
  animation: glitchAfter 0.3s infinite;
  color: var(--neon-magenta);
  z-index: -2;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitchBefore {
  0%, 100% { transform: translate(0); opacity: 0; }
  20% { transform: translate(-3px, 0); opacity: 0.8; }
  40% { transform: translate(3px, 0); opacity: 0.8; }
  60% { transform: translate(-3px, 0); opacity: 0.8; }
  80% { transform: translate(3px, 0); opacity: 0.8; }
}

@keyframes glitchAfter {
  0%, 100% { transform: translate(0); opacity: 0; }
  20% { transform: translate(3px, 0); opacity: 0.8; }
  40% { transform: translate(-3px, 0); opacity: 0.8; }
  60% { transform: translate(3px, 0); opacity: 0.8; }
  80% { transform: translate(-3px, 0); opacity: 0.8; }
}

/* ==========================================================================
   UNIFIED NAVIGATION - Clean, simple, shared styles for all nav bars
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: rgba(5, 5, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 249, 0.2);
}

nav.scrolled {
  background: rgba(5, 5, 10, 0.98);
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  overflow: visible;
}

/* Terminal-style $ 0lsen.com_ Logo - Shared between all nav bars */
.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 249, 0.25);
  cursor: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.logo-container:hover {
  border-color: rgba(0, 255, 249, 0.6);
  background: rgba(0, 255, 249, 0.1);
}

.logo-prompt {
  color: var(--neon-green);
  margin-right: 0.4rem;
}

.logo-zero {
  color: var(--neon-cyan);
  font-weight: 700;
}

.logo-text {
  color: rgba(0, 255, 249, 0.85);
}

.logo-tld {
  color: rgba(0, 255, 249, 0.4);
  font-weight: 400;
}

.logo-cursor {
  color: var(--neon-green);
  animation: blink-cursor 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.logo-container:hover .logo-text {
  color: var(--neon-cyan);
}

.logo-container:hover .logo-tld {
  color: rgba(0, 255, 249, 0.6);
}

/* Legacy logo - kept for compatibility */
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-decoration: none;
}

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

/* ==========================================================================
   NAV LINKS - Clean underline style
   ========================================================================== */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.8rem;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--neon-cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover {
  color: var(--neon-cyan);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Active nav item - Cyberpunk premium style */
.nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(255, 0, 212, 0.08) 100%);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.6), 0 0 20px rgba(255, 0, 212, 0.3);
  border-radius: 4px;
}

.nav-links a.active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--neon-cyan), #ff00d4);
  height: 2px;
  box-shadow: 0 0 8px var(--neon-cyan), 0 0 15px rgba(255, 0, 212, 0.5);
}

/* Subtle glow animation on active */
@keyframes nav-active-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.6), 0 0 20px rgba(255, 0, 212, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8), 0 0 30px rgba(255, 0, 212, 0.5);
  }
}

.nav-links a.active {
  animation: nav-active-glow 3s ease-in-out infinite;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-dropdown-btn:hover {
  color: var(--neon-cyan);
}

.nav-dropdown-btn .dropdown-arrow {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 6px;
  padding: 0.4rem 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: var(--z-dropdown);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 245, 255, 0.1);
  color: var(--neon-cyan);
}

/* ==========================================================================
   BOOKING BUTTON - Clean, simple accent
   ========================================================================== */
.booking-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-left: 3px solid var(--neon-green);
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.booking-btn:hover {
  background: rgba(57, 255, 20, 0.2);
  border-color: var(--neon-green);
  color: #fff;
}

.booking-btn .btn-icon {
  font-size: 0.9rem;
}

.booking-btn .btn-text {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .booking-btn .btn-text {
    display: none;
  }
  .booking-btn {
    padding: 0.5rem;
  }
}

/* ==========================================================================
   NAV PHONE - Simple call button
   ========================================================================== */
.nav-phone {
  font-family: var(--font-mono);
  color: var(--dark-bg);
  background: var(--neon-cyan);
  font-size: 0.8rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background 0.2s;
}

.nav-phone:hover {
  background: #fff;
}

/* ==========================================================================
   BACK BUTTON - Used on subpages, same style pattern as booking button
   ========================================================================== */
.nav-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid rgba(0, 255, 249, 0.3);
  border-left: 3px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  margin-left: auto;
}

.nav-back-btn:hover {
  background: rgba(0, 255, 249, 0.2);
  border-color: var(--neon-cyan);
  color: #fff;
}

.nav-back-btn .back-arrow {
  transition: transform 0.2s;
}

.nav-back-btn:hover .back-arrow {
  transform: translateX(-3px);
}

/* ==========================================================================
   NAV BREADCRUMB - Shows location: Parent > Current
   ========================================================================== */
.nav-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.breadcrumb-parent {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 249, 0.25);
  border-left: 3px solid var(--site-color, var(--neon-cyan));
  color: var(--site-color, var(--neon-cyan));
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.breadcrumb-parent:hover {
  background: rgba(0, 255, 249, 0.1);
  border-color: var(--neon-cyan);
}

.breadcrumb-sep {
  color: rgba(0, 255, 249, 0.4);
  font-size: 1rem;
}

.breadcrumb-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid rgba(0, 255, 249, 0.4);
  color: var(--neon-cyan);
  font-weight: 600;
}

.breadcrumb-icon {
  font-size: 0.9rem;
}

.breadcrumb-label {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive breadcrumb */
@media (max-width: 900px) {
  .breadcrumb-parent .breadcrumb-label {
    display: none;
  }
  .breadcrumb-current .breadcrumb-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .nav-breadcrumb {
    display: none;
  }
}

/* Responsive back button */
@media (max-width: 768px) {
  .nav-back-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }

  .nav-back-btn .btn-text {
    display: none;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--neon-cyan);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   SITE SWITCHER - Clean dropdown for page selection
   ========================================================================== */
.site-switcher {
  position: relative;
  z-index: var(--z-dropdown);
}

.site-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 249, 0.3);
  border-left: 3px solid var(--site-color, var(--neon-cyan));
  padding: 0.5rem 1rem;
  cursor: inherit;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-mono);
}

.site-current:hover {
  background: rgba(0, 255, 249, 0.1);
  border-color: var(--neon-cyan);
}

.site-icon {
  font-size: 1.1rem;
}

.site-label {
  color: var(--site-color, var(--neon-cyan));
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.site-arrow {
  color: rgba(0, 255, 249, 0.6);
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.site-switcher.open .site-arrow {
  transform: rotate(180deg);
}

.site-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: rgba(5, 5, 10, 0.98);
  border: 1px solid rgba(0, 255, 249, 0.3);
  border-top: 2px solid var(--neon-cyan);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  backdrop-filter: blur(12px);
}

.site-switcher.open .site-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.site-option:hover,
.site-option:focus {
  background: rgba(0, 255, 249, 0.1);
  color: var(--opt-color, #fff);
  border-left-color: var(--opt-color, var(--neon-cyan));
  outline: none;
}

.site-option.active {
  color: var(--opt-color, var(--neon-cyan));
  border-left-color: var(--opt-color, var(--neon-cyan));
  background: rgba(0, 255, 249, 0.08);
}

.opt-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.opt-label {
  flex: 1;
  letter-spacing: 0.5px;
}

.opt-check {
  color: var(--neon-green);
  font-size: 0.9rem;
}

.site-divider {
  height: 1px;
  background: rgba(0, 255, 249, 0.2);
  margin: 0.5rem 1rem;
}

.site-modal-btn {
  color: rgba(255, 255, 255, 0.5);
}

.site-modal-btn:hover {
  color: var(--neon-magenta);
}

/* Site Switcher Responsive */
@media (max-width: 1100px) {
  .site-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 900px) {
  .site-label {
    display: none;
  }
  .site-current {
    padding: 0.45rem 0.6rem;
  }
  .site-arrow {
    display: none;
  }
  .site-dropdown {
    min-width: 180px;
    right: 0;
    left: auto;
  }
}

/* Global Navigation with Switcher */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 249, 0.2);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 4-Way Page Switcher */
.page-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.switcher-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 249, 0.05);
  border: 1px solid rgba(0, 255, 249, 0.2);
  border-radius: 50px;
  pointer-events: none;
}

.switcher-indicator {
  position: absolute;
  width: 25%;
  height: 100%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 20px rgba(0, 255, 249, 0.5);
}

.switcher-options {
  position: relative;
  display: flex;
  gap: 0;
  z-index: 1;
}

.switcher-option {
  padding: 0.8rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border-radius: 50px;
  position: relative;
}

.switcher-option.active {
  color: var(--dark-bg);
  font-weight: 700;
  text-shadow: none;
}

.switcher-option:not(.active):hover {
  color: var(--neon-cyan);
}

.switcher-icon {
  font-size: 1.1rem;
}

.switcher-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  border-bottom: 1px solid rgba(0, 255, 249, 0.2);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  color: #bbb;
  text-decoration: none;
  padding: 0.8rem 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  transition: all 0.3s;
  border-left: 2px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--neon-cyan);
  border-left-color: var(--neon-cyan);
  background: rgba(0, 255, 249, 0.05);
}

/* First Visit Modal */
.first-visit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  max-width: 1200px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(10, 10, 15, 0.98);
  border: 2px solid var(--neon-cyan);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 0 50px rgba(0, 255, 249, 0.3);
  animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.choice-card {
  background: rgba(0, 255, 249, 0.03);
  border: 2px solid rgba(0, 255, 249, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.choice-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 255, 249, 0.2);
  transform: translateY(-5px);
}

.choice-card:nth-child(2) { border-color: rgba(57, 255, 20, 0.2); }
.choice-card:nth-child(2):hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}

.choice-card:nth-child(3) { border-color: rgba(255, 215, 0, 0.2); }
.choice-card:nth-child(3):hover {
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.choice-card:nth-child(4) { border-color: rgba(255, 0, 255, 0.2); }
.choice-card:nth-child(4):hover {
  border-color: var(--neon-magenta);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.choice-btn {
  border: none;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.choice-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px currentColor;
}

/* Enhanced Welcome Modal */
.welcome-modal-enhanced {
  background: linear-gradient(145deg,
    rgba(5, 5, 15, 0.98) 0%,
    rgba(10, 10, 20, 0.98) 50%,
    rgba(5, 5, 15, 0.98) 100%);
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), #ffd700) 1;
  box-shadow:
    0 0 60px rgba(0, 255, 249, 0.15),
    0 0 100px rgba(255, 0, 255, 0.1),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.welcome-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 249, 0.2), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.welcome-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 0 30px rgba(0, 255, 249, 0.5);
  letter-spacing: 2px;
}

.welcome-zero {
  color: var(--neon-cyan);
  text-shadow:
    0 0 20px var(--neon-cyan),
    0 0 40px var(--neon-cyan);
}

.welcome-subtitle {
  color: #888;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.choice-card.choice-erhverv {
  background: linear-gradient(135deg, rgba(0, 255, 249, 0.05), transparent);
  border-color: rgba(0, 255, 249, 0.3);
}
.choice-card.choice-erhverv:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 255, 249, 0.3);
}
.choice-card.choice-erhverv h3 { color: var(--neon-cyan); }
.choice-card.choice-erhverv .choice-btn {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  font-weight: 600;
}

.choice-card.choice-it {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), transparent);
  border-color: rgba(57, 255, 20, 0.3);
}
.choice-card.choice-it:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
}
.choice-card.choice-it h3 { color: var(--neon-green); }
.choice-card.choice-it .choice-btn {
  background: var(--neon-green);
  color: #000;
  font-weight: 600;
}

.choice-card.choice-skn {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 0, 255, 0.03));
  border-color: rgba(255, 215, 0, 0.4);
  position: relative;
}
.choice-card.choice-skn::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 0, 255, 0.05));
  border-radius: 8px;
  z-index: -1;
}
.choice-card.choice-skn:hover {
  border-color: #ffd700;
  box-shadow:
    0 0 40px rgba(255, 215, 0, 0.4),
    0 0 80px rgba(255, 0, 255, 0.2);
}
.choice-card.choice-skn h3 { color: #ffd700; }
.choice-card.choice-skn p em {
  color: #ffd700;
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.choice-card.choice-skn .choice-btn {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: var(--dark-bg);
  font-weight: 700;
}

.choice-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.choice-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.choice-card p {
  color: #888;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.welcome-footer {
  margin-top: 2rem;
  text-align: center;
}

.welcome-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #666;
  padding: 0.6rem 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}

.welcome-close-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #aaa;
  background: rgba(255, 255, 255, 0.05);
}

/* Site Footer - Unified footer component */
.site-footer {
  background: rgba(5, 5, 10, 0.98);
  border-top: 1px solid rgba(0, 255, 249, 0.15);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer .footer-col h4 {
  color: var(--neon-cyan);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.site-footer .footer-col p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  color: #888;
}

.site-footer .footer-col a {
  display: block;
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

.site-footer .footer-col a:hover {
  color: var(--neon-cyan);
}

.site-footer .footer-cvr {
  color: #666;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.site-footer .footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-footer .footer-logo {
  font-family: var(--font-display);
  color: var(--neon-cyan);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.site-footer .footer-text {
  color: #555;
  font-size: 0.8rem;
  margin: 0.25rem 0;
}

/* Responsive footer */
@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .site-footer {
    padding: 2rem 1rem 1rem;
  }
}

/* Legacy footer support */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: var(--neon-cyan);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-section a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* Responsive: Page Switcher */
@media (max-width: 900px) {
  .page-switcher {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .modal-content {
    padding: 2rem 1rem;
  }
  .modal-choices {
    grid-template-columns: 1fr;
  }
}

/* Page Switcher Bar - Top Navigation Between Sites */
/* Page Switcher Bar - Top level site navigation */
.page-switcher-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: rgba(2, 2, 5, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}

.page-switcher-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
}

.page-switch-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 0.8rem;
  text-decoration: none;
  color: #666;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  background: transparent;
}

.page-switch-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Active states with page-specific colors */
.page-switch-link.active,
.page-switch-link[data-page="revision"].active,
.page-switch-link[data-page="index"].active {
  color: var(--neon-cyan);
  border-bottom-color: var(--neon-cyan);
  background: rgba(0, 255, 249, 0.08);
}

.page-switch-link[data-page="it"].active {
  color: var(--neon-green);
  border-bottom-color: var(--neon-green);
  background: rgba(57, 255, 20, 0.08);
}

.page-switch-link[data-page="skn"].active {
  color: #ffd700;
  border-bottom-color: #ffd700;
  background: rgba(255, 215, 0, 0.08);
}

.page-switch-link[data-page="cv"].active {
  color: var(--neon-magenta);
  border-bottom-color: var(--neon-magenta);
  background: rgba(255, 0, 255, 0.08);
}

.ps-icon {
  font-size: 1.1rem;
}

.ps-label {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .page-switch-link {
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
  }
  .ps-label {
    display: none;
  }
  .ps-icon {
    font-size: 1.4rem;
  }
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 52px; left: 0; /* Below single nav */
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  z-index: 999;
  transition: width 0.1s;
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  padding: 6rem 2rem 3rem; /* Top padding for nav, reduced bottom */
  max-width: 1400px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neon-cyan);
  box-shadow:
    0 0 30px rgba(0, 255, 249, 0.4),
    0 0 60px rgba(0, 255, 249, 0.2),
    inset 0 0 30px rgba(0, 255, 249, 0.1);
  animation: profileGlow 3s ease-in-out infinite alternate;
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile-photo:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 50px rgba(0, 255, 249, 0.6),
    0 0 100px rgba(0, 255, 249, 0.3),
    inset 0 0 30px rgba(0, 255, 249, 0.1);
}

@keyframes profileGlow {
  0% { box-shadow: 0 0 30px rgba(0, 255, 249, 0.4), 0 0 60px rgba(0, 255, 249, 0.2); }
  100% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.4), 0 0 80px rgba(255, 0, 255, 0.2); }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--neon-green);
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-green);
  margin-bottom: 1.5rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--neon-green); }
  50% { opacity: 0.4; box-shadow: 0 0 5px var(--neon-green); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  line-height: 1.1;
}

.hero h1 span { color: var(--neon-cyan); }

.hero h2 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--neon-magenta);
  margin: 1rem 0;
  font-weight: 400;
}

/* ============================================
   HERO - Clean centered layout per page
   ============================================ */

.hero-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 255, 249, 0.03), rgba(255, 0, 255, 0.02), rgba(0, 255, 249, 0.03));
  border: 1px solid rgba(0, 255, 249, 0.15);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-centered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.5;
}

.hero-centered::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-magenta), transparent);
  opacity: 0.3;
}

.hero-centered .hero-content {
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 500px;
  text-align: left;
}

.hero-bullets li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #bbb;
  font-size: 0.95rem;
}

.hero-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #666;
  margin-top: 1.5rem;
}

.hero-meta code {
  color: var(--neon-magenta);
}

.meta-sep {
  color: #444;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero-meta {
    flex-direction: column;
    gap: 0.25rem;
  }
  .meta-sep {
    display: none;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* Typing Effect */
.typing-text {
  display: inline;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--neon-magenta);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-intro {
  color: #aaa;
  font-size: 1.1rem;
  margin: 1.5rem 0;
  max-width: 600px;
}

.hero-intro li {
  margin: 0.5rem 0;
  list-style: none;
}

.hero-intro li::before {
  content: '▸ ';
  color: var(--neon-cyan);
}

/* Guarantee Badge */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--neon-green);
}

/* Pricing box */
.pricing-box {
  background: rgba(0, 255, 249, 0.05);
  border: 1px solid rgba(0, 255, 249, 0.2);
  padding: 1.5rem;
  margin: 2rem 0;
  max-width: 400px;
}

.pricing-box h3 {
  font-family: var(--font-display);
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
}

.price-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: rgba(0, 255, 249, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: rgba(0, 255, 249, 0.3);
  background: rgba(0, 255, 249, 0.03);
}

.pricing-badge {
  position: absolute;
  top: 10px;
  right: -32px;
  background: rgba(0, 255, 249, 0.15);
  color: rgba(0, 255, 249, 0.8);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 255, 249, 0.2);
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.pricing-card h3 {
  font-family: var(--font-display);
  color: var(--neon-cyan);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(0, 255, 249, 0.4);
  letter-spacing: 0.5px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin: 1rem 0 0.5rem;
  line-height: 1;
  padding: 0.75rem 1rem;
  background: rgba(0, 255, 249, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 249, 0.15);
}

.price-from {
  font-size: 0.9rem;
  color: #aaa;
  font-family: 'JetBrains Mono', monospace;
  text-transform: lowercase;
  margin-right: 0.3rem;
}

.price-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--neon-cyan);
  line-height: 1;
  text-shadow: 0 0 25px rgba(0, 255, 249, 0.5);
}

.price-currency {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  color: var(--neon-cyan);
  margin-left: 0.15rem;
  opacity: 0.85;
}

.price-period {
  font-size: 0.9rem;
  color: #999;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  margin-bottom: 0.5rem;
  color: #888;
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #555;
}

/* Calculator */
.calculator-box {
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.2);
  padding: 2rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.calculator-box h3 {
  font-family: var(--font-display);
  color: var(--neon-cyan);
  text-align: center;
  margin-bottom: 1.5rem;
}

.slider-container {
  margin: 1.5rem 0;
}

.slider-container label {
  display: block;
  color: #bbb;
  margin-bottom: 0.5rem;
}

.slider-container input[type="range"] {
  width: 100%;
  height: 8px;
  background: rgba(0, 255, 249, 0.2);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--neon-cyan);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.slider-value {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--neon-cyan);
  margin: 1rem 0;
}

.calculator-result {
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid var(--neon-cyan);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.calculator-result .total {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
}

.calculator-result .breakdown {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
}

.tier-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
  font-size: 0.8rem;
}

.tier-info span {
  text-align: center;
  padding: 0.5rem;
  background: rgba(0, 255, 249, 0.05);
  border: 1px solid rgba(0, 255, 249, 0.1);
}

@media (max-width: 600px) {
  .tier-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(180deg, var(--darker-bg), var(--dark-bg));
  border-top: 1px solid rgba(0, 255, 249, 0.1);
  border-bottom: 1px solid rgba(0, 255, 249, 0.1);
  padding: 3rem 2rem;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 255, 249, 0.5);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  color: #666;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Sections */
section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-title .icon { font-size: 1.5rem; }
.section-title span { color: var(--neon-cyan); }

.section-subtitle {
  font-family: var(--font-mono);
  color: rgba(0, 255, 249, 0.8);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.section-subtitle::before {
  content: '👾 ';
  color: var(--neon-green);
}


/* Booking Section */
.booking-section {
  background: linear-gradient(180deg, var(--darker-bg), var(--dark-bg));
  border-top: 1px solid rgba(0, 255, 249, 0.2);
  border-bottom: 1px solid rgba(0, 255, 249, 0.2);
}

.booking-embed {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 800px;
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.15);
  padding: 2rem;
}

.booking-embed iframe {
  width: 100% !important;
  min-height: 700px !important;
  border: none !important;
  /* Invert white to dark, then rotate hue to preserve cyan/green tones */
  filter: invert(0.92) hue-rotate(180deg);
}

/* YCBM embed overrides */
.booking-embed {
  max-height: 800px;
  overflow-y: auto;
  border: 1px solid rgba(0, 255, 249, 0.15);
  scrollbar-width: thin;
  scrollbar-color: var(--neon-cyan) rgba(0, 255, 249, 0.1);
}

.booking-embed > div {
  width: 100% !important;
  height: 100% !important;
  min-height: 700px !important;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.15);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  transition: left 0.5s;
}

.card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 255, 249, 0.1);
  transform: translateY(-3px);
}

.card:hover::before { left: 100%; }

.card h3 {
  font-family: var(--font-display);
  color: var(--neon-cyan);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card p, .card li {
  color: #999;
  font-size: 0.95rem;
}

.card ul {
  margin: 1rem 0 0 1rem;
  list-style: none;
}

.card li {
  margin-bottom: 0.4rem;
}

.card li::before {
  content: '→ ';
  color: var(--neon-cyan);
}

/* Tech tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid rgba(255, 0, 255, 0.3);
  color: var(--neon-magenta);
  border-radius: 4px;
  transition: all 0.3s;
}

.tech-tag:hover {
  background: rgba(255, 0, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

/* Tech tags mini - for cards */
.tech-tags-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 1rem;
}

.tech-tags-mini span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 0.2rem 0.4rem;
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid rgba(0, 255, 249, 0.2);
  color: var(--neon-cyan);
  border-radius: 3px;
}

/* Skills Section - Legacy skills bar layout */
/* Main .skills-grid defined in CV section below */

.skill-item {
  margin-bottom: 1.5rem;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.skill-name {
  font-family: var(--font-mono);
  color: #fff;
  font-size: 0.9rem;
}

.skill-level {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 0.8rem;
}

.skill-bar {
  height: 8px;
  background: rgba(0, 255, 249, 0.1);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  box-shadow: 0 0 10px var(--neon-cyan);
  width: 0;
  transition: width 1.5s ease-out;
}

.skill-fill.animate {
  width: var(--skill-width);
}

/* Client Logos */
.logos-section {
  background: rgba(0, 255, 249, 0.02);
  border-top: 1px solid rgba(0, 255, 249, 0.1);
  border-bottom: 1px solid rgba(0, 255, 249, 0.1);
  padding: 3rem 2rem;
}

.logos-title {
  text-align: center;
  font-family: var(--font-mono);
  color: #555;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logos-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.logo-item {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #444;
  padding: 1rem 2rem;
  border: 1px solid rgba(0, 255, 249, 0.1);
  transition: all 0.3s;
}

.logo-item:hover {
  color: var(--neon-cyan);
}

/* System Comparison Grid */
.system-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .system-comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .system-comparison-grid {
    grid-template-columns: 1fr;
  }
}

.system-box {
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.15);
  padding: 1.5rem;
  transition: all 0.3s;
}

.system-box:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 249, 0.1);
}

.system-box h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.system-usecase {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.system-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.system-stat {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  font-size: 0.8rem;
  gap: 0.5rem;
}

.stat-label {
  color: var(--text-dim);
}

.stat-value {
  font-size: 0.75rem;
}

.stat-note {
  color: var(--text-dim);
  font-size: 0.7rem;
  text-align: right;
}

.system-verdict {
  color: var(--neon-green);
  font-size: 0.8rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 255, 249, 0.1);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 249, 0.2);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.system-stats-new {
  margin: 1.5rem 0;
}

.system-metric {
  margin-bottom: 1rem;
}

.metric-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 255, 249, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.metric-fill {
  height: 100%;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px currentColor;
}

.metric-note {
  display: block;
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
}

.system-badge {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.system-comparison-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0,255,249,0.03);
  border-left: 3px solid var(--neon-cyan);
}

/* Process Section - Horizontal Timeline */
.process-section {
  background: linear-gradient(180deg, var(--dark-bg), var(--darker-bg));
}

.timeline-flow {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Horizontal connecting line */
.timeline-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 255, 249, 0.35) 10%,
    rgba(0, 255, 249, 0.35) 90%,
    transparent 100%
  );
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 2px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 255, 249, 0.3), inset 0 0 15px rgba(0, 255, 249, 0.1);
  transition: all 0.3s;
  margin-bottom: 1.25rem;
}

.timeline-step:hover .timeline-marker {
  box-shadow: 0 0 30px rgba(0, 255, 249, 0.5), inset 0 0 20px rgba(0, 255, 249, 0.15);
  transform: scale(1.1);
}

.timeline-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.timeline-content {
  flex: 1;
}

.timeline-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.35rem;
}

.timeline-content > p {
  color: rgba(0, 255, 249, 0.75);
  font-size: 0.85rem;
  margin: 0 0 0.6rem;
}

.step-icon {
  margin-right: 0.3rem;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-content li {
  color: #777;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.timeline-content li::before {
  content: "› ";
  color: rgba(0, 255, 249, 0.5);
}

.timeline-content li strong {
  color: #aaa;
}

/* Tablet: 2x2 grid */
@media (max-width: 900px) {
  .timeline-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .timeline-line {
    display: none;
  }
}

/* Mobile: Stack vertically */
@media (max-width: 600px) {
  .timeline-flow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .timeline-marker {
    margin-bottom: 0;
    width: 42px;
    height: 42px;
  }

  .timeline-num {
    font-size: 1.2rem;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.15);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--neon-cyan);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  color: #bbb;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark-bg);
}

.testimonial-info h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
}

.testimonial-info p {
  color: #666;
  font-size: 0.85rem;
}

.testimonial-placeholder {
  text-align: center;
  color: #555;
  font-style: italic;
  padding: 1rem;
  border: 1px dashed rgba(0, 255, 249, 0.2);
  margin-top: 1rem;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 255, 249, 0.15);
  margin-bottom: 1rem;
  background: rgba(0, 255, 249, 0.02);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(0, 255, 249, 0.05);
}

.faq-question h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-icon {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: #888;
}

/* Comparison Section */
.comparison-table {
  max-width: 900px;
  margin: 2rem auto;
  border: 1px solid rgba(0, 255, 249, 0.2);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  border-bottom: 1px solid rgba(0, 255, 249, 0.1);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: rgba(0, 255, 249, 0.1);
}

.comparison-cell {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
}

.comparison-header .comparison-cell {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--neon-cyan);
}

.comparison-feature {
  color: #bbb;
}

.comparison-check {
  text-align: center;
  color: var(--neon-green);
  font-size: 1.2rem;
}

.comparison-x {
  text-align: center;
  color: #555;
  font-size: 1.2rem;
}

.comparison-note {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.15);
  border-left: 3px solid var(--neon-cyan);
}

.comparison-note h4 {
  color: var(--neon-cyan);
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.comparison-note p {
  color: #999;
  line-height: 1.7;
}

/* Terminal Demo */
.terminal-container {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto;
}

.terminal-demo {
  background: #0a0a0a;
  border: 1px solid rgba(0, 255, 249, 0.3);
  overflow: hidden;
  transition: all 0.3s;
}

.terminal-demo.fullscreen,
.terminal-demo:fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  z-index: 9999;
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.terminal-header {
  background: rgba(0, 255, 249, 0.1);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}

.terminal-dot:hover {
  transform: scale(1.2);
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
  margin-left: 1rem;
  font-family: var(--font-mono);
  color: #666;
  font-size: 0.8rem;
  flex: 1;
}

.terminal-controls {
  display: flex;
  gap: 0.5rem;
}

.terminal-btn {
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid rgba(0, 255, 249, 0.3);
  color: var(--neon-cyan);
  padding: 0.3rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.terminal-btn:hover {
  background: var(--neon-cyan);
  color: var(--dark-bg);
}

.terminal-body {
  height: 600px;
  padding: 0;
  overflow: hidden;
}

.terminal-demo.fullscreen .terminal-body,
.terminal-demo:fullscreen .terminal-body {
  height: calc(100% - 45px);
  width: 100%;
  overflow: hidden;
}

#realTerminal {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.terminal-demo.fullscreen #realTerminal,
.terminal-demo:fullscreen #realTerminal {
  width: 100%;
  height: 100%;
}

/* Fullscreen tooltip */
.fullscreen-tooltip {
  display: none;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 255, 249, 0.9);
  color: var(--dark-bg);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  z-index: 10000;
  animation: tooltipFade 0.3s ease-out;
}

.terminal-demo.fullscreen .fullscreen-tooltip,
.terminal-demo:fullscreen .fullscreen-tooltip {
  display: block;
}

@keyframes tooltipFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Connection status */
.terminal-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f56;
}

.status-indicator.connected {
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

.status-indicator.connecting {
  background: var(--neon-yellow);
  animation: pulse 1s infinite;
}

/* Fallback demo terminal */
.demo-terminal {
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 14px;
  height: 100%;
  overflow-y: auto;
}

.demo-terminal .line {
  margin-bottom: 0.3rem;
}

.demo-terminal .prompt {
  color: var(--neon-green);
}

.demo-terminal .output {
  color: #888;
}

.demo-terminal input {
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  width: calc(100% - 180px);
}

/* Divider */
/* Video Introduction Section */
.video-intro-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0, 255, 249, 0.02) 0%, rgba(255, 0, 255, 0.02) 100%);
  border-top: 1px solid rgba(0, 255, 249, 0.1);
  border-bottom: 1px solid rgba(0, 255, 249, 0.1);
}

.video-intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-intro-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
}

.video-intro-content p {
  color: #999;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.video-highlights {
  list-style: none;
  margin-bottom: 2rem;
}

.video-highlights li {
  color: #bbb;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 255, 249, 0.05);
}

.video-intro-player {
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 255, 249, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border: 3px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.video-play-btn:hover {
  background: rgba(0, 255, 249, 0.1);
  box-shadow: 0 0 30px rgba(0, 255, 249, 0.3);
}

.video-placeholder p {
  color: #666;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--neon-cyan);
  padding: 0.3rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .video-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-intro-content {
    text-align: center;
  }

  .video-intro-content h2 {
    font-size: 1.5rem;
  }
}

.divider {
  border-top: 1px solid rgba(0, 255, 249, 0.1);
  border-bottom: 1px solid rgba(0, 255, 249, 0.1);
  background: rgba(0, 255, 249, 0.02);
  padding: 2rem;
  text-align: center;
  max-width: 100%;
}

.divider p {
  font-family: var(--font-mono);
  color: #555;
  font-size: 0.9rem;
}

/* CTA Divider */
.cta-divider {
  background: linear-gradient(180deg, rgba(0, 255, 249, 0.05), rgba(255, 0, 255, 0.05));
  border-top: 1px solid rgba(0, 255, 249, 0.2);
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-divider h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-divider p {
  color: #888;
  margin-bottom: 1.5rem;
}

/* CV Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 100%;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem; top: 0.5rem;
  width: 10px; height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.timeline-item h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.2rem;
}

.timeline-item .date {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: #888;
  font-size: 0.95rem;
}

.timeline-note {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(57, 255, 20, 0.1);
  border-left: 3px solid var(--neon-green);
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: #aaa;
}

.timeline-note a {
  color: var(--neon-cyan);
  text-decoration: none;
}

.timeline-note a:hover {
  text-decoration: underline;
}

/* Profile Card */
.profile-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 249, 0.2);
  border-radius: 12px;
}

.profile-image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 249, 0.1);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-placeholder {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.profile-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 0.25rem;
}

.profile-title {
  color: var(--neon-cyan);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-tags span {
  background: rgba(255, 0, 255, 0.15);
  border: 1px solid rgba(255, 0, 255, 0.3);
  color: var(--neon-magenta);
  padding: 0.25rem 0.6rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

@media (max-width: 600px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-tags {
    justify-content: center;
  }
}

/* Skills Section */
.skills-header {
  margin-top: 4rem;
  font-size: 1.4rem;
  color: var(--neon-cyan);
  font-family: var(--font-display);
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* 3-column skills grid for AI/Tech pages */
.skills-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 249, 0.15);
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .skills-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .skills-grid-3col {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

.skill-category {
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.1);
  padding: 1.5rem;
  transition: all 0.3s;
}

.skill-category:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 255, 249, 0.05);
}

.skill-category h4 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid rgba(0, 255, 249, 0.3);
  color: var(--neon-cyan);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  transition: all 0.3s;
}

.skill-tag:hover {
  background: rgba(0, 255, 249, 0.2);
  box-shadow: 0 0 10px rgba(0, 255, 249, 0.3);
}

.skill-tag.skill-expert {
  background: rgba(57, 255, 20, 0.15);
  border-color: var(--neon-green);
  color: var(--neon-green);
  font-weight: 600;
}

.skill-tag.skill-expert:hover {
  background: rgba(57, 255, 20, 0.25);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

/* Volunteer Section */
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .volunteer-grid {
    grid-template-columns: 1fr;
  }
}

.volunteer-card {
  background: rgba(255, 0, 213, 0.02);
  border: 1px solid rgba(255, 0, 213, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.volunteer-card:hover {
  border-color: var(--neon-magenta);
  background: rgba(255, 0, 213, 0.05);
}

.volunteer-card h4 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.volunteer-card p {
  color: #888;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.1);
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 249, 0.1);
}

.contact-card h3 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-family: var(--font-mono);
}

.contact-card a:hover {
  text-shadow: 0 0 10px var(--neon-cyan);
}

.contact-card-booking {
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.contact-card-booking:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.contact-card-booking h3 {
  color: var(--neon-green);
}

.contact-card-booking a {
  color: var(--neon-green);
}

.contact-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: pointer;
  border-radius: 8px;
}

.contact-card-link * {
  pointer-events: none;
}

.contact-card-link p {
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  margin: 0;
}

.contact-card {
  cursor: pointer;
  transition: all 0.3s, transform 0.2s;
  height: 100%;
}

.contact-card-link:hover .contact-card {
  transform: translateY(-5px);
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 25px rgba(0, 255, 249, 0.2);
}

.contact-card-link:active .contact-card {
  transform: translateY(-2px);
}

/* Booking card link styling */
.contact-card-link:has(.contact-card-booking) p {
  color: var(--neon-green);
}

.contact-card-link:has(.contact-card-booking):hover .contact-card {
  border-color: var(--neon-green);
  box-shadow: 0 8px 25px rgba(57, 255, 20, 0.2);
}

/* Trust Elements */
.trust-elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(57, 255, 20, 0.02);
  border: 1px solid rgba(57, 255, 20, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-green);
  font-size: 0.9rem;
}

/* Page Back Button - Consistent subpage navigation */
.page-back-row {
  text-align: left;
  margin-bottom: 2rem;
}

.page-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-cyan);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(0, 255, 249, 0.4);
  border-radius: 6px;
  background: rgba(0, 255, 249, 0.05);
  transition: all 0.2s;
}

.page-back-btn:hover {
  background: rgba(0, 255, 249, 0.15);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 249, 0.2);
}

.page-back-btn .back-arrow {
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .page-back-btn .back-text {
    display: none;
  }
  .page-back-btn {
    padding: 0.5rem 0.8rem;
  }
}

/* Footer */
footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(0, 255, 249, 0.1);
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-family: var(--font-display);
  color: var(--neon-cyan);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 255, 249, 0.1);
}

.footer-logo {
  font-family: var(--font-display);
  color: var(--neon-cyan);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-text {
  color: #444;
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

/* Contact Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.overlay.active { display: flex; }

.overlay-content {
  background: var(--dark-bg);
  border: 1px solid var(--neon-cyan);
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 255, 249, 0.2);
  animation: overlaySlideIn 0.3s ease-out;
}

@keyframes overlaySlideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.overlay-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--neon-cyan);
  font-size: 1.5rem;
  cursor: pointer;
}

.overlay-close:hover { color: var(--neon-magenta); }

.overlay h2 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(0, 255, 249, 0.05);
  border: 1px solid rgba(0, 255, 249, 0.2);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 249, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.active {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-display);
  color: var(--neon-green);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: #888;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  box-shadow: 0 0 20px var(--neon-cyan);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: rgba(0, 255, 249, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 249, 0.3);
}

.cta-btn-primary {
  background: var(--neon-cyan);
  color: var(--dark-bg);
}

.cta-btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 30px var(--neon-cyan);
}

/* Sticky Mobile CTA */
/* Online Status Badge */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--neon-green);
  font-family: var(--font-mono);
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--neon-green); }
  50% { opacity: 0.5; box-shadow: 0 0 10px var(--neon-green); }
}

/* Urgency Badge */
.urgency-badge {
  display: inline-block;
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.3);
  color: #ff6464;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  animation: urgency-pulse 3s infinite;
}

@keyframes urgency-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Custom Cursor */
body {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="4" fill="%2300fff9" opacity="0.8"/><circle cx="16" cy="16" r="8" fill="none" stroke="%2300fff9" stroke-width="1" opacity="0.4"/><line x1="16" y1="0" x2="16" y2="8" stroke="%2300fff9" stroke-width="1" opacity="0.6"/><line x1="16" y1="24" x2="16" y2="32" stroke="%2300fff9" stroke-width="1" opacity="0.6"/><line x1="0" y1="16" x2="8" y2="16" stroke="%2300fff9" stroke-width="1" opacity="0.6"/><line x1="24" y1="16" x2="32" y2="16" stroke="%2300fff9" stroke-width="1" opacity="0.6"/></svg>') 16 16, auto;
}

a, button {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="5" fill="%23ff00ff" opacity="0.9"/><circle cx="16" cy="16" r="10" fill="none" stroke="%23ff00ff" stroke-width="1.5" opacity="0.5"/></svg>') 16 16, pointer;
}

/* Cookie Notification Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 450px;
  background: rgba(10, 10, 15, 0.98);
  border: 2px solid var(--neon-cyan);
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 0 30px rgba(0, 255, 249, 0.3);
  animation: slideInUp 0.5s ease-out;
}

.cookie-content h3 {
  color: var(--neon-cyan);
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.cookie-btn-accept,
.cookie-btn-challenge {
  flex: 1;
  padding: 0.8rem;
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-btn-accept:hover {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.cookie-btn-challenge:hover {
  background: var(--neon-magenta);
  border-color: var(--neon-magenta);
  color: var(--dark-bg);
  box-shadow: 0 0 15px var(--neon-magenta);
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .cookie-popup {
    right: 10px;
    left: 10px;
    bottom: 10px;
    max-width: none;
  }
}

.cookie-legal-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.65rem;
  color: #555;
}

.cookie-legal-link a {
  color: #666;
  text-decoration: none;
  font-family: var(--font-mono);
  transition: color 0.3s;
}

.cookie-legal-link a:hover {
  color: var(--neon-cyan);
}

/* Mouse Trail */
.mouse-trail {
  position: fixed;
  pointer-events: none;
  z-index: 8999;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.mouse-trail.fade {
  opacity: 0;
  transform: scale(0.5);
}

/* Exit Intent Popup */
.exit-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.exit-popup.show {
  display: flex;
}

.exit-popup-content {
  background: var(--dark-bg);
  border: 2px solid var(--neon-cyan);
  padding: 3rem;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 255, 249, 0.3);
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #666;
  font-size: 1.5rem;
  cursor: pointer;
}

.exit-popup-close:hover {
  color: var(--neon-cyan);
}

.exit-popup h3 {
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.exit-popup p {
  color: #999;
  margin-bottom: 1.5rem;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.sticky-cta .cta-btn {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  font-weight: 600;
  box-shadow: 0 0 20px var(--neon-cyan);
}

/* SKN Demo Section */
.skn-demo {
  background: rgba(0, 255, 249, 0.02);
  border: 1px solid rgba(0, 255, 249, 0.15);
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.skn-demo h3 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 1rem;
}

.skn-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.skn-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.9rem;
}

.skn-feature span {
  color: var(--neon-cyan);
}

/* Mobile */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-image {
    order: 1;
  }

  .profile-photo {
    width: 200px;
    height: 200px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-phone { display: none; }

  .nav-links {
    position: fixed;
    top: 55px; right: -100%;
    width: 80%;
    height: calc(100vh - 55px);
    background: var(--darker-bg);
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s;
    border-left: 1px solid rgba(0, 255, 249, 0.2);
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }

  .hero { padding-top: 7rem; }
  .hero h1 { font-size: 2rem; }

  .cards-grid { grid-template-columns: 1fr; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-header {
    display: none;
  }

  .comparison-cell {
    padding: 0.8rem;
  }

  .comparison-cell:first-child {
    background: rgba(0, 255, 249, 0.05);
    font-weight: 500;
  }

  .sticky-cta {
    display: block;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    /* Swipeable testimonials on mobile */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .system-comparison-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 1rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .profile-photo {
    width: 150px;
    height: 150px;
  }
}

/* Mobile touch targets - minimum 44x44px */
@media (max-width: 768px) {
  .cta-btn, button, .nav-links a, .contact-card a {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links a {
    padding: 1rem;
    font-size: 1.1rem;
  }

  .skill-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .faq-question {
    padding: 1.25rem;
    min-height: 44px;
  }

  /* Comparison Table Mobile */
  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    min-width: 600px;
  }

  .comparison-cell {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }

  .comparison-feature {
    font-weight: 500;
  }

  .comparison-check, .comparison-x {
    font-size: 1rem;
  }

  /* Calculator Sections Mobile */
  .system-stats-new {
    margin: 1rem 0;
  }

  .metric-label {
    font-size: 0.65rem;
  }

  .metric-bar {
    height: 6px;
  }

  .metric-note {
    font-size: 0.65rem;
  }

  /* Investment Section Mobile */
  #investering {
    padding: 1.5rem;
  }

  #investering > div {
    display: block;
  }

  #investering > div > div {
    display: block;
    margin-bottom: 1rem;
  }

  /* Calculator Mobile */
  #calculator {
    padding: 1.5rem 1rem;
  }

  .calculator-result {
    display: block;
  }

  .total {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .breakdown {
    font-size: 0.8rem;
  }

  /* Pricing Cards Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 1.5rem 1rem;
  }

  /* Contact Grid Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* System Comparison Grid Mobile */
  .system-comparison-grid {
    grid-template-columns: 1fr;
  }

  .system-box {
    padding: 1.5rem 1rem;
  }

  .system-box h4 {
    font-size: 1.1rem;
  }

  /* Vision Section Mobile */
  #vision2099 {
    padding: 1.5rem;
  }

  .vision-cards {
    grid-template-columns: 1fr;
  }

  .vision-card {
    padding: 1.5rem 1rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.9rem; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .cta-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Comparison Table Extra Small */
  .comparison-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    min-width: 500px;
  }

  .comparison-cell {
    padding: 0.5rem 0.3rem;
    font-size: 0.7rem;
    word-break: break-word;
  }

  .comparison-header .comparison-cell {
    font-size: 0.65rem;
  }

  /* Navbar Mobile */
  .logo {
    font-size: 1.3rem;
  }

  .nav-phone {
    display: none;
  }

  /* Hero Image Mobile */
  .profile-photo {
    width: 120px;
    height: 120px;
  }

  /* Cards Mobile */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem 1rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .card ul li {
    font-size: 0.85rem;
  }

  /* Timeline Mobile */
  .timeline {
    padding-left: 0;
  }

  .timeline-item {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }

  .timeline-item .date {
    font-size: 0.8rem;
  }

  .timeline-item h4 {
    font-size: 1rem;
  }

  .timeline-item p {
    font-size: 0.85rem;
  }

  /* Pricing Mobile */
  .price-big {
    font-size: 1.8rem;
  }

  .price-small {
    font-size: 0.75rem;
  }

  .pricing-card ul li {
    font-size: 0.8rem;
  }

  /* Input Mobile */
  input[type="range"],
  input[type="number"],
  input[type="text"],
  select {
    font-size: 16px;
    padding: 0.8rem;
  }

  .slider-value {
    font-size: 0.9rem;
  }

  /* FAQ Mobile */
  .faq-question {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-question h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .faq-icon {
    align-self: flex-end;
    margin-top: -1.5rem;
  }

  .faq-answer-inner {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* Terminal Mobile */
  .terminal-demo {
    height: 300px;
    min-height: 300px;
  }

  .terminal-header {
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  /* Testimonials Mobile - wider cards for easier reading */
  .testimonial-card {
    flex: 0 0 90%;
  }

  .testimonial-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .testimonial-avatar {
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
  }

  .testimonial-info h4 {
    font-size: 0.9rem;
  }

  .testimonial-info p {
    font-size: 0.75rem;
  }
}

/* ===========================================
   ASCIINEMA PLAYER STYLES
   =========================================== */
.asciinema-wrapper {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 249, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.asciinema-title {
  padding: 0.75rem 1rem;
  background: rgba(0, 255, 249, 0.05);
  border-bottom: 1px solid rgba(0, 255, 249, 0.2);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.asciinema-icon {
  color: var(--neon-green);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.asciinema-container {
  min-height: 400px;
  background: #0d0d0d;
}

.asciinema-controls {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 255, 249, 0.1);
}

.asciinema-btn {
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid rgba(0, 255, 249, 0.3);
  color: var(--neon-cyan);
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
}

.asciinema-btn:hover {
  background: rgba(0, 255, 249, 0.2);
  box-shadow: 0 0 10px rgba(0, 255, 249, 0.3);
}

.asciinema-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .asciinema-gallery {
    grid-template-columns: 1fr;
  }
  .asciinema-container {
    min-height: 300px;
  }
}

/* ===========================================
   HASHTAG STYLES - Futuristic Cyber Design
   =========================================== */
.hashtag {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 0.8em;
  transition: all 0.15s ease-out;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(0, 255, 249, 0.08) 0%, rgba(0, 255, 249, 0.03) 100%);
  border: 1px solid rgba(0, 255, 249, 0.25);
  border-left: 2px solid var(--neon-cyan);
  position: relative;
  letter-spacing: 0.02em;
}

.hashtag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--neon-cyan), transparent);
  opacity: 0.5;
}

.hashtag:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 255, 249, 0.2) 0%, rgba(0, 255, 249, 0.1) 100%);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 255, 249, 0.3), inset 0 0 20px rgba(0, 255, 249, 0.05);
  text-shadow: 0 0 8px var(--neon-cyan);
  transform: translateY(-1px);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 255, 249, 0.1);
  border-radius: 4px;
}

.tag-cloud .hashtag {
  font-size: 0.85rem;
}

/* Futuristic tag filter bar */
.tag-filter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, rgba(0, 255, 249, 0.06) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 1px solid rgba(0, 255, 249, 0.15);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.tag-filter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3px;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--neon-cyan), transparent 60%);
  opacity: 0.4;
}

.tag-filter-label {
  color: #777;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-filter-clear {
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  margin-left: auto;
  padding: 0.2rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.15s ease-out;
}

.tag-filter-clear:hover {
  background: rgba(0, 255, 249, 0.1);
  border-color: rgba(0, 255, 249, 0.3);
  text-shadow: 0 0 8px var(--neon-cyan);
}

/* ===========================================
   FILE VIEWER STYLES
   =========================================== */
.file-viewer {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 249, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.file-viewer-header {
  padding: 0.75rem 1rem;
  background: rgba(0, 255, 249, 0.05);
  border-bottom: 1px solid rgba(0, 255, 249, 0.2);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-viewer-path {
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.file-viewer-meta {
  color: #666;
  font-size: 0.75rem;
}

.file-viewer-content {
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-cyan) transparent;
}

.code-line {
  display: flex;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.5;
  transition: background 0.15s;
}

.code-line:hover {
  background: rgba(0, 255, 249, 0.05);
}

.code-line.active,
.code-line.highlighted {
  background: rgba(0, 255, 249, 0.1);
  border-left: 3px solid var(--neon-cyan);
}

.line-number {
  min-width: 50px;
  text-align: right;
  padding: 0 1rem 0 0.5rem;
  color: #555;
  user-select: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.line-number:hover {
  color: var(--neon-cyan);
}

.line-content {
  flex: 1;
  padding-left: 1rem;
  white-space: pre;
  overflow-x: auto;
  color: #ccc;
}

/* Syntax highlighting basics */
.code-keyword { color: var(--neon-magenta); }
.code-string { color: var(--neon-green); }
.code-comment { color: #666; font-style: italic; }
.code-number { color: var(--neon-yellow); }
.code-function { color: var(--neon-cyan); }

@media (max-width: 600px) {
  .file-viewer-content {
    max-height: 350px;
  }
  .code-line {
    font-size: 0.75rem;
  }
  .line-number {
    min-width: 40px;
    padding-right: 0.5rem;
  }
}

/* ============================================
   ARCHITECTURE SECTION
   ============================================ */

#arkitektur {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.architecture-overview {
  max-width: 1000px;
  margin: 2rem auto 0;
}

.architecture-core {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.architecture-principle {
  flex: 1;
  max-width: 280px;
  background: var(--card-bg);
  border: 1px solid var(--border-cyan);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
}

.architecture-principle:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}

.principle-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 249, 0.5));
}

.principle-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--neon-cyan);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.principle-content p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.architecture-arrow {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--neon-cyan);
  opacity: 0.5;
  padding: 0 0.5rem;
}

.architecture-domains {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 255, 249, 0.03);
  border: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.architecture-domains h4 {
  font-family: var(--font-display);
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.domain-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.domain-tag {
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.domain-tag:hover {
  background: rgba(0, 255, 249, 0.2);
  transform: scale(1.05);
}

.architecture-cta {
  text-align: center;
  padding-top: 1rem;
}

.btn-architecture {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.btn-architecture:hover {
  background: rgba(0, 255, 249, 0.1);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.2rem;
}

.architecture-note {
  color: var(--text-subtle);
  font-size: var(--text-sm);
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .architecture-core {
    flex-direction: column;
    align-items: center;
  }

  .architecture-principle {
    max-width: 100%;
    width: 100%;
  }

  .architecture-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
}

@media (max-width: 600px) {
  #arkitektur {
    padding: 3rem 1rem;
  }

  .architecture-principle {
    padding: 1rem;
  }

  .principle-icon {
    font-size: 2rem;
  }

  .principle-content h4 {
    font-size: 1.1rem;
  }

  .domain-tags {
    gap: 0.5rem;
  }

  .domain-tag {
    padding: 0.4rem 0.8rem;
    font-size: var(--text-xs);
  }

  .btn-architecture {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Architecture Extended Sections */
.architecture-section {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 249, 0.15);
  border-radius: 12px;
}

.arch-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  color: var(--neon-cyan);
  margin-bottom: 1.25rem;
}

.arch-icon {
  font-size: 1.5rem;
}

.arch-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.arch-description p {
  margin-bottom: 1rem;
}

.arch-description strong {
  color: var(--text-primary);
}

.arch-description em {
  color: var(--neon-magenta);
  font-style: normal;
}

.arch-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 255, 249, 0.3);
}

.arch-feature {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.arch-feature code {
  background: rgba(0, 255, 249, 0.1);
  color: var(--neon-cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.arch-note {
  font-size: 0.9rem;
  color: var(--text-subtle);
  font-style: italic;
  margin-top: 1rem;
}

.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.arch-card {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.arch-card:hover {
  border-color: var(--neon-magenta);
  transform: translateY(-2px);
}

.arch-card h4 {
  color: var(--neon-magenta);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.arch-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.arch-highlight {
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), rgba(0, 255, 249, 0.05));
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 8px;
  margin-top: 1rem;
}

.arch-highlight strong {
  color: var(--neon-green);
}

.arch-badge {
  display: inline-block;
  background: rgba(255, 0, 255, 0.15);
  color: var(--neon-magenta);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.arch-workflow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.workflow-step::after {
  content: '→';
  color: var(--text-subtle);
  margin: 0 0.5rem;
}

.workflow-step:last-child::after {
  display: none;
}

.step-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.3rem 0.6rem;
  background: rgba(0, 255, 249, 0.15);
  border: 1px solid rgba(0, 255, 249, 0.4);
  border-radius: 4px;
  color: var(--neon-cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.step-desc em {
  color: var(--neon-magenta);
  font-style: normal;
}

.arch-usecase {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.06), rgba(0, 255, 249, 0.03));
  border-left: 3px solid var(--neon-magenta);
  border-radius: 0 8px 8px 0;
}

.arch-usecase h4 {
  color: var(--neon-magenta);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.arch-usecase p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.arch-usecase code {
  background: rgba(255, 0, 255, 0.1);
  color: var(--neon-magenta);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.arch-code-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #0a0a0f;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
}

.arch-code-block code {
  color: var(--neon-green);
  font-size: 0.95rem;
  background: none;
  padding: 0;
}

.arch-code-block .code-comment {
  color: var(--text-subtle);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .architecture-section {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .arch-section-title {
    font-size: 1.2rem;
  }

  .arch-grid {
    grid-template-columns: 1fr;
  }

  .arch-workflow {
    flex-direction: column;
    align-items: flex-start;
  }

  .workflow-step::after {
    display: none;
  }

  .workflow-step {
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .workflow-step:last-child {
    border-bottom: none;
  }
}

/* HackIt Demo Styles */
.hackit-demo {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.hackit-demo .workflow-step {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.hackit-demo .workflow-step:hover {
  background: rgba(0, 255, 249, 0.08);
  transform: translateX(4px);
}

.hackit-demo .workflow-step::after {
  display: none;
}

.hackit-demo .step-key {
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  color: #ffd700;
}

.hackit-demo .step-desc code {
  background: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.hackit-ai {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(0, 255, 249, 0.05));
  border-color: rgba(255, 0, 255, 0.25);
}

.hackit-ai strong {
  color: var(--neon-magenta);
}

/* ==========================================================================
   CTA BANNERS - Links between pages (skn.php → arkitektur.php, ideer.php)
   ========================================================================== */
.cta-banners-section {
  padding: 4rem 2rem;
}

.cta-banners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.cta-banner {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 255, 249, 0.25);
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 255, 249, 0.05) 100%);
  pointer-events: none;
}

.cta-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 255, 249, 0.25);
}

/* Architecture Banner */
.cta-banner-architecture {
  border-color: rgba(0, 255, 249, 0.35);
}

.cta-banner-architecture:hover {
  border-color: var(--neon-cyan);
}

.cta-banner-architecture .banner-icon {
  background: rgba(0, 255, 249, 0.15);
  color: var(--neon-cyan);
}

.cta-banner-architecture .banner-cta {
  color: var(--neon-cyan);
}

/* Ideas Banner */
.cta-banner-ideas {
  border-color: rgba(255, 215, 0, 0.35);
}

.cta-banner-ideas::before {
  background: linear-gradient(135deg, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
}

.cta-banner-ideas:hover {
  border-color: #ffd700;
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
}

.cta-banner-ideas .banner-icon {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}

.cta-banner-ideas .banner-text h3 {
  color: #ffd700;
}

.cta-banner-ideas .banner-cta {
  color: #ffd700;
}

.cta-banner-ideas .stat-num {
  color: #ffd700;
}

/* Matching Banner */
.cta-banner-matching {
  border-color: rgba(255, 0, 255, 0.35);
}

.cta-banner-matching::before {
  background: linear-gradient(135deg, transparent 50%, rgba(255, 0, 255, 0.05) 100%);
}

.cta-banner-matching:hover {
  border-color: var(--neon-magenta);
  box-shadow: 0 15px 50px rgba(255, 0, 255, 0.2);
}

.cta-banner-matching .banner-icon {
  background: rgba(255, 0, 255, 0.15);
  color: var(--neon-magenta);
}

.cta-banner-matching .banner-text h3 {
  color: var(--neon-magenta);
}

.cta-banner-matching .banner-cta {
  color: var(--neon-magenta);
}

.cta-banner-matching .stat-num {
  color: var(--neon-magenta);
}

/* Code Banner */
.cta-banner-code {
  border-color: rgba(57, 255, 20, 0.35);
}

.cta-banner-code::before {
  background: linear-gradient(135deg, transparent 50%, rgba(57, 255, 20, 0.05) 100%);
}

.cta-banner-code:hover {
  border-color: var(--neon-green);
  box-shadow: 0 15px 50px rgba(57, 255, 20, 0.2);
}

.cta-banner-code .banner-icon {
  background: rgba(57, 255, 20, 0.15);
  color: var(--neon-green);
}

.cta-banner-code .banner-text h3 {
  color: var(--neon-green);
}

.cta-banner-code .banner-cta {
  color: var(--neon-green);
}

.cta-banner-code .stat-num {
  color: var(--neon-green);
}

/* Banner Content */
.cta-banner .banner-content {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  flex: 1;
}

.cta-banner .banner-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.cta-banner .banner-text {
  flex: 1;
}

.cta-banner .banner-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  color: var(--neon-cyan);
  margin: 0 0 0.5rem;
}

.cta-banner .banner-text p {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cta-banner .banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cta-banner .stat-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  color: #888;
}

.cta-banner .stat-num {
  color: var(--neon-cyan);
  font-weight: 600;
  margin-right: 0.3rem;
}

/* Banner CTA */
.cta-banner .banner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  font-weight: 600;
  padding-top: 1.25rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner .banner-cta .arrow {
  transition: transform 0.2s;
  font-size: 1.2rem;
}

.cta-banner:hover .banner-cta .arrow {
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banners-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner .banner-icon {
    margin: 0 auto;
  }

  .cta-banner .banner-stats {
    justify-content: center;
  }
}

/* ==========================================================================
   STANDARDIZED REFERENCE LINKS - Source code and idea references
   ========================================================================== */
.src-ref,
.idea-ref {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.src-ref {
  background: rgba(0, 255, 249, 0.1);
  border: 1px solid rgba(0, 255, 249, 0.25);
  color: var(--neon-cyan);
}

.src-ref:hover {
  background: rgba(0, 255, 249, 0.2);
  border-color: var(--neon-cyan);
}

.idea-ref {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #ffd700;
}

.idea-ref:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

.ref-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Idea Status Badges */
.idea-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-family: 'JetBrains Mono', monospace;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  font-weight: 600;
}

.idea-status-implemented {
  background: rgba(57, 255, 20, 0.15);
  color: var(--neon-green);
}

.idea-status-inprogress {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}

.idea-status-planned {
  background: rgba(0, 255, 249, 0.15);
  color: var(--neon-cyan);
}

.idea-status-dropped {
  background: rgba(255, 100, 100, 0.15);
  color: #ff6b6b;
}
