/* ===================================
   NAVIKURJAH ENERGY - DESIGN SYSTEM
   Premium Clean Energy Website
   =================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Primary Colors - Sustainability Greens */
  --primary-900: #0a2a1f;
  --primary-800: #0d3627;
  --primary-700: #0f4230;
  --primary-600: #135239;
  --primary-500: #1a6b4a;
  --primary-400: #22855e;
  --primary-300: #2ba572;
  --primary-200: #5dc99a;
  --primary-100: #a3e4c4;
  --primary-50: #e8f8f0;

  /* Accent - Electric Blue (EV/Tech) */
  --accent-500: #00d4ff;
  --accent-400: #33dcff;
  --accent-300: #66e4ff;
  --accent-200: #99ecff;
  --accent-glow: rgba(0, 212, 255, 0.4);

  /* Energy Amber */
  --energy-500: #ffa726;
  --energy-400: #ffb74d;
  --energy-300: #ffc977;
  --energy-glow: rgba(255, 167, 38, 0.4);

  /* Neutrals */
  --neutral-900: #0f1419;
  --neutral-800: #1a1f26;
  --neutral-700: #252c35;
  --neutral-600: #3a4350;
  --neutral-500: #5a6577;
  --neutral-400: #8292a4;
  --neutral-300: #b0bcc9;
  --neutral-200: #d4dce6;
  --neutral-100: #eef2f7;
  --neutral-50: #f8fafc;

  /* Semantic */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow-accent: 0 0 40px rgba(0, 212, 255, 0.3);
  --shadow-glow-energy: 0 0 40px rgba(255, 167, 38, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;
}

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

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

body {
  font-family: var(--font-primary);
  background: var(--neutral-900);
  color: var(--neutral-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

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

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--text-6xl);
  }

  h2 {
    font-size: var(--text-5xl);
  }

  h3 {
    font-size: var(--text-3xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-7xl);
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-500), var(--primary-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-energy {
  background: linear-gradient(135deg, var(--energy-500), var(--energy-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--space-24) 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  color: white;
  box-shadow: 0 4px 15px rgba(26, 107, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 107, 74, 0.5);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
  color: var(--neutral-900);
  box-shadow: var(--shadow-glow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--glass-border);
  color: var(--neutral-100);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--glass-bg);
  border-color: var(--accent-500);
  color: var(--accent-500);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* Button Shine Effect */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

/* ---------- Glass Cards ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-500);
  margin-bottom: var(--space-4);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--neutral-400);
  line-height: 1.7;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(15, 20, 25, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-3) 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.nav-links {
  display: none;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-300);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-500);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neutral-50);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--neutral-100);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--neutral-900);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  transition: right var(--transition-slow);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-size: var(--text-2xl);
  font-weight: 600;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--primary-900) 50%, var(--neutral-800) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(26, 107, 74, 0.2), transparent);
}

/* Animated Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-500);
  border-radius: 50%;
  opacity: 0.6;
  animation: float-particle 15s infinite linear;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 14s;
}

.particle:nth-child(3) {
  left: 35%;
  animation-delay: 4s;
  animation-duration: 11s;
}

.particle:nth-child(4) {
  left: 50%;
  animation-delay: 1s;
  animation-duration: 16s;
}

.particle:nth-child(5) {
  left: 65%;
  animation-delay: 3s;
  animation-duration: 13s;
}

.particle:nth-child(6) {
  left: 80%;
  animation-delay: 5s;
  animation-duration: 15s;
}

.particle:nth-child(7) {
  left: 90%;
  animation-delay: 2.5s;
  animation-duration: 10s;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent-500);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--energy-500);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.hero-title {
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--neutral-400);
  max-width: 600px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-xl);
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Animated EV Icon */
.hero-visual {
  margin-top: var(--space-16);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.ev-icon-wrapper {
  position: relative;
  display: inline-block;
}

.ev-icon {
  font-size: 120px;
  filter: drop-shadow(0 0 30px var(--accent-glow));
  animation: float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
  .ev-icon {
    font-size: 150px;
  }
}

.ev-trail {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

.ev-trail span {
  width: 30px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-500));
  border-radius: var(--radius-full);
  opacity: 0;
  animation: trail 1.5s ease-in-out infinite;
}

.ev-trail span:nth-child(1) {
  animation-delay: 0s;
}

.ev-trail span:nth-child(2) {
  animation-delay: 0.2s;
}

.ev-trail span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes trail {

  0%,
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }

  50% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--neutral-500);
  font-size: var(--text-sm);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-500), transparent);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- Partners Section ---------- */
