:root {
  --bg: #000000;
  --bg-secondary: #0a0a0a;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --accent: #ffffff;
  --border: rgba(255, 255, 255, 0.1);
  /* Neon Colors */
  --neon-cyan: #ffff00;
  --neon-magenta: #ffff00;
  --neon-green: #ffff00;
  --neon-blue: #ffff00;
  --neon-yellow: #ffff00;
  --neon-pink: #ffff00;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 0, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.3s, transform 0.3s;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.logo-img {
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 200px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
  transition: all 0.3s ease;
}

.logo:hover .logo-text {
  text-shadow: 0 0 12px rgba(255, 255, 0, 0.8);
}

/* Fallback: Show text if logo image fails to load */
.logo-img[src=""],
.logo-img:not([src]) {
  display: none;
}

.logo-img[src=""]~.logo-text,
.logo:not(:has(img[src]))::after {
  content: "AVIAWKS";
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .logo-img {
    height: 38px;
    max-width: 180px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .hero {
    padding: 8rem 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo-img {
    height: 32px;
  }

  .nav-container {
    padding: 0.75rem 0.875rem;
  }

  .hero {
    padding: 5rem 1rem 2rem;
  }


  section {
    padding: 3rem 1rem;
  }

  .hero-actions {
    gap: 1rem;
  }

  .overview-card,
  .solution-card,
  .market-card {
    padding: 1.25rem;
  }

  .team-member {
    padding: 1.5rem;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px rgba(255, 255, 0, 0.6);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}

.nav-links a:hover::after {
  width: 100%;
  box-shadow: 0 0 8px rgba(255, 255, 0, 0.8);
}

.cta-nav {
  padding: 0.625rem 1.75rem;
  border: 1.5px solid var(--neon-green);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 0, 0.4);
  color: var(--neon-green);
}

.cta-nav:hover {
  background: var(--neon-green);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10000;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text);
  display: block;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle:hover span {
  background: var(--accent);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  width: 100%;
  z-index: 2;
}

.hero-video-container {
  flex: 1;
  max-width: 1000px;
  width: 100%;
  height: 800px;
  border-radius: 12px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: translateX(20%) translateY(-10%);
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scaleX(-1);
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  border: 1px solid var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(255, 255, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--neon-cyan);
  color: var(--bg);
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--neon-magenta);
  box-shadow: 0 0 8px rgba(255, 255, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--neon-magenta);
  color: var(--bg);
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
  transform: translateY(-2px);
}


/* Section Styles */
section {
  padding: 8rem 2rem;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-magenta);
  margin-bottom: 1rem;
  display: block;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
}

section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Overview Section */
.overview-section {
  background: var(--bg-secondary);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.overview-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

.overview-card:nth-child(1) {
  animation-delay: 0.1s;
}

.overview-card:nth-child(2) {
  animation-delay: 0.2s;
}

.overview-card:nth-child(3) {
  animation-delay: 0.3s;
}

.overview-card:nth-child(4) {
  animation-delay: 0.4s;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 0, 0.2);
  border-color: rgba(255, 255, 0, 0.5);
}

.overview-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.overview-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Problem & Solution Section */
.problem-section {
  background: var(--bg);
}

.problem-content,
.solution-content {
  margin-bottom: 6rem;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.problem-item {
  padding: 1.5rem;
  background: rgba(255, 0, 0, 0.05);
  border-left: 3px solid #ff4444;
  border-radius: 4px;
}

.problem-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ff6666;
}

.problem-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  padding: 2rem;
  background: rgba(255, 255, 0, 0.05);
  border: 1px solid rgba(255, 255, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 0, 0.5);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 0, 0.3);
}

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

