/* ============================================================================
   AGEDECODED - MODULE STYLES
   ============================================================================
   Zentrale CSS-Datei für alle Frontend-Module
   Ersetzt alle Inline-Styles aus den REDAXO-Modulen
   ============================================================================ */

/* ============================================================================
   COMMON SECTION STYLES
   ============================================================================ */

/* Section Backgrounds */
.section-white {
  background-color: #ffffff;
}

.section-light-gray {
  background-color: #f8f9fa;
}

/* Section Padding */
.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ============================================================================
   TYPOGRAPHY CLASSES
   ============================================================================ */

/* ============================================================================
   EINHEITLICHE TYPOGRAFIE - Alle Module
   ============================================================================ */

/* Section-Überschriften (h2) - einheitlich 1.5rem */
.section-title,
.benefits-title,
.success-stories-title,
.pricing-section-title,
.heading-lg,
.heading-md {
  font-size: 1.5rem !important;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Card/Box-Titel (h3) - einheitlich 1.1rem */
.card-title-unified,
.usp-card-title,
.benefits-card-title,
.story-title,
.pricing-title,
.heading-sm {
  font-size: 1.1rem !important;
  color: #000;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Body-Text (p) - einheitlich 0.9rem */
.body-text,
.usp-card-text,
.benefits-card-text,
.story-text,
.lead-text {
  font-size: 0.9rem !important;
  color: #555;
  line-height: 1.6;
}

/* Legacy Headings für Kompatibilität */
.heading-xl {
  font-size: 1.5rem !important;
  color: #000;
  font-weight: 600;
}

/* Lead Text (override für spezielle Fälle) */
.lead-text {
  color: #666;
  font-size: 1.125rem;
}

/* Body Text */
.text-body {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

.text-body-tight {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.text-body-sm {
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
}

.text-body-list {
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.text-meta {
  font-size: 0.875rem;
  color: #666;
}

.text-strong {
  color: #333;
  margin-bottom: 0.5rem;
}

/* ============================================================================
   ALERT BOXES / INFO BOXES
   ============================================================================ */

.info-box {
  background-color: #d1ecf1;
  border-left: 4px solid #0c5460;
  color: #0c5460;
  padding: 1.25rem;
}

.info-box p {
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================================================
   CARDS
   ============================================================================ */

/* Base Card */
.module-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background-color: #fff;
}

.module-card-body {
  padding: 1.5rem;
}

/* ============================================================================
   PRICING MODULE (Modul 52)
   ============================================================================ */

.preise-section {
  background-color: #f8f9fa;
}

/* Pricing Card - Basis */
.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

/* Featured Pricing Card */
.pricing-card-featured {
  border-color: #0066cc;
}

/* Pricing Card Hover */
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important;
}

.pricing-card-featured:hover {
  box-shadow: 0 12px 32px rgba(0,102,204,0.2) !important;
}

/* Pricing Badge */
.pricing-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

/* Pricing Card Body */
.pricing-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Pricing Title */
.pricing-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Pricing Amount Container */
.pricing-price-container {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f3f4f6;
  min-height: 75px;
}

/* Pricing Amount */
.pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #0066cc;
  line-height: 1;
  margin-bottom: 0.25rem;
}

/* Pricing Extra Text */
.pricing-extra-text {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  min-height: 1.2rem;
}

/* Pricing Features List */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.pricing-features li {
  padding: 0.4rem 0;
  color: #4b5563;
  font-size: 0.8125rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.pricing-features .bi {
  font-size: 1rem;
  flex-shrink: 0;
  margin-right: 8px;
  margin-top: 2px;
  color: #10b981;
}

/* Pricing Button */
.pricing-btn {
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.2s ease;
  margin-top: auto;
}

/* Featured Button */
.pricing-btn-featured {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border: none;
  color: white;
}

.pricing-btn-featured:hover {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  text-decoration: underline;
}

/* Non-Featured Button */
.pricing-btn-outline {
  background: transparent;
  border: 2px solid #e5e7eb;
  color: #374151;
}

/* Button Hover Effects */
.pricing-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pricing-btn-outline:hover {
  background: #f9fafb !important;
  border-color: #0066cc !important;
  color: #0066cc !important;
}

/* ============================================================================
   PRICING - OPTIMIERTES 2-BLOCK LAYOUT (Abo + Add-ons)
   Multi-Frontend Support: Nutzt CSS-Variablen für Brand-Colors
   ============================================================================ */

/* Block Titel */
.pricing-block-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.pricing-block-title i {
  color: var(--primary-color, #0066cc);
}

/* Abo Card specifics */
.pricing-card-abo {
  border-top: 3px solid var(--primary-color, #0066cc);
}

/* Preis Period (klein, grau, hochgestellt) */
.pricing-amount .pricing-period {
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
  vertical-align: top;
  margin-left: 2px;
  position: relative;
  top: 0.2em;
}

/* Button-Bereich am unteren Rand */
.pricing-card-abo .pricing-card-body {
  display: flex;
  flex-direction: column;
}

.pricing-card-abo .pricing-features {
  flex: 1 1 auto;
}

.pricing-card-abo .pricing-btn {
  margin-top: auto;
}

/* Feature Highlight (erster Bullet) */
.pricing-features li.pricing-feature-highlight {
  background: #f0f7ff;
  margin: 0 0 0.5rem 0;
  padding: 0.5rem 0;
  border-radius: 6px;
  align-items: center;
}

.pricing-feature-highlight .bi {
  color: var(--primary-color, #0066cc);
}

/* Microcopy */
.pricing-microcopy {
  font-size: 10px;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
  min-height: 1.2em;
}

.pricing-microcopy .bi {
  font-size: 9px;
  margin-right: 3px;
}

/* Tooltip für Potential-Info */
.pricing-tooltip {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 11px;
  color: #9ca3af;
  cursor: help;
}

.pricing-tooltip .bi {
  margin-right: 3px;
}

/* Badge Variants */
.pricing-badge-secondary {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  box-shadow: 0 4px 12px rgba(107,114,128,0.3);
}

.pricing-badge-addon {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

/* Trenner/Divider Section */
.pricing-divider {
  position: relative;
}

.pricing-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
}

.pricing-divider-content {
  position: relative;
  background: white;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.pricing-divider-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.pricing-divider-title i {
  color: #f59e0b;
}

.pricing-divider-text {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Add-on Cards */
.pricing-card-addon {
  border-top: 3px solid #059669;
  background: #fafafa;
}

.pricing-card-addon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

.pricing-title-addon {
  font-size: 1rem;
}

.pricing-price-addon {
  min-height: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.pricing-amount-addon {
  font-size: 1.5rem;
  color: #059669;
}

/* Outcome Text */
.pricing-outcome {
  font-size: 0.875rem;
  color: #4b5563;
  text-align: center;
  padding: 0.75rem;
  background: #f0fdf4;
  border-radius: 8px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Add-on Button */
.pricing-btn-addon {
  background: transparent;
  border: 2px solid #059669;
  color: #059669;
}

.pricing-btn-addon:hover {
  background: #059669 !important;
  color: white !important;
}

/* Info Link */
.pricing-info-link {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
  text-decoration: none;
}

.pricing-info-link:hover {
  color: #0066cc;
}

/* Responsive - Pricing Cards */
@media (max-width: 767.98px) {
  .pricing-divider-content {
    margin: 0 1rem;
  }

  .pricing-block-title {
    font-size: 1.125rem;
  }
}

/* ============================================================================
   SCORECARD MODULE (Modul 53)
   ============================================================================ */

.scorecard-section {
  background-color: #ffffff;
}

.scorecard-item {
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #dee2e6;
  border-radius: 8px;
}

.scorecard-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.scorecard-item-body {
  padding: 1.5rem;
}

.scorecard-badge {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.scorecard-badge-red {
  background-color: #dc3545;
  color: white;
}

.scorecard-badge-orange {
  background-color: #ffc107;
  color: white;
}

.scorecard-badge-cyan {
  background-color: #17a2b8;
  color: white;
}

.scorecard-badge-gray {
  background-color: #6c757d;
  color: white;
}

.scorecard-title {
  font-size: 1.25rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.scorecard-examples-label {
  font-size: 0.95rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.scorecard-examples-list {
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

/* ============================================================================
   MEINE CHANCEN MODULE (Modul 51)
   ============================================================================ */

.meine-chancen-section {
  background-color: #ffffff;
}

.kpi-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
}

.kpi-card-body {
  padding: 1.5rem;
}

.kpi-icon {
  margin-right: 0.5rem;
}

.kpi-title {
  font-size: 1.25rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0;
}

.kpi-list {
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

/* ============================================================================
   SO FUNKTIONIERTS MODULE (Modul 54)
   ============================================================================ */

.so-funktionierts-section {
  background-color: #ffffff;
}

.step-number-badge {
  width: 60px;
  height: 60px;
  background-color: #0066cc;
  color: white;
  font-size: 1.75rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 1rem;
}

.step-title {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0;
}

.step-description {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

/* Spacing */
.mb-tight {
  margin-bottom: 0.5rem;
}

.mb-normal {
  margin-bottom: 1rem;
}

.mb-relaxed {
  margin-bottom: 2rem;
}

/* Max Width */
.max-w-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Flex */
.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* ============================================================================
   SCORECARD TEASER TABLE (Modul 45)
   ============================================================================ */

.scorecard-teaser {
  background-color: #ffffff;
}

.scorecard-table thead tr {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #dee2e6;
}

.scorecard-table thead th {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: #495057;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.scorecard-table .scorecard-row {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.scorecard-table .scorecard-row:hover {
  background-color: #f8f9fa !important;
}

.scorecard-table .scorecard-row td {
  padding: 1.25rem 1.5rem;
  border: none;
  vertical-align: middle;
}

.scorecard-table .scorecard-row td:nth-child(2) {
  color: #495057;
  line-height: 1.7;
  font-size: 0.95rem;
}

.scorecard-table .scorecard-row td:nth-child(3) {
  color: #6c757d;
  line-height: 1.7;
  font-size: 0.95rem;
}

.scorecard-table .badge {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
  letter-spacing: 0.3px;
}

.scorecard-table-card {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  overflow: hidden;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */

@media (max-width: 768px) {
  .heading-xl {
    font-size: 2rem;
  }

  .heading-lg {
    font-size: 1.75rem;
  }

  .heading-md {
    font-size: 1.35rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .step-number-badge {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .heading-xl {
    font-size: 1.75rem;
  }

  .heading-lg {
    font-size: 1.5rem;
  }

  .scorecard-badge {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

/* ============================================================================
   AVATAR DROPDOWN (Navigation)
   ============================================================================ */

/* Avatar Container mit Dropdown */
.avatar-dropdown-container {
  position: relative;
  cursor: pointer;
}

/* Avatar Bild */
.avatar-dropdown-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dee2e6;
  transition: border-color 0.2s ease;
}

.avatar-dropdown-container:hover .avatar-dropdown-img {
  border-color: #0d6efd;
}

/* Avatar Initialen (Fallback wenn kein Bild) */
.avatar-dropdown-initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.avatar-dropdown-container:hover .avatar-dropdown-initials {
  border-color: #0d6efd;
}

/* Badge auf Avatar */
.avatar-dropdown-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.avatar-dropdown-badge:not(:empty) {
  display: flex;
}

/* Dropdown Menu - versteckt per default */
.avatar-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 0.5rem) !important;
  right: 0 !important;
  min-width: 240px !important;
  background: white !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: all 0.2s ease !important;
  z-index: 1050 !important;
  display: block !important;
}

/* Dropdown sichtbar wenn active */
.avatar-dropdown-container.active .avatar-dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Dropdown Header */
.avatar-dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px 8px 0 0;
}

.avatar-dropdown-username {
  font-weight: 600;
  color: #212529;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.avatar-dropdown-email {
  font-size: 0.85rem;
  color: #6c757d;
  word-break: break-all;
}

/* Dropdown Links */
.avatar-dropdown-links {
  padding: 0.5rem 0;
}

.avatar-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #495057;
  text-decoration: none;
  transition: all 0.15s ease;
  font-size: 0.9rem;
  cursor: pointer;
}

.avatar-dropdown-link span,
.avatar-dropdown-link i {
  cursor: pointer;
}

.avatar-dropdown-link:hover {
  background-color: #f8f9fa;
  color: #212529;
  text-decoration: none;
}

.avatar-dropdown-link.logout-link {
  color: #dc3545;
  border-top: 1px solid #e9ecef;
  margin-top: 0.25rem;
}

.avatar-dropdown-link.logout-link:hover {
  background-color: #fff5f5;
  color: #bb2d3b;
}

.avatar-dropdown-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .avatar-dropdown-menu {
    min-width: 200px;
  }

  .avatar-dropdown-username {
    font-size: 0.9rem;
  }

  .avatar-dropdown-email {
    font-size: 0.8rem;
  }
}

/* ============================================================================
   FE ERFOLGSGESCHICHTEN [44]
   ============================================================================ */

.success-stories-section {
  background-color: #fff;
  padding: 2.5rem 0;
}

.success-stories-subtitle {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
}

.story-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  height: 100%;
  transition: all 0.2s ease;
  overflow: hidden;
}

.story-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.story-card-body {
  padding: 1.25rem;
}

.story-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ecef;
  flex-shrink: 0;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f0f0f0;
}

.story-content {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.story-item {
  margin-bottom: 0.625rem;
}

.story-item:last-child {
  margin-bottom: 0;
}

.story-label {
  font-weight: 600;
  color: #333;
  font-size: 0.85rem;
}

.story-solution {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #d4edda;
  color: #155724;
  padding: 0.375rem 0.625rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.story-solution-text {
  color: #155724;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .success-stories-section {
    padding: 2rem 0;
  }
}

/* ============================================================================
   _LOGIN [35]
   ============================================================================ */


/* OAuth Button Base Styles */
.oauth-btn {
    position: relative;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.oauth-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.oauth-btn:hover::before {
    width: 300px;
    height: 300px;
}

.oauth-btn i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.oauth-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Google Button */
.google-btn {
    background: #ffffff;
    color: #3c4043;
    border-color: #dadce0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    background: #EA4335;
    color: #ffffff;
    border-color: #EA4335;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.google-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(234, 67, 53, 0.3);
}

/* Microsoft Button */
.microsoft-btn {
    background: #ffffff;
    color: #5E5E5E;
    border-color: #8C8C8C;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.microsoft-btn:hover {
    background: #0078D4;
    color: #ffffff;
    border-color: #0078D4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.microsoft-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 120, 212, 0.3);
}

/* Focus States */
.oauth-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Ripple Effect on Click */
.oauth-btn:active {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
}



/* Feine, dezente Form-Elemente */
.form-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #495057;
    margin-bottom: 0.4rem;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #a0c0e8;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
    outline: none;
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.875rem;
}

.form-text {
    font-size: 0.8125rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

/* Password toggle button */
#togglePassword {
    cursor: pointer;
    transition: color 0.2s ease;
}

#togglePassword:hover {
    color: #495057 !important;
}

#togglePassword:focus {
    box-shadow: none;
    outline: none;
}

/* Dezenter Primary Button (nur im Formular) */
form .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.15);
}

form .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

/* OAuth Buttons */
.btn-outline-secondary {
    border: 1px solid #e0e0e0;
    color: #6c757d;
    background: #ffffff;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-outline-secondary:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #d0d0d0;
    color: #495057;
}

.btn-outline-secondary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Divider */
hr {
    border-color: #e9ecef;
    opacity: 1;
}

/* Alert */
.alert {
    border-radius: 6px;
    border: none;
    font-size: 0.875rem;
}

.alert-success {
    background: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background: #f8d7da;
    color: #842029;
}


/* ============================================================================
   _REGISTRATION [34]
   ============================================================================ */


/* Feine, dezente Form-Elemente */
.form-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #495057;
    margin-bottom: 0.4rem;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #a0c0e8;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
    outline: none;
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.875rem;
}

.form-text {
    font-size: 0.8125rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

.form-check-label {
    font-size: 0.875rem;
    color: #495057;
}

.form-check-input {
    border: 1px solid #d0d0d0;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Dezenter Primary Button (nur im Formular) */
form .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.15);
}

form .btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

form .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #6c757d;
    box-shadow: none;
}

/* OAuth Buttons */
.btn-outline-secondary {
    border: 1px solid #e0e0e0;
    color: #6c757d;
    background: #ffffff;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-outline-secondary:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #d0d0d0;
    color: #495057;
}

.btn-outline-secondary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Divider */
hr {
    border-color: #e9ecef;
    opacity: 1;
}

/* Alert */
.alert {
    border-radius: 6px;
    border: none;
    font-size: 0.875rem;
}

.alert-success {
    background: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background: #f8d7da;
    color: #842029;
}


/* ============================================================================
   _USER_PROFILE [38]
   ============================================================================ */


/* Feine, dezente Form-Elemente */
.form-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #495057;
    margin-bottom: 0.4rem;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #a0c0e8;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
    outline: none;
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.875rem;
}

.form-text {
    font-size: 0.8125rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

/* Dezenter Primary Button (nur im Formular) */
form .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    padding: 0.7rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.15);
}

form .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

/* Alert */
.alert {
    border-radius: 6px;
    border: none;
    font-size: 0.875rem;
}

.alert-success {
    background: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background: #f8d7da;
    color: #842029;
}

/* Avatar Upload Button Hover */
.avatar-upload-btn:hover {
    transform: scale(1.1);
    background: #0b5ed7 !important;
}

/* Upload Message Styles */
.upload-success {
    color: #0f5132;
    background: #d1e7dd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.upload-error {
    color: #842029;
    background: #f8d7da;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.upload-loading {
    color: #055160;
    background: #cff4fc;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}


/* ============================================================================
   TEXT EDITOR (30) [30]
   ============================================================================ */


.text-module {
  margin-bottom: 2rem;
}

.text-module-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212529;
}

.text-module-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

.text-module-content p {
  margin-bottom: 1rem;
}

.text-module-content h1,
.text-module-content h2,
.text-module-content h3,
.text-module-content h4,
.text-module-content h5,
.text-module-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.text-module-content ul,
.text-module-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.text-module-content li {
  margin-bottom: 0.5rem;
}

.text-module-content a {
  color: #0d6efd;
  text-decoration: none;
}

.text-module-content a:hover {
  text-decoration: underline;
}

.text-module-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.text-module-content blockquote {
  border-left: 4px solid #dee2e6;
  padding-left: 1rem;
  margin: 1rem 0;
  color: #6c757d;
  font-style: italic;
}

.text-module-content code {
  background-color: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.text-module-content pre {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  margin: 1rem 0;
}

.text-module-content table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
}

.text-module-content table th,
.text-module-content table td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}

.text-module-content table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* ============================================================================
   LOGIN MODULE [35] - HeyGen-inspired Design
   ============================================================================ */

/* Container & Card */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafbfc;
  padding: 1rem 1rem;
}

.login-card {
  width: 100%;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

/* Form Container (Left Side) */
.login-form-container {
  padding: 1.25rem 2rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

/* Back to Homepage Link */
.login-back-link-wrapper {
  margin-top: 0;
  margin-left: 0.75rem;
  margin-bottom: 0.5rem;
}

.login-back-link {
  font-size: 0.6875rem;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.login-back-link:hover {
  color: #9ca3af;
  text-decoration: none;
}

/* Brand/Logo */
.login-brand {
  margin-bottom: 1rem;
}

.login-brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0066cc;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Welcome */
.login-welcome {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}

.login-subtitle {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0 0 0.875rem 0;
}

/* OAuth 4-Column Grid */
.login-oauth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

/* Branded OAuth Buttons - Bootstrap Style */
.login-oauth-btn-branded {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.5rem;
  border: 1px solid;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.login-oauth-btn-branded i,
.login-oauth-btn-branded span {
  cursor: pointer;
}

.login-oauth-btn-branded i {
  font-size: 1rem;
}

.login-oauth-btn-branded:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-oauth-btn-branded:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.login-oauth-google {
  color: #EA4335;
  border-color: #EA4335;
}

.login-oauth-google:hover {
  background: #EA4335;
  color: #ffffff;
  border-color: #EA4335;
}

.login-oauth-apple {
  color: #000000;
  border-color: #000000;
}

.login-oauth-apple:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.login-oauth-facebook {
  color: #1877F2;
  border-color: #1877F2;
}

.login-oauth-facebook:hover {
  background: #1877F2;
  color: #ffffff;
  border-color: #1877F2;
}

.login-oauth-microsoft {
  color: #0078D4;
  border-color: #0078D4;
}

.login-oauth-microsoft:hover {
  background: #0078D4;
  color: #ffffff;
  border-color: #0078D4;
}


/* Divider */
.login-divider {
  position: relative;
  text-align: center;
  margin: 0.75rem 0;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.login-divider-text {
  position: relative;
  display: inline-block;
  background: #ffffff;
  padding: 0 0.875rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  font-weight: 500;
}

/* Alert */
.login-alert {
  margin-bottom: 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  padding: 0.5rem 0.875rem;
}

/* Form */
.login-form {
  margin-bottom: 0.75rem;
}

.login-form-group {
  margin-bottom: 0.625rem;
}

.login-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.3rem;
}

.login-input {
  width: 100%;
  padding: 0.4375rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.2s ease;
}

.login-input:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.08);
}

.login-input::placeholder {
  color: #9ca3af;
}

/* Password Field */
.login-password-wrapper {
  position: relative;
}

.login-input-password {
  padding-right: 2.75rem;
}

.login-password-toggle {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.2rem;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.login-password-toggle:hover {
  color: #6b7280;
}

.login-form-hint {
  margin-top: 0.3rem;
}

.login-form-hint small {
  font-size: 0.7rem;
}

/* Primary Button (Logo Blue) */
.login-btn-primary {
  width: 100%;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
}

.login-btn-primary > * {
  pointer-events: none;
}

.login-btn-primary:hover {
  background: linear-gradient(135deg, #0052a3 0%, #004080 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Secondary Button */
.login-btn-secondary {
  width: 100%;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #374151;
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
}

.login-btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}

/* Info Box (for explanations) */
.login-info-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.login-info-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
}

.login-info-text {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}

.login-info-list {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  padding-left: 1.25rem;
}

.login-info-list li {
  margin-bottom: 0.25rem;
}

/* Terms Text */
.login-terms {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* Links */
.login-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.login-link:hover {
  color: #0052a3;
  text-decoration: underline;
}

.login-link-small {
  color: #0066cc;
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s ease;
  font-weight: 500;
}

.login-link-small:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* Footer Links */
.login-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 0;
  font-size: 0.75rem;
}

.login-footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login-footer-link:hover {
  color: #1f2937;
}

.login-footer-separator {
  color: #d1d5db;
}

/* Copyright */
.login-copyright {
  text-align: center;
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* Media Container (Right Side) */
.login-media-container {
  height: 100%;
  min-height: 380px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.login-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media Placeholder */
.login-media-placeholder {
  text-align: center;
  padding: 1.5rem;
}

.login-media-placeholder-icon {
  font-size: 3rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.login-media-placeholder-text {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .login-card {
    border-radius: 8px;
    max-width: 900px;
  }

  .login-form-container {
    padding: 1.25rem 1.5rem 1rem 1.5rem;
    min-height: auto;
  }

  .login-media-container {
    min-height: 280px;
  }

  .login-oauth-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .login-container {
    padding: 0.75rem 0.5rem;
  }

  .login-card {
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }

  .login-welcome {
    font-size: 1.25rem;
  }

  .login-brand-title {
    font-size: 1rem;
  }

  .login-oauth-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .login-oauth-btn-branded {
    padding: 0.4375rem 0.5rem;
    font-size: 0.6875rem;
  }

  .login-oauth-btn-branded i {
    font-size: 0.875rem;
  }

  .login-form-container {
    padding: 1rem 1rem 0.875rem 1rem;
  }

  .login-media-container {
    min-height: 220px;
  }
}


/* ============================================================================
   REGISTRATION MODULE [34] - 2-Column Layout
   ============================================================================ */

/* Registration-specific sections */
.registration-header {
  padding: 0.5rem 1.5rem 0 1.5rem;
  text-align: center;
}

.registration-header .login-brand {
  margin-bottom: 1.25rem;
}

.registration-header .login-welcome {
  margin-bottom: 0.375rem;
}

.registration-oauth {
  padding: 0 1.5rem;
  margin-top: 1rem;
}

.registration-oauth .login-divider {
  margin: 1rem 0;
}

.registration-alert {
  padding: 0 1.5rem;
  margin-top: 0.75rem;
}

.registration-form {
  padding: 0 1.5rem 0.5rem 1.5rem;
}

.registration-terms {
  margin-top: 1rem;
  margin-bottom: 0.875rem;
}

/* Kompaktere Form-Groups in Registration */
.registration-form .login-form-group {
  margin-bottom: 0.875rem;
}

.registration-terms .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.registration-terms .form-check-input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.registration-terms .form-check-label {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Disabled OAuth buttons */
.login-oauth-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Responsive for Registration */
@media (max-width: 767px) {
  .registration-header {
    padding: 1.25rem 1.25rem 0 1.25rem;
  }

  .registration-oauth,
  .registration-alert,
  .registration-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .registration-form {
    padding-bottom: 1rem;
  }
}

@media (max-width: 575px) {
  .registration-header {
    padding: 1rem 1rem 0 1rem;
  }

  .registration-oauth,
  .registration-alert,
  .registration-form {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


/* ============================================================================
   SOCIAL MEDIA FOLLOW SECTION
   ============================================================================ */

.social-follow-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.social-follow-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.social-follow-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.social-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 380px;
}

.social-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.social-box-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.social-box-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.social-box-icon-youtube {
  background-color: #ff0000;
}

.social-box-icon-tiktok {
  background-color: #000000;
}

.social-box-icon-facebook {
  background-color: #1877f2;
}

.social-box-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.social-box-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.social-box-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: auto;
  min-width: 140px;
}

.social-box-link-youtube {
  background-color: #ff0000;
}

.social-box-link-youtube:hover {
  background-color: #cc0000;
}

.social-box-link-tiktok {
  background-color: #000000;
}

.social-box-link-tiktok:hover {
  background-color: #333333;
}

.social-box-link-facebook {
  background-color: #1877f2;
}

.social-box-link-facebook:hover {
  background-color: #0c63d4;
}

.social-box-icon-linkedin {
  background-color: #0077b5;
}

.social-box-link-linkedin {
  background-color: #0077b5;
}

.social-box-link-linkedin:hover {
  background-color: #005885;
}

.social-box-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.social-box-link:hover i {
  transform: translateX(2px);
}

@media (max-width: 767px) {
  .social-follow-section {
    padding: 3rem 0;
  }

  .social-follow-title {
    font-size: 1.75rem;
  }

  .social-follow-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .social-box {
    padding: 2rem 1.5rem;
    min-height: 320px;
  }

  .social-box-icon {
    width: 70px;
    height: 70px;
  }

  .social-box-icon i {
    font-size: 2rem;
  }

  .social-box-title {
    font-size: 1.25rem;
  }
}


/* ============================================================================
   MODAL STYLES - Fall anlegen
   ============================================================================ */

#createCaseModal #caseReason,
#createCaseModal .form-select {
  font-size: 14px !important;
}

#createCaseModal #caseReason option,
#createCaseModal .form-select option {
  font-size: 14px !important;
  line-height: 1.4;
  padding: 0.375rem 0.75rem;
}

/* ============================================================================
   BENEFITS / USP SECTION
   ============================================================================ */

.benefits-section {
  background-color: #f8f9fa;
  padding: 2.5rem 0;
}

.usp-card,
.benefits-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  height: 100%;
  transition: box-shadow 0.2s ease;
}

.usp-card:hover,
.benefits-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.usp-card-body,
.benefits-card-body {
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.usp-icon-wrapper,
.benefits-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.625rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.usp-icon,
.benefits-icon {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .usp-section,
  .benefits-section {
    padding: 2rem 0;
  }

  .usp-icon-wrapper,
  .benefits-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .usp-icon,
  .benefits-icon {
    font-size: 1.25rem;
  }

  .usp-card-title,
  .benefits-card-title {
    font-size: 0.95rem;
  }

  .usp-card-text,
  .benefits-card-text {
    font-size: 0.8rem;
  }
}