.partners {
  background: var(--neutral-800);
  padding: var(--space-12) 0;
}

.partners-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.partners-header h3 {
  font-size: var(--text-lg);
  color: var(--neutral-400);
  font-weight: 500;
}

.partners-track {
  display: flex;
  gap: var(--space-16);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partners-logos {
  display: flex;
  gap: var(--space-16);
  animation: scroll-logos 30s linear infinite;
}

.partner-logo {
  flex-shrink: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  transition: all var(--transition-base);
}

.partner-logo img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: all var(--transition-base);
}

.partner-logo:hover img {
  transform: scale(1.05);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Features Section (Why Choose Us) ---------- */
.features {
  position: relative;
  background: linear-gradient(180deg, var(--neutral-900) 0%, var(--primary-900) 100%);
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.features-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-500), var(--primary-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(26, 107, 74, 0.1));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(26, 107, 74, 0.2));
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-accent);
}

.feature-card h4 {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.feature-card p {
  color: var(--neutral-400);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ---------- About Section ---------- */
.about {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.about-content {
  order: 2;
}

@media (min-width: 1024px) {
  .about-content {
    order: 1;
  }
}

.about-visual {
  order: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .about-visual {
    order: 2;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.2), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 167, 38, 0.2), transparent 50%);
}

.about-image-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  opacity: 0.5;
  filter: drop-shadow(0 0 40px var(--accent-glow));
}

.about-stats {
  position: absolute;
  bottom: -30px;
  right: -20px;
  display: flex;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .about-stats {
    bottom: -40px;
    right: -40px;
  }
}

.stat-card {
  background: var(--neutral-800);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent-500);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-500);
  margin-bottom: var(--space-4);
}

.about-title {
  margin-bottom: var(--space-6);
}

.about-description {
  color: var(--neutral-300);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.about-values {
  display: grid;
  gap: var(--space-4);
}

.value-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.value-item:hover {
  border-color: var(--accent-500);
  background: rgba(0, 212, 255, 0.05);
}

.value-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.value-content h5 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.value-content p {
  font-size: var(--text-sm);
  color: var(--neutral-400);
}

/* What We Stand For Box */
.stand-for-box {
  margin-top: var(--space-12);
  padding: var(--space-8);
  border-left: 4px solid var(--accent-500);
}

.stand-for-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-8);
  text-align: center;
}

.stand-for-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .stand-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stand-for-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.stand-for-item:hover {
  border-color: var(--accent-500);
  background: rgba(0, 212, 255, 0.05);
}

.stand-for-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.stand-for-content h5 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--neutral-100);
}

.stand-for-content p {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  line-height: 1.6;
}

/* Mission/Vision Cards */
.mission-vision {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .mission-vision {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mv-card {
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-500), var(--primary-400));
}

.mv-card.vision::before {
  background: linear-gradient(180deg, var(--energy-500), var(--energy-300));
}

.mv-icon {
  font-size: 40px;
  margin-bottom: var(--space-4);
}

.mv-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--accent-500);
}

.mv-card.vision h4 {
  color: var(--energy-500);
}

.mv-card p {
  color: var(--neutral-300);
  line-height: 1.7;
}

/* ---------- Approach/Timeline Section ---------- */
.approach {
  background: linear-gradient(180deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
  position: relative;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-500), var(--primary-500), var(--energy-500));
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    padding-right: 0;
    width: 50%;
  }

  .timeline-item:nth-child(odd) {
    margin-left: auto;
    padding-left: 50px;
  }

  .timeline-item:nth-child(even) {
    padding-right: 50px;
    text-align: right;
  }
}

.timeline-marker {
  position: absolute;
  left: 8px;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--neutral-900);
  border: 3px solid var(--accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent-500);
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-marker {
    left: -13px;
  }

  .timeline-item:nth-child(even) .timeline-marker {
    right: -13px;
    left: auto;
  }
}

.timeline-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.timeline-content:hover {
  border-color: var(--accent-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-accent);
}

.timeline-content h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--neutral-100);
}

.timeline-content p {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }
}

/* ---------- Services Section ---------- */
.services {
  background: var(--neutral-900);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(26, 107, 74, 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 212, 255, 0.1), transparent);
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-10);
  position: relative;
}

.services-tab {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-400);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.services-tab:hover,
.services-tab.active {
  color: var(--neutral-50);
  border-color: var(--accent-500);
  background: rgba(0, 212, 255, 0.1);
}

