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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 25px;
  transition: color 0.3s;
}

nav a:hover {
  color: #00f0ff;
}

.cta-nav {
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 80vh;
  gap: 50px;
}

.hero-text h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-text h2 span {
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 10px;
}

.description {
  max-width: 500px;
  margin-bottom: 30px !important;
}

.buttons {
  display: flex;
  gap: 20px;
}

.cta, .secondary-cta {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s;
}

.cta {
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  color: #000;
}

.secondary-cta {
  border: 1px solid #00f0ff;
  color: #00f0ff;
}

.cta:hover, .secondary-cta:hover {
  transform: translateY(-5px);
}

.hero-image img {
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.features {
  padding: 80px 0;
  /* background: #0f0f0f; */
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.features-intro {
  text-align: center;
  margin-bottom: 60px;
}

.features-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-intro p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.feature-card p {
  color: #aaa;
}

.video-promo {
  padding: 80px 20px;
  /* background: #0a0a0a; */
  text-align: center;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}

.section-subtitle {
  color: #aaa;
  margin-bottom: 40px;
  font-size: 1.1rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}

.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
  transform: scale(0.95);
  opacity: 0;
  animation: fadeInScale 1s 0.7s forwards;
}

.product-video {
  width: 100%;
  display: block;
  background: #000;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reviews {
  padding: 80px 0;
  /* background: #0f0f0f; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-10px);
}

.reviewer {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00f0ff, #0084ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  margin-right: 15px;
}

.reviewer-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.reviewer-info p {
  color: #aaa;
  font-size: 0.9rem;
}

.review-content p {
  color: #ddd;
  line-height: 1.6;
}
.faq-section {
  padding: 80px 0;
  /* background: #0a0a0a; */
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(0, 240, 255, 0.1);
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.3);
}

.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  color: #ddd;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}
.contact-section {
  padding: 80px 0;
  /* background: #0a0a0a; */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}


.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgb(24, 18, 18);
  font-size: 1rem;
}

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

.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  color: #aaa;
  pointer-events: none;
  transition: all 0.3s;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -15px;
  font-size: 0.8rem;
  color: #00f0ff;
}

.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  transition: width 0.4s;
}

.form-group input:focus ~ .underline,
.form-group select:focus ~ .underline,
.form-group textarea:focus ~ .underline {
  width: 100%;
}


.submit-btn {
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.submit-btn svg {
  width: 20px;
  fill: #000;
}

.submit-btn:hover {
  transform: translateY(-3px);
}


.contact-info {
  display: grid;
  gap: 20px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00f0ff;
}

.info-card p {
  color: #ddd;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  /* background: #0a0a0a; */
  color: #fff;
  padding: 50px 0 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00f0ff, #0084ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-weight: 600;
  margin-bottom: 5px;
}

.mission {
  color: #aaa;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #00f0ff;
}

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

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

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

.footer-links a:hover {
  color: #00f0ff;
}

.contact-email,
.contact-phone,
.contact-address {
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #aaa;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: #00f0ff;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

body {
  background: linear-gradient(to bottom, #0b0b2b, #1b2735 70%, #090a0f);
}

.stars {
  width: 1px;
  height: 1px;
  position: absolute;
  background: white;
  box-shadow: 2vw 5vh 2px white, 10vw 8vh 2px white, 15vw 15vh 1px white,
    22vw 22vh 1px white, 28vw 12vh 2px white, 32vw 32vh 1px white,
    38vw 18vh 2px white, 42vw 35vh 1px white, 48vw 25vh 2px white,
    53vw 42vh 1px white, 58vw 15vh 2px white, 63vw 38vh 1px white,
    68vw 28vh 2px white, 73vw 45vh 1px white, 78vw 32vh 2px white,
    83vw 48vh 1px white, 88vw 20vh 2px white, 93vw 52vh 1px white,
    98vw 35vh 2px white, 5vw 60vh 1px white, 12vw 65vh 2px white,
    18vw 72vh 1px white, 25vw 78vh 2px white, 30vw 85vh 1px white,
    35vw 68vh 2px white, 40vw 82vh 1px white, 45vw 92vh 2px white,
    50vw 75vh 1px white, 55vw 88vh 2px white, 60vw 95vh 1px white,
    65vw 72vh 2px white, 70vw 85vh 1px white, 75vw 78vh 2px white,
    80vw 92vh 1px white, 85vw 82vh 2px white, 90vw 88vh 1px white,
    95vw 75vh 2px white;
  animation: twinkle 8s infinite linear;
}

.shooting-star {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, white, transparent);
  animation: shoot 3s infinite ease-in;
}

.shooting-star:nth-child(1) {
  top: 20%;
  left: -100px;
  animation-delay: 0s;
}

.shooting-star:nth-child(2) {
  top: 35%;
  left: -100px;
  animation-delay: 1s;
}

.shooting-star:nth-child(3) {
  top: 50%;
  left: -100px;
  animation-delay: 2s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes shoot {
  0% {
    transform: translateX(0) translateY(0) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: translateX(120vw) translateY(50vh) rotate(25deg);
    opacity: 0;
  }
}

/* Additional twinkling stars with different animation timing */
.stars::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  background: white;
  box-shadow: 8vw 12vh 2px white, 16vw 18vh 1px white, 24vw 25vh 2px white,
    33vw 15vh 1px white, 41vw 28vh 2px white, 49vw 35vh 1px white,
    57vw 22vh 2px white, 65vw 42vh 1px white, 73vw 28vh 2px white,
    81vw 48vh 1px white, 89vw 32vh 2px white, 97vw 45vh 1px white,
    3vw 68vh 2px white, 11vw 75vh 1px white, 19vw 82vh 2px white,
    27vw 88vh 1px white, 35vw 72vh 2px white, 43vw 85vh 1px white,
    51vw 92vh 2px white, 59vw 78vh 1px white;
  animation: twinkle 6s infinite linear reverse;
}