/* General Reset & Base */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Aldrich", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(135deg, #0d1117 0%, #1a222e 100%);
  color: #f0f6fc;
  scroll-behavior: smooth;
  overflow-x: auto !important;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}


/* Headings */
h1, h2, h3 {
  margin: 0 0 10px;
  color: #00ffcc;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px #00ffccaa;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(145deg, #0d1117, #161b22);
  padding: 120px 0 140px;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 60px #00ffcc44;
  animation: fadeInScale 1s ease forwards;
  z-index: 1;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: glowText 3s ease-in-out infinite alternate;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #b2fff6cc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 4px #00ffccaa;
}

.btn-primary {
  background: linear-gradient(90deg, #00ffc3, #00d8af);
  color: #0d1117;
  padding: 14px 40px;
  font-weight: 900;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 25px #00ffccbb;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  user-select: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #00d8af, #00ffc3);
  box-shadow: 0 12px 35px #00ffccdd;
  transform: translateY(-4px);
}

/* Dashboard Preview */
.dashboard-preview {
  padding: 70px 0;
  background: #0d1117;
  text-align: center;
  color: #00ffcc;
  border-radius: 20px;
  box-shadow: 0 8px 50px #00ffcc33;
  animation: fadeInUp 0.8s ease forwards;
}

.dashboard-preview h2 {
  margin-bottom: 20px;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 12px #00ffcccc;
}

.dashboard-preview p {
  margin-bottom: 30px;
  font-size: 1.15rem;
  color: #a0f0e5cc;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.dashboard-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 45px #00ffccbb;
  transition: transform 0.4s ease;
}

.dashboard-preview img:hover {
  transform: scale(1.05);
}

/* Video Intro */
.video-intro {
  padding: 70px 0;
  background: #161b22;
  text-align: center;
  color: #00ffcc;
  border-radius: 20px;
  box-shadow: 0 8px 40px #00ffcc44;
  animation: fadeInUp 0.9s ease forwards;
  margin: 0 auto;
  
}

.video-intro h2 {
  margin-bottom: 25px;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 0 35px #00ffcccc;
  transition: box-shadow 0.4s ease;
}

.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Why Us Section */
.why-us {
  padding: 70px 0;
  max-width: 1100px;
  margin: 0 auto;
}

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

.card {
  background: #161b22;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.15);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 255, 204, 0.4);
}

.card i {
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.card:hover i {
  color: #00ffcc;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  text-shadow: 0 0 12px #00ffccbb;
  color: #00ffcc;
  font-weight: 700;
}

.card p {
  font-size: 1rem;
  color: #a0f0e5bb;
  line-height: 1.4;
}

/* Features Section */
.features {
  padding: 70px 0;
  background: #161b22;
  max-width: 1100px;
  margin: 0 auto;
}

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

.feature-card {
  background: #0d1117;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.1);
  text-align: center;
  color: #00ffcc;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 255, 204, 0.3);
}

.feature-card i {
  margin-bottom: 18px;
  transition: color 0.3s ease;
  color: #00ffcc;
}

.feature-card:hover i {
  color: #00ffe0;
}

.feature-card h4 {
  margin: 15px 0 10px;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

/* How It Works Section */
.how-it-works {
  padding: 70px 0;
  background: #0d1117;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works h2 {
  margin-bottom: 50px;
  color: #00ffcc;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 2.8rem;
}

.grid-4 .step-card {
  background: #161b22;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.15);
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.grid-4 .step-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 255, 204, 0.3);
}

.step-card i {
  margin-bottom: 18px;
  color: #00ffcc;
  transition: color 0.3s ease;
}

.step-card:hover i {
  color: #00ffe0;
}

.step-card h4 {
  margin: 15px 0 10px;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

/* Plans Sections */
.plans {
  padding: 70px 0;
  background: #0d1117;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 50px #00ffcc33;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.plans h2 {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.plans p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #a0f0e5cc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-secondary {
  background: transparent;
  color: #00ffcc;
  border: 2px solid #00ffcc;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  user-select: none;
}

.btn-secondary:hover {
  background: #00ffcc;
  color: #0d1117;
  box-shadow: 0 12px 40px #00ffccbb;
  transform: translateY(-5px);
}

/* CTA Section */
.cta {
  background: #00ffcc;
  color: #0d1117;
  padding: 70px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 45px #00ffcc88;
  margin-bottom: 70px;
  animation: fadeInScale 1s ease forwards;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Stats Section */
.stats {
  background: #0d1117;
  padding: 60px 0;
  color: #00ffcc;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 70px;
  border-radius: 20px;
  box-shadow: 0 0 50px #00ffcc33;
}

.stat-card h2.counter {
  font-size: 4rem;
  margin-bottom: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-shadow: 0 0 20px #00ffcccc;
}

.stat-card p {
  font-size: 1.15rem;
  color: #a0f0e5cc;
}

/* Testimonials Section */
.testimonials {
  padding: 70px 0;
  background: #161b22;
  text-align: center;
  color: #f0f6fc;
  max-width: 1100px;
  margin: 0 auto 70px;
  border-radius: 20px;
  box-shadow: 0 0 50px #00ffcc44;
}

.testimonials h2 {
  margin-bottom: 50px;
  font-size: 2.8rem;
  color: #00ffcc;
  letter-spacing: 0.06em;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.testimonial-card {
  background: #0d1117;
  min-width: 320px;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.15);
  scroll-snap-align: start;
  font-style: italic;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 255, 204, 0.3);
}

.testimonial-card h4 {
  margin-top: 30px;
  font-style: normal;
  color: #00ffcc;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

/* Partners Section */
.partners {
  background: #161b22;
  padding: 70px 0;
  text-align: center;
  color: #00ffcc;
  border-radius: 20px;
  box-shadow: 0 0 50px #00ffcc44;
  max-width: 1100px;
  margin: 0 auto 70px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 35px;
}

.partner-logos img {
  max-height: 70px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.partner-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* FAQ Section */
.faq {
  padding: 70px 0;
  background: #161b22;
  color: #f0f6fc;
  max-width: 1100px;
  margin: 0 auto 70px;
  border-radius: 20px;
  box-shadow: 0 0 50px #00ffcc44;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #00ffcc;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 14px;
  background: #0d1117;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  background: none;
  border: none;
  color: #00ffcc;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  outline: none;
  border-radius: 14px;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
  background: #00ffcc;
  color: #161b22;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #a0f0e5cc;
  font-size: 1rem;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 20px 25px;
}

/* Security Badges */
.security-badges {
  padding: 70px 0;
  background: #131313;
  text-align: center;
  color: #ffffff;
  max-width: 1100px;
  margin: 0 auto 70px;
  border-radius: 20px;
  box-shadow: 0 0 50px #00ffcc44;
}

.security-badges .badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.security-badges .badge {
  max-width: 150px;
  cursor: default;
  transition: transform 0.3s ease;
}

.security-badges .badge:hover {
  transform: scale(1.1);
}

.security-badges .badge img {
  max-width: 60%;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 4px #00ffccaa);
}

/* Newsletter Signup */
.newsletter {
  padding: 70px 0;
  background: #0d1117;
  text-align: center;
  color: #00ffcc;
  max-width: 1100px;
  margin: 0 auto 70px;
  border-radius: 20px;
  box-shadow: 0 0 50px #00ffcc33;
}

.newsletter h2 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
}

.newsletter p {
  margin-bottom: 40px;
  color: #a0f0e5cc;
  font-size: 1.15rem;
}

.newsletter-form {
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 15px 20px;
  border-radius: 40px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  background: #161b22;
  color: #00ffcc;
  box-shadow: inset 0 0 10px #00ffcc55;
  transition: box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  box-shadow: inset 0 0 20px #00ffcccc;
}

.newsletter-form button {
  background: linear-gradient(90deg, #00ffc3, #00d8af);
  color: #0d1117;
  border: none;
  padding: 16px 36px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px #00ffccaa;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.15s ease;
  user-select: none;
}

.newsletter-form button:hover {
  background: linear-gradient(90deg, #00d8af, #00ffc3);
  box-shadow: 0 10px 30px #00ffccdd;
  transform: translateY(-4px);
}

/* Back To Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00ffcc;
  color: #000;
  border: none;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
  display: none;
  z-index: 1000;
  transition: background 0.3s ease;
}

#backToTop:hover {
  background: #00d8af;
}

/* Animations */

/* Fade In & Scale */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fade In Up */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow Text */
@keyframes glowText {
  0% {
    text-shadow: 0 0 8px #00ffccbb, 0 0 20px #00ffcc88;
  }
  100% {
    text-shadow: 0 0 20px #00ffccdd, 0 0 45px #00ffcccc;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}


.countdown-container {
  background: #0d1117;
  padding: 40px 20px 100px;
  border-radius: 20px;
  box-shadow: 0 0 30px #00ffc355, 0 0 60px #00ffc355;
  max-width: 500px;
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

.countdown-container h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #00ffc388;
  color: #00ffc3;
}

.countdown {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.countdown div {
  background: #161b22;
  border-radius: 12px;
  padding: 20px 15px;
  flex: 1;
  box-shadow: 0 0 10px #00ffc355;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.countdown small {
  font-size: 0.9rem;
  color: #94a3b8;
}

@media (max-width: 480px) {
  .countdown {
    flex-direction: column;
    gap: 12px;
  }
}



@media (max-width: 768px) {
  .container {
    max-width: 420px ;
  }
  .video-intro {
    max-width: 420px;
  }
  .why-us {
    max-width: 420px;
  }
}

@media (max-width: 400px) {
  .container {
    max-width: 380px ;
  }
  .video-intro {
    max-width: 380px;
  }
  .why-us {
    max-width: 380px;
  }
}