:root {
  /* Color palette */
  --primary: #0078bf; /* Blue from logo */
  --secondary: #1e2a4a; /* Dark blue/purple from logo */
  --dark: #0f1621;
  --darker: #080c14;
  --light: #ffffff;
  --accent: #36d7b7;
  --accent-secondary: #ff3e55;
  --gray-light: #f2f6fc;
  --gray: #d1d8e0;
  --gray-dark: #8395a7;
  --text-light: #eef2f7;
  --text-dark: #1e272e;
  --success: #2ecc71;

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Poppins', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;

  /* Other */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark);
}

body {
  font-family: var(--font-secondary);
  background-color: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

section {
  padding: var(--space-xxl) 0;
  position: relative;
}

/* Custom Cursor */
.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  background: rgba(0, 120, 191, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  mix-blend-mode: screen;
}

.cursor-follower.active {
  opacity: 1;
}

.cursor-follower.hovering {
  width: 50px;
  height: 50px;
  background: rgba(54, 215, 183, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
  gap: var(--space-sm);
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
  transform: skewX(-20deg);
}

.btn:hover:before {
  transform: translateX(200%) skewX(-20deg);
}

.btn > * {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.btn-primary:hover {
  background: #2bc9aa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(54, 215, 183, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--light);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: var(--space-md);
}

.btn-submit i {
  transition: transform var(--transition-normal);
}

.btn-submit:hover i {
  transform: translateX(5px);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-dark);
  max-width: 600px;
  margin: var(--space-md) auto 0;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-normal);
  background: rgba(15, 22, 33, 0.9);
}

header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  flex: 0 0 auto;
  z-index: 101;
}

.logo img {
  height: 40px;
  transition: var(--transition-normal);
}

nav {
  display: flex;
  justify-content: flex-end;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav li a {
  font-family: var(--font-primary);
  font-weight: 500;
  position: relative;
  color: var(--gray);
  transition: color 0.3s ease;
}

.main-nav li a:hover {
  color: var(--light);
}

.nav-cta {
  background: var(--accent);
  padding: 0.5rem 1.5rem !important;
  border-radius: var(--border-radius-sm);
  color: var(--dark) !important;
  font-weight: 600 !important;
  transition: var(--transition-normal) !important;
}

.nav-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(54, 215, 183, 0.3);
}

.menu-toggle {
  display: none;
  z-index: 101;
}

.hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--light);
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 22, 33, 0.9), rgba(15, 22, 33, 0.7));
  z-index: 1;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* Radar Animation - Updated for the circular look in the screenshot */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.radar-container {
  width: 400px;
  height: 400px;
  position: relative;
}

.radar-screen {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(15, 22, 33, 0.3);
  border: 2px solid var(--accent);
  box-shadow: 0 0 30px rgba(54, 215, 183, 0.3), inset 0 0 30px rgba(54, 215, 183, 0.1);
  overflow: hidden;
  position: relative;
}

.radar-screen:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--accent);
  z-index: 3;
}

.radar-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%, 50% 0%);
  background: linear-gradient(90deg, rgba(54, 215, 183, 0) 0%, rgba(54, 215, 183, 0.3) 100%);
  transform-origin: center;
  animation: radar-sweep 4s infinite linear;
  z-index: 2;
}

@keyframes radar-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.blip {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.blip:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: blip-pulse 2s infinite;
}

@keyframes blip-pulse {
  0% { width: 8px; height: 8px; opacity: 1; }
  100% { width: 30px; height: 30px; opacity: 0; }
}

.target-lock {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 4;
  animation: target-blink 2s infinite alternate;
}

.target-lock:before, .target-lock:after {
  content: '';
  position: absolute;
  background: var(--accent-secondary);
}

.target-lock:before {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.target-lock:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.target-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-secondary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes target-blink {
  0%, 80% { opacity: 1; }
  90% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  opacity: 0.7;
  transition: var(--transition-normal);
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--light);
  border-radius: 25px;
  position: relative;
}

