/* Base Variables */
:root {
  --primary: #9C27B0;
  --primary-light: #BA68C8;
  --primary-dark: #7B1FA2;
  --accent: #FF4081;
  --dark: #212121;
  --light: #FFFFFF;
  --gray: #757575;
  --gray-light: #EEEEEE;
  --gradient: linear-gradient(135deg, #9C27B0 0%, #FF4081 100%);
  --shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

/* Navigation */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 30px;
  height: 21px;
  position: relative;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span:before,
.nav-toggle-label span:after {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary);
  transition: all 0.3s ease;
}

.nav-toggle-label span {
  top: 9px;
}

.nav-toggle-label span:before {
  content: "";
  top: -9px;
}

.nav-toggle-label span:after {
  content: "";
  bottom: -9px;
}

nav ul {
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav ul li a:not(.btn-small):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

nav ul li a:not(.btn-small):hover:after {
  width: 100%;
}

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

.btn-small {
  background-color: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-small:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background-color: #f3f3f3;
  background-image: radial-gradient(circle at 10% 10%, rgba(156, 39, 176, 0.1) 0%, rgba(156, 39, 176, 0) 60%),
                    radial-gradient(circle at 90% 90%, rgba(255, 64, 129, 0.1) 0%, rgba(255, 64, 129, 0) 60%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--gray);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--gray);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(156, 39, 176, 0.4);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

.tags {
  display: flex;
  gap: 10px;
}

.tags span {
  background: rgba(156, 39, 176, 0.1);
  color: var(--primary);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-box {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-circle {
  width: 200px;
  height: 200px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
  animation: pulse 3s infinite alternate;
}

.visual-circle span {
  font-size: 50px;
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
}

.visual-circle-outer {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 2px dashed rgba(156, 39, 176, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.feature-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  width: 320px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.feature p {
  color: var(--gray);
}

/* Generator Section */
.generator {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.generator-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.step h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.step p {
  color: var(--gray);
}

.step-arrow {
  font-size: 30px;
  color: var(--primary);
  margin: 0 15px;
}

.generator-cta {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.faq-item p {
  color: var(--gray);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta h2 span {
  position: relative;
  display: inline-block;
}

.cta h2 span:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: white;
  bottom: -5px;
  left: 0;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  padding: 70px 0 30px;
  background-color: var(--dark);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo p {
  font-weight: 600;
  font-size: 18px;
  color: white;
}

.footer-brand > p {
  opacity: 0.7;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text p {
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .tags {
    justify-content: center;
  }
  
  .feature-blocks {
    gap: 20px;
  }
  
  .generator-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  
  .nav-toggle:checked ~ nav {
    max-height: 300px;
  }
  
  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 250px;
  }
  
  .feature {
    width: 100%;
  }
}
