body {
	font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
	font-weight: 700;
	background-color: #f5f5f5;
  }
  
  /* Navbar */
  .navbar {
	position: sticky;
	top: 0;
	background: linear-gradient(135deg, #FFC500 0%, #FFA000 100%);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	z-index: 1000;
  }
  
  .navbar-container {
	max-width: 100%;
	margin: 0;
	padding: 0 12px 0 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	height: 96px;
  }
  
  .navbar-brand {
	text-decoration: none;
	flex-shrink: 0;
	margin-right: 8px;
  }
  
  .navbar-logo {
	height: 72px;
	width: auto;
	transition: transform 0.3s ease;
  }
  
  .navbar-logo:hover {
	transform: scale(1.05);
  }
  
  .navbar-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
  }
  
  .hamburger-icon {
	display: flex;
	flex-direction: column;
	gap: 5px;
  }
  
  .hamburger-icon span {
	width: 28px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
  }
  
  .navbar-toggle.open .hamburger-icon span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
  }
  
  .navbar-toggle.open .hamburger-icon span:nth-child(2) {
	opacity: 0;
  }
  
  .navbar-toggle.open .hamburger-icon span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .navbar-links {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	flex-wrap: wrap;
	justify-content: flex-start;
  }
  
  .nav-link {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
	padding: 10px 14px;
	border-radius: 5px;
  }
  
  .nav-link:hover,
  .nav-link.active {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
  }
  
  .nav-link::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 12px;
	width: 0;
	height: 2px;
	background: #fff;
	transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
	width: calc(100% - 24px);
  }
  
  .nav-dropdown {
	position: relative;
  }
  
  .nav-dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	padding: 10px 14px;
	border-radius: 5px;
	transition: background 0.3s ease;
  }

  .navbar-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: auto;
	padding: 12px 24px;
	background: #111;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 6px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	transition: background 0.2s ease, transform 0.15s ease;
	white-space: nowrap;
  }

  .navbar-cta:hover {
	background: #222;
	color: #fff;
	transform: translateY(-1px);
  }

  .navbar-cta--mobile {
	display: none;
  }
  
  .nav-dropdown-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
  }
  
  .nav-dropdown-toggle i {
	font-size: 12px;
	transition: transform 0.3s ease;
  }
  
  .nav-dropdown.active .nav-dropdown-toggle i {
	transform: rotate(180deg);
  }
  
  .nav-dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	min-width: 150px;
	z-index: 1000;
	overflow: hidden;
  }
  
  .nav-dropdown:hover .nav-dropdown-menu {
	display: block;
  }
  
  .nav-dropdown-item {
	display: block;
	padding: 12px 16px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease;
  }
  
  .nav-dropdown-item:hover {
	background: #FFC500;
	color: #fff;
  }
  
