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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0a0e1a;
  color: #e8e9ed;
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 183, 255, 0.2);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #00b7ff !important;
  text-shadow: 0 0 20px rgba(0, 183, 255, 0.6);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  text-shadow: 0 0 30px rgba(0, 183, 255, 0.9);
  transform: scale(1.05);
}

.nav-link {
  color: #e8e9ed !important;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #00b7ff !important;
  text-shadow: 0 0 15px rgba(0, 183, 255, 0.5);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1e2e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 200, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(0, 183, 255, 0.4);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #b8bac4;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-neon {
  padding: 1rem 2.5rem;
  border: 2px solid;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  backdrop-filter: blur(5px);
  cursor: pointer;
  font-size: 1rem;
}

.btn-neon-primary {
  border-color: #00b7ff;
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.3);
}

.btn-neon-primary:hover {
  background: rgba(0, 183, 255, 0.1);
  box-shadow: 0 0 35px rgba(0, 183, 255, 0.6);
  transform: scale(1.04);
  color: #ffffff;
  text-decoration: none;
}

.btn-neon-secondary {
  border-color: #ff00c8;
  box-shadow: 0 0 20px rgba(255, 0, 200, 0.3);
}

.btn-neon-secondary:hover {
  background: rgba(255, 0, 200, 0.1);
  box-shadow: 0 0 35px rgba(255, 0, 200, 0.6);
  transform: scale(1.04);
  color: #ffffff;
  text-decoration: none;
}

.btn-neon-small {
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
}

.section-panel {
  padding: 5rem 0;
  background: #0a0e1a;
}

.section-dark {
  background: #050810;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(0, 183, 255, 0.3);
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 183, 255, 0.3);
  border-color: rgba(0, 183, 255, 0.5);
}

.feature-icon {
  font-size: 3rem;
  font-weight: 700;
  color: #00b7ff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 183, 255, 0.6);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p {
  color: #b8bac4;
  margin: 0;
}

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

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.timeline-marker {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid #00b7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00b7ff;
  box-shadow: 0 0 25px rgba(0, 183, 255, 0.4);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.timeline-content p {
  color: #b8bac4;
  margin: 0;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 183, 255, 0.3);
  border-color: rgba(0, 183, 255, 0.5);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 183, 255, 0.15);
  transition: all 0.3s ease;
}

.product-card:hover .product-image {
  box-shadow: 0 5px 25px rgba(0, 183, 255, 0.4);
  border-color: rgba(0, 183, 255, 0.4);
}

.product-featured .product-image {
  border-color: rgba(160, 255, 0, 0.2);
}

.product-featured:hover .product-image {
  box-shadow: 0 5px 25px rgba(160, 255, 0, 0.3);
  border-color: rgba(160, 255, 0, 0.4);
}

.product-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 183, 255, 0.2);
  border: 1px solid #00b7ff;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #00b7ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 183, 255, 0.5);
}

.product-featured {
  border-color: rgba(160, 255, 0, 0.4);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(160, 255, 0, 0.2);
  border: 1px solid #a0ff00;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #a0ff00;
  text-shadow: 0 0 10px rgba(160, 255, 0, 0.5);
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.product-card p {
  color: #b8bac4;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: #00b7ff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 183, 255, 0.4);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.category-tile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 183, 255, 0.3);
  border-color: rgba(0, 183, 255, 0.5);
}

.category-tile h4 {
  color: #ffffff;
  margin: 0;
  font-size: 1.2rem;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 200, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.review-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 10px 40px rgba(255, 0, 200, 0.3);
}

.review-text {
  font-style: italic;
  color: #e8e9ed;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.review-author {
  color: #b8bac4;
  font-size: 0.9rem;
  margin: 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 30px rgba(0, 183, 255, 0.2);
  border-color: rgba(0, 183, 255, 0.4);
}

.faq-item h3 {
  color: #00b7ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.faq-item p {
  color: #b8bac4;
  margin: 0;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.1) 0%, rgba(255, 0, 200, 0.1) 100%);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(0, 183, 255, 0.3);
}

.footer {
  background: #050810;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0, 183, 255, 0.2);
}

.footer h5 {
  color: #00b7ff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer p {
  color: #b8bac4;
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: #b8bac4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #00b7ff;
  text-shadow: 0 0 15px rgba(0, 183, 255, 0.5);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 183, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.98);
  border-top: 1px solid rgba(0, 183, 255, 0.3);
  padding: 1.5rem 0;
  z-index: 9999;
  backdrop-filter: blur(15px);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  color: #e8e9ed;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: #00b7ff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.page-header {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1e2e 100%);
  text-align: center;
  border-bottom: 1px solid rgba(0, 183, 255, 0.2);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(0, 183, 255, 0.4);
}

.page-header p {
  font-size: 1.2rem;
  color: #b8bac4;
}

.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/placeholder.svg?height=800&width=1920");
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.85) 0%, rgba(26, 30, 46, 0.85) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(0, 183, 255, 0.4);
}

.about-hero-content p {
  font-size: 1.3rem;
  color: #e8e9ed;
}

.content-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.content-box p {
  color: #e8e9ed;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

.info-card h3 {
  color: #00b7ff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-card p {
  color: #b8bac4;
  margin: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.principle-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.principle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 183, 255, 0.2);
}

.principle-item h4 {
  color: #00b7ff;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.principle-item p {
  color: #b8bac4;
  margin: 0;
  font-size: 0.95rem;
}

.contact-info,
.contact-form-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.contact-info h2,
.contact-form-container h2 {
  color: #00b7ff;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.contact-item p {
  color: #b8bac4;
  margin: 0;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 183, 255, 0.3);
  border-radius: 10px;
  color: #e8e9ed;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00b7ff;
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.3);
  color: #e8e9ed;
}

label {
  color: #e8e9ed;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-check-label {
  color: #b8bac4;
}

.form-check-label a {
  color: #00b7ff;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 20px;
  padding: 4rem 3rem;
}

.thank-you-content h1 {
  color: #00b7ff;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  text-shadow: 0 0 25px rgba(0, 183, 255, 0.4);
}

.thank-you-content p {
  color: #e8e9ed;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.legal-content h2 {
  color: #00b7ff;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #e8e9ed;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: #00b7ff;
  text-decoration: underline;
}

.disclaimer-content .disclaimer-highlight {
  background: rgba(0, 183, 255, 0.08);
  border: 2px solid rgba(0, 183, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.disclaimer-highlight h2 {
  margin-top: 0;
  color: #00b7ff;
}

.product-guide {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 183, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.product-guide h2 {
  color: #00b7ff;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.product-guide ul {
  list-style: none;
  padding: 0;
}

.product-guide li {
  color: #e8e9ed;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.product-guide li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00b7ff;
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .product-image {
    height: 200px;
  }
}
