/* Apple-inspirierte Stile für ProfiAI Website */

/* Typografie */
.apple-headline {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.apple-subheadline {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.3;
}

.apple-body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.016em;
  line-height: 1.47059;
}

/* Apple-Buttons */
.apple-button {
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.016em;
  padding: 0.75rem 1.5rem;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.apple-button:hover {
  background-color: var(--primary-light-color);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.apple-button-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.apple-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Apple-Karten */
.apple-card {
  background-color: rgba(28, 28, 30, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.apple-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Apple-Header */
.apple-header {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Apple-Glasmorphismus */
.glass-effect {
  background-color: rgba(28, 28, 30, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

/* Apple-Schatten */
.apple-shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.apple-shadow-md {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.apple-shadow-lg {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Apple-Farbverläufe */
.apple-gradient-blue {
  background: linear-gradient(135deg, #0071E3, #42A5F5);
}

.apple-gradient-green {
  background: linear-gradient(135deg, #06C755, #4CD964);
}

.apple-gradient-mixed {
  background: linear-gradient(135deg, #0071E3, #06C755, #5AC8FA);
}

/* Apple-Texteffekte */
.apple-text-gradient {
  background: linear-gradient(90deg, #0071E3, #5AC8FA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Apple-Abschnitte */
.apple-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Apple-Hintergrundeffekte */
.apple-bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  opacity: 0.5;
  animation: fadeInOut 8s ease-in-out infinite;
}

.apple-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  opacity: 0.5;
  animation: fadeInOut 8s ease-in-out infinite alternate;
}

@keyframes fadeInOut {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.3;
  }
}

/* Lottie Animation Container */
.lottie-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 1;
  opacity: 0.7;
}

/* Apple-Formulare */
.apple-input {
  background-color: rgba(28, 28, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.016em;
  transition: all 0.3s ease;
  width: 100%;
}

.apple-input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.3);
}

.apple-label {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.016em;
  margin-bottom: 0.5rem;
  display: block;
}

/* Apple-Preistabellen */
.apple-price-tag {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.apple-price-period {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: -0.016em;
  color: rgba(255, 255, 255, 0.7);
}

/* Apple-Listen */
.apple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.apple-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.016em;
}

.apple-list-item::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2334C759'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Apple-Footer */
.apple-footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Apple-Divider */
.apple-divider {
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%);
  margin: 2rem 0;
  border: none;
}
