:root {
  --tbp-primary: #5e17eb;
  --tbp-primary-600: #4e13c7;
  --tbp-teal: #00bfa6;
  --tbp-amber: #ffb703;
  --tbp-dark: #0a0f1e;
  --tbp-light: #f5f7fb;
  --tbp-text: #1a2130;
  --tbp-muted: #6b7280;
}

html,
body {
  font-family: Manrope, Figtree, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--tbp-text);
  background-color: #fff;
}
a {
  color: var(--tbp-primary);
  text-decoration: none;
}
a:hover {
  color: var(--tbp-primary-600);
  text-decoration: underline;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-to-content:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: #fff;
  color: #000;
  z-index: 10000;
  border-radius: 0.5rem;
}

.tbp-navbar .navbar {
  background: linear-gradient(90deg, var(--tbp-dark), #121a2f);
}
.tbp-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tbp-primary), var(--tbp-teal));
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: #cbd5e1;
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.tbp-section {
  padding: 4rem 0;
}
.tbp-section-title {
  font-weight: 800;
}
.tbp-section-subtitle {
  color: var(--tbp-muted);
}

.tbp-section-highlight {
  background: radial-gradient(
      1200px 600px at 10% 0%,
      rgba(94, 23, 235, 0.35),
      transparent
    ),
    radial-gradient(
      1000px 500px at 100% 50%,
      rgba(0, 191, 166, 0.25),
      transparent
    ),
    linear-gradient(180deg, #1a1f33, #0a0f1e);
}

.tbp-btn-primary {
  background: linear-gradient(135deg, var(--tbp-primary), var(--tbp-teal));
  border: none;
}
.tbp-btn-primary:hover {
  background: linear-gradient(135deg, var(--tbp-primary-600), var(--tbp-teal));
  filter: saturate(1.1);
}

.tbp-feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1rem 1rem 1.1rem;
}
.tbp-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tbp-amber), var(--tbp-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0f1e;
  margin-bottom: 0.5rem;
}

.tbp-step-card {
  background: #fff;
  border: 1px dashed #d1d5db;
  border-radius: 16px;
  padding: 1rem;
}
.tbp-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--tbp-primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tbp-price-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  position: relative;
}
.tbp-price-card-featured {
  border-color: var(--tbp-primary);
  box-shadow: 0 10px 30px rgba(94, 23, 235, 0.15);
}
.tbp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--tbp-amber);
  color: #0a0f1e;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.tbp-onpage-nav .card-body {
  border-left: 4px solid var(--tbp-primary);
}
.tbp-contact-card {
  background: linear-gradient(135deg, var(--tbp-primary), var(--tbp-teal));
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

.tbp-footer {
  background: #0a0f1e;
  padding: 3rem 0;
}
.tbp-footer-link {
  color: #cbd5e1;
}
.tbp-footer-link:hover {
  color: #fff;
}
.tbp-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.tbp-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.tbp-form .form-control:focus,
.tbp-form .form-select:focus {
  border-color: var(--tbp-primary);
  box-shadow: 0 0 0 0.25rem rgba(94, 23, 235, 0.15);
}

.tbp-breadcrumbs {
  background: #f5f7fb;
  padding: 0.75rem 0;
}
details.tbp-faq summary {
  cursor: pointer;
}
details.tbp-faq {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem 1rem;
}