.services-tab.active {
  box-shadow: var(--shadow-glow-accent);
}

.services-content {
  position: relative;
}

.service-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-main {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .service-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.service-info h3 {
  margin-bottom: var(--space-6);
}

.service-info p {
  color: var(--neutral-300);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.service-features {
  display: grid;
  gap: var(--space-4);
}

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

.service-feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-500), var(--primary-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

.service-feature span {
  color: var(--neutral-300);
  font-size: var(--text-sm);
}

.service-visual {
  position: relative;
}

.service-card-large {
  background: linear-gradient(135deg, var(--primary-800), var(--primary-700));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.15), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 167, 38, 0.1), transparent 50%);
}

.service-card-icon {
  font-size: 100px;
  opacity: 0.8;
  position: relative;
  filter: drop-shadow(0 0 30px var(--accent-glow));
}

/* ===== 4-Column Service Blocks Grid ===== */
.service-blocks-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
  .service-blocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .service-blocks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-block {
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.05));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-block:hover {
  transform: translateY(-8px);
  border-color: var(--accent-500);
  box-shadow: var(--shadow-glow-accent);
}

.service-block:hover::before {
  opacity: 1;
}

.service-block-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(26, 107, 74, 0.3));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.service-block h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--neutral-100);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.service-block p {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  line-height: 1.7;
  flex-grow: 1;
}

.service-block-list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
}

.service-block-list li {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  line-height: 1.6;
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: var(--space-2);
}

.service-block-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-500);
  font-weight: bold;
}

/* Industry Cards */
.industry-cards {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

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

@media (min-width: 1024px) {
  .industry-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.05));
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

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

.industry-icon {
  font-size: 40px;
  margin-bottom: var(--space-4);
}

.industry-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.industry-card p {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-500);
  margin-top: auto;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.industry-link:hover {
  gap: var(--space-3);
  color: var(--accent-400);
}

/* ---------- Telematics Section ---------- */
.telematics {
  background: linear-gradient(135deg, var(--primary-900), var(--neutral-900));
  position: relative;
  overflow: hidden;
}

.telematics::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0, 212, 255, 0.1), transparent);
}

.telematics-grid {
  display: grid;
  gap: var(--space-8);
  position: relative;
}

@media (min-width: 1024px) {
  .telematics-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
  }
}

.telematics-features {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .telematics-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tel-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.tel-feature:hover {
  border-color: var(--accent-500);
  transform: translateY(-2px);
}

.tel-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(26, 107, 74, 0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.tel-content h5 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.tel-content p {
  font-size: var(--text-xs);
  color: var(--neutral-400);
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: var(--neutral-800);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--neutral-700);
  border-bottom: 1px solid var(--glass-border);
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-dot.red {
  background: #ff5f56;
}

.dashboard-dot.yellow {
  background: #ffbd2e;
}

.dashboard-dot.green {
  background: #27ca3f;
}

.dashboard-content {
  padding: var(--space-6);
  display: grid;
  gap: var(--space-4);
}

.dash-row {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .dash-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dash-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}

.dash-card-value {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent-500);
}

.dash-card-label {
  font-size: var(--text-xs);
  color: var(--neutral-400);
}

.dash-map {
  background: linear-gradient(135deg, var(--primary-800), var(--primary-700));
  border-radius: var(--radius-lg);
  height: 150px;
  position: relative;
  overflow: hidden;
}

.dash-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%);
  background-size: 30px 30px;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-500);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-glow);
  animation: pulse-map 2s infinite;
}

.map-dot:nth-child(1) {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.map-dot:nth-child(2) {
  top: 50%;
  left: 60%;
  animation-delay: 0.5s;
}

.map-dot:nth-child(3) {
  top: 70%;
  left: 40%;
  animation-delay: 1s;
}

@keyframes pulse-map {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* ---------- Founder Section ---------- */
.founder {
  background: var(--neutral-800);
  position: relative;
}

.founder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.founder-card {
  display: grid;
  gap: var(--space-10);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .founder-card {
    grid-template-columns: 280px 1fr;
    gap: var(--space-12);
  }
}

.founder-image {
  position: relative;
}

.founder-photo {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}

.founder-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.1), transparent 60%);
}

.founder-photo-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.5;
}

.founder-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-badge {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: var(--neutral-800);
  border: 1px solid var(--accent-500);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-500);
  box-shadow: var(--shadow-lg);
}

.founder-content h3 {
  margin-bottom: var(--space-2);
}

