/* Kelvirox — nx-style.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --nx-bg-deep: #040810;
  --nx-bg-dark: #080f1e;
  --nx-bg-card: rgba(12, 20, 40, 0.85);
  --nx-bg-glass: rgba(15, 25, 55, 0.6);
  --nx-violet: #7c3aed;
  --nx-violet-light: #a855f7;
  --nx-cyan: #06b6d4;
  --nx-cyan-light: #67e8f9;
  --nx-blue: #1d4ed8;
  --nx-blue-mid: #3b82f6;
  --nx-accent-grad: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --nx-accent-grad-alt: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 50%, #06b6d4 100%);
  --nx-text-primary: #f0f4ff;
  --nx-text-secondary: #94a3b8;
  --nx-text-muted: #64748b;
  --nx-border: rgba(124, 58, 237, 0.25);
  --nx-border-cyan: rgba(6, 182, 212, 0.25);
  --nx-shadow-violet: 0 0 40px rgba(124, 58, 237, 0.2);
  --nx-shadow-cyan: 0 0 40px rgba(6, 182, 212, 0.15);
  --nx-radius: 16px;
  --nx-radius-lg: 24px;
  --nx-radius-xl: 32px;
  --nx-font-display: 'Orbitron', monospace;
  --nx-font-heading: 'Rajdhani', sans-serif;
  --nx-font-body: 'Source Sans 3', sans-serif;
  --nx-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--nx-bg-deep);
  color: var(--nx-text-primary);
  font-family: var(--nx-font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--nx-font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.nx-display-font { font-family: var(--nx-font-display); }

.nx-gradient-text {
  background: var(--nx-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nx-section-label {
  font-family: var(--nx-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nx-cyan);
  display: inline-block;
  margin-bottom: 1rem;
}

/* ---- LAYOUT ---- */
.nx-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nx-section {
  padding: 100px 0;
  position: relative;
}

.nx-section-sm { padding: 60px 0; }

/* ---- NAV ---- */
.nx-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--nx-transition);
  background: transparent;
}

.nx-nav.nx-nav-scrolled {
  background: rgba(4, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nx-border);
  padding: 12px 0;
}

.nx-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nx-logo {
  font-family: var(--nx-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  background: var(--nx-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.nx-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nx-nav-links a {
  color: var(--nx-text-secondary);
  text-decoration: none;
  font-family: var(--nx-font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--nx-transition);
  letter-spacing: 0.03em;
}

.nx-nav-links a:hover, .nx-nav-links a.nx-active {
  color: var(--nx-text-primary);
  background: rgba(124, 58, 237, 0.15);
}

.nx-nav-cta {
  background: var(--nx-accent-grad) !important;
  color: white !important;
  -webkit-text-fill-color: white !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}

.nx-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nx-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nx-text-primary);
  border-radius: 2px;
  transition: var(--nx-transition);
}

/* ---- BUTTONS ---- */
.nx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--nx-radius);
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--nx-transition);
  position: relative;
  overflow: hidden;
}

.nx-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.nx-btn:hover::after { opacity: 1; }

.nx-btn-primary {
  background: var(--nx-accent-grad);
  color: white;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.nx-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
  color: white;
  text-decoration: none;
}

.nx-btn-outline {
  background: transparent;
  color: var(--nx-cyan);
  border: 1px solid var(--nx-cyan);
}

.nx-btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--nx-cyan);
  text-decoration: none;
  transform: translateY(-2px);
}

.nx-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--nx-text-primary);
  border: 1px solid var(--nx-border);
}

.nx-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--nx-text-primary);
  text-decoration: none;
}

/* ---- CARDS / GLASS ---- */
.nx-glass-card {
  background: var(--nx-bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  padding: 32px;
  transition: var(--nx-transition);
}

.nx-glass-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: var(--nx-shadow-violet);
  transform: translateY(-4px);
}

.nx-card-cyan:hover {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: var(--nx-shadow-cyan);
}

