:root {
  --plum: #36013F;
  --plum-light: #4a1654;
  --teal: #106C6D;
  --teal-light: #148a8b;
  --gray-bg: #f8f9fa;
  --text: #333;
  --text-light: #666;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.85; }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -0.5px;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--teal); }

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-light); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--white); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--plum) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--plum);
  font-size: 1.1rem;
  padding: 0.8rem 2.5rem;
}
.hero .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── Sections ────────────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-alt { background: var(--gray-bg); }
.section-alt .section { padding: 5rem 2rem; }

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum);
  text-align: center;
  margin-bottom: 1rem;
}

.section .subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ── Features Grid ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  border: 3px solid var(--teal);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--plum);
  margin: 1rem 0;
}

.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li::before {
  content: "\2713";
  color: var(--teal);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.trust-item {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.trust-item strong { display: block; font-size: 1.5rem; color: var(--plum); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--plum);
  color: var(--white);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-col h4 { font-size: 1rem; margin-bottom: 1rem; font-weight: 600; }
.footer-col a { color: rgba(255,255,255,0.7); display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ── Legal Pages ─────────────────────────────────────────────── */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.legal h1 { font-size: 2rem; color: var(--plum); margin-bottom: 0.5rem; }
.legal .last-updated { color: var(--text-light); margin-bottom: 2rem; font-size: 0.9rem; }
.legal h2 { font-size: 1.3rem; color: var(--plum); margin: 2rem 0 0.75rem; }
.legal h3 { font-size: 1.1rem; color: var(--plum); margin: 1.5rem 0 0.5rem; }
.legal p { margin-bottom: 1rem; color: var(--text); }
.legal ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal li { margin-bottom: 0.5rem; color: var(--text); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .nav-links { gap: 1rem; }
  .section { padding: 3rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}
