/* ===================================
   BALKANFACHKRAFT.DE - STYLESHEET
   Brand Color: #083773
   Font: system UI (SF Pro / Segoe UI)
   =================================== */

/* CSS VARIABLES */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;
  --primary-blue: #083773;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #5F6B7A;
  --dark-gray: #333333;
  --border-gray: #E0E0E0;
  --hover-blue: #0a4a8f;
  --success-green: #10b981;
  --success-green-dark: #059669;
  --warning-red: #ef4444;
  --warning-red-dark: #dc2626;
  --transition: all 0.3s ease;
}

/* RESET & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--primary-blue);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY */
h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0;
  color: var(--dark-gray);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-gray);
  letter-spacing: 0;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--medium-gray);
  font-size: 1.05rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--hover-blue);
}

/* SUCCESS & WARNING ACCENTS */
.success-text {
  color: var(--success-green) !important;
  font-weight: 600;
}

.success-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-green);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.warning-text {
  color: var(--warning-red) !important;
  font-weight: 600;
}

.warning-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.1);
  color: var(--warning-red);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-gray);
}

@media (max-width: 768px) {
  .main-header {
    position: relative;
  }
}

.main-header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--primary-blue);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger Animation when Active */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* BUTTONS */
.cta-button {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary-blue);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--hover-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(8, 55, 115, 0.25);
  border-color: var(--hover-blue);
}

/* CTA PULSE ANIMATION */
@keyframes pulse-green-blue {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(8, 55, 115, 0.3);
    border-color: var(--primary-blue);
  }
  50% {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 0 8px rgba(16, 185, 129, 0.1);
    border-color: var(--success-green);
  }
}

.cta-pulse {
  animation: pulse-green-blue 2.5s ease-in-out infinite;
}

.cta-pulse:hover {
  animation: none;
}

.cta-button.secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.cta-button.secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #083773 0%, #0a4a8f 50%, #1e5a9e 100%);
  color: var(--white);
  padding: 8rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated Background Circles */
.hero-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
  animation-delay: 7s;
}

.hero-circle-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 10%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.4;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideDown 0.8s ease-out 0.3s both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Title */
.hero-section h1 {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title-line {
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
}

.hero-title-highlight {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.3rem 0;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 100%;
}

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

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.typing-text {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
}

.hero-subtitle-accent {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: var(--success-green);
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.hero-cta-primary:hover::before {
  left: 100%;
}

.hero-cta-primary:hover {
  background: var(--success-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Hero Features */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 0.6s ease-out both;
}

.feature-item[data-delay="100"] {
  animation-delay: 1s;
}

.feature-item[data-delay="200"] {
  animation-delay: 1.2s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.feature-number {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.feature-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.feature-item .icon {
  font-size: 1.5rem;
}

/* SECTIONS */
section {
  padding: 4rem 0;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

/* FEATURE ROW - ZIG ZAG LAYOUT */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-row.reverse {
  transform: translateX(50px);
}

.feature-row.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.feature-row.reverse .feature-image {
  order: 2;
}

.feature-row.reverse .feature-content {
  order: 1;
}

.feature-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  background: var(--light-gray);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: scale(1.05);
}

.feature-content h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-content p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--dark-gray);
}

.feature-list li svg {
  flex-shrink: 0;
}

/* Responsive for Feature Rows */
@media (max-width: 992px) {
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .feature-row.reverse .feature-image,
  .feature-row.reverse .feature-content {
    order: unset;
  }

  .feature-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* BRANCHE ROW - ZIG ZAG LAYOUT */
.branche-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.branche-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--success-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.branche-row:hover::before {
  opacity: 1;
}

.branche-row.reverse {
  transform: translateX(50px);
  grid-template-columns: 1fr 120px;
}

.branche-row.reverse::before {
  left: auto;
  right: 0;
}

.branche-row.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.branche-row.reverse .branche-icon-large {
  order: 2;
}

.branche-row.reverse .branche-content {
  order: 1;
  text-align: right;
}

.branche-row.reverse .branche-tags {
  justify-content: flex-end;
}

.branche-icon-large {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(8, 55, 115, 0.05), rgba(8, 55, 115, 0.1));
  border-radius: 20px;
  color: var(--primary-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.branche-row:hover .branche-icon-large {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(8, 55, 115, 0.1), rgba(16, 185, 129, 0.1));
}

.branche-icon-large svg {
  color: var(--primary-blue);
  transition: stroke 0.3s ease;
}

.branche-row:hover .branche-icon-large svg {
  color: var(--success-green);
}

.branche-content h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.branche-content p {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.branche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  background: rgba(8, 55, 115, 0.08);
  color: var(--primary-blue);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(8, 55, 115, 0.15);
}

.tag:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 55, 115, 0.2);
}

/* Responsive for Branche Rows */
@media (max-width: 992px) {
  .branche-row,
  .branche-row.reverse {
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 3rem;
  }

  .branche-icon-large {
    width: 100px;
    height: 100px;
  }

  .branche-icon-large svg {
    width: 60px;
    height: 60px;
  }

  .branche-content h3 {
    font-size: 1.5rem;
  }

  .branche-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .branche-row,
  .branche-row.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .branche-row.reverse .branche-icon-large,
  .branche-row.reverse .branche-content {
    order: unset;
  }

  .branche-row.reverse .branche-content {
    text-align: center;
  }

  .branche-row.reverse .branche-tags {
    justify-content: center;
  }

  .branche-icon-large {
    margin: 0 auto;
    width: 90px;
    height: 90px;
  }

  .branche-icon-large svg {
    width: 50px;
    height: 50px;
  }

  .branche-tags {
    justify-content: center;
  }
}

/* GRIDS */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Vorteile section has 8 cards - 2 rows of 4 */
#vorteile .trust-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.branchen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.laender-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* LÄNDER SCROLL */
.laender-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) var(--light-gray);
  margin-bottom: 2rem;
  padding: 1rem 0 2rem;
}

.laender-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.laender-scroll-container::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 10px;
}

.laender-scroll-container::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 10px;
}

.laender-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--hover-blue);
}

.laender-scroll {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0;
  scroll-snap-type: x mandatory;
}

.land-card-scroll {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.land-card-scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--hover-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.land-card-scroll:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(8, 55, 115, 0.15);
  border-color: var(--primary-blue);
}

.land-card-scroll:hover::before {
  transform: scaleX(1);
}

.land-card-scroll h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.land-card-scroll p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.land-flag {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.land-flag svg {
  color: var(--primary-blue);
  transition: var(--transition);
}

.land-card-scroll:hover .land-flag svg {
  color: var(--hover-blue);
  transform: scale(1.1);
}

.country-code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.05em;
}