/* ---- HERO ---- */
.nx-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.nx-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(6, 182, 212, 0.15) 0%, transparent 55%),
              radial-gradient(ellipse 40% 40% at 50% 10%, rgba(29, 78, 216, 0.15) 0%, transparent 50%),
              var(--nx-bg-deep);
}

.nx-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.nx-hero-content {
  position: relative;
  z-index: 2;
}

.nx-hero h1 {
  font-family: var(--nx-font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.nx-hero-sub {
  font-size: 1.2rem;
  color: var(--nx-text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.nx-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.nx-hero-visual {
  position: relative;
  z-index: 2;
}

/* ---- SCORE METER ---- */
.nx-meter-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-meter-ring svg { transform: rotate(-90deg); }

.nx-meter-ring-label {
  position: absolute;
  text-align: center;
}

.nx-meter-ring-value {
  font-family: var(--nx-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}

.nx-meter-ring-name {
  font-family: var(--nx-font-heading);
  font-size: 0.75rem;
  color: var(--nx-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- SKILL EXPLORER ---- */
.nx-skill-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.nx-skill-tab {
  padding: 10px 20px;
  border: 1px solid var(--nx-border);
  border-radius: 50px;
  background: transparent;
  color: var(--nx-text-secondary);
  font-family: var(--nx-font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--nx-transition);
}

.nx-skill-tab:hover {
  border-color: var(--nx-violet);
  color: var(--nx-text-primary);
}

.nx-skill-tab.nx-active {
  background: var(--nx-accent-grad);
  border-color: transparent;
  color: white;
}

.nx-skill-panel { display: none; }
.nx-skill-panel.nx-active { display: block; }

/* ---- PERFORMANCE BAR ---- */
.nx-perf-bar-wrap { margin-bottom: 16px; }
.nx-perf-bar-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--nx-font-heading);
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--nx-text-secondary);
}
.nx-perf-bar-label span:last-child { color: var(--nx-cyan); font-weight: 600; }

.nx-perf-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.nx-perf-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--nx-accent-grad);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- TESTIMONIALS ---- */
.nx-testimonial-card {
  background: var(--nx-bg-glass);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  padding: 28px;
  transition: var(--nx-transition);
}

.nx-testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
}

.nx-stars { color: #f59e0b; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 12px; }

.nx-testimonial-text {
  color: var(--nx-text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.nx-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nx-border);
}

.nx-testimonial-name {
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.nx-testimonial-tag {
  font-size: 0.8rem;
  color: var(--nx-text-muted);
}

/* ---- TEAM CARDS ---- */
.nx-team-card {
  background: var(--nx-bg-glass);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  transition: var(--nx-transition);
}

.nx-team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: var(--nx-shadow-cyan);
}

.nx-team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.nx-team-card-body { padding: 24px; }

.nx-team-role {
  font-family: var(--nx-font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nx-cyan);
  margin-bottom: 6px;
}

.nx-team-name {
  font-family: var(--nx-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.nx-team-bio { font-size: 0.88rem; color: var(--nx-text-secondary); line-height: 1.7; }

/* ---- ARTICLE CARDS ---- */
.nx-article-card {
  background: var(--nx-bg-glass);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--nx-text-primary);
  display: block;
  transition: var(--nx-transition);
}

.nx-article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: var(--nx-shadow-violet);
  color: var(--nx-text-primary);
  text-decoration: none;
}

.nx-article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nx-article-card-body { padding: 24px; }

.nx-article-card-cat {
  font-family: var(--nx-font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nx-violet-light);
  margin-bottom: 8px;
}

.nx-article-card-title {
  font-family: var(--nx-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.nx-article-card-excerpt { font-size: 0.88rem; color: var(--nx-text-secondary); line-height: 1.7; }

.nx-article-card-meta {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--nx-text-muted);
  display: flex;
  gap: 16px;
}

/* ---- SERVICE CARDS ---- */
.nx-service-card {
  background: var(--nx-bg-glass);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  padding: 36px;
  transition: var(--nx-transition);
  position: relative;
  overflow: hidden;
}

.nx-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--nx-accent-grad);
  opacity: 0;
  transition: opacity 0.3s;
}

.nx-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: var(--nx-shadow-violet);
}

.nx-service-card:hover::before { opacity: 1; }

.nx-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--nx-violet-light);
  margin-bottom: 24px;
  transition: var(--nx-transition);
}

