*, body { font-family: 'Inter', system-ui, sans-serif; }

:root {
  --bg:           #FFFFFF;
  --bg-subtle:    #F8FAFC;
  --primary:      #1CA8E0;
  --primary-h:    #1589BF;
  --primary-lt:   #E8F6FC;
  --primary-bd:   #9DD8F0;
  --text:         #0D2D4E;
  --text-body:    #374151;
  --text-muted:   #6B7280;
  --border:       #E5E7EB;
  --border-md:    #D1D5DB;
  --star:         #F59E0B;
  --white:        #FFFFFF;
}

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

a, button, [role="button"], summary { cursor: pointer; touch-action: manipulation; }

body { color: var(--text); background: var(--bg); }

/* Nav */
.nav-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--border-md);
}

.card-featured {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

/* Icon box */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--primary-lt);
  color: var(--primary);
  border: 1px solid var(--primary-bd);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: var(--primary);
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  touch-action: manipulation;
}
.btn-primary:hover { background: var(--primary-h); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  background: transparent;
  transition: background 0.15s;
  text-decoration: none;
  touch-action: manipulation;
}
.btn-outline:hover { background: var(--primary-lt); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  background: #fff;
  transition: opacity 0.15s;
  text-decoration: none;
  touch-action: manipulation;
}
.btn-white:hover { opacity: 0.92; }

/* Stars */
.star { color: var(--star); }

/* Section label */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Trust strip */
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FAQ Accordion */
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform 0.2s; }

/* Mobile sticky CTA */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(28, 168, 224, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(28, 168, 224, 0); }
}
@media (prefers-reduced-motion: no-preference) {
  .mobile-cta-bar a { animation: pulse-cta 2.5s ease-in-out infinite; }
}
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease-out both; }
.fade-up-d1 { animation-delay: 0.08s; }
.fade-up-d2 { animation-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; }
}
