/* Revolutionary RCS Features Section */
.rcs-features-revolutionary {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.rcs-features-revolutionary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Header */
.features-header-modern {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.features-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Showcase */
.features-showcase-modern {
  position: relative;
  z-index: 2;
}

/* Hero Feature Card */
.hero-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.hero-feature-content {
  position: relative;
}

.hero-feature-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  flex-shrink: 0;
}

.feature-icon-hero {
  width: 80px;
  height: 80px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #667eea;
  flex-shrink: 0;
}

.hero-feature-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-feature-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-point {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-point i {
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  font-size: 1.1rem;
}

.benefit-point span {
  font-weight: 600;
  color: var(--dark);
}

/* Hero Feature Visual */
.hero-feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.verification-demo {
  position: relative;
}

.brand-identity-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.1);
  max-width: 300px;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brand-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.brand-info {
  flex: 1;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.verification-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1da1f2;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-indicators {
  display: flex;
  gap: 1.5rem;
}

.trust-metric {
  text-align: center;
  flex: 1;
}

.trust-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.trust-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
}

/* Features Grid */
.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover::before {
  opacity: 1;
}

.feature-header-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-number-small {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.feature-icon-card {
  width: 50px;
  height: 50px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #667eea;
}

.feature-content-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.feature-content-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Media Types Demo */
.media-types-demo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.media-type {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.media-icon {
  font-size: 1.2rem;
}

.media-type span {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

/* Buttons Demo */
.buttons-demo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.primary-demo {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.secondary-demo {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.tertiary-demo {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Carousel Demo */
.carousel-demo {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.carousel-track {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.carousel-slide {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.product-preview {
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 1rem;
  min-width: 120px;
}

.product-image {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #667eea;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  transition: background 0.3s ease;
}

.indicator.active {
  background: #667eea;
}

/* Analytics Demo */
.analytics-demo {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.analytics-chart {
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 120px;
  gap: 1rem;
}

.chart-bar {
  background: linear-gradient(to top, #667eea, #764ba2);
  border-radius: 4px 4px 0 0;
  position: relative;
  flex: 1;
  max-width: 40px;
  transition: all 0.3s ease;
}

.chart-bar:hover {
  transform: scale(1.05);
}

.bar-value {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
}

.bar-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 600;
}

/* Location Demo */
.location-demo {
  background: rgba(102, 126, 234, 0.05);
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.map-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 10px;
}

.map-pin {
  font-size: 1.5rem;
}

.location-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.location-address {
  font-size: 0.8rem;
  color: var(--gray);
}

.location-btn {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.location-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Features Summary */
.features-summary {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.summary-header {
  text-align: center;
  margin-bottom: 3rem;
}

.summary-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.summary-header p {
  font-size: 1.1rem;
  color: var(--gray);
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.summary-stat {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.summary-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  /*color: var(--gray);*/
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-feature-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .features-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .features-header-modern {
    margin-bottom: 2rem;
  }
  
  .hero-feature-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .features-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .feature-card-modern {
    padding: 1.5rem;
  }
  
  .features-summary {
    padding: 2rem;
  }
  
  .summary-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .summary-stat {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .summary-stats {
    grid-template-columns: 1fr;
  }
  
  .media-types-demo {
    grid-template-columns: 1fr;
  }
}

.yellow {
    color: #ffd700;
}

.white {
    color: #ffffff !important;
}