/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #fff;
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,.35);
}

.btn-white {
  background: #fff;
  color: #4f46e5;
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: #4f46e5;
  border-color: #4f46e5;
}
.btn-outline:hover {
  background: #4f46e5;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #6b7280;
  border-color: #e5e7eb;
}
.btn-ghost:hover { background: #f9fafb; border-color: #d1d5db; }

.btn-sm { padding: .5rem 1.1rem; font-size: .875rem; border-radius: 8px; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.07), 0 4px 20px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}

/* Feature card */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79,70,229,.12);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ede9fe, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: #4f46e5;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: #111827;
}
.feature-card p { font-size: .9rem; color: #6b7280; line-height: 1.6; }

/* Pricing card */
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid #f3f4f6;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.pricing-card-highlighted {
  border-color: #4f46e5;
  background: linear-gradient(135deg, #faf5ff, #eff6ff);
  box-shadow: 0 8px 40px rgba(79,70,229,.15);
  transform: scale(1.03);
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1rem;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: .2rem;
  margin-bottom: 1.5rem;
}
.pricing-currency { font-size: 1.25rem; font-weight: 700; color: #4f46e5; padding-bottom: .25rem; }
.pricing-amount   { font-size: 3rem; font-weight: 800; color: #111827; line-height: 1; }
.pricing-period   { font-size: .9rem; color: #9ca3af; padding-bottom: .5rem; }
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .9rem;
  color: #374151;
}
.pricing-features li .fa-check { color: #4f46e5; font-size: .85rem; }

/* Testimonial card */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.04);
}
.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: .95rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: #111827; }
.testimonial-role { font-size: .8rem; color: #9ca3af; }

/* Benefit item */
.benefit-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.benefit-text h3 { font-size: 1rem; margin-bottom: .35rem; }
.benefit-text p { font-size: .9rem; }

/* Step item */
.step-item { text-align: center; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}
.step-item h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step-item p { font-size: .9rem; }

/* Section header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* FAQ */
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: .75rem;
  background: #fff;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: background .15s;
}
.faq-question:hover { background: #f9fafb; }
.faq-icon {
  transition: transform .25s;
  flex-shrink: 0;
  color: #6b7280;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .2s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  color: #6b7280;
  line-height: 1.7;
}
