/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: #f5f5f5;
  --text-primary: #000000;
  --text-secondary: #666666;
  --text-light: #999999;
  --border-color: #e5e5e5;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--secondary-color);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f5f5f5;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: #f5f5f5;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: -1rem;
}

.logo img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
  margin-right: -1rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.cta-button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}



.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  position: absolute;
  z-index: 3;
  left: 2rem;
  bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

.hero-footage-label {
  position: absolute;
  bottom: 60px;
  right: 80px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 400;
  z-index: 4;
  pointer-events: none;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: black;
  text-shadow:
    3px 3px 0px white,
    -3px -3px 0px white,
    3px -3px 0px white,
    -3px 3px 0px white,
    4px 4px 8px rgba(255, 255, 255, 1),
    -4px -4px 8px rgba(255, 255, 255, 1),
    4px -4px 8px rgba(255, 255, 255, 1),
    -4px 4px 8px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 30px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(255, 255, 255, 0.6);
  max-width: 800px;
}

.hero p {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 2.5rem;
  max-width: 500px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  border: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border: 2px solid var(--border-color);
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Products Header Section */
.products-header {
  padding: 4rem 0;
  background: var(--accent-color);
  text-align: center;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Sections */
.feature-section {
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.feature-section:nth-child(even) {
  background: var(--accent-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-section-reverse .feature-grid {
  grid-template-columns: 1fr 1fr;
}

.feature-section-reverse .feature-content {
  order: 2;
}

.feature-section-reverse .feature-image {
  order: 1;
}

.feature-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.feature-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature-list i {
  color: var(--text-primary);
  font-size: 0.9rem;
}

.feature-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: block;
  position: relative;
  z-index: 10;
  background: white;
}

.feature-image {
  position: relative;
  z-index: 5;
  background: transparent;
}

.feature-image img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}



/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background: var(--accent-color);
}

.cta-section .btn-secondary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.cta-section .btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: var(--secondary-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    justify-content: center;
    text-align: center;
  }



  .hero::after {
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  }

  .hero-content {
    margin-left: 0;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
  }

  .hero h2 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    max-width: 95%;
    text-shadow:
      2px 2px 4px rgba(0, 0, 0, 0.8),
      3px 3px 8px rgba(0, 0, 0, 0.6),
      4px 4px 12px rgba(0, 0, 0, 0.4);
  }

  .hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .logo {
    margin-left: -0.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .trust-logos {
    gap: 1.5rem;
  }

  .trust-logo {
    font-size: 1rem;
  }

  .feature-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
  }

  /* Force image to appear first in mobile */
  .feature-grid .feature-image,
  .feature-section-reverse .feature-grid .feature-image {
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

  /* Force content to appear second in mobile */
  .feature-grid .feature-content,
  .feature-section-reverse .feature-grid .feature-content {
    order: 2 !important;
    width: 100% !important;
  }

  .feature-content h2 {
    font-size: 2rem;
  }

  .feature-buttons {
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-video {
    /* Ensure video covers properly on mobile */
    min-width: 100%;
    min-height: 100%;
  }

  .logo img {
    height: 35px;
  }
}