.nx-service-card:hover .nx-service-icon {
  background: rgba(124, 58, 237, 0.3);
}

.nx-service-title {
  font-family: var(--nx-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.nx-service-desc { color: var(--nx-text-secondary); margin-bottom: 16px; font-size: 0.95rem; }

.nx-disclaimer-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--nx-text-muted);
  border: 1px solid rgba(100,116,139,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ---- STATS ---- */
.nx-stat-item { text-align: center; }

.nx-stat-number {
  font-family: var(--nx-font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--nx-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
}

.nx-stat-label {
  color: var(--nx-text-muted);
  font-family: var(--nx-font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ---- SECTION HEADINGS ---- */
.nx-section-heading { margin-bottom: 60px; }
.nx-section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.nx-section-heading p {
  color: var(--nx-text-secondary);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ---- SLIDER / CAROUSEL ---- */
.nx-carousel-wrap { position: relative; overflow: hidden; }
.nx-carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.nx-carousel-slide { flex: 0 0 100%; }

.nx-carousel-nav {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.nx-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--nx-border);
  background: transparent;
  color: var(--nx-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--nx-transition);
  font-size: 0.9rem;
}

.nx-carousel-btn:hover {
  border-color: var(--nx-violet);
  color: var(--nx-violet-light);
  background: rgba(124, 58, 237, 0.1);
}

.nx-carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 16px;
}

.nx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nx-border);
  transition: var(--nx-transition);
  cursor: pointer;
}

.nx-dot.nx-active {
  width: 20px;
  border-radius: 3px;
  background: var(--nx-violet);
}

/* ---- SCORE SIMULATOR ---- */
.nx-simulator-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
  margin: 12px 0;
}

.nx-simulator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--nx-violet);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(124,58,237,0.6);
  transition: var(--nx-transition);
}

.nx-simulator-slider::-webkit-slider-thumb:hover {
  background: var(--nx-violet-light);
  transform: scale(1.2);
}

.nx-sim-value {
  font-family: var(--nx-font-display);
  font-size: 0.85rem;
  color: var(--nx-cyan);
  font-weight: 600;
}

/* ---- IMAGE SECTIONS ---- */
.nx-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--nx-radius-lg);
}

.nx-img-frame {
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--nx-border);
}

.nx-img-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,8,16,0.8) 100%);
}

/* ---- HERO BADGE ---- */
.nx-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--nx-font-heading);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nx-badge-violet {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--nx-violet-light);
}

.nx-badge-cyan {
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.3);
  color: var(--nx-cyan-light);
}

/* ---- DIVIDERS ---- */
.nx-divider-grad {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nx-violet), var(--nx-cyan), transparent);
  margin: 0;
  opacity: 0.5;
}

.nx-divider-space { height: 80px; }

/* ---- COUNTER ---- */
.nx-counter { font-variant-numeric: tabular-nums; }

