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

body {
  font-family: "Inter", sans-serif;
  color: white;
  background-color: black;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-container {
  position: relative;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Image - for header and hero sections */
.hero-background {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b69 30%, #6b46c1 60%, #8b5cf6 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 900'%3E%3Cdefs%3E%3Cfilter id='blur1' x='-50%25' y='-50%25' width='200%25' height='200%25'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='40'/%3E%3C/filter%3E%3Cfilter id='blur2' x='-50%25' y='-50%25' width='200%25' height='200%25'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='60'/%3E%3C/filter%3E%3Cfilter id='blur3' x='-50%25' y='-50%25' width='200%25' height='200%25'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='80'/%3E%3C/filter%3E%3CradialGradient id='radial1' cx='30%25' cy='20%25' r='60%25'%3E%3Cstop offset='0%25' style='stop-color:%238b5cf6;stop-opacity:0.8' /%3E%3Cstop offset='50%25' style='stop-color:%236366f1;stop-opacity:0.4' /%3E%3Cstop offset='100%25' style='stop-color:%232563eb;stop-opacity:0.1' /%3E%3C/radialGradient%3E%3CradialGradient id='radial2' cx='70%25' cy='60%25' r='50%25'%3E%3Cstop offset='0%25' style='stop-color:%23a855f7;stop-opacity:0.7' /%3E%3Cstop offset='50%25' style='stop-color:%237c3aed;stop-opacity:0.3' /%3E%3Cstop offset='100%25' style='stop-color:%235b21b6;stop-opacity:0.1' /%3E%3C/radialGradient%3E%3CradialGradient id='radial3' cx='20%25' cy='80%25' r='40%25'%3E%3Cstop offset='0%25' style='stop-color:%23ec4899;stop-opacity:0.6' /%3E%3Cstop offset='70%25' style='stop-color:%23be185d;stop-opacity:0.2' /%3E%3Cstop offset='100%25' style='stop-color:%23831843;stop-opacity:0.05' /%3E%3C/radialGradient%3E%3C/defs%3E%3Cellipse cx='400' cy='200' rx='300' ry='200' fill='url(%23radial1)' filter='url(%23blur3)' opacity='0.9'/%3E%3Cellipse cx='1000' cy='400' rx='400' ry='250' fill='url(%23radial2)' filter='url(%23blur2)' opacity='0.7'/%3E%3Cellipse cx='200' cy='600' rx='250' ry='180' fill='url(%23radial3)' filter='url(%23blur3)' opacity='0.8'/%3E%3Cellipse cx='1200' cy='150' rx='200' ry='150' fill='url(%23radial1)' filter='url(%23blur1)' opacity='0.5'/%3E%3Cellipse cx='700' cy='700' rx='350' ry='200' fill='url(%23radial2)' filter='url(%23blur3)' opacity='0.6'/%3E%3Cellipse cx='50' cy='300' rx='180' ry='120' fill='url(%23radial3)' filter='url(%23blur2)' opacity='0.4'/%3E%3Cellipse cx='1300' cy='600' rx='220' ry='160' fill='url(%23radial1)' filter='url(%23blur1)' opacity='0.3'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(1px);
}

/* Header & Navigation */
.header {
  position: relative;
  z-index: 10;
  padding: 24px 0;
  /* Remove any background-color to let the hero background show through */
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-right: 32px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.book-demo-btn {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 24px;
  border: 1px solid white;
  transition: all 0.3s ease;
}

.book-demo-btn:hover {
  background-color: white;
  color: black;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

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

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding: 80px 0;
}

/* Hero section with background */
.hero-section {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding: 80px 0;
}

/* Other sections without background */
.content-section {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  background-color: black;
}

@media (min-width: 768px) {
  .main-content, .hero-section {
    min-height: 80vh;
    padding: 0;
  }
  
  .content-section {
    padding: 100px 0;
  }
}

.headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .headline {
    font-size: 80px;
  }
}

.description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .description {
    font-size: 22px;
  }
}

.about-us-btn {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid white;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.about-us-btn svg {
  margin-left: 8px;
}

.about-us-btn:hover {
  background-color: white;
  color: black;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 16px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 14px;
  max-width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cookie-text {
    max-width: 75%;
    margin-bottom: 0;
  }
}

.understand-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  color: white;
  border: 1px solid white;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.understand-btn svg {
  margin-left: 8px;
}

.understand-btn:hover {
  background-color: white;
  color: black;
}

/* Footer */
.footer {
  background-color: black;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 40px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-end;
  }
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}