.theme-shell {
  --accent: #0a5be8;
  --accent-2: #1e87f0;
  --ink: #0f172a;
  --muted: #475569;
  --surface: #ffffff;
  --bg: #eef4ff;
  background: radial-gradient(circle at 15% 15%, #dbeafe, transparent 35%),
    radial-gradient(circle at 90% 20%, #e0f2fe, transparent 30%),
    var(--bg);
}

.theme-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 20px;
}

.theme-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.theme-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.theme-card {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.theme-card h3,
.theme-card h4 {
  margin: 10px 0 8px;
}

.theme-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  background: rgba(10, 91, 232, 0.1);
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(10, 91, 232, 0.28);
}

.theme-btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.theme-btn:hover {
  transform: translateY(-2px);
}

.theme-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.theme-stat {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.theme-stat strong {
  display: block;
  font-size: 26px;
  color: var(--ink);
}

.theme-muted {
  color: var(--muted);
}

.theme-glass {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
}

.theme-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.theme-pricing .theme-card {
  position: relative;
  overflow: hidden;
}

.theme-pricing .theme-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(10, 91, 232, 0.08);
}

.theme-partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.theme-partners .theme-card {
  text-align: center;
  font-weight: 700;
}

.theme-testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.theme-faq details {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
}

.theme-faq details + details {
  margin-top: 10px;
}

.theme-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(120deg, #091f42, #193a7a);
  color: #fff;
}

.theme-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(8%);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding: 36px;
  display: grid;
  align-content: center;
}

.theme-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.theme-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-pill {
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.theme-pill.off {
  opacity: 0.48;
}

@media (max-width: 980px) {
  .theme-hero {
    grid-template-columns: 1fr;
  }
}
