/* Base styles and CSS Reset */
:root {
  --primary-color: #8a2be2;
  --secondary-color: #4169e1;
  --accent-color: #ff6b6b;
  --text-color: #333;
  --light-text: #fff;
  --background: #f8f9fa;
  --card-bg: #fff;
  --border-radius: 10px;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background);
}

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

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
}

/* Header styles */
header {
  background-color: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.logo-icon {
  margin-right: 0.5rem;
}

.accent {
  color: var(--accent-color);
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-weight: 600;
}

/* Hero section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(65, 105, 225, 0.05) 100%);
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero h2 {
  font-size: 1.5rem;
  color: var(--text-color);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
  transition: var(--transition);
  margin-top: 1rem;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(138, 43, 226, 0.4);
  color: var(--light-text);
}

/* Features section */
.features {
  padding: 5rem 0;
  background-color: var(--card-bg);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  margin-bottom: 1.5rem;
}

/* Benefits section */
.benefits {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(65, 105, 225, 0.05) 100%);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefit-item {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
}

/* FAQ section */
.faq {
  padding: 5rem 0;
  background-color: var(--card-bg);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  background-color: var(--background);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

/* CTA section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  text-align: center;
}

.cta h2 {
  color: var(--light-text);
}

.cta .cta-button {
  background: var(--light-text);
  color: var(--primary-color);
  margin-top: 1.5rem;
}

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

/* Footer */
footer {
  background-color: #333;
  color: var(--light-text);
  padding: 4rem 0 2rem;
}

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

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

.footer-logo {
  margin-bottom: 1rem;
}

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

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #ccc;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    grid-row: 1;
  }
  
  .hero-content {
    grid-row: 2;
    text-align: center;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
}

/* Open Graph image */
.og-image {
  display: none;
}
