:root {
  --primary: #6366f1;
  --secondary: #8592a3;
  --success: #71dd37;
  --info: #03c3ec;
  --warning: #ffab00;
  --danger: #ff3e1d;
  --dark: #1c2836;
  --darker: #141c24;
  --card-bg: #1c2836;
  --body-bg: #141c24;
}

body {
  background-color: var(--body-bg);
  color: #fff;
  font-family: "Inter", sans-serif;
}
  
.navbar {
  background-color: rgba(28, 40, 54, 0.95) !important;
  backdrop-filter: blur(10px);
}

.hero-section {
  background: linear-gradient(135deg, #1c2836 0%, #141c24 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 50%
  );
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(99, 102, 241, 0.05) 0%,
    transparent 70%
  );
}

.card {
  background-color: var(--card-bg);
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.pricing-card.popular {
  border: 1px solid var(--primary);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.8rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.accordion-button {
  background-color: var(--dark) !important;
  color: white !important;
  box-shadow: none !important;
  border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--dark) !important;
  color: white !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-item {
  background-color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-body {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 28px;
  color: var(--primary);
}

.support-card {
  background-color: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.support-card:hover {
  background-color: rgba(99, 102, 241, 0.1);
}

.footer {
  background-color: var(--darker);
  padding: 40px 0;
  margin-top: 80px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
  margin-right: 20px;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.btn {
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-lg {
  padding: 0.8rem 2rem;
}

.btn-primary:hover {
  background-color: #5558e6;
  border-color: #5558e6;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.dashboard-container {
  transition: transform 0.1s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
  border: none !important;
  outline: none !important;
}

.dashboard-container * {
  border: none !important;
  outline: none !important;
}

.dashboard-image {
  border-radius: 0.75rem;
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #5558e6;
}