:root {
  --page-primary: #2563eb;
  --page-primary-light: #3b82f6;
  --page-primary-dark: #1d4ed8;
  --page-secondary: #06b6d4;
  --page-accent: #f59e0b;
}
.hero-banner {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-primary) 50%, var(--page-secondary) 100%);
  padding: 100px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.95;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--page-primary), var(--page-secondary));
  border-radius: 2px;
}
.section-title p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-top: 20px;
}
.process-timeline {
  position: relative;
  padding: 20px 0;
}
.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 70px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, var(--page-primary-light), transparent);
}
.timeline-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.timeline-icon i {
  font-size: 1.8rem;
  color: white;
}
.timeline-content {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}
.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--page-primary);
  margin-bottom: 10px;
}
.timeline-content p {
  color: #6b7280;
  line-height: 1.7;
}
.market-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.market-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.market-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
}
.market-card-header {
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  padding: 25px;
  color: white;
}
.market-card-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.market-card-header .market-size {
  font-size: 2rem;
  font-weight: 700;
}
.market-card-body {
  padding: 25px;
}
.market-card-body p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 15px;
}
.market-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.market-stat {
  flex: 1;
  text-align: center;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
}
.market-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--page-primary);
  display: block;
}
.market-stat-label {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 5px;
}
.cases-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.case-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}
.case-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 4rem;
  color: var(--page-primary-light);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}
.case-result {
  display: inline-block;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.case-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}
.case-card p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
}
.case-metrics {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.case-metric {
  text-align: center;
}
.case-metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--page-primary);
  display: block;
}
.case-metric-label {
  font-size: 0.85rem;
  color: #9ca3af;
}
.cta-section {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-primary) 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}
.cta-button {
  display: inline-block;
  background: white;
  color: var(--page-primary);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--page-primary-dark);
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { gap: 30px; }
  .stat-number { font-size: 2rem; }
  .timeline-item { flex-direction: column; }
  .timeline-icon { margin-right: 0; margin-bottom: 20px; }
  .timeline-item:not(:last-child)::after { display: none; }
  .market-cards { grid-template-columns: 1fr; }
  .case-metrics { flex-direction: column; gap: 15px; }
}