.land-badge {
  display: inline-block;
  background: var(--light-gray);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
}

.land-card-scroll:hover .land-badge {
  background: var(--primary-blue);
  color: var(--white);
}

.scroll-hint {
  text-align: center;
  color: var(--medium-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* LÄNDER CAROUSEL */
.laender-carousel-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}

.laender-carousel {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.land-card-carousel {
  position: absolute;
  width: 100%;
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transform: scale(0.8) translateX(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-top: 4px solid var(--primary-blue);
}

.land-card-carousel.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.land-card-carousel.prev {
  opacity: 0;
  transform: scale(0.8) translateX(-100%);
}

.land-flag-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(8, 55, 115, 0.08), rgba(16, 185, 129, 0.08));
  border-radius: 50%;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.land-card-carousel.active .land-flag-large {
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.land-card-carousel h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.land-card-carousel p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.land-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success-green);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 500;
}

/* Carousel Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(8, 55, 115, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(8, 55, 115, 0.4);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--primary-blue);
  width: 32px;
  border-radius: 6px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(8, 55, 115, 0.3);
}

.carousel-arrow.prev {
  left: -25px;
}

.carousel-arrow.next {
  right: -25px;
}

/* Responsive Carousel */
@media (max-width: 992px) {
  .laender-carousel-wrapper {
    max-width: 600px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow.prev {
    left: -20px;
  }

  .carousel-arrow.next {
    right: -20px;
  }
}

@media (max-width: 576px) {
  .laender-carousel-wrapper {
    max-width: 100%;
    padding: 2rem 1rem;
  }

  .land-card-carousel {
    padding: 2rem 1.5rem;
  }

  .land-card-carousel h3 {
    font-size: 1.5rem;
  }

  .land-card-carousel p {
    font-size: 1rem;
  }

  .land-stats {
    gap: 2rem;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow.prev {
    left: 0;
  }

  .carousel-arrow.next {
    right: 0;
  }
}

/* CARD DECK */
.card-deck-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.card-deck {
  position: relative;
  width: 100%;
  height: 450px;
  perspective: 1000px;
  margin-bottom: 3rem;
}

.deck-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center bottom;
  border-top: 4px solid var(--primary-blue);
}

/* Stacking effect - cards behind */
.deck-card:not(.active) {
  transform: translateY(0) scale(0.95);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.deck-card:not(.active):nth-child(2) {
  transform: translateY(-8px) scale(0.96);
  opacity: 0.3;
  z-index: 2;
}

.deck-card:not(.active):nth-child(3) {
  transform: translateY(-16px) scale(0.97);
  opacity: 0.2;
  z-index: 3;
}

/* Active card */
.deck-card.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

/* Slide out animation */
.deck-card.slide-out-left {
  transform: translateX(-150%) rotate(-15deg);
  opacity: 0;
  z-index: 5;
}

.deck-card.slide-out-right {
  transform: translateX(150%) rotate(15deg);
  opacity: 0;
  z-index: 5;
}

/* Card inner content */
.deck-card-inner {
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.deck-card-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(8, 55, 115, 0.05), rgba(8, 55, 115, 0.1));
  border-radius: 50%;
  margin-bottom: 2rem;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.deck-card.active .deck-card-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.deck-card h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.deck-card p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.8;
  max-width: 450px;
}

.card-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: rgba(8, 55, 115, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Deck Navigation */
.deck-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.deck-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.deck-btn:hover:not(:disabled) {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(8, 55, 115, 0.3);
}

.deck-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.deck-progress {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-blue);
  min-width: 80px;
  text-align: center;
}

.progress-current {
  font-size: 1.5rem;
  color: var(--success-green);
}

/* Responsive Card Deck */
@media (max-width: 768px) {
  .card-deck {
    height: 500px;
  }

  .deck-card-inner {
    padding: 2rem 1.5rem;
  }

  .deck-card h3 {
    font-size: 1.5rem;
  }

  .deck-card p {
    font-size: 1rem;
  }

  .deck-card-icon {
    width: 80px;
    height: 80px;
  }

  .deck-card-icon svg {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 576px) {
  .card-deck-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }

  .card-deck {
    height: 550px;
  }

  .deck-btn {
    width: 40px;
    height: 40px;
  }

  .deck-navigation {
    gap: 1rem;
  }
}

/* ===========================
   CASTING SECTION STYLES
   =========================== */

.casting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.casting-video-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--primary-blue);
}

.casting-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-top-color: var(--success-green);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 2rem;
}

.video-info h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.video-info p {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.video-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.casting-video-card .video-tag {
  background: rgba(8, 55, 115, 0.1);
  color: var(--primary-blue);
  border-color: rgba(8, 55, 115, 0.2);
}

.casting-video-card .video-tag:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 55, 115, 0.3);
}

/* Mega Casting Wrapper */
.mega-casting-wrapper {
  margin-top: 5rem;
  position: relative;
}

.mega-casting-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--success-green), #059669);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  margin-bottom: 2rem;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
  }
}

.mega-casting-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--success-green);
  position: relative;
}

.mega-casting-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--success-green), var(--primary-blue));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.mega-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: #000;
}

.mega-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.mega-video-info {
  padding: 3rem;
}

.mega-video-info h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mega-video-info p {
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.mega-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(8, 55, 115, 0.05), rgba(16, 185, 129, 0.05));
  border-radius: 16px;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.mega-stat {
  text-align: center;
}

.mega-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--success-green);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.mega-stat .stat-label {
  display: block;
  font-size: 1rem;
  color: var(--dark-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Casting CTA */
.casting-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.casting-cta .cta-button:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(8, 55, 115, 0.4);
}

/* Responsive Casting Section */
@media (max-width: 992px) {
  .casting-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mega-stats {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .mega-stat .stat-number {
    font-size: 2rem;
  }

  .mega-video-info {
    padding: 2rem;
  }

  .mega-video-info h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .video-info {
    padding: 1.5rem;
  }

  .video-info h3 {
    font-size: 1.3rem;
  }

  .video-info p {
    font-size: 1rem;
  }

  .mega-casting-badge {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }

  .mega-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .mega-stat .stat-number {
    font-size: 1.8rem;
  }

  .mega-stat .stat-label {
    font-size: 0.9rem;
  }

  .mega-video-info {
    padding: 1.5rem;
  }

  .mega-video-info h3 {
    font-size: 1.5rem;
  }

  .mega-video-info p {
    font-size: 1rem;
  }

  .casting-cta {
    padding: 2rem 1rem;
    margin-top: 3rem;
  }

  .casting-cta h3 {
    font-size: 1.5rem !important;
  }

  .casting-cta p {
    font-size: 1rem !important;
  }
}

/* CARDS */
.trust-item,
.branche-card,
.land-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}



.trust-item::before,
.branche-card::before,
.land-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--hover-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item:hover,
.branche-card:hover,
.land-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(8, 55, 115, 0.15);
  border-color: var(--primary-blue);
}

