/* ===== Statement Section – "All-in-One Marketingplattform" ===== */

.statement-section {
  position: relative;
  padding: 120px 24px;
  background: #f4f5f7;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

/* Animated gradient mesh background */
.statement-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.statement-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: orbFloat 12s ease-in-out infinite;
}

.statement-bg-orb--1 {
  width: 500px;
  height: 500px;
  background: #8b5cf6;
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.statement-bg-orb--2 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  bottom: -15%;
  right: -5%;
  animation-delay: -4s;
  animation-duration: 15s;
}

.statement-bg-orb--3 {
  width: 300px;
  height: 300px;
  background: #d946ef;
  top: 30%;
  right: 25%;
  animation-delay: -8s;
  animation-duration: 18s;
  opacity: 0.1;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Grid pattern overlay */
.statement-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Content */
.statement-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.statement-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: white;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  color: #8b5cf6;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.statement-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
  animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Main headline */
.statement-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}

.statement-title-line {
  display: block;
}

.statement-title-line--muted {
  color: #94a3b8;
}

/* Animated gradient text */
.statement-gradient-text {
  background: linear-gradient(
    90deg,
    #8b5cf6,
    #d946ef,
    #f59e0b,
    #8b5cf6
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subtitle */
.statement-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 64px;
}

/* Feature pills */
.statement-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.statement-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  cursor: default;
}

.statement-pill:hover {
  background: white;
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.1);
}

.statement-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f3f0ff, #ede9fe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  flex-shrink: 0;
}

.statement-pill-icon svg {
  width: 20px;
  height: 20px;
}

.statement-pill-text {
  text-align: left;
}

.statement-pill-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.statement-pill-desc {
  font-size: 12px;
  color: #94a3b8;
}

/* Decorative line */
.statement-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #d946ef);
  border-radius: 2px;
  margin: 0 auto 40px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .statement-section {
    padding: 80px 16px;
  }

  .statement-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .statement-pill {
    width: 100%;
    max-width: 340px;
  }

  .statement-subtitle {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .statement-section {
    padding: 64px 16px;
  }

  .statement-title {
    font-size: 2rem;
  }
}
