:root {
  --primary: #4B0082;
  --bg: #FFFFFF;
  --bg-soft: #F5F0FA;
  --text: #2A1B3D;
  --muted: #6b6478;
  --border: #ece6f3;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 { color: var(--text); margin: 0; }
p { color: var(--muted); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.hero {
  background: var(--bg-soft);
  padding: 1.5rem 1.5rem 5rem;
}
.nav {
  max-width: 980px;
  margin: 0 auto 3rem;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.subtitle {
  font-size: 1.15rem;
  margin: 1.25rem 0 2.25rem;
  color: var(--muted);
}
.cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(75, 0, 130, 0.18);
}
.pricing { text-align: center; }
.section-lead {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(75, 0, 130, 0.08);
}
.pricing-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-soft);
  color: var(--primary);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}
.pricing-card .price { margin: 0; color: var(--text); }
.pricing-card .amount {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.pricing-card .period { color: var(--muted); font-size: 0.95rem; }
.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pricing-card li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.5;
}
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}
.card-cta {
  display: inline-block;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--primary);
  color: #fff;
  margin-top: auto;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(75, 0, 130, 0.18);
}
.card-cta.secondary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.card-cta.secondary:hover {
  background: var(--bg-soft);
  box-shadow: none;
}

section { padding: 4rem 1.5rem; max-width: 980px; margin: 0 auto; }
section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.step {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.step-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { margin: 0; font-size: 0.96rem; }

.privacy {
  background: var(--bg-soft);
  max-width: none;
  text-align: center;
}
.privacy h2 { margin-bottom: 1rem; }
.privacy p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 720px) {
  .step-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 2rem 2rem 6rem; }
}