.mouse-wheel {
  width: 6px;
  height: 6px;
  background: var(--light);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-indicator p {
  font-size: 0.75rem;
  margin-top: var(--space-sm);
  letter-spacing: 1px;
}

/* Track Section */
.track {
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.track:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co/XkksyvXL/workshop.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.track-visual {
  position: relative;
  min-height: 400px;
}

.data-visualization {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.data-node {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(54, 215, 183, 0.1);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  animation: node-pulse 4s infinite alternate;
  box-shadow: 0 0 20px rgba(54, 215, 183, 0.2);
}

.node1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.node2 {
  top: 70%;
  left: 15%;
  animation-delay: 1s;
}

.node3 {
  top: 40%;
  left: 70%;
  animation-delay: 2s;
}

.node4 {
  top: 80%;
  left: 60%;
  animation-delay: 3s;
}

.data-link {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left center;
  z-index: -1;
}

.link1 {
  top: 25%;
  left: 35%;
  width: 35%;
  transform: rotate(25deg);
  animation: link-pulse 3s infinite alternate;
}

.link2 {
  top: 70%;
  left: 22%;
  width: 40%;
  transform: rotate(-20deg);
  animation: link-pulse 4s infinite alternate-reverse;
}

.link3 {
  top: 78%;
  left: 25%;
  width: 45%;
  transform: rotate(40deg);
  animation: link-pulse 5s infinite alternate;
}

@keyframes node-pulse {
  0% { transform: scale(1); box-shadow: 0 0 20px rgba(54, 215, 183, 0.2); }
  100% { transform: scale(1.1); box-shadow: 0 0 30px rgba(54, 215, 183, 0.4); }
}

@keyframes link-pulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}

.track-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.feature-icon {
  flex: 0 0 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--light);
  margin-top: 5px;
}

.feature-text h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.feature-text p {
  color: var(--gray-dark);
  font-size: 0.95rem;
}

/* Recover Section */
.recover {
  background: var(--dark);
  position: relative;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  min-width: 200px;
  flex: 1;
  margin: var(--space-sm);
  transition: var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-primary);
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.stat-number .counter {
  display: inline-block;
}

.stat-number span {
  font-size: 2rem;
  margin-left: 5px;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-dark);
  font-weight: 500;
}

.recovery-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.method {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(54, 215, 183, 0.2);
}

.method-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
}

.method h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
}

.method p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Approach Section */
.approach {
  background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.approach:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co/0y3XCDdg/strategy.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.approach-timeline {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.approach-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  z-index: -1;
}

.timeline-item {
  display: flex;
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-marker:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(54, 215, 183, 0.5);
}

.timeline-content {
  padding-left: var(--space-lg);
  padding-top: var(--space-xs);
}

.timeline-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light);
  font-size: 1.2rem;
  z-index: 2;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
}

.timeline-content p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  max-width: 500px;
}

/* Testimonials Section */
.testimonials {
  background: var(--darker);
  position: relative;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: var(--space-md);
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transition: var(--transition-normal);
}

.testimonial-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(54, 215, 183, 0.1);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: var(--light);
}

.testimonial-meta {
  display: flex;
  align-items: center;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-md);
}

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

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-lg);
}

.slider-arrow {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: var(--transition-normal);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  margin: 0 var(--space-md);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 5px;
  transition: var(--transition-normal);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  background: var(--dark);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  padding-right: var(--space-lg);
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-sm);
  padding: var(--space-md);
  transition: var(--transition-normal);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--accent);
}

.contact-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--light);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md) 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-normal);
  font-family: var(--font-secondary);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--gray-dark);
  transition: var(--transition-normal);
  pointer-events: none;
}

.form-group textarea + label {
  top: var(--space-md);
  transform: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: 0;
  font-size: 0.8rem;
  color: var(--accent);
}

.form-group .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-normal);
}

.form-group input:focus ~ .line,
.form-group textarea:focus ~ .line {
  width: 100%;
}

/* Footer */
footer {
  background: var(--darker);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 35px;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30px;
  background: var(--accent);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-column ul li a {
  color: var(--gray-dark);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.footer-column ul li a:hover {
  color: var(--light);
  transform: translateX(5px);
  display: inline-block;
}

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

.copyright p,
.footer-legal p {
  font-size: 0.875rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}

/* Overrides for glitch effect */
.glitch {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: var(--light);
  text-shadow: 0 0 5px rgba(54, 215, 183, 0.3);
}

.glitch:after,
.glitch:before {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-grid,
  .track-grid,
  .contact-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hero-visual {
    order: -1;
  }
  
  .radar-container {
    max-width: 300px;
    max-height: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(15, 22, 33, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-lg) var(--space-lg);
    transition: var(--transition-normal);
    z-index: 100;
    backdrop-filter: blur(10px);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav li {
    width: 100%;
  }
  
  .main-nav li a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .stat-item {
    width: 100%;
  }
  
  .testimonial-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .testimonial-image {
    margin-bottom: var(--space-sm);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .radar-container {
    max-width: 250px;
    max-height: 250px;
  }
  
  .contact-form-container {
    padding: var(--space-lg);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-number span {
    font-size: 1.5rem;
  }
  
  .timeline-marker {
    width: 40px;
    height: 40px;
  }
  
  .timeline-content {
    padding-left: var(--space-md);
  }
}
