.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.button--ghost {
  border-color: rgba(46, 204, 113, 0.4);
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.button--ghost:hover {
  background: var(--color-primary);
}

.button--small {
  min-height: 40px;
  padding: 0.55rem 1rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button-group--start {
  align-items: center;
}

.button-group--center {
  justify-content: center;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  background: rgba(46, 204, 113, 0.15);
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  animation: subtle-pulse 2.5s infinite;
}

@keyframes subtle-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.feature-card,
.faq-list details,
.contact-form,
.cta-panel,
.newsletter,
.cookie-banner {
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  width: 32px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--color-primary);
}
