@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Roboto', sans-serif;
  color: #1a1a2e;
  background: #FFFFFF;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.btn-primary {
  display: inline-block;
  background: #FD8E00;
  color: #111111;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #e57e00;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #0B0B5F;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  border: 2px solid #0B0B5F;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: #0B0B5F;
  color: #FFFFFF;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
}

.star-rating {
  color: #FD8E00;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

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

.check-list li {
  padding: 0.35rem 0 0.35rem 1.75rem;
  position: relative;
  color: #1a1a2e;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3055D3;
  font-weight: 700;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  background: #FFFFFF;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #3055D3;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a2e;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #3055D3;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 1.1rem 0;
  margin: 0;
  color: #6B7280;
  line-height: 1.7;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(253,142,0,0.12);
  color: #c97200;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  border: 1px solid rgba(253,142,0,0.3);
}

.card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(48,85,211,0.08);
  padding: 2rem;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid #E5E7EB;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card.featured {
  border-color: #3055D3;
  box-shadow: 0 8px 32px rgba(48,85,211,0.15);
}

.pricing-card:hover {
  border-color: #3055D3;
  box-shadow: 0 8px 32px rgba(48,85,211,0.12);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #3055D3;
  line-height: 1;
}
