:root {
  --primary-color: #6A0DAD;
  --secondary-color: #FF3366;
  --gradient-start: #6A0DAD;
  --gradient-end: #FF3366;
  --bg-color: #131118;
  --text-color: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.05);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb1 {
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(106, 13, 173, 0.4) 0%, rgba(106, 13, 173, 0) 70%);
  animation: float 15s ease-in-out infinite;
}

.orb2 {
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.4) 0%, rgba(255, 51, 102, 0) 70%);
  animation: float 18s ease-in-out infinite reverse;
}

.orb3 {
  top: 30%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(75, 0, 130, 0.4) 0%, rgba(75, 0, 130, 0) 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 20px) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.page-wrapper {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
  padding: 2rem 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.highlight {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Glass panel effect */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(19, 17, 24, 0.8);
  border-bottom: 1px solid var(--glass-border);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.menu-button span {
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

#main-nav ul {
  display: flex;
  gap: 2rem;
}

#main-nav ul li a {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

#main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  transition: width 0.3s ease;
}

#main-nav ul li a:hover::after {
  width: 100%;
}

/* Intro section */
#intro {
  padding: 4rem 0;
  text-align: center;
}

.centered-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.headline {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.subheadline {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-container {
  margin-bottom: 4rem;
}

.primary-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px rgba(106, 13, 173, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(106, 13, 173, 0.4);
}

.below-button {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.feature-blocks {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.feature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.feature-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Benefits section */
#benefits {
  padding: 3rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

.benefit-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  opacity: 0.2;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.benefit-card p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* How it works section */
#how-works {
  padding: 3rem 0;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  opacity: 0.3;
}

.step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  color: var(--secondary-color);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.step-content p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

/* FAQs section */
#faqs {
  padding: 3rem 0;
}

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

/* Final CTA section */
.final-cta {
  padding: 3rem 0;
  margin: 4rem 0 2rem;
  background: linear-gradient(135deg, rgba(106, 13, 173, 0.1), rgba(255, 51, 102, 0.1));
}

.final-cta h2 {
  margin-bottom: 1.5rem;
}

.final-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer styles */
footer {
  padding: 3rem 0 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo p {
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-links ul {
  display: flex;
  gap: 2rem;
}

.footer-links ul li a {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Media queries */
@media (max-width: 992px) {
  .headline {
    font-size: 3rem;
  }
  
  .feature-blocks {
    flex-direction: column;
    gap: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-button {
    display: flex;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(19, 17, 24, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  #main-nav.active {
    right: 0;
  }
  
  #main-nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  .headline {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .process-step:not(:last-child)::after {
    left: 50%;
    transform: translateX(-50%);
    top: 85px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links ul {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .headline {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