.trust-item:hover::before,
.branche-card:hover::before,
.land-card:hover::before {
  transform: scaleX(1);
}

.trust-icon,
.branche-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg,
.branche-icon svg {
  color: var(--primary-blue);
  transition: var(--transition);
}

.trust-item:hover .trust-icon svg,
.branche-card:hover .branche-icon svg {
  color: var(--hover-blue);
  transform: scale(1.1);
}

.feature-item .icon {
  stroke: currentColor;
  flex-shrink: 0;
}

.branche-card h3,
.land-card h3 {
  margin-bottom: 0.75rem;
}

.branche-card p,
.land-card p {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.branche-card .arrow {
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: bold;
}

/* PROCESS SECTION */
.process-steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: nowrap;
}

.step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--hover-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(8, 55, 115, 0.15);
  border-color: var(--primary-blue);
}

.step:hover::before {
  transform: scaleX(1);
}

/* Last step - Success (Green) */
.step:last-of-type .step-number {
  background: #10b981;
}

.step:last-of-type::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.step:last-of-type:hover {
  border-color: #10b981;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
}

.step p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

.step-connector {
  font-size: 2rem;
  color: var(--primary-blue);
  font-weight: bold;
  align-self: center;
  flex-shrink: 0;
}

/* FAQ SECTION */
.faq-section-wrapper {
  background: var(--white);
  padding: 100px 0;
}

.faq-section {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--success-green));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 30px rgba(8, 55, 115, 0.12);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: 0 12px 40px rgba(8, 55, 115, 0.15);
  background: linear-gradient(135deg, rgba(8, 55, 115, 0.02), rgba(16, 185, 129, 0.02));
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--primary-blue);
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:hover .faq-question {
  color: var(--hover-blue);
}

.faq-question::after {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url('/Logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0.3;
  transform: scale(0.9);
}

.faq-question::before {
  content: '+';
  position: absolute;
  right: 5rem;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--primary-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.faq-item.active .faq-question::before {
  transform: rotate(135deg);
  color: var(--success-green);
}

.faq-item.active .faq-question::after {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 2px 8px rgba(8, 55, 115, 0.3));
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
  text-align: left;
  opacity: 0;
  padding: 0 2.5rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer p {
  color: var(--dark-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Number Badge */
.faq-item {
  counter-increment: faq-counter;
}

.faq-question::after {
  counter-reset: none;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1.05rem;
    padding: 1.5rem 1.5rem;
    padding-right: 5.5rem;
  }

  .faq-question::before {
    right: 4rem;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }

  .faq-question::after {
    width: 36px;
    height: 36px;
    margin-left: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq-question {
    padding-right: 5rem;
  }

  .faq-question::before {
    right: 3.5rem;
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
  }

  .faq-question::after {
    width: 32px;
    height: 32px;
  }
}

/* BALKAN CARDS GRID - B2B Corporate Style */
.balkan-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.balkan-card {
  background: #FFFFFF;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.balkan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.balkan-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.balkan-card:hover::before {
  background: #083773;
}

.balkan-card-icon {
  margin-bottom: 1.25rem;
}

.balkan-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #083773;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.balkan-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* SEO Text Block */
.balkan-seo-text {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid #e5e5e5;
}

/* Internal Links */
.balkan-internal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.balkan-internal-links a {
  color: #083773;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.balkan-internal-links a:hover {
  border-bottom-color: #083773;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .balkan-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .land-card-scroll {
    flex: 0 0 300px;
  }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
  .balkan-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-grid,
  .branchen-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #vorteile .trust-grid {
    grid-template-columns: 1fr;
  }

  /* Kontakt section - force vertical on mobile */
  #kontakt .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .land-card-scroll {
    flex: 0 0 280px;
  }

  .scroll-hint {
    font-size: 0.85rem;
  }

  .balkan-card {
    padding: 1.5rem 1.25rem;
  }

  .balkan-seo-text h2 {
    font-size: 1.5rem !important;
  }

  .balkan-internal-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .balkan-internal-links span {
    display: none;
  }
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #083773 0%, #0a4a8f 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.partner-note {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 2rem;
}

.partner-note a {
  color: var(--white);
  text-decoration: underline;
}

/* FOOTER */
.main-footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 5px;
}

.partner-link {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  transition: all 0.3s ease;
}

.partner-link:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
}