.founder-role {
  font-size: var(--text-lg);
  color: var(--accent-500);
  margin-bottom: var(--space-6);
}

.founder-story {
  color: var(--neutral-300);
  font-size: var(--text-base);
  line-height: 1.9;
}

.founder-story p {
  margin-bottom: var(--space-4);
}

.founder-quote {
  padding: var(--space-6);
  background: var(--glass-bg);
  border-left: 3px solid var(--accent-500);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: var(--space-6);
  font-style: italic;
  color: var(--neutral-200);
}

/* ---------- Contact Section ---------- */
.contact {
  position: relative;
  background: linear-gradient(180deg, var(--neutral-900), var(--neutral-800));
}

.contact-grid {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.contact-info h3 {
  margin-bottom: var(--space-6);
}

.contact-description {
  color: var(--neutral-300);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(26, 107, 74, 0.1));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.contact-text h5 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.contact-text p,
.contact-text a {
  color: var(--neutral-400);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.contact-text a:hover {
  color: var(--accent-500);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.contact-form {
  display: grid;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-200);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--neutral-800);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  font-size: var(--text-base);
  color: var(--neutral-100);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-500);
}

.form-submit {
  margin-top: var(--space-4);
}

.form-submit .btn {
  width: 100%;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--neutral-900);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: var(--neutral-400);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-5);
  color: var(--neutral-100);
}

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

.footer-links a {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-500);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--accent-500);
  border-color: var(--accent-500);
  color: var(--neutral-900);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--neutral-500);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: var(--neutral-500);
}

.footer-legal a:hover {
  color: var(--accent-500);
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animations */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal-stagger.active>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal-stagger.active>*:nth-child(6) {
  transition-delay: 0.6s;
}

.reveal-stagger.active>* {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility Classes ---------- */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.relative {
  position: relative;
}

/* ---------- Logo Image Styles ---------- */
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 60px;
  }
}

.footer-brand .logo-img {
  height: 80px;
  margin-bottom: var(--space-4);
}

/* ---------- Hero Image Styles ---------- */
.hero-image {
  width: 100%;
  max-width: 100%;
  height: 400px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.15);
  animation: float 6s ease-in-out infinite;
  object-fit: cover;
  object-position: center 40%;
}

@media (min-width: 768px) {
  .hero-image {
    height: 500px;
  }
}

/* ---------- About Image Styles ---------- */
.about-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

/* ---------- Partner Logo Styles ---------- */
.partner-logo {
  flex-shrink: 0;
  height: 40px;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-300);
  opacity: 0.7;
  transition: all var(--transition-base);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--accent-500);
}

/* ---------- Industry Card Image Styles ---------- */
.industry-img-wrapper {
  width: 100%;
  height: 180px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.industry-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.industry-card:hover .industry-img {
  transform: scale(1.05);
}

.industry-card {
  padding: 0;
  padding-bottom: var(--space-6);
  overflow: hidden;
}

.industry-card h4,
.industry-card p {
  padding: 0 var(--space-6);
}

.industry-card h4 {
  margin-bottom: var(--space-2);
}

/* ---------- Info Boxes Section (Homepage) ---------- */
.info-boxes {
  padding: var(--space-16) 0;
  background: var(--neutral-900);
  position: relative;
}

.info-boxes-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .info-boxes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-box {
  padding: var(--space-8);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.05));
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.info-box-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  transition: all var(--transition-base);
}

.info-box:hover .info-box-icon {
  border-color: var(--accent-500);
  box-shadow: var(--shadow-glow-accent);
}

.info-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-box h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--accent-500);
}

.info-box p {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.info-box-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-500);
  margin-top: auto;
  transition: all var(--transition-base);
}

.info-box:hover .info-box-link {
  gap: var(--space-3);
  color: var(--accent-400);
}

.info-box .btn {
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

/* ---------- Mobile Responsive Fixes ---------- */
@media (max-width: 767px) {

  /* Smaller logo on mobile to prevent overlap */
  .logo-img {
    height: 40px;
  }

  /* Add top margin to hero badge so it doesn't overlap with navbar */
  .hero-badge {
    margin-top: var(--space-4);
  }

  /* Ensure hero content is properly centered */
  .hero-content {
    text-align: center;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  /* Center scroll indicator properly */
  .scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }

  /* Reduce hero title size on mobile */
  .hero-title {
    font-size: var(--text-3xl);
  }

  /* Fix hero visual on mobile */
  .hero-visual {
    margin-top: var(--space-6);
  }
}