/* Base Styles and Variables */
:root {
  --primary: #FF3366;
  --secondary: #00E5FF;
  --dark: #16151A;
  --gray: #444450;
  --light: #F5F5F5;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
  --font-main: 'Space Grotesk', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --border-radius: 12px;
  --transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&family=Space+Grotesk:wght@300;400;500;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

.site-wrapper {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse at bottom right, #2D1C30 0%, var(--dark) 70%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

h1 span {
  display: block;
  color: var(--secondary);
  font-size: 90%;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--light);
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--light);
}

p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

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

a:hover {
  color: var(--primary);
}

/* Header */
header {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  background: rgba(22, 21, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav {
  position: relative;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul li a {
  color: var(--light);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--light);
  margin: 6px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 8rem 5% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.2) 0%, rgba(255, 51, 102, 0) 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(0, 229, 255, 0) 70%);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: -1;
}

.hero .content-wrapper {
  max-width: 550px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: var(--gradient);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.6);
  color: white;
}

.cta-button:hover::before {
  opacity: 1;
}

/* Features Section */
.features {
  padding: 5rem 5%;
  position: relative;
  background-color: rgba(22, 21, 26, 0.6);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(35, 34, 43, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
}

/* Experience Section */
.experience {
  padding: 5rem 5%;
  text-align: center;
  background-color: rgba(35, 34, 43, 0.4);
  position: relative;
}

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

.step {
  background: rgba(22, 21, 26, 0.6);
  border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.experience-visual {
  height: 100px;
  margin: 3rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.faq {
  padding: 5rem 5%;
  background-color: rgba(22, 21, 26, 0.8);
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(35, 34, 43, 0.8);
  transition: var(--transition);
}

.question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.toggle-icon {
  min-width: 24px;
  height: 24px;
  transition: var(--transition);
}

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

.answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  padding: 0 2rem;
}

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

/* Footer */
footer {
  background-color: rgba(16, 15, 20, 0.95);
  padding: 4rem 5% 2rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

.footer-links h4, .footer-legal h4 {
  color: var(--light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul, .footer-legal ul {
  list-style: none;
}

.footer-links ul li, .footer-legal ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a, .footer-legal ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero .content-wrapper {
    max-width: 100%;
  }
  
  .hero-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(22, 21, 26, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    z-index: 99;
  }
  
  nav ul.active {
    right: 0;
  }
  
  .menu-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
}
