:root {
  --bandits-bg-1: #0f172e;
  --bandits-bg-2: #1a1f3a;
  --accent-blue: #60a5fa;
  --accent-purple: #a78bfa;
  --accent-emerald: #10b981;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --border-light: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(30, 41, 59, 0.7);
}

body {
  background-color: var(--bandits-bg-1);
  color: var(--text-primary);
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: url('../images/bandits_15.webp') center center / cover no-repeat;
  /* Use a plausible background image from the site, or fallback */
  background-color: var(--bandits-bg-2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 46, 0.7), var(--bandits-bg-1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-family: 'Horizon', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue), #3b82f6);
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Horizon', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Horizon', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-secondary);
}

/* --- Content Layout --- */
.content-wrapper {
  padding: 60px 0 100px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: 'Horizon', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-blue);
  margin: 15px auto 0;
  border-radius: 2px;
}

.info-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Grid Section --- */
.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(96, 165, 250, 0.3);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon {
  width: 30px;
  height: 30px;
  color: var(--accent-blue);
}

.feature-card h3 {
  font-family: 'Horizon', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
}

.feature-card ul {
  list-style: none;
  padding: 0;
}

.feature-card ul li {
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.feature-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

/* --- Timeline / Process --- */
.process-section {
  margin-bottom: 100px;
}

.timeline {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  height: 100%;
  width: 2px;
  background: var(--border-light);
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bandits-bg-2);
  border: 2px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Horizon', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-blue);
  z-index: 2;
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateX(5px);
  border-color: rgba(96, 165, 250, 0.3);
}

.timeline-content h4 {
  font-family: 'Horizon', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 46, 0.9) 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}

.cta-section h2 {
  font-family: 'Horizon', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
