/* X0 Start Custom CSS - Site-Specific Styles Only */
/* Bootstrap 5 CDN is loaded first and provides all standard utilities */

/* Base Overrides */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navbar Logo Fix */
.navbar-brand img {
  height: 30px;
  width: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Landing Page - Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  /* Text color is inherited (dark) by default, which is correct for light background */
}

/* Trust Signals Component */
.trust-signals-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-top: 2px solid #dee2e6;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  background: transparent;
  /* Removed white background */
  box-shadow: none;
  /* Removed shadow */
  border-radius: 0;
}

.trust-signal-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.trust-signal-item:hover {
  transform: translateY(-2px);
}

.trust-signal-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trust-signal-item:hover .trust-signal-icon {
  transform: scale(1.1);
}

.trust-signal-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-align: left;
}

.trust-signal-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

.trust-signal-subtitle {
  font-size: 0.75rem;
  color: #6c757d;
  line-height: 1.2;
}

.trust-signal-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #dee2e6 20%, #dee2e6 80%, transparent);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .trust-signals-container {
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }

  .trust-signal-item {
    flex: 0 0 calc(50% - 0.625rem);
  }

  .trust-signal-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .trust-signal-item {
    flex: 0 0 100%;
  }
}

/* Problem/Solution Cards */
.problem-card,
.solution-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover,
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.problem-icon,
.solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.problem-icon {
  background: #fee;
  color: #dc3545;
}

.solution-icon {
  background: #e8f5e9;
  color: #198754;
}

/* Week Cards - Roadmap Section */
.week-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.week-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.15);
}

.week-number {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.result-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

/* Step Cards - How It Works Section */
.step-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

/* Feature Cards */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0d6efd;
}

/* Pricing Cards */
.pricing-highlight {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #007bff !important;
  z-index: 1;
  position: relative;
}

@media (max-width: 992px) {
  .pricing-highlight {
    transform: scale(1);
    margin: 1rem 0;
  }
}

/* Business Approach Cards */
.business-approach-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.business-approach-card.best {
  border-top: 5px solid #198754;
}

.business-approach-card.better {
  border-top: 5px solid #0d6efd;
}

.business-approach-card.worst {
  border-top: 5px solid #dc3545;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes spin-refresh {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spin-refresh {
  animation: spin-refresh 1s linear infinite;
}

/* Session List */
.session-item.active {
  background-color: #e9ecef;
  border-left: 4px solid #007bff;
}

.session-item:hover:not(.active) {
  background-color: #f8f9fa;
}