.partner-link strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.partner-link span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.partner-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal a:hover {
  color: var(--white);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* RESPONSIVE HERO */
@media (max-width: 992px) {
  .hero-section {
    padding: 6rem 0 5rem;
  }

  .hero-title-line {
    font-size: 2.2rem;
  }

  .hero-title-highlight {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .typing-text {
    font-size: 1.25rem;
  }

  .hero-subtitle-accent {
    font-size: 1.1rem;
  }

  .hero-features {
    gap: 1.5rem;
  }

  .hero-circle-1 {
    width: 300px;
    height: 300px;
  }

  .hero-circle-2 {
    width: 250px;
    height: 250px;
  }

  .hero-circle-3 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 5rem 0 4rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .hero-title-line {
    font-size: 1.8rem;
  }

  .hero-title-highlight {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .typing-text {
    font-size: 1.1rem;
  }

  .hero-subtitle-accent {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .hero-cta .cta-button {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-primary {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .feature-item {
    padding: 0.9rem 1.2rem;
  }

  .feature-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .feature-number {
    font-size: 1.2rem;
  }

  .feature-label {
    font-size: 0.85rem;
  }

  .hero-circle-1,
  .hero-circle-2,
  .hero-circle-3 {
    display: none;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav.active {
    max-height: 500px;
    opacity: 1;
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(8, 55, 115, 0.1);
  }

  .main-nav a {
    display: block;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
  }

  .main-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary-blue);
    transition: height 0.3s ease;
  }

  .main-nav a:hover::before {
    height: 60%;
  }

  .main-nav a:hover {
    background: rgba(8, 55, 115, 0.05);
    padding-left: 1.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .step-connector {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  #vorteile .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branchen-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .step {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }

  .step-connector {
    display: none;
  }
}

/* ===================================
   NEUE KOMPONENTEN — Rebuild 2026
   Breadcrumbs · Sprachumschalter · Weggabelung
   Vergleichstabelle · Rechner · Markt-Hinweise
   =================================== */

/* --- ABSCHNITTS-HINTERGRÜNDE (wechseln weiss / hellgrau) --- */
.trust-section {
  background: var(--white);
}

/* --- BREADCRUMBS --- */
.breadcrumb-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 0.85rem 0;
  font-size: 0.9rem;
}

.breadcrumb-bar ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-bar li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--medium-gray);
}

.breadcrumb-bar li:not(:last-child)::after {
  content: '\203A';
  color: var(--border-gray);
  font-size: 1.1rem;
  line-height: 1;
}

.breadcrumb-bar a {
  color: var(--medium-gray);
  font-weight: 500;
}

.breadcrumb-bar a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.breadcrumb-bar [aria-current="page"] {
  color: var(--primary-blue);
  font-weight: 600;
}

/* --- SPRACHUMSCHALTER --- */
.lang-switch {
  position: relative;
  flex-shrink: 0;
}

.lang-switch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  padding: 0.45rem 0.7rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.lang-switch-toggle:hover,
.lang-switch-toggle[aria-expanded="true"] {
  border-color: var(--primary-blue);
  background: rgba(8, 55, 115, 0.04);
}

.lang-switch-toggle svg {
  flex-shrink: 0;
}

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.4rem;
  list-style: none;
  margin: 0;
  z-index: 1002;
  display: none;
}

.lang-switch-menu.open {
  display: block;
}

.lang-switch-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.lang-switch-menu a:hover {
  background: var(--light-gray);
  color: var(--primary-blue);
}

.lang-switch-menu a[aria-current="true"] {
  background: rgba(8, 55, 115, 0.06);
  color: var(--primary-blue);
  font-weight: 600;
}

.lang-switch-code {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- WEGGABELUNG: Agentur oder Plattform --- */
.fork-section {
  background: var(--light-gray);
  padding: 5rem 0;
}

.fork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.fork-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fork-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: opacity 0.3s ease;
}

.fork-card--agency::before {
  background: linear-gradient(90deg, var(--primary-blue), var(--hover-blue));
}

.fork-card--platform::before {
  background: linear-gradient(90deg, var(--success-green), var(--success-green-dark));
}

.fork-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(8, 55, 115, 0.14);
}

.fork-card--agency:hover {
  border-color: var(--primary-blue);
}

.fork-card--platform:hover {
  border-color: var(--success-green);
}

.fork-card-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.fork-card--agency .fork-card-eyebrow {
  color: var(--primary-blue);
}

.fork-card--platform .fork-card-eyebrow {
  color: var(--success-green);
}

.fork-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.fork-card-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-gray);
}

.fork-card-price strong {
  font-size: 1.6rem;
  font-weight: 800;
}

.fork-card--agency .fork-card-price strong {
  color: var(--primary-blue);
}

.fork-card--platform .fork-card-price strong {
  color: var(--success-green);
}

.fork-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.fork-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.fork-card ul li svg {
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.fork-card--agency ul li svg { color: var(--primary-blue); }
.fork-card--platform ul li svg { color: var(--success-green); }

.fork-card-fit {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-gray);
}

.fork-card-fit strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary-blue);
}

.fork-card .cta-button {
  width: 100%;
}

.fork-card--platform .cta-button {
  background: var(--success-green);
  border-color: var(--success-green);
}

.fork-card--platform .cta-button:hover {
  background: var(--success-green-dark);
  border-color: var(--success-green-dark);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

@media (max-width: 992px) {
  .fork-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .fork-card {
    padding: 2rem 1.5rem;
  }
}

/* --- VERGLEICHSTABELLE --- */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 3rem 0;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--white);
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.98rem;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--light-gray);
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1rem;
}

.compare-table thead th:nth-child(2) {
  border-top: 3px solid var(--primary-blue);
}

.compare-table thead th:nth-child(3) {
  border-top: 3px solid var(--success-green);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(8, 55, 115, 0.02);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--dark-gray);
}

.compare-table .yes { color: var(--success-green); font-weight: 600; }
.compare-table .no  { color: var(--warning-red);  font-weight: 600; }

/* --- MARKT-HINWEIS / RECHTS-CALLOUT --- */
.legal-callout {
  border-left: 4px solid var(--primary-blue);
  background: var(--light-gray);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.legal-callout--urgent {
  border-left-color: var(--warning-red);
  background: rgba(239, 68, 68, 0.05);
}

.legal-callout--good {
  border-left-color: var(--success-green);
  background: rgba(16, 185, 129, 0.05);
}

.legal-callout h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.legal-callout--urgent h4 { color: var(--warning-red-dark); }
.legal-callout--good h4   { color: var(--success-green-dark); }

.legal-callout p:last-child { margin-bottom: 0; }

.legal-callout cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--medium-gray);
}

.legal-callout cite a { text-decoration: underline; }

/* --- FAKTEN-BOX (Zahlen/Fristen) --- */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.fact-box {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.fact-box:hover {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(8, 55, 115, 0.1);
}

.fact-box-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.fact-box-number.is-warning { color: var(--warning-red); }
.fact-box-number.is-good    { color: var(--success-green); }

.fact-box-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 500;
  line-height: 1.4;
}

/* --- RECHNER: Agentur oder Plattform --- */
.calc {
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 760px;
  margin: 3rem auto;
}

.calc-step {
  margin-bottom: 2rem;
}

.calc-step:last-of-type { margin-bottom: 1rem; }

.calc-step legend {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.9rem;
  padding: 0;
  display: block;
}

.calc-step fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.calc-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-option label {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.calc-option label:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.calc-option input:checked + label {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
}

.calc-option input:focus-visible + label {
  outline: 3px solid rgba(16, 185, 129, 0.5);
  outline-offset: 2px;
}

.calc-result {
  border-top: 2px solid var(--border-gray);
  padding-top: 1.75rem;
  margin-top: 1.75rem;
}

.calc-result[hidden] { display: none; }

.calc-result-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.9rem;
}

.calc-result-badge.is-agency {
  background: rgba(8, 55, 115, 0.1);
  color: var(--primary-blue);
}

.calc-result-badge.is-platform {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success-green-dark);
}

.calc-result h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--primary-blue);
}