.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Solutions Section */
.solutions-section {
  background: var(--bg-secondary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.solution-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

.solution-card:nth-child(1) {
  animation-delay: 0.1s;
}

.solution-card:nth-child(2) {
  animation-delay: 0.2s;
}

.solution-card:nth-child(3) {
  animation-delay: 0.3s;
}

.solution-card:nth-child(4) {
  animation-delay: 0.4s;
}

.solution-card:nth-child(5) {
  animation-delay: 0.5s;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 0, 0.2);
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.solution-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Market Section */
.market-section {
  background: var(--bg);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.market-card {
  padding: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.market-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pain-points,
.solution-benefit {
  margin-bottom: 1.5rem;
}

.pain-points h4,
.solution-benefit h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.pain-points ul {
  list-style: none;
  padding-left: 1rem;
}

.pain-points li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.pain-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ffff00;
}

.solution-benefit p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Personas Section */
.personas-section {
  background: var(--bg-secondary);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.persona-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

.persona-card:nth-child(1) {
  animation-delay: 0.1s;
}

.persona-card:nth-child(2) {
  animation-delay: 0.2s;
}

.persona-card:nth-child(3) {
  animation-delay: 0.3s;
}

.persona-card:nth-child(4) {
  animation-delay: 0.4s;
}

.persona-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.persona-card>p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.persona-reason {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.persona-reason strong {
  color: var(--text);
  font-weight: 600;
}

/* USP Section */
.usp-section {
  background: var(--bg);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.usp-item {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}

.usp-item:hover {
  border-color: rgba(255, 255, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 0, 0.3);
}

.usp-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.usp-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
  background: var(--bg-secondary);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  min-width: 800px;
}

.comparison-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}

.comparison-table td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

/* Team Section */
.team-section {
  background: var(--bg);
}

.team-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 0, 0.2);
  border-color: rgba(255, 255, 0, 0.5);
}

.member-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
  loading: lazy;
}

/* Specific fix for Arpit Pal's photo if it's a full-body shot */
.team-member:nth-child(5) .member-photo img {
  object-position: center 25%;
  object-fit: cover;
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.member-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.member-dept {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.member-skills {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

/* Text Fade Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Section Headings Animation */
/* Section headings and labels already have animations - see above */

/* Team Section Animations */
.team-intro {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.team-member {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

.team-member:nth-child(1) {
  animation-delay: 0.1s;
}

.team-member:nth-child(2) {
  animation-delay: 0.2s;
}

.team-member:nth-child(3) {
  animation-delay: 0.3s;
}

.team-member:nth-child(4) {
  animation-delay: 0.4s;
}

.team-member:nth-child(5) {
  animation-delay: 0.5s;
}

.team-member:nth-child(6) {
  animation-delay: 0.6s;
}

.team-member:nth-child(7) {
  animation-delay: 0.7s;
}

.team-member:nth-child(8) {
  animation-delay: 0.8s;
}

.team-member:nth-child(9) {
  animation-delay: 0.9s;
}

.team-member:nth-child(10) {
  animation-delay: 1s;
}

/* Strengths Section */
.strengths-section {
  background: var(--bg-secondary);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.strengths-card,
.needs-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.strengths-card h2,
.needs-card h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.strengths-card ul,
.needs-card ul {
  list-style: none;
}

.strengths-card li,
.needs-card li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  padding-left: 2rem;
}

.strengths-card li::before,
.needs-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffff00;
  font-weight: 600;
}

.needs-card li::before {
  content: "→";
  color: #ffff00;
}

/* Contact Section */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.social-link span {
  font-size: 1.5rem;
}

.contact-email {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-email h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-email p {
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-email a {
  color: var(--text);
  text-decoration: underline;
  transition: color 0.3s;
}

.contact-email a:hover {
  color: var(--text-muted);
}

.contact-form {
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

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

.form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--text);
  color: var(--bg);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-social {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-social h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }


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

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.875rem 1rem;
    position: relative;
  }

  .menu-toggle {
    display: flex !important;
    order: 3;
    margin-left: auto;
    z-index: 10000;
    position: relative;
  }

  .logo {
    order: 1;
    flex: 1;
  }

  .nav-links {
    order: 2;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.99);
    backdrop-filter: blur(20px);
    padding-top: 70px;
    padding-bottom: 2rem;
    padding-left: 0;
    padding-right: 0;
    display: none !important;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: 100vh;
  }

  .nav-links.open {
    display: flex !important;
    animation: slideDown 0.3s ease;
  }

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

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

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    display: flex;
    background: transparent;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    min-height: 52px;
    font-weight: 500;
    color: #ffffff !important;
    line-height: 1.5;
    background: transparent;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding-left: 2rem;
  }

  .nav-links a:active {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-links a:active {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  .cta-nav {
    display: none;
  }


  section {
    padding: 4rem 1rem;
  }

  .hero {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 2rem;
    min-height: auto;
    gap: 2rem;
  }
  
  .hero-video-container {
    order: 1;
    width: 100%;
    max-width: 100%;
    height: 40vh;
    min-height: 250px;
    max-height: 350px;
    transform: translateY(10%) scale(1.5);
    margin: 0 auto;
  }
  
  .hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
  }
  
  .hero-content {
    order: 2;
    padding: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    min-height: 48px;
  }

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

  .overview-grid,
  .solutions-grid,
  .market-grid,
  .problem-list,
  .solution-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .overview-card,
  .solution-card,
  .market-card,
  .feature-item {
    padding: 1.5rem;
  }

  section h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 2rem;
  }

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

  .form-input,
  textarea {
    font-size: 16px;
    /* Prevents zoom on iOS */
    padding: 1rem;
    min-height: 48px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    height: 80px;
  }

  /* Improve touch targets */
  a,
  button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Better spacing for mobile */
  .section-container {
    padding: 0;
  }

  /* Table responsive */
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table table {
    min-width: 600px;
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .social-icons {
    gap: 1.5rem;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.5rem;
  }
}