:root {
  --purple: #6a1bff;
  --purple-soft: #f5f3ff;
  --yellow: #f4c542;
  --dark: #111827;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --bg: #f9fafb;
  --table-bg: #020617;
  --danger: #ef4444;
}

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

body {
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  background: radial-gradient(circle at top, #fdf2ff 0, #f9fafb 40%, #ffffff 100%);
  color: var(--dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* Subheading / detail text */
.section-subtitle,
.hero-subtitle,
.pricing-subtitle,
.btn-subtext,
.step-label,
.label,
.note,
.pricing-note {
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

p,
li,
td,
th,
a {
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

/* Layout */
.page-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 16px 56px;
}

/* Hero */
.hero-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  padding: 32px 22px 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .hero-card {
    padding: 40px 40px 34px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(106, 27, 255, 0.2);
  background: rgba(106, 27, 255, 0.06);
  color: var(--purple);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.hero-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 24px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 10px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  }
}

.hero-heading {
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-heading span {
  color: var(--purple);
}

.body-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-bullets {
  list-style: none;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 18px;
}

.hero-bullets li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.hero-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111827;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.55);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.08s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(250, 204, 21, 0.65);
  background-color: #fbbf24;
}

.btn-subtext {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 240px;
}

/* Hero price */
.hero-price-box {
  background: #f9fafb;
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.hero-price-box .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.hero-price-box .price-row {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-price-box .note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sections */
.section {
  margin-bottom: 40px;
}

.section-heading {
  text-align: center;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 22px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 14px 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Comparison */
.comparison-card {
  background: var(--table-bg);
  border-radius: 22px;
  padding: 24px 18px 20px;
  color: #e5e7eb;
}

.section-heading-light {
  color: #e5e7eb;
}

.section-subtitle-light {
  color: #9ca3af;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 10px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.comparison-table th,
.comparison-table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tick {
  color: #22c55e;
  font-weight: 700;
}

.cross {
  color: #f97316;
  font-weight: 700;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 14px 14px 12px;
  font-size: 13px;
}

.step-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d28d9;
  margin-bottom: 4px;
  font-weight: 700;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pricing */
.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  padding: 28px 22px 22px;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 32px 36px 24px;
  }
}

.pricing-heading {
  text-align: center;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
}

.pricing-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pricing-price {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .pricing-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.pricing-bullets {
  list-style: none;
  font-size: 13px;
  color: var(--dark);
}

.pricing-bullets li {
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}

.pricing-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--purple);
}

.pricing-cta-block {
  text-align: center;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 18px 16px 16px;
  background: #f9fafb;
}

.pricing-cta-block .secure {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.lifetime-terms {
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-muted);
}

/* FAQ */
.faq-section {
  margin-top: 34px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-item {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 14px 14px 12px;
  background: #ffffff;
  font-size: 13px;
}

.faq-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.faq-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  margin-top: 30px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
}