/* Hero Section */
.hero-medium {
	position: relative;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center 30%;
	min-height: 80vh;
	height: auto;
	margin-top: calc(-1 * var(--nav-height, 76px));
	padding-top: var(--nav-height, 76px);
	box-sizing: border-box;
  }
  
  .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
  }
  
  .hero-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
  }
  
  .hero-bubble {
	display: inline-block;
	background: #FFC500;
	color: #111;
	font-weight: 700;
	font-size: 1.15rem;
	padding: 6px 20px;
	border-radius: 50px;
	margin-bottom: 12px;
  }
  
  .hero-title {
	display: inline-block;
	background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
	color: #000000;
	font-weight: 800;
	font-size: 2rem;
	padding: 12px 28px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .hero-info-card {
	margin-top: 16px;
  }
  
  .hero-glass {
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	padding: 24px 28px;
	text-align: center;
  }
  
  .hero-glass:hover {
	transform: none;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  }

  .hero-card-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffc500;
	margin: 0 0 10px;
  }

  .hero-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin: 0 0 12px;
	text-transform: none;
	letter-spacing: -0.01em;
  }

  .hero-card-desc {
	font-size: 15px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.55;
	margin: 0 0 20px;
  }

  .hero-card-desc strong {
	color: #ffc500;
	font-weight: 700;
  }
  
  .hero-text-main {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  
  .hero-text-sub {
	font-size: 16px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.4;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .glow-highlight {
	font-weight: 700;
	color: #FFC500;
	position: relative;
	padding: 2px 6px;
	border-radius: 4px;
	transition: all 0.3s ease;
	text-shadow: 0 0 8px rgba(255, 197, 0, 0.5);
  }
  
  .glow-highlight::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #FFC500;
	opacity: 0.2;
	border-radius: 4px;
	z-index: -1;
	transition: opacity 0.3s ease;
  }
  
  .glow-highlight:hover::before {
	opacity: 0.4;
  }
  
  .glow-highlight:hover {
	text-shadow: 0 0 12px rgba(255, 197, 0, 0.8); /* Stärkerer Glow bei Hover */
  }
  
  .button-wrapper {
	text-align: center;
	margin-top: 16px;
  }
  
  .hero-button {
	background: linear-gradient(135deg, #FFC500 0%, #FFA000 100%);
	color: #111;
	font-weight: 700;
	padding: 13px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.15s ease;
	display: inline-block;
	box-shadow: 0 4px 12px rgba(255, 197, 0, 0.35);
  }

  .hero-button--block {
	display: block;
	width: 100%;
	text-align: center;
  }
  
  .hero-button:hover {
	transform: translateY(-1px);
	background: linear-gradient(135deg, #e6b000 0%, #e69500 100%);
	color: #111;
	box-shadow: 0 6px 16px rgba(255, 197, 0, 0.45);
  }
  
  /* Animationen */
  .animate__fadeInUp {
	animation-duration: 1.2s; /* Langsamerer, sanfterer Effekt */
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.hero-medium {
	  min-height: 80vh;
	}

	.hero-title {
	  font-size: 1.35rem;
	  padding: 10px 20px;
	}

	.hero-glass {
	  max-width: 92%;
	  padding: 20px 22px;
	}

	.hero-card-title {
	  font-size: 18px;
	}

	.hero-card-desc {
	  font-size: 14px;
	}

	.hero-bubble {
	  font-size: 0.95rem;
	  padding: 5px 16px;
	}
  }
  
  /* Benefits – immer sichtbar, kein AOS-Fade */
  .benefits-section--static,
  .benefits-section--static .section-title,
  .benefits-section--static .modern-card {
	opacity: 1 !important;
	transform: none !important;
	visibility: visible !important;
  }

  .benefits-section--static [data-aos] {
	opacity: 1 !important;
	transform: none !important;
  }

  .benefits-section {
	padding: 60px 0;
	background: #f9f9f9;
  }

  .section-title {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 50px;
	color: #111;
  }
  
  .modern-card {
	background: #fff;
	border-radius: 15px;
	padding: 25px 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
  }
  
  .modern-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .icon-container {
	font-size: 50px;
	color: #FFC500;
	margin-bottom: 20px;
  }
  
  .modern-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin-bottom: 10px;
  }
  
  .subtitle {
	font-size: 15px;
	color: #666;
	line-height: 1.4;
  }
  
  /* Pricing Section */
  .pricing-modern {
	padding: 88px 0;
	background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  }
  
  .pricing-title {
	text-align: center;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #111;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
  }

  .pricing-subtitle {
	text-align: center;
	font-size: 17px;
	color: #666;
	max-width: 520px;
	margin: 0 auto 48px;
	line-height: 1.5;
  }
  
  .pricing-box {
	background: #fff;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	position: relative;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
  }
  
  .pricing-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  }

  .pricing-box--featured {
	border: 2px solid #FFC500;
	box-shadow: 0 12px 40px rgba(255, 197, 0, 0.18);
	transform: scale(1.03);
	z-index: 2;
  }

  .pricing-box--featured:hover {
	transform: scale(1.03) translateY(-8px);
	box-shadow: 0 24px 56px rgba(255, 197, 0, 0.22);
  }

  /* Eck-Schleife rechts oben */
  .pricing-ribbon-corner {
	position: absolute;
	top: 0;
	right: 0;
	width: 130px;
	height: 130px;
	overflow: hidden;
	pointer-events: none;
	z-index: 12;
  }

  .pricing-ribbon-corner span {
	position: absolute;
	display: block;
	width: 210px;
	padding: 9px 0;
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: #fff;
	font-size: 8.5px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.3;
	transform: rotate(45deg);
	top: 34px;
	right: -56px;
	box-shadow: 0 3px 10px rgba(22, 163, 74, 0.45);
  }

  .pricing-ribbon-fold {
	display: none;
  }

  @media (max-width: 991px) {
	.pricing-box--featured {
	  transform: none;
	}
	.pricing-box--featured:hover {
	  transform: translateY(-8px);
	}
  }
  
  .pricing-header {
	padding: 25px;
	text-align: center;
  }
  
  .pricing-header h4 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 5px;
  }
  
  .pricing-header span {
	font-size: 14px;
	font-weight: 500;
  }
  
  .dark {
	background: #2c2c2c;
	color: #fff;
  }
  
  .yellow {
	background: #FFC500;
	color: #111;
  }
  
  .popular-badge {
	background: #28a745;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 7px 20px;
	position: absolute;
	top: 15px;
	left: 15px;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
	z-index: 20;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
	0% {
	  transform: scale(1);
	  box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
	}
	50% {
	  transform: scale(1.05);
	  box-shadow: 0 0 10px rgba(40, 167, 69, 0.6);
	}
	100% {
	  transform: scale(1);
	  box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
	}
  }
  
  .pricing-body {
	padding: 32px 28px 36px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
  }
  
  .price {
	font-size: 46px;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
  }
  
  .currency {
	font-size: 22px;
	position: relative;
	top: -12px;
	margin-right: 2px;
  }
  
  .decimal {
	font-size: 20px;
	font-weight: 600;
	margin-left: 2px;
  }
  
  .one-time {
	font-size: 15px;
	color: #666;
	margin-bottom: 25px;
  }
  
  .pricing-features {
	list-style: none;
	padding: 0;
	margin-bottom: 28px;
	text-align: left;
	flex: 1;
  }
  
  .pricing-features li {
	font-size: 14.5px;
	color: #444;
	margin-bottom: 11px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.45;
  }
  
  .pricing-features i {
	color: #22a559;
	margin-right: 0;
	font-size: 17px;
	flex-shrink: 0;
	margin-top: 2px;
  }

  .pricing-feature-bundle {
	background: linear-gradient(135deg, #fffbeb 0%, #fff8e1 100%);
	border: 1px solid #FFC500;
	border-radius: 10px;
	padding: 12px 14px !important;
	margin-bottom: 16px !important;
	font-weight: 700;
	font-size: 13px !important;
	color: #111 !important;
	letter-spacing: 0.04em;
	align-items: center !important;
  }

  .pricing-feature-bundle i {
	color: #FFC500 !important;
	font-size: 20px !important;
  }

  .bundle-tag {
	display: inline-block;
	background: #111;
	color: #FFC500;
	font-size: 9px;
	font-weight: 700;
	padding: 3px 7px;
	border-radius: 4px;
	margin-right: 6px;
	letter-spacing: 0.06em;
	flex-shrink: 0;
  }
  
  .pricing-button {
	display: inline-block;
	background: #111;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	padding: 14px 32px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.25s ease;
	width: 100%;
	text-align: center;
	margin-top: auto;
  }
  
  .pricing-button:hover {
	background: #FFC500;
	color: #111;
	transform: translateY(-2px);
  }

  .pricing-box--featured .pricing-button {
	background: #FFC500;
	color: #111;
  }

  .pricing-box--featured .pricing-button:hover {
	background: #111;
	color: #fff;
  }
  
 <!-- Inline CSS für die Sektion -->
  <style>
    .welcheSec {
      padding: 80px 0;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      position: relative;
      overflow: hidden;
    }

    .welche-title {
      font-size: 36px;
      font-weight: 700;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 50px;
      line-height: 1.2;
      font-family: 'Satoshi', sans-serif;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .welche-card {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .welche-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(0, 188, 212, 0.5);
    }

    .welche-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      background: rgba(0, 188, 212, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .welche-icon i {
      font-size: 30px;
      color: #00bcd4;
      transition: all 0.3s ease;
    }

    .welche-card:hover .welche-icon {
      background: rgba(0, 188, 212, 0.3);
      box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
    }

    .welche-card:hover .welche-icon i {
      color: #00bcd4;
      transform: scale(1.1);
    }

    .welche-content h5 {
      font-size: 20px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 15px;
      font-family: 'Satoshi', sans-serif;
    }

    .welche-content p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin: 0;
      font-family: 'Satoshi', sans-serif;
    }

  

  /* Career Section */
  .career-image {
	overflow: hidden;
	border-radius: 8px;
  }
  
  .career-image img {
	transition: transform 0.5s ease;
  }
  
  .career-image:hover img {
	transform: scale(1.05);
  }
  
  .career-button-primary {
	background: #FFC500;
	color: #111;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
  }
  
  .career-button-primary:hover {
	background: #FFA000;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .career-button-secondary {
	border: 2px solid #FFC500;
	color: #FFC500;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
  }
  
  .career-button-secondary:hover {
	background: #FFC500;
	color: #fff;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Sel-Compare Section */
  .sel-compare-section {
	background: #fff;
	padding: 100px 0;
  }
  
  .sel-title {
	font-size: 32px;
	font-weight: 700;
	color: #111;
	text-align: center;
  }
  
  .sel-subtitle {
	font-size: 16px;
	color: #555;
	text-align: center;
	max-width: 700px;
	margin: 15px auto 60px;
  }
  
  .sel-box {
	border: 1px solid #e6e6e6;
	border-radius: 16px;
	padding: 40px 30px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
  }
  
  .sel-box.highlight {
	border: 2px solid #FFC500;
  }
  
  .sel-box-title {
	font-size: 20px;
	font-weight: 600;
	color: #111;
	margin-bottom: 25px;
	text-align: center;
  }
  
  .sel-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #ddd;
  }
  
  .sel-list li {
	padding: 16px 0;
	font-size: 15px;
	color: #333;
	font-weight: 500;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
  }
  
  .sel-list i {
	font-size: 20px;
	margin-right: 12px;
  }
  
  .red-icon {
	color: #dc3545;
  }
  
  .green-icon {
	color: #28a745;
  }
  
  .sel-cta-wrapper {
	margin-top: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
  }
  
  .sel-cta-headline {
	font-size: 24px;
	font-weight: 600;
	color: #111;
  }
  
  .button {
	position: relative;
	transition: all 0.3s ease-in-out;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
	padding: 12px 28px;
	background: #FFC500;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	gap: 10px;
	font-weight: 600;
	font-size: 15px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	outline: none;
	overflow: hidden;
	cursor: pointer;
  }
  
  .button .icon {
	width: 22px;
	height: 22px;
	transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
	transform: scale(1.05);
	border-color: rgba(255, 255, 255, 0.9);
  }
  
  .button:hover .icon {
	transform: translateX(4px);
  }
  
  .button::before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
	top: 0;
	left: -100px;
	opacity: 0.6;
  }
  
  .button:hover::before {
	animation: shine 1.5s ease-out infinite;
  }
  
  @keyframes shine {
	0% { left: -100px; }
	60% { left: 100%; }
	100% { left: 100%; }
  }
  
  /* Footer */
  .footer-divider {
	width: 100%;
	height: 2px;
	background: #000;
	margin-bottom: 0;
  }
  
  .footer {
	background: linear-gradient(135deg, #FFC500 0%, #FFA000 100%);
	color: #fff;
	padding: 40px 0;
  }
  
  .footer-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 20px;
  }
  
  .footer-link {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
  }
  
  .footer-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #fff;
	transition: width 0.3s ease;
  }
  
  .footer-link:hover::after {
	width: 100%;
  }
  
  .footer-link:hover {
	color: #fff;
  }
  
  .footer-social {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
  }
  
  .social-icon {
	color: #fff;
	font-size: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
  }
  
  .social-icon:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.1);
  }
  
  .footer-copyright {
	text-align: center;
  }
  
  .footer-copyright p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.navbar-toggle {
	  display: block;
	}
  
	.navbar-links {
	  display: none;
	  position: absolute;
	  top: 96px;
	  left: 0;
	  right: 0;
	  background: linear-gradient(135deg, #FFC500 0%, #FFA000 100%);
	  flex-direction: column;
	  align-items: center;
	  padding: 20px 0;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}
  
	.navbar-links.active {
	  display: flex;
	}

	.navbar-cta--desktop {
	  display: none;
	}

	.navbar-cta--mobile {
	  display: inline-flex;
	  margin-left: 0;
	  margin-top: 12px;
	  width: calc(100% - 32px);
	}
  
	.nav-link {
	  padding: 10px 0;
	  width: 100%;
	  text-align: center;
	  border-radius: 0;
	}
  
	.nav-link:hover {
	  background: none;
	}
  
	.nav-link::after {
	  left: 50%;
	  transform: translateX(-50%);
	}
  
	.nav-link:hover::after {
	  width: 50px;
	}
  
	.nav-dropdown {
	  width: 100%;
	  text-align: center;
	}
  
	.nav-dropdown-toggle {
	  width: 100%;
	  justify-content: center;
	  border-radius: 0;
	}
  
	.nav-dropdown-menu {
	  position: static;
	  background: rgba(255, 255, 255, 0.1);
	  border-radius: 0;
	  box-shadow: none;
	  width: 100%;
	}
  
	.nav-dropdown:hover .nav-dropdown-menu {
	  display: none;
	}
  
	.nav-dropdown.active .nav-dropdown-menu {
	  display: block;
	}
  
	.nav-dropdown-item {
	  color: #fff;
	  padding: 10px;
	}
  
	.nav-dropdown-item:hover {
	  background: rgba(255, 255, 255, 0.2);
	}
  
	.hero-medium {
	  min-height: 80vh;
	}
  
	.hero-title {
	  font-size: 1.5rem;
	  padding: 12px 24px;
	}
  
	.hero-info-card {
	  padding: 16px;
	}
  
	.section-title, .pricing-title, .sel-title {
	  font-size: 26px;
	}
  
	.welche-img img {
	  height: 70px;
	  width: 70px;
	}
  
	.welche-content h5 {
	  font-size: 16px;
	}
  
	.welche-content p {
	  font-size: 14px;
	}
  
	.footer-links {
	  flex-wrap: wrap;
	  gap: 16px;
	}
  }

/* Legal pages (AGB, Datenschutz, Impressum) */
.legal-container {
  padding: 40px 20px 80px;
  max-width: 820px;
}

.legal-container h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

.legal-container h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 14px;
}

.legal-container p,
.legal-container ul {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #333;
}

.legal-container ul {
  padding-left: 1.5rem;
}

.legal-callout {
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 2px solid #dc2626;
  background: linear-gradient(180deg, #fef2f2 0%, #fff7ed 100%);
}

.legal-callout__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #991b1b;
  margin: 0 0 12px;
}

.legal-callout p {
  color: #7f1d1d;
  margin-bottom: 12px;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