.calc-result-why {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.calc-result-cost {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

.calc-result-cost strong { color: var(--primary-blue); }

.calc-result-cost small {
  display: block;
  margin-top: 0.6rem;
  color: var(--medium-gray);
  font-size: 0.83rem;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .calc { padding: 1.5rem 1.25rem; }
  .calc-options { flex-direction: column; }
  .calc-option label { display: block; text-align: center; }
}

/* --- SEO-TEXTBLOCK (bestehende Klassen wiederverwendet) --- */
.balkan-seo-text {
  padding-bottom: 3rem;
}

.balkan-seo-text h2 {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.balkan-seo-text p {
  font-size: 1rem;
  line-height: 1.8;
}

.balkan-internal-links {
  margin-top: 1.5rem;
}

.balkan-internal-links span {
  color: var(--border-gray);
}

/* --- SKIP LINK (a11y) --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 2000;
}

.skip-link:focus {
  left: 0;
  color: var(--white);
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================================================
   HEADER & FOOTER — Redesign 2026
   Ersetzt die alten Regeln (weiter oben in dieser Datei) per Kaskade.

   WICHTIG: Auf dem dunklen Footer-Hintergrund wird JEDES Textelement
   explizit eingefärbt. Sonst greifen die globalen Regeln (h4, p, a),
   die für weissen Hintergrund geschrieben sind — genau daran sind
   .footer-col h4 (1.09:1) und .footer-bottom a (1.00:1, unsichtbar)
   zuvor gescheitert.
   =================================================================== */

/* ---------- HEADER ---------- */
.main-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: none;
  border-bottom: 1px solid var(--border-gray);
  z-index: 1000;
  padding: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.main-header.scrolled {
  padding: 0;
  box-shadow: 0 4px 20px rgba(8, 55, 115, 0.08);
  border-bottom-color: transparent;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 72px;
}

/* Logo links, alles andere rechts */
.header-content .logo {
  margin-right: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--primary-blue);
  opacity: 0.75;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* ---------- NAVIGATION ---------- */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.35rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.5rem 0.8rem;
  border-radius: 7px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Die alte Unterstreichungs-Animation wird ersetzt. */
.main-nav a::after {
  content: none;
}

.main-nav a:hover {
  color: var(--primary-blue);
  background: rgba(8, 55, 115, 0.06);
}

.main-nav a[aria-current="page"] {
  color: var(--primary-blue);
  font-weight: 700;
  background: rgba(8, 55, 115, 0.07);
}

/* ---------- HEADER-CTA ---------- */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.15rem;
  border-radius: 7px;
  white-space: nowrap;
  border: 1px solid var(--primary-blue);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--success-green);
  border-color: var(--success-green);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.header-cta svg {
  flex-shrink: 0;
}

/* ---------- MOBILE TOGGLE ---------- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HEADER RESPONSIV ---------- */
@media (max-width: 1100px) {
  .main-nav a { padding: 0.5rem 0.6rem; font-size: 0.88rem; }
  .header-content { gap: 1rem; }
  .header-cta { padding: 0.55rem 0.9rem; font-size: 0.85rem; }
}

@media (max-width: 940px) {
  .header-cta { display: none; }
}

@media (max-width: 860px) {
  .main-header { position: sticky; }

  .header-content {
    gap: 0.75rem;
    min-height: 64px;
  }

  .mobile-menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 12px 30px rgba(8, 55, 115, 0.12);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: 999;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
  }

  .main-nav.active {
    max-height: 70vh;
    opacity: 1;
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(8, 55, 115, 0.07);
  }

  .main-nav li:last-child { border-bottom: none; }

  .main-nav a {
    padding: 1rem 20px;
    border-radius: 0;
    font-size: 1rem;
  }

  .main-nav a::before { content: none; }
}

/* ---------- FOOTER ---------- */
.main-footer {
  background: var(--primary-blue);
  background-image: linear-gradient(180deg, #083773 0%, #06284f 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 0;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-col {
  min-width: 0;
}

/* Spaltenüberschriften: klein, gesperrt, weiss. */
.footer-col h3,
.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 1.1rem;
}

/* Die erste Spalte trägt den Markennamen — grösser als die Rubriken. */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 32px;
  width: auto;
  /* Das Logo ist dunkelblau — auf dunklem Grund aufhellen. */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-col ul a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--white);
  transform: translateX(3px);
}

/* Partner-Chips: die beiden Marken, auf die diese Seite führt. */
.footer-brands {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer-brand-chip {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  column-gap: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  min-height: 74px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.footer-brand-chip span {
  min-width: 0;
  line-height: 1.25;
}

.footer-brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 6px;
}

.footer-brand-chip:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-brand-chip small {
  display: block;
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
  margin-top: 0.25rem;
}

.footer-brand-chip svg {
  justify-self: end;
  opacity: 0.6;
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 1.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Explizit — sonst greift die globale p-Regel (--medium-gray, 2.15:1). */
.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

/* Explizit — sonst greift die globale a-Regel (--primary-blue auf
   --primary-blue = 1.00:1, komplett unsichtbar). */
.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ---------- FOOTER RESPONSIV ---------- */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .main-footer { padding-top: 3rem; }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-legal { gap: 1rem; }
}

/* ===================================================================
   HERO REFRESH 2026
   Unified blue-white hero treatment for every page hero.
   =================================================================== */
.hero-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 74%, rgba(94, 174, 255, 0.22), transparent 28rem),
    linear-gradient(135deg, #083773 0%, #155a9d 58%, #2567a8 100%);
  color: var(--white);
  padding: 5.75rem 0 5.25rem !important;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero-section::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 76%);
  opacity: 0.34;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(8, 55, 115, 0), rgba(8, 55, 115, 0.24));
  pointer-events: none;
}

.hero-background-animation,
.hero-circle {
  display: none;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  animation: fadeInUp 0.7s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.82);
  color: #0b3c78;
  border: 1px solid rgba(8, 55, 115, 0.16);
  box-shadow: 0 10px 30px rgba(8, 55, 115, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 0.62rem 1.05rem;
  margin-bottom: 1.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-badge svg,
.hero-badge [style*="color"] {
  color: #0d6fc6 !important;
}

.hero-section h1 {
  color: var(--white);
  text-shadow: none;
  margin: 0 auto 1.2rem;
  max-width: 1000px;
  line-height: 1.08;
}

.hero-title-line {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 4.15rem);
  font-weight: 750;
}

.hero-title-highlight {
  display: block;
  color: #68d8ad;
  background: none;
  -webkit-text-fill-color: currentColor;
  margin: 0.2rem 0;
  font-size: clamp(2.35rem, 5.4vw, 5rem);
  font-weight: 850;
  line-height: 1.02;
  animation: none;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  margin: 0 auto 2rem;
  max-width: 850px;
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  font-weight: 500;
  line-height: 1.7;
}

