/* biztheme/css/wy-promote-business.css 
   for page node--wy-promote-business--full.html.twig*/

.promotion-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-graphic {
  width: 300px;
  height: 200px;
  margin: 0 auto 2rem;
}

.hero-graphic img {
    width: 100%;
    height: 100%;
    mix-blend-mode: lighten;
    max-width: 225px;
    margin: 0 auto 2rem;
    filter: brightness(1.2) contrast(0.9) saturate(1.1);
    object-fit: contain;
}

.promotion-hero h2 {
  font-size: clamp(1.5rem, 1.0179rem + 2.5714vw, 2.625rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.promotion-hero p {
  font-size: clamp(1.0625rem, 0.9286rem + 0.7143vw, 1.375rem);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.benefit-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-icon {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.benefit-card p {
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0;
}

.seo-highlight {
  background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  border-radius: 16px;
  margin: 4rem auto;
  max-width: 1000px;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 1.0179rem + 2.5714vw, 2.625rem);
  margin-bottom: 1rem;
}

.promotion-hero p, .cta-section p {
  font-size: clamp(1.0625rem, 0.9286rem + 0.7143vw, 1.375rem);
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }
.benefit-card:nth-child(7) { animation-delay: 0.7s; }
.benefit-card:nth-child(8) { animation-delay: 0.8s; }
.benefit-card:nth-child(9) { animation-delay: 0.9s; }
.benefit-card:nth-child(10) { animation-delay: 1.0s; }
.benefit-card:nth-child(11) { animation-delay: 1.1s; }
.benefit-card:nth-child(12) { animation-delay: 1.2s; }
.benefit-card:nth-child(13) { animation-delay: 1.3s; }
.benefit-card:nth-child(14) { animation-delay: 1.4s; }
.benefit-card:nth-child(15) { animation-delay: 1.5s; }

.cta-graphic {
  width: 170px;
  height: 170px;
  margin: 0 auto 2rem;
}

.cta-graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .benefit-card {
    padding: 1.5rem;
  }
  






