:root {
  --primary: #4F46E5;
  --text-dark: #111827;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --bg-soft: #F9FAFB;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  padding-top: 72px;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-primary {
  background: var(--primary);
  border: none;
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--border);
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
}

/* HERO */
.hero {
  padding: 96px 0;
}

.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #EEF2FF;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 16px;
}

.hero-text {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 16px;
}

.hero-points {
  margin-top: 20px;
  padding-left: 18px;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

/* CHAT */
.chat-preview {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

/* SECTIONS */
.section {
  padding: 96px 0;
}

.section-subtitle {
  color: var(--text-muted);
}

/* FEATURES */
.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
}

/* BACKGROUND */
.bg-soft {
  background: var(--bg-soft);
}

/* PRICING */
.pricing-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.pricing-card.highlight {
  border: 2px solid var(--primary);
}

.price {
  font-size: 32px;
  font-weight: 700;
}

.price span {
  font-size: 16px;
  color: var(--text-muted);
}

/* FAQ */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;

}



/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.payment-logos img {
  opacity: 0.85;
}


.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-visual {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

/* FEATURE ICONS */
.feature-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
}

/* FEATURE CARD TEXT */
.feature-card h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* HOW IT WORKS - STEPS */

.step-card {
  padding: 24px;
}

.step-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #EEF2FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ADD-ONS */
.addons-wrapper {
  margin-top: 80px;
}

.addons-title {
  font-weight: 600;
}

.addon-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  text-align: left;
}

.addon-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
}

.addon-card h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.addon-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.addon-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.addon-list li:last-child {
  border-bottom: none;
}


/* PRICING LIST */

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dark);
}

.pricing-list i {
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}
.pricing-card.highlight .pricing-list i {
  font-size: 15px;
}


/* PRICING EQUAL HEIGHT FIX */

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-content {
  flex-grow: 1;
}

.pricing-footer {
  margin-top: 24px;
}


/* HOW IT WORKS - CARD STYLE */

.how-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  text-align: center;
}

.how-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #EEF2FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.how-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.how-card p {
  color: var(--text-muted);
  line-height: 1.6;
}
