@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Brand Design Tokens */
:root {
  --bg-primary: #060913;
  --bg-secondary: #0c1122;
  --bg-tertiary: #131a33;
  --bg-card: rgba(12, 17, 34, 0.7);
  
  --accent-cyan: #00F2FE;
  --accent-cyan-rgb: 0, 242, 254;
  --accent-green: #00FF87;
  --accent-green-rgb: 0, 255, 135;
  --accent-blue: #4FACFE;
  
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-white: #FFFFFF;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 16px 36px 0 rgba(0, 0, 0, 0.6);
  --glow-shadow-cyan: 0 0 20px rgba(0, 242, 254, 0.3);
  --glow-shadow-green: 0 0 20px rgba(0, 255, 135, 0.3);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Accessibility Focus States */
*:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Global Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative Background Glows */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  opacity: 0.15;
  z-index: 0;
  transition: var(--transition-smooth);
}

.glow-sphere-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-cyan);
  top: 10%;
  right: -100px;
}

.glow-sphere-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-green);
  top: 45%;
  left: -200px;
}

.glow-sphere-3 {
  width: 450px;
  height: 450px;
  background: var(--accent-blue);
  bottom: 10%;
  right: -150px;
}

/* Grid Background effect */
.grid-overlay {
  position: fixed;
  inset: 0;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 9, 19, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(6, 9, 19, 0.9);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 242, 254, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .navbar {
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

/* Kinetic Logo Styling */
.logo-svg {
  width: 40px;
  height: 40px;
  overflow: visible;
}

.logo-node {
  fill: var(--accent-cyan);
  filter: drop-shadow(0 0 4px var(--accent-cyan));
  transition: var(--transition-smooth);
}

.logo-node-green {
  fill: var(--accent-green);
  filter: drop-shadow(0 0 4px var(--accent-green));
}

.logo-link {
  stroke: url(#logo-grad);
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  transition: var(--transition-smooth);
}

.brand:hover .logo-node {
  transform: scale(1.2);
  transform-origin: center;
}

.brand:hover .logo-link {
  stroke-dashoffset: 200;
  animation: drawLine 2s linear infinite;
}

@keyframes drawLine {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

.brand-text span {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(0, 255, 135, 0.1) 100%);
  border: 1px solid var(--accent-cyan);
  color: var(--text-white);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: var(--glow-shadow-cyan);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-white);
  margin: 5px 0;
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 100px 2rem 2rem 2rem;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-cta-container {
    display: none; /* hidden on mobile navbar, shown inside mobile link list or hidden */
  }
  
  /* Hamburger animation */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 100px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tagline-badge {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--accent-cyan);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .tagline-badge {
    align-self: center;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  max-width: 580px;
}

@media (max-width: 992px) {
  .hero-description {
    margin: 0 auto;
  }
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .hero-ctas {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  color: var(--bg-primary);
  border: none;
  box-shadow: var(--glow-shadow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* Interactive AI Tracking Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.mockup-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.mockup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(7, 11, 25, 0.9));
  z-index: 1;
}

.mockup-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(7, 11, 25, 0.85);
  border: 1px solid var(--accent-cyan);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.mockup-label .pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

.tracking-instructions {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(12, 17, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

/* Glassmorphism Section Intro */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
  position: relative;
  z-index: 2;
}

.section-intro h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .section-intro h2 {
    font-size: 2rem;
  }
}

.section-intro p {
  font-size: 1.1rem;
}

/* Product Section Foundations */
.product-section {
  padding: 100px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  z-index: 2;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.product-grid.reverse {
  grid-template-columns: 1.1fr 1fr;
}

@media (max-width: 992px) {
  .product-grid,
  .product-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-badge {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.product-title {
  font-size: 2.25rem;
  font-weight: 800;
}

.product-description {
  font-size: 1.05rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: var(--transition-fast);
}

.product-link svg {
  transition: var(--transition-fast);
}

.product-link:hover {
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.product-link:hover svg {
  transform: translateX(5px);
}

/* SECTION 1: IFCPF & Classification Explainer */
.classification-panel {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.class-toggles {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
}

.class-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.class-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
}

.class-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.class-content-wrapper {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.class-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.class-title {
  font-size: 1.5rem;
  color: var(--text-white);
}

.class-impairment {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(0, 255, 135, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.class-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.class-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.metric-bar-bg {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 3px;
  width: 0; /* Animated in JS */
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* SECTION 2: Stasism & Gamified Showcase */
.showcase-slider-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.slider-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.slides-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide-image-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-skeletal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 25, 0.3);
  z-index: 1;
}

.slide-skeletal-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slide-info {
  padding: 1.75rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.slide-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.4rem;
  display: block;
}

.slide-title {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.slide-desc {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0 0.5rem;
}

.slider-btn {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: var(--glow-shadow-green);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent-green);
  width: 20px;
  border-radius: 4px;
  box-shadow: var(--glow-shadow-green);
}

/* SECTION 3: Vana Vital & Progression Simulator */
.vital-simulator {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.sim-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sim-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  background: rgba(0, 255, 135, 0.1);
  color: var(--accent-green);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.sim-display-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 500px) {
  .sim-display-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.sim-meter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* SVG Circular Gauge */
.gauge-svg {
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8px;
}

.gauge-fill {
  fill: none;
  stroke: url(#gauge-grad);
  stroke-width: 10px;
  stroke-linecap: round;
  stroke-dasharray: 377; /* 2 * PI * 60 */
  stroke-dashoffset: 377; /* animated in JS */
  transition: stroke-dashoffset 0.1s linear;
}

.gauge-center-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.gauge-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.sim-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-card-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
}

.stat-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.stat-badge.green {
  background: rgba(0, 255, 135, 0.1);
  color: var(--accent-green);
}

.stat-badge.blue {
  background: rgba(79, 172, 254, 0.1);
  color: var(--accent-blue);
}

.progress-banner {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.1);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-bar-container {
  width: 100px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-val {
  height: 100%;
  background: var(--accent-cyan);
  width: 60%;
  border-radius: 3px;
}

/* Contact / Inquiry Router Section */
.contact-section {
  padding: 100px 0 120px 0;
  position: relative;
  z-index: 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.contact-title {
  font-size: 2.75rem;
  font-weight: 800;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  background: rgba(0, 242, 254, 0.06);
  border: 1px solid rgba(0, 242, 254, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.contact-text p {
  font-size: 0.95rem;
}

/* Inquiry Form Styling */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 500px) {
  .contact-card {
    padding: 1.5rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  margin-top: 0.5rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-status.success {
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.2);
  color: var(--accent-green);
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
footer {
  background: #03050a;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-desc {
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-nav h4 {
  font-size: 1rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 500px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--accent-cyan);
}
