/* Theme Colors */
:root {
  --purple: #5a4fff;
  --purple-dark: #322c72;
  --bg-dark: #181824;
  --bg-card: #232335;
  --text-light: #f1f1f1;
  --text-muted: #c5c5c5;
  --shadow: rgba(0,0,0,0.4);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* Hero */
.hero {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
}

.hero .tagline {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.95;
}

/* Section */
.section {
  padding: 3rem 2rem;
  margin: 2rem auto;
  background: var(--bg-card);
  border-radius: 12px;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 6px 18px var(--shadow);
  text-align: center;
}

.section h2 {
  margin-bottom: 2rem;
  color: var(--purple);
  font-size: 2rem;
}

/* Comparison Table */
.comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

.row {
  display: contents;
}

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

.header .col {
  background: var(--purple-dark);
  font-weight: bold;
}

.feature {
  text-align: left;
  background: rgba(255,255,255,0.03);
}

/* FAQ */
.section p {
  margin: 1.2rem 0;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: var(--purple-dark);
  color: white;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}