.typing-text {
  color: inherit;
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}

.hero-subtitle-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  margin-top: 1rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-cta {
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 2rem 0 0;
}

.hero-cta-primary,
.hero-cta .cta-button:first-child {
  background: var(--white);
  color: #083773;
  border-color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  animation: none;
}

.hero-cta-primary:hover,
.hero-cta .cta-button:first-child:hover {
  background: #eef7ff;
  border-color: #eef7ff;
  color: #083773;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary::before {
  content: none;
}

.hero-cta-secondary,
.hero-cta .cta-button.secondary {
  background: rgba(255, 255, 255, 0.94);
  color: #083773;
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-cta-secondary:hover,
.hero-cta .cta-button.secondary:hover {
  background: var(--white);
  color: #0d5fa8;
  border-color: rgba(13, 95, 168, 0.42);
  box-shadow: 0 14px 30px rgba(8, 55, 115, 0.14);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.9rem;
  max-width: 860px;
  margin: 2.35rem auto 0;
}

.hero-section .feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-section .feature-item:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.hero-section .feature-icon-wrapper {
  width: 38px;
  height: 38px;
  background: rgba(32, 226, 143, 0.14);
  color: #20e28f;
  border-radius: 10px;
}

.hero-section .feature-icon-wrapper svg,
.hero-section .feature-item [style*="color"] {
  color: #20e28f !important;
}

.hero-section .success-text,
.hero-section .feature-number {
  color: #20e28f !important;
}

.hero-section .feature-number {
  font-size: 1.16rem;
  font-weight: 800;
}

.hero-section .feature-label {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

@media (max-width: 992px) {
  .hero-section {
    padding: 4.7rem 0 4.4rem !important;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3.7rem 0 3.5rem !important;
  }

  .hero-section::before {
    background-size: 38px 38px;
  }

  .hero-badge {
    max-width: 100%;
    font-size: 0.82rem;
    padding: 0.52rem 0.8rem;
  }

  .hero-section h1 {
    margin-bottom: 1rem;
  }

  .hero-title-line {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .hero-title-highlight {
    font-size: clamp(2.1rem, 12vw, 3.05rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle-accent {
    width: 100%;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .hero-cta {
    margin-top: 1.5rem;
  }

  .hero-section .feature-item {
    min-height: 68px;
  }
}

/* ===================================================================
   CORPORATE HERO SYSTEM
   A calm, editorial surface used by every DE and EN page hero.
   =================================================================== */
body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

.hero-section {
  background: #f4f7fa;
  color: #102a43;
  padding: 6rem 0 5.5rem !important;
  text-align: left;
  border-top: 4px solid #0b6fbd;
  border-bottom: 1px solid #d8e1e8;
  box-shadow: inset 0 -1px 0 rgba(11, 111, 189, 0.06);
}

.hero-section::before {
  top: 2.25rem;
  bottom: auto;
  left: calc(50% - 700px);
  right: auto;
  width: min(180px, 19vw);
  height: 6px;
  background: #38a169;
  border: 0;
  border-radius: 0;
  mask-image: none;
  opacity: 1;
}

.hero-section::after {
  display: none;
}

.hero-content {
  max-width: 900px;
  margin: 0;
  animation: none;
}

.hero-badge {
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding: 0.45rem 0.7rem;
  color: #24506f;
  background: #ffffff;
  border: 1px solid #cedae4;
  border-radius: 6px;
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-badge svg,
.hero-badge [style*="color"] {
  color: #16805b !important;
}

.hero-section h1 {
  max-width: 900px;
  margin: 0 0 1.35rem;
  color: #102a43;
  line-height: 1.08;
  animation: none;
}

.hero-title-line,
.hero-title-highlight {
  color: #102a43;
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title-highlight {
  color: #16805b;
  margin: 0.15rem 0;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-subtitle {
  max-width: 770px;
  margin: 0 0 1.8rem;
  color: #466176;
  font-size: clamp(1.05rem, 1.8vw, 1.23rem);
  font-weight: 450;
  line-height: 1.65;
  animation: none;
}

.hero-subtitle-accent {
  justify-content: flex-start;
  margin-top: 0.9rem;
  padding: 0.42rem 0.65rem;
  color: #136746;
  background: #def4e8;
  border: 1px solid #b9e7cc;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0;
}

.hero-cta {
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 2rem 0 0;
  animation: none;
}

.hero-section .cta-button {
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0;
  transform: none;
}

.hero-cta-primary,
.hero-cta .cta-button:first-child {
  color: #ffffff;
  background: #0b6fbd;
  border-color: #0b6fbd;
  box-shadow: 0 8px 16px rgba(11, 111, 189, 0.18);
  animation: none;
}

.hero-cta-primary:hover,
.hero-cta .cta-button:first-child:hover {
  color: #ffffff;
  background: #075b9f;
  border-color: #075b9f;
  box-shadow: 0 10px 20px rgba(11, 111, 189, 0.24);
  transform: translateY(-1px);
}

.hero-cta-secondary,
.hero-cta .cta-button.secondary {
  color: #174767;
  background: #ffffff;
  border-color: #b9cad8;
  box-shadow: none;
}

.hero-cta-secondary:hover,
.hero-cta .cta-button.secondary:hover {
  color: #0b6fbd;
  background: #edf5fb;
  border-color: #7cabc9;
  box-shadow: none;
  transform: translateY(-1px);
}

.hero-section .cta-button::before,
.hero-cta-primary::before {
  content: none;
}

.hero-features {
  justify-content: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 900px;
  margin: 2.5rem 0 0;
  animation: none;
}

.hero-section .feature-item {
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  color: #173b56;
  background: #ffffff;
  border: 1px solid #d6e0e8;
  border-radius: 6px;
  box-shadow: none;
}

.hero-section .feature-item:hover {
  background: #f8fbfd;
  border-color: #aac6da;
  box-shadow: 0 7px 16px rgba(20, 52, 78, 0.08);
  transform: translateY(-2px);
}

.hero-section .feature-icon-wrapper {
  width: 34px;
  height: 34px;
  background: #def4e8;
  border-radius: 6px;
}

.hero-section .feature-icon-wrapper svg,
.hero-section .feature-item [style*="color"],
.hero-section .success-text,
.hero-section .feature-number {
  color: #16805b !important;
}

.hero-section .feature-number {
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-section .feature-label {
  color: #587085;
  font-size: 0.82rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-section {
    padding: 5.2rem 0 4.6rem !important;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 4.25rem 0 3.8rem !important;
  }

  .hero-section::before {
    top: 1.45rem;
    left: 20px;
    width: 96px;
    height: 4px;
  }

  .hero-badge {
    margin-bottom: 1.1rem;
  }

  .hero-title-line,
  .hero-title-highlight {
    font-size: clamp(2rem, 10.2vw, 3rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    margin-bottom: 1.4rem;
    font-size: 1rem;
  }

  .hero-subtitle-accent {
    align-items: flex-start;
    width: 100%;
    text-align: left;
  }

  .hero-cta {
    align-items: stretch;
    margin-top: 1.45rem;
  }

  .hero-section .cta-button {
    width: 100%;
  }
}

/* Dark, image-led variant: the same visual system serves every page hero. */
.hero-section {
  background: #061426 url('/assets/images/hero-corporate-network.webp') 60% center / cover no-repeat;
  color: #ffffff;
  border-top-color: #1976d2;
  border-bottom-color: rgba(126, 190, 255, 0.28);
  box-shadow: none;
}

.hero-section::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #3c9cff;
  opacity: 1;
  z-index: 1;
}

.hero-section::after {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(2, 14, 30, 0.48);
  pointer-events: none;
}

.hero-content {
  color: #ffffff;
}

.hero-badge {
  color: #ffffff;
  background: rgba(4, 27, 53, 0.78);
  border-color: rgba(128, 193, 255, 0.46);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-badge svg,
.hero-badge [style*="color"] {
  color: #62b3ff !important;
}

.hero-section h1,
.hero-title-line {
  color: #ffffff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.36);
}

.hero-title-highlight {
  color: #69b8ff;
}

.hero-subtitle {
  color: rgba(235, 246, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-subtitle-accent {
  color: #eaf5ff;
  background: rgba(20, 122, 224, 0.42);
  border-color: rgba(126, 190, 255, 0.56);
}

.hero-cta-primary,
.hero-cta .cta-button:first-child {
  background: #1976d2;
  border-color: #1976d2;
  box-shadow: 0 10px 22px rgba(0, 59, 124, 0.42);
}

.hero-cta-primary:hover,
.hero-cta .cta-button:first-child:hover {
  background: #2589ea;
  border-color: #2589ea;
  box-shadow: 0 12px 25px rgba(0, 59, 124, 0.5);
}

.hero-cta-secondary,
.hero-cta .cta-button.secondary {
  color: #ffffff;
  background: rgba(4, 27, 53, 0.76);
  border-color: rgba(163, 210, 255, 0.54);
  box-shadow: none;
}

.hero-cta-secondary:hover,
.hero-cta .cta-button.secondary:hover {
  color: #ffffff;
  background: rgba(21, 83, 143, 0.9);
  border-color: #8ac8ff;
}

.hero-section .feature-item {
  color: #ffffff;
  background: rgba(3, 24, 48, 0.72);
  border-color: rgba(132, 193, 255, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-section .feature-item:hover {
  background: rgba(11, 53, 94, 0.82);
  border-color: rgba(140, 201, 255, 0.66);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-section .feature-icon-wrapper {
  background: rgba(34, 139, 240, 0.24);
}

.hero-section .feature-icon-wrapper svg,
.hero-section .feature-item [style*="color"],
.hero-section .success-text,
.hero-section .feature-number {
  color: #69b8ff !important;
}

.hero-section .feature-label {
  color: rgba(233, 246, 255, 0.82);
}

@media (max-width: 576px) {
  .hero-section {
    background-position: 66% center;
  }
}

/* ===================================================================
   PAGE-SPECIFIC VISUAL SYSTEM
   Each route gets its own editorial scene while language pairs share an asset.
   =================================================================== */
.hero--home { background-image: url('/assets/images/hero-corporate-network.webp'); }
.hero--agency { background-image: url('/assets/images/hero-agency-recruitment.webp'); }
.hero--platform { background-image: url('/assets/images/hero-platform-workflow.webp'); }
.hero--comparison { background-image: url('/assets/images/hero-comparison-routes.webp'); }
.hero--pricing { background-image: url('/assets/images/hero-pricing-planning.webp'); }
.hero--regulation { background-image: url('/assets/images/hero-regulation-visa.webp'); }
.hero--countries { background-image: url('/assets/images/hero-countries-network.webp'); }
.hero--industries { background-image: url('/assets/images/hero-industries-workforce.webp'); }
.hero--process { background-image: url('/assets/images/hero-process-workflow.webp'); }
.hero--contact { background-image: url('/assets/images/hero-contact-consultation.webp'); }
.hero--faq { background-image: url('/assets/images/hero-faq-insight.webp'); }
.hero--not-found { background-image: url('/assets/images/hero-404-route.webp'); }

.main-footer {
  position: relative;
  isolation: isolate;
  background-color: #031221;
  background-image: url('/assets/images/footer-network-routes.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(1, 13, 29, 0.78);
}

.main-footer .container {
  position: relative;
}

.page--home .fork-card {
  overflow: hidden;
}

.route-visual {
  height: 150px;
  margin: -2.5rem -2.5rem 1.6rem;
  background-color: #061426;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fork-card--agency .route-visual {
  background-image: url('/assets/images/hero-agency-recruitment.webp');
}

.fork-card--platform .route-visual {
  background-image: url('/assets/images/hero-platform-workflow.webp');
}

.fork-card--platform::before,
.fork-card--platform .cta-button {
  background: #1976d2;
  border-color: #1976d2;
}

.fork-card--platform:hover {
  border-color: #1976d2;
}

.fork-card--platform .fork-card-eyebrow,
.fork-card--platform .fork-card-price strong,
.fork-card--platform ul li svg {
  color: #1976d2;
}

.fork-card--platform .cta-button:hover {
  background: #2589ea;
  border-color: #2589ea;
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
}

@media (max-width: 992px) {
  .route-visual {
    margin: -2rem -1.5rem 1.4rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    background-position: 68% center;
  }

  .route-visual {
    height: 128px;
  }
}

/* Compact partner links: the logo, offer and action stay in one visual unit. */
.footer-brands {
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.footer-brand-chip {
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  min-height: 68px;
  padding: 0.62rem 0.75rem;
  column-gap: 0.7rem;
  border-color: rgba(131, 194, 255, 0.3);
  background: rgba(2, 24, 48, 0.72);
}

.footer-brand-logo {
  width: 48px;
  height: 48px;
  padding: 5px;
  border-radius: 7px;
}

.footer-brand-chip span {
  align-self: center;
  font-size: 0.94rem;
  white-space: nowrap;
}

.footer-brand-chip small {
  margin-top: 0.12rem;
  font-size: 0.76rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-brand-chip svg {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  opacity: 0.9;
}

.footer-brand-chip:hover {
  border-color: rgba(137, 202, 255, 0.7);
  background: rgba(10, 58, 104, 0.82);
}

/* The partner links use the former empty half as a relevant editorial visual. */
.footer-brand-chip {
  position: relative;
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 98px;
  padding-right: 43%;
  overflow: hidden;
}

.footer-brand-chip::after {
  content: '';
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 39%;
  border-left: 1px solid rgba(143, 202, 255, 0.36);
  border-radius: 0 7px 7px 0;
  background-color: #071d35;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-brand-chip:first-child::after {
  background-image: url('/assets/images/hero-agency-recruitment.webp');
}

.footer-brand-chip:nth-child(2)::after {
  background-image: url('/assets/images/hero-platform-workflow.webp');
}

.footer-brand-chip > img,
.footer-brand-chip > span,
.footer-brand-chip > svg {
  position: relative;
  z-index: 1;
}

.footer-brand-chip svg {
  position: absolute;
  right: 0.72rem;
  bottom: 0.72rem;
  width: 18px;
  height: 18px;
  padding: 0.22rem;
  color: #ffffff;
  background: rgba(3, 21, 40, 0.76);
  border: 1px solid rgba(164, 213, 255, 0.68);
  border-radius: 50%;
}

@media (max-width: 576px) {
  .footer-brand-chip {
    min-height: 92px;
    padding-right: 41%;
  }

  .footer-brand-chip::after {
    width: 37%;
  }

  .footer-brand-chip span {
    white-space: normal;
  }
}

/* Four generated work scenes make the industry overview scan like an editorial index. */
.page--industries .branche-row {
  grid-template-columns: 120px minmax(0, 1fr) 180px;
}

.page--industries .branche-row::after {
  content: '';
  grid-column: 3;
  grid-row: 1;
  align-self: stretch;
  min-height: 120px;
  border-radius: 6px;
  background-color: #0a2540;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page--industries .branche-row:nth-of-type(1)::after,
.page--industries .branche-row:nth-of-type(2)::after { background-image: url('/assets/images/industry-metalwork.webp'); }
.page--industries .branche-row:nth-of-type(3)::after,
.page--industries .branche-row:nth-of-type(4)::after { background-image: url('/assets/images/industry-electrical.webp'); }
.page--industries .branche-row:nth-of-type(5)::after,
.page--industries .branche-row:nth-of-type(6)::after { background-image: url('/assets/images/industry-logistics.webp'); }
.page--industries .branche-row:nth-of-type(7)::after,
.page--industries .branche-row:nth-of-type(8)::after { background-image: url('/assets/images/industry-hospitality.webp'); }

.page--industries .branche-row.reverse {
  grid-template-columns: 180px minmax(0, 1fr) 120px;
}

.page--industries .branche-row.reverse::after {
  grid-column: 1;
}

.page--industries .branche-row.reverse .branche-icon-large {
  grid-column: 3;
  order: 0;
}

.page--industries .branche-row.reverse .branche-content {
  grid-column: 2;
}

@media (max-width: 992px) {
  .page--industries .branche-row,
  .page--industries .branche-row.reverse {
    grid-template-columns: 100px minmax(0, 1fr) 140px;
  }

  .page--industries .branche-row.reverse::after {
    grid-column: 3;
  }

  .page--industries .branche-row.reverse .branche-icon-large {
    grid-column: 1;
  }
}

@media (max-width: 576px) {
  .main-header .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .header-content {
    gap: 0.25rem;
    min-width: 0;
  }

  .logo {
    gap: 0.45rem;
    font-size: 0.95rem;
    min-width: 0;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .lang-switch-toggle {
    padding: 0.42rem 0.48rem;
  }

  .mobile-menu-toggle {
    margin-right: 0;
    padding: 8px;
  }

  .footer-brand-chip {
    min-height: 64px;
  }

  .footer-brand-chip small {
    white-space: normal;
  }

  .page--industries .branche-row,
  .page--industries .branche-row.reverse {
    grid-template-columns: 1fr;
  }

  .page--industries .branche-row::after {
    display: none;
  }

  .page--industries .branche-row.reverse .branche-icon-large,
  .page--industries .branche-row.reverse .branche-content {
    grid-column: auto;
  }

  .hero-section h1 {
    width: calc(100vw - 40px);
    max-width: 330px;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero-title-line,
  .hero-title-highlight {
    width: 100%;
    font-size: clamp(1.85rem, 8.5vw, 2.25rem);
    line-height: 1.08;
    white-space: normal;
    word-break: normal;
  }

  .hero-subtitle {
    width: calc(100vw - 40px);
    max-width: 330px;
  }
}

/* ===================================================================
   VIDEO-FASSADE (Casting-Aufzeichnungen)
   Ersetzt: <iframe src="youtube.com/embed/...">
   Grund: Ein direkt eingebundener iframe kontaktiert Google schon beim
   Seitenaufruf und setzt Cookies — damit waeren die Aussagen in der
   Datenschutzerklaerung ("keine Cookies, kein Tracking") falsch und ein
   Consent-Banner noetig. Hier wird nur ein selbst gehostetes Standbild
   geladen; der iframe entsteht erst nach einem Klick des Nutzers.
   =================================================================== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(8, 55, 115, 0.14);
}

/* --- Die klickbare Fassade --- */
.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--primary-blue);
  overflow: hidden;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.video-facade:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

/* Play-Button */
.video-facade::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  border-radius: 12px;
  background: rgba(8, 55, 115, 0.85);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-facade::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent var(--white);
  z-index: 2;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-facade:hover::after {
  background: var(--success-green);
  width: 76px;
  height: 54px;
}

.video-facade:focus-visible {
  outline: 3px solid var(--success-green);
  outline-offset: -3px;
}

/* Laufzeit-Badge */
.video-duration {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

/* Der iframe wird per JS hier hineingesetzt. */
.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Textteil --- */
.video-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.video-card-body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--medium-gray);
  margin-bottom: 0.9rem;
  flex-grow: 1;
}

.video-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--medium-gray);
  border-top: 1px solid var(--border-gray);
  padding-top: 0.8rem;
}

.video-card-meta .tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
}

/* --- Datenschutz-Hinweis unter dem Grid --- */
.video-consent-note {
  font-size: 0.85rem;
  color: var(--medium-gray);
  text-align: center;
  max-width: 760px;
  margin: 2rem auto 0;
  line-height: 1.65;
}

.video-consent-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 860px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