/* ---- SVG SEPARATOR ---- */
.nx-svg-sep {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ---- CONTACT FORM ---- */
.nx-form-group { margin-bottom: 24px; }

.nx-form-label {
  display: block;
  font-family: var(--nx-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nx-text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.nx-form-control {
  width: 100%;
  background: rgba(15,25,55,0.8);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 14px 18px;
  color: var(--nx-text-primary);
  font-family: var(--nx-font-body);
  font-size: 0.95rem;
  transition: var(--nx-transition);
  outline: none;
}

.nx-form-control:focus {
  border-color: var(--nx-violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.nx-form-control::placeholder { color: var(--nx-text-muted); }

.nx-form-control option { background: var(--nx-bg-dark); color: var(--nx-text-primary); }

textarea.nx-form-control { resize: vertical; min-height: 130px; }

.nx-form-error {
  color: #f87171;
  font-size: 0.82rem;
  margin-top: 6px;
  display: none;
}

.nx-form-control.nx-error { border-color: #f87171; }

/* ---- CAPTCHA ---- */
.nx-captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(15,25,55,0.8);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  cursor: pointer;
  user-select: none;
  transition: var(--nx-transition);
}

.nx-captcha-box:hover { border-color: var(--nx-violet); }
.nx-captcha-box.nx-verified { border-color: #22c55e; background: rgba(34,197,94,0.08); }

.nx-captcha-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--nx-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #22c55e;
  transition: var(--nx-transition);
}

.nx-captcha-box.nx-verified .nx-captcha-checkbox {
  border-color: #22c55e;
  background: rgba(34,197,94,0.2);
}

.nx-captcha-text {
  font-family: var(--nx-font-heading);
  font-size: 0.9rem;
  color: var(--nx-text-secondary);
}

/* ---- MAP ---- */
.nx-map-frame {
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  border: 1px solid var(--nx-border);
  height: 380px;
}

.nx-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

/* ---- CONTACT INFO ---- */
.nx-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.nx-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124,58,237,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-violet-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.nx-contact-label {
  font-family: var(--nx-font-heading);
  font-size: 0.8rem;
  color: var(--nx-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.nx-contact-value {
  font-size: 0.95rem;
  color: var(--nx-text-primary);
}

.nx-contact-value a { color: var(--nx-cyan); text-decoration: none; }
.nx-contact-value a:hover { text-decoration: underline; }

/* ---- BREADCRUMB ---- */
.nx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--nx-text-muted);
}

.nx-breadcrumb a { color: var(--nx-text-muted); text-decoration: none; }
.nx-breadcrumb a:hover { color: var(--nx-cyan); }
.nx-breadcrumb-sep { color: var(--nx-border); }
.nx-breadcrumb-current { color: var(--nx-text-secondary); }

/* ---- PAGE HERO ---- */
.nx-page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.nx-page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
              var(--nx-bg-deep);
}

.nx-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.nx-page-hero p { color: var(--nx-text-secondary); font-size: 1.1rem; max-width: 600px; }

/* ---- ARTICLE ---- */
.nx-article-content h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  color: var(--nx-text-primary);
}

.nx-article-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--nx-cyan-light);
}

.nx-article-content p {
  color: var(--nx-text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.nx-article-content ul, .nx-article-content ol {
  color: var(--nx-text-secondary);
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.nx-article-content li { margin-bottom: 0.5rem; }

.nx-article-content strong { color: var(--nx-text-primary); }

.nx-article-img {
  width: 100%;
  border-radius: var(--nx-radius-lg);
  margin: 2rem 0;
  border: 1px solid var(--nx-border);
}

.nx-article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--nx-text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--nx-border);
}

.nx-article-meta-item { display: flex; align-items: center; gap: 6px; }

/* ---- LEGAL PAGES ---- */
.nx-legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--nx-text-primary);
  padding-top: 1rem;
  border-top: 1px solid rgba(124,58,237,0.15);
}

.nx-legal-content h2:first-child { border-top: none; }

.nx-legal-content p {
  color: var(--nx-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.85;
}

.nx-legal-content ul {
  color: var(--nx-text-secondary);
  margin: 0.75rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.nx-legal-content li { margin-bottom: 0.5rem; }

.nx-legal-date {
  font-size: 0.85rem;
  color: var(--nx-text-muted);
  margin-bottom: 2rem;
}

/* ---- TIMELINE ---- */
.nx-timeline { position: relative; padding-left: 40px; }

.nx-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--nx-violet), var(--nx-cyan));
}

.nx-timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.nx-timeline-dot {
  position: absolute;
  left: -35px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nx-violet);
  border: 2px solid var(--nx-bg-deep);
  box-shadow: 0 0 12px rgba(124,58,237,0.6);
}

