:root {
  --page-primary: #06b6d4;
  --page-primary-light: #22d3ee;
  --page-primary-dark: #0891b2;
  --page-secondary: #10b981;
  --page-accent: #3b82f6;
}
.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: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.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;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.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;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.2);
}
.service-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-bottom: 20px;
}
.service-icon i {
  font-size: 1.8rem;
  color: white;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}
.service-card p {
  color: #6b7280;
  line-height: 1.7;
}
.platforms-section {
  background: linear-gradient(135deg, #ecfeff 0%, #d1fae5 100%);
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.platform-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.platform-card:hover {
  transform: translateY(-5px);
}
.platform-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.platform-icon i {
  font-size: 1.5rem;
  color: white;
}
.platform-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
}
.platform-card p {
  color: #6b7280;
  line-height: 1.6;
}
.strategies-section {
  background: white;
}
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.strategy-card {
  text-align: center;
  padding: 30px;
}
.strategy-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.strategy-icon i {
  font-size: 2rem;
  color: white;
}
.strategy-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}
.strategy-card p {
  color: #6b7280;
  line-height: 1.7;
}
.advantages-section {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-primary) 100%);
  color: white;
}
.advantages-section .section-title h2 {
  color: white;
}
.advantages-section .section-title h2::after {
  background: linear-gradient(90deg, white, rgba(255,255,255,0.5));
}
.advantages-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.advantage-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.advantage-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
.advantage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.advantage-icon i {
  font-size: 1.8rem;
  color: white;
}
.advantage-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.advantage-item p {
  opacity: 0.9;
  line-height: 1.6;
}
.cta-section {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-secondary) 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: 20px; }
  .stat-item { padding: 15px 20px; }
  .stat-number { font-size: 2rem; }
  .services-grid, .platforms-grid, .strategies-grid { grid-template-columns: 1fr; }
}