.nx-timeline-year {
  font-family: var(--nx-font-display);
  font-size: 0.75rem;
  color: var(--nx-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.nx-timeline-title {
  font-family: var(--nx-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

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

/* ---- FAQ ---- */
.nx-faq-item {
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.nx-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 24px;
  text-align: left;
  color: var(--nx-text-primary);
  font-family: var(--nx-font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--nx-transition);
  gap: 12px;
}

.nx-faq-question:hover { background: rgba(255,255,255,0.03); }
.nx-faq-question.nx-open { color: var(--nx-violet-light); }

.nx-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--nx-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--nx-transition);
}

.nx-faq-question.nx-open .nx-faq-icon { 
  background: rgba(124,58,237,0.2); 
  border-color: var(--nx-violet);
  transform: rotate(45deg);
}

.nx-faq-answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--nx-text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.nx-faq-answer.nx-open { display: block; }

/* ---- COOKIE BANNER ---- */
.nx-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(8, 15, 30, 0.98);
  border-top: 1px solid var(--nx-border);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nx-cookie-banner.nx-visible { transform: translateY(0); }

.nx-cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.nx-cookie-text { font-size: 0.9rem; color: var(--nx-text-secondary); max-width: 600px; }
.nx-cookie-text a { color: var(--nx-cyan); text-decoration: none; }
.nx-cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ---- FOOTER ---- */
.nx-footer {
  background: var(--nx-bg-dark);
  border-top: 1px solid var(--nx-border);
  padding: 80px 0 40px;
}

.nx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.nx-footer-brand-desc {
  color: var(--nx-text-muted);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 280px;
}

.nx-footer-heading {
  font-family: var(--nx-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nx-text-muted);
  margin-bottom: 20px;
}

.nx-footer-links { list-style: none; }
.nx-footer-links li { margin-bottom: 10px; }
.nx-footer-links a {
  color: var(--nx-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nx-footer-links a:hover { color: var(--nx-cyan); }

.nx-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nx-footer-copy { font-size: 0.82rem; color: var(--nx-text-muted); }

.nx-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nx-footer-legal a {
  font-size: 0.82rem;
  color: var(--nx-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nx-footer-legal a:hover { color: var(--nx-text-secondary); }

/* ---- PARALLAX ---- */
.nx-parallax-img {
  transform: translateY(var(--nx-parallax-y, 0px));
  transition: transform 0.1s linear;
}

/* ---- FLOATING ELEMENTS ---- */
.nx-floating {
  animation: nx-float 6s ease-in-out infinite;
}

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

.nx-glow-pulse {
  animation: nx-glow 3s ease-in-out infinite;
}

@keyframes nx-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.6); }
}

/* ---- HIGHLIGHT BOX ---- */
.nx-highlight-box {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-left: 3px solid var(--nx-violet);
  border-radius: 0 var(--nx-radius) var(--nx-radius) 0;
  padding: 16px 20px;
  margin: 1.5rem 0;
  color: var(--nx-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- ABOUT SECTION ---- */
.nx-about-value-card {
  padding: 28px;
  background: var(--nx-bg-glass);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  transition: var(--nx-transition);
}

.nx-about-value-card:hover {
  border-color: rgba(6,182,212,0.4);
  transform: translateY(-4px);
}

.nx-about-value-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nx-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nx-nav-links { display: none; }
  .nx-nav-links.nx-mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 8, 16, 0.98);
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 12px;
  }
  .nx-nav-links.nx-mobile-open a { font-size: 1.3rem; }
  .nx-hamburger { display: flex; z-index: 1001; }
  .nx-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nx-section { padding: 70px 0; }
  .nx-hero { padding: 120px 0 60px; }
  .nx-page-hero { padding: 130px 0 60px; }
}

@media (max-width: 576px) {
  .nx-hero-actions { flex-direction: column; }
  .nx-btn { width: 100%; justify-content: center; }
  .nx-cookie-inner { flex-direction: column; }
  .nx-cookie-actions { flex-direction: column; width: 100%; }
  .nx-footer-bottom { flex-direction: column; text-align: center; }
}



.logo{
  max-width: 150px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}