/* =========================================
   GLOBAL & RESET
   ========================================= */
:root {
  --bg-color: #ffffff;
  --bg-light: #f5f5f7; /* Apple Light Grey */
  --bg-blue-light: #e8f2ff;
  --text-main: #1d1d1f;
  --text-light: #86868b;
  --accent-blue: #0066cc; /* Apple Blue */
  --accent-dark: #004499;
  --radius: 18px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 32px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Typografie */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; color: #000; margin-bottom: 1rem; }
p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
img { max-width: 100%; display: block; object-fit: cover; }

/* Utilities */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-blue-light { background-color: var(--bg-blue-light); }
.bg-dark { background-color: #0a0a0a; color: #fff; }
.text-center { text-align: center; }
.text-blue { color: var(--accent-blue); }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1.5rem; }
.p-4 { padding: 1.5rem; }
.rounded { border-radius: var(--radius); }
.shadow-sm { box-shadow: var(--shadow-sm); }

/* =========================================
   NAVIGATION (Sticky & Consistent)
   ========================================= */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: 80px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06); z-index: 1000;
  display: flex; align-items: center;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.logo a { font-weight: 800; font-size: 1.5rem; color: #000; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 1.1rem; font-weight: 500; color: var(--text-main); position: relative; }
.nav-links a:hover, .nav-links a.active-link { color: var(--accent-blue); } /* Active Link Style */
.active-link { color: var(--accent-blue) !important; font-weight: 600 !important; }

@media(max-width: 900px) {
  .desktop-only { display: none; }
  .nav-links { display: none; } /* Mobile Menu Placeholder */
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  background: var(--accent-blue); color: #fff; padding: 14px 30px;
  border-radius: 50px; font-weight: 600; font-size: 1rem; border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3); }

.btn-primary-small {
  background: #000; color: #fff; padding: 8px 18px; border-radius: 50px; font-weight: 600; font-size: 0.85rem;
}
.btn-primary-small:hover { background: #333; }

.btn-secondary {
  background: #fff; color: #000; padding: 14px 30px; border-radius: 50px;
  font-weight: 600; border: 1px solid #e5e5e5; display: inline-block;
}
.btn-secondary:hover { background: #f5f5f5; border-color: #d1d5db; }

.btn-text { color: var(--accent-blue); font-weight: 600; background: none; border: none; cursor: pointer; font-size: 0.95rem; margin-top: auto; display: block; }

/* --- HERO (Clean White) --- */
.hero { 
  padding-top: 130px; /* Reduziert von 160px, damit es höher rutscht */
  padding-bottom: 60px; /* Reduziert von 80px */
  text-align: center; 
  background-color: #fff; 
  color: var(--text-main); 
}

/* Text wieder dunkel machen */
.hero h1 { 
  color: #000; 
  text-shadow: none; 
}

.hero p.hero-sub {
  color: var(--text-light);
  text-shadow: none;
}

.badge {
  background: var(--bg-blue-light); 
  color: var(--accent-blue);
  border: none;
}

/* Video Container Abstand */
.hero-video-container {
  margin-top: 40px; /* Reduziert von 50px */
  margin-bottom: 40px;
}
/* Contact Hero (mit Bild) */
.contact-hero {
  position: relative; height: 350px; display: flex; align-items: center; justify-content: center;
  background-image: url('bilder/hochhaus.avif'); /* Stelle sicher, dass das Bild existiert */
  background-size: cover; background-position: center; margin-top: 70px;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.hero-text-center { position: relative; z-index: 2; text-align: center; color: #fff; }
.hero-text-center h1 { font-size: 3.5rem; margin-bottom: 10px; color: #fff; letter-spacing: 2px; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero h1 { font-size: 2.5rem; }
}


/* --- APPLE TYPOGRAPHY UPDATE --- */

/* Badge / Eyebrow (Klein drüber) */
.badge {
  background: transparent; 
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue); 
  padding: 6px 14px; 
  border-radius: 50px; 
  font-size: 0.75rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px;
  display: inline-block; 
  margin-bottom: 15px; /* Etwas näher an die Überschrift gerückt */
}

/* Die Riesen-Headline - Jetzt perfekt ausbalanciert */
.hero h1 { 
  font-size: 3.8rem; /* Reduziert von 4.5rem - Groß, aber nicht sprengend */
  line-height: 1.1; 
  margin-bottom: 20px; 
  letter-spacing: -0.03em; 
  color: #1d1d1f;
  font-weight: 700;
}

/* Subheadline */
.hero-sub { 
  font-size: 1.3rem; /* Reduziert von 1.5rem */
  color: #86868b; 
  max-width: 700px; 
  margin: 0 auto 35px; /* Reduziert von 50px */
  font-weight: 400; 
  line-height: 1.4;
}

/* Mobile Anpassung für Handys */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.6rem; } /* Etwas kleiner für Mobile */
  .hero-sub { font-size: 1.1rem; }
}
/* =========================================
   COMPONENTS (Grids, Cards, Etc.)
   ========================================= */

/* Trust Ticker */
.trust-ticker { margin-top: 60px; padding-top: 40px; border-top: 1px solid #f0f0f0; }
.trust-ticker p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; opacity: 0.6; }
.logos-wrapper { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; opacity: 0.7; }
.partner-logo { height: 32px; filter: grayscale(100%); transition: 0.3s; }
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }
.more-partners { font-weight: 600; color: #9ca3af; }

/* Grid System */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 40px; }

/* Problem / Solution Cards */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.card { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.03); }
.icon-bg-red, .icon-bg-blue { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.icon-bg-red { background: #fee2e2; color: #ef4444; }
.icon-bg-blue { background: #dbeafe; color: #2563eb; }
.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 15px; position: relative; padding-left: 0; }
.red-list li::before { content: "✕"; color: #ef4444; margin-right: 10px; font-weight: bold; }
.blue-list li::before { content: "✓"; color: #2563eb; margin-right: 10px; font-weight: bold; }

/* Story / Split Layout */
.split-layout { display: flex; align-items: center; gap: 60px; }
.split-image { flex: 1; }
.split-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-content { flex: 1; }
.founders-quote { border-left: 4px solid var(--accent-blue); padding-left: 20px; margin-top: 30px; font-style: italic; }
.founder-names { font-size: 0.9rem; margin-top: 10px; font-style: normal; color: var(--text-main); }

/* Kandidaten Cards */
.candidate-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; cursor: pointer; }
.candidate-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.candidate-img { height: 240px; width: 100%; background-color: #eee; background-size: cover; background-position: center top; }
.candidate-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.candidate-info h3 { margin-bottom: 8px; font-size: 1.25rem; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag { background: var(--bg-light); color: var(--text-main); font-size: 0.7rem; padding: 4px 10px; border-radius: 6px; font-weight: 600; text-transform: uppercase; }
.candidate-info ul { list-style: none; margin-bottom: 20px; flex: 1; }
.candidate-info li { display: flex; gap: 10px; font-size: 0.9rem; color: #555; margin-bottom: 6px; align-items: center; }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 50px; }
.step-card, .step-box { text-align: center; }
.step-num { width: 60px; height: 60px; background: #fff; border: 2px solid var(--bg-light); border-radius: 50%; font-size: 1.5rem; font-weight: 800; color: var(--accent-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: var(--shadow-sm); }
.step-box { background: #fff; padding: 30px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03); transition: 0.3s; }
.step-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icon-circle { width: 70px; height: 70px; background: var(--bg-blue-light); color: var(--accent-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; }
.icon-circle i { width: 32px; height: 32px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.testimonial-card { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.quote-icon { font-size: 3rem; color: var(--bg-blue-light); line-height: 1; margin-bottom: 10px; }
.quote-text { font-size: 1.05rem; color: var(--text-main); font-style: italic; margin-bottom: 20px; }
.author { display: flex; align-items: center; gap: 15px; }
.author img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; }
.author strong { display: block; font-size: 0.95rem; }
.author span { font-size: 0.85rem; color: var(--text-light); }

/* Stats */
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.stat-number { font-size: 3.5rem; font-weight: 800; margin-bottom: 5px; }
.stat-label { font-size: 1.1rem; opacity: 0.9; }
.stat-item.bg-white { background: #fff; border: 1px solid rgba(0,0,0,0.05); }

/* Video Elements */
.align-center { align-items: center; }
.video-card-fake { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: #000; }
.video-card-fake img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.3s; }
.video-card-fake:hover img { opacity: 0.5; }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; color: #fff; z-index: 2; pointer-events: none; }
.video-overlay { position: absolute; bottom: 20px; left: 20px; color: #fff; z-index: 2; display: flex; flex-direction: column; }

/* FAQ Accordion */
.faq-accordion { margin-top: 40px; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question { width: 100%; text-align: left; padding: 20px 0; background: none; border: none; font-weight: 600; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; color: var(--text-main); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 20px; margin: 0; }

/* --- CTA LIGHT MODE (Hellgrau statt Dunkel) --- */

/* Die große Box wird hellgrau */
.cta-box-large.light-mode {
  background: #f3f4f6; /* Modernes Hellgrau */
  color: #1d1d1f;      /* Dunkler Text */
  box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Sanfterer Schatten */
  border: 1px solid rgba(0,0,0,0.05);
}

/* Texte in der Box anpassen */
.cta-box-large.light-mode h2 {
  color: #000;
}

.cta-box-large.light-mode p {
  color: #555;
}

/* Check-Liste dunkel machen */
.check-list.dark-list li {
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
}
.check-list.dark-list li::before {
  content: "✓"; 
  margin-right: 10px; 
  color: var(--accent-blue); /* Der blaue Haken bleibt */
  font-weight: 800;
}

/* GF Trust Badge (Das Bild links) */
.gf-trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb; /* Feine Trennlinie */
}

.gf-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gf-trust-badge strong {
  display: block;
  font-size: 1rem;
  color: #000;
}

.gf-trust-badge span {
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-bottom: 4px;
}

.gf-quote {
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--accent-blue) !important;
  margin: 0 !important;
}

/* Mobile Anpassung für das Bild */
@media (max-width: 900px) {
  .gf-trust-badge {
    justify-content: center;
    text-align: left;
  }
}

/* Partner Programm Extras */
.logo-grid-large { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; margin: 40px 0; }
.partner-logo-large { height: 80px; object-fit: contain; filter: grayscale(100%); opacity: 0.8; transition: 0.3s; }
.partner-logo-large:hover { filter: grayscale(0%); opacity: 1; }
.pricing-card { background: #fff; padding: 50px; border-radius: var(--radius); text-align: center; position: relative; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05); }
.pricing-card.featured { border: 2px solid var(--accent-blue); box-shadow: 0 10px 40px rgba(0, 102, 204, 0.15); transform: scale(1.02); }
.badge-top { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-blue); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.price { font-size: 3rem; font-weight: 800; margin: 10px 0; color: #000; }
.desc { color: #666; margin-bottom: 30px; }

/* Über Uns Extras */
.story-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: auto; object-fit: cover; max-height: 500px; }
.caption { font-size: 0.9rem; color: var(--text-light); margin-top: 10px; font-style: italic; text-align: center; }
.story-quote { font-size: 1.4rem; font-weight: 600; color: var(--accent-blue); border-left: 4px solid var(--accent-blue); padding-left: 20px; margin: 30px 0; line-height: 1.4; }
.big-quote { font-size: 1.8rem; font-weight: 500; line-height: 1.4; color: #fff; }
.avatar-small { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; margin: 0 auto; display: block; }

/* Kontakt Page Extras */
.info-bar { background: #fff; padding: 30px 0; border-bottom: 1px solid #eee; }
.info-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.info-item { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #555; font-size: 0.9rem; }
.info-item i { color: var(--accent-blue); }
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-top: 40px; }
.form-card { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trust-sidebar { display: flex; flex-direction: column; gap: 30px; }
.trust-box { padding: 0 0 20px 20px; border-left: 2px solid var(--accent-blue); }
.trust-box h3 { font-size: 1.1rem; margin-bottom: 10px; color: #000; }
.trust-box p { font-size: 0.95rem; color: #666; margin-bottom: 5px; }
.trust-box.highlight { background: #fff; padding: 20px; border-left: none; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid #eee; }
.stars { font-weight: 600; display: flex; align-items: center; gap: 5px; }
.google-logo { color: #4285F4; font-weight: 800; font-family: serif; font-size: 1.2rem; }
.trustpilot-logo { color: #00b67a; font-weight: 700; }
.star-rating { font-size: 1.1rem; color: #000; }

/* Filter & Badges */
.filter-wrapper { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.filter-btn { padding: 10px 24px; border: 1px solid #e1e1e1; background: #fff; border-radius: 30px; cursor: pointer; font-weight: 500; font-size: 0.95rem; transition: all 0.2s; color: var(--text-main); }
.filter-btn:hover { background: #f5f5f7; transform: translateY(-1px); }
.filter-btn.active { background: var(--text-main); color: #fff; border-color: var(--text-main); }
.status-badge { background: #dcfce7; color: #166534; font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; font-weight: 700; text-transform: uppercase; float: right; }

/* =========================================
   FORMS
   ========================================= */
.simple-form, .complex-form { display: flex; flex-direction: column; gap: 15px; }
.complex-form .form-row { display: flex; gap: 20px; margin-bottom: 15px; }
.complex-form .form-group { flex: 1; margin-bottom: 15px; }
.bg-white { background: #fff; color: var(--text-main); }
.form-group label { font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; display: block; text-transform: uppercase; color: #888; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 1rem; background: #f9f9f9; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-blue); outline: none; background: #fff; }
.checkbox-group { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; margin-top: 10px; }
.full-width { width: 100%; }
.tiny-text { font-size: 0.8rem; color: #6b7280; text-align: center; }

/* =========================================
   MODAL
   ========================================= */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); }
.modal-content { background: #fff; margin: 5vh auto; border-radius: 20px; width: 90%; max-width: 850px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); display: flex; overflow: hidden; position: relative; max-height: 90vh; }
.close-modal { position: absolute; right: 20px; top: 15px; font-size: 28px; cursor: pointer; z-index: 10; width: 40px; height: 40px; background: #f5f5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.modal-left { flex: 1; background: #f0f0f5; }
.modal-left img { width: 100%; height: 100%; object-fit: cover; }
.modal-right { flex: 1.3; padding: 40px; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.video-teaser { background: #000; color: #fff; border-radius: 12px; padding: 15px; margin: 20px 0; display: flex; align-items: center; gap: 15px; cursor: pointer; transition: 0.2s; }
.video-teaser:hover { background: #333; }
.video-teaser .play-icon { font-size: 24px; color: var(--accent-blue); }
.video-teaser .tiny { font-size: 0.8rem; color: #ccc; margin: 0; }

/* --- NAVBAR & LOGO --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: 100px; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); z-index: 1000; display: flex; align-items: center; transition: height 0.3s ease; }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo a { display: flex; align-items: center; height: 100%; }
.logo img { height: 75px; width: auto; object-fit: contain; display: block; padding: 5px 0; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 1rem; font-weight: 500; color: var(--text-main); }

/* --- ÜBER UNS (Content, Benefits, Team) --- */
.content-box { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-sm); height: 100%; }
.content-box h4 { font-size: 1.2rem; margin-bottom: 15px; color: var(--text-main); }
.benefit-card { background: #fff; padding: 30px; border-radius: var(--radius); display: flex; gap: 20px; align-items: flex-start; box-shadow: var(--shadow-sm); transition: transform 0.3s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit-icon { font-size: 2.5rem; line-height: 1; }
.benefit-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.benefit-card p { font-size: 0.95rem; margin: 0; }
.bg-dark .big-quote { font-weight: 600; line-height: 1.5; }
.team-card { background: transparent; box-shadow: none; border: none; }
.team-portrait { height: 400px; object-fit: cover; border-radius: 12px; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.team-contact { font-size: 0.9rem; color: #666; margin-top: 10px; line-height: 1.6; }
.team-contact a { color: var(--accent-blue); font-weight: 600; }

/* --- FOOTER (Dark & Clean) --- */
.footer-dark { background-color: #0b0f19; color: #fff; padding: 80px 0 30px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 60px; align-items: start; }
.footer-brand-col .logo img { height: 80px; width: auto; object-fit: contain; margin-bottom: 20px; display: block; }
.footer-dark h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; opacity: 1; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-dark p, .footer-dark a { color: #a1a1aa; display: block; margin-bottom: 12px; font-size: 0.95rem; line-height: 1.6; text-decoration: none; }
.footer-dark a:hover { color: #fff; text-decoration: underline; }
.social-icons { display: flex; gap: 15px; margin-top: 25px; }
.social-icons a { color: #fff; opacity: 0.7; transition: 0.3s; margin-bottom: 0; }
.social-icons a:hover { opacity: 1; color: var(--accent-blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding-top: 30px; color: #52525b; font-size: 0.85rem; }

/* --- RESPONSIVE ADJUSTMENTS (Handy) --- */
@media (max-width: 900px) {
  .navbar { height: 80px; }
  .logo img { height: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .social-icons { justify-content: center; }
  .footer-brand-col .logo img { margin: 0 auto 20px auto; }
  .hero h1 { font-size: 2.5rem; }
  .grid-2, .grid-3, .grid-4, .comparison-grid, .split-layout, .contact-layout, .cta-box-large { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { max-width: 400px; margin: 40px auto; }
  .split-image { order: -1; }
  .cta-box-large { padding: 30px; }
  .modal-content { flex-direction: column; height: auto; margin: 20px; max-height: 80vh; overflow-y: scroll; }
  .modal-left { height: 250px; }
  .form-row { flex-direction: column; gap: 0; }
  .logo-grid-large { gap: 30px; }
  .partner-logo-large { height: 50px; }
  .pricing-card.featured { transform: scale(1); }
}

/* --- PARTNER LOGOS --- */
.partner-logo, .partner-logo-large { height: 80px; object-fit: contain; filter: none; opacity: 1; transition: transform 0.3s; }
.partner-logo { width: auto; }
.partner-logo:hover { transform: scale(1.1); }
.partner-logo-large:hover { transform: scale(1.05); }
.logos-wrapper { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; opacity: 1; }

/* --- ABSTÄNDE --- */
.section-header { margin-bottom: 10px; }
.section-header p { margin-bottom: 0; }
.section-header + .grid-2, .section-header + .grid-3, .section-header + .grid-4 { margin-top: 25px; }

/* --- CONTACT HERO --- */
.contact-hero { position: relative; height: 350px; display: flex; align-items: center; justify-content: center; margin-top: 100px; overflow: hidden; background-color: #000; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.contact-hero .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1; }
.contact-hero .hero-text-center { position: relative; z-index: 2; text-align: center; color: #fff; }
.contact-hero .hero-text-center h1 { font-size: 3.5rem; margin-bottom: 10px; color: #fff; letter-spacing: 2px; }

/* --- GOOGLE & TRUSTPILOT LOGOS --- */
.google-logo img, .trustpilot-logo img { height: 22px; width: auto; vertical-align: middle; margin-left: 6px; margin-top: -3px; }

/* --- MOBILE NAVIGATION --- */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: #000; z-index: 2001; }
.mobile-menu-btn i { width: 32px; height: 32px; }
.mobile-menu-overlay { display: flex; flex-direction: column; align-items: center; justify-content: center; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255,255,255,0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 2000; opacity: 0; pointer-events: none; transform: translateY(-20px); transition: all 0.3s ease; gap: 30px; }
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-menu-overlay a { font-size: 1.8rem; font-weight: 600; color: var(--text-main); text-decoration: none; }
.mobile-menu-overlay .active-link { color: var(--accent-blue) !important; }

/* --- MEDIA QUERIES (< 1000px) --- */
@media (max-width: 1000px) { 
  .desktop-only { display: none !important; } 
  .mobile-menu-btn { display: block; } 
}
/* --- LANGE ÜBERSCHRIFTEN (Mobile) --- */
@media (max-width: 600px) { h1 { font-size: 1.8rem !important; overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; } .container[style*="background: #fff"] { padding: 25px !important; } }

/* --- MOBILE FEINSCHLIFF --- */
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
@media (max-width: 768px) { .hero-buttons { flex-direction: column; align-items: center; gap: 12px; } .hero-buttons .btn-primary, .hero-buttons .btn-secondary, .hero-buttons .btn-outline { width: 100%; max-width: 320px; text-align: center; } .section { padding: 50px 0 !important; } .hero { padding-bottom: 30px !important; } .hero-video-container { margin-top: 30px; margin-bottom: 20px; } }

/* --- APPLE-STYLE JOBBÖRSE --- */
#jobs .section-header h2 { font-size: 3rem; font-weight: 800; letter-spacing: -0.5px; color: #111; }
#jobs .section-header p { font-size: 1.3rem; color: #666; max-width: 600px; margin: 0 auto 40px auto; }
#jobs .container { max-width: 1450px !important; width: 95%; }
#jobs .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr) !important; gap: 30px; align-items: stretch; }
.job-card { background: #ffffff; border-radius: 32px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.08); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); display: flex; flex-direction: column; height: 100%; }
.job-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 25px 50px rgba(0,0,0,0.12); }
.job-image-wrapper { position: relative; height: 260px; width: 100%; }
.job-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.job-card:hover .job-image-wrapper img { transform: scale(1.05); }
.job-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%); padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; }
.job-cat { display: inline-block; color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 20px; backdrop-filter: blur(4px); width: fit-content; }
.job-title { color: #ffffff; font-size: 2.2rem !important; font-weight: 800 !important; line-height: 1.1; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.job-details { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.job-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #f0f0f0; font-size: 1.1rem; }
.job-row:last-of-type { border-bottom: none; margin-bottom: 20px; }
.label { color: #777; font-weight: 500; }
.value { color: #111; font-weight: 700; text-align: right; }
.job-card .btn-outline { border-width: 2px; font-weight: 600; font-size: 1.1rem; padding: 14px 20px; border-radius: 16px; }

/* --- RESPONSIVE JOBBÖRSE --- */
@media (max-width: 1100px) { #jobs .grid-3 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 768px) { #jobs .section-header h2 { font-size: 2.2rem; } #jobs .grid-3 { grid-template-columns: 1fr !important; gap: 30px; } .job-card { border-radius: 24px; } .job-image-wrapper { height: 220px; } .job-title { font-size: 1.8rem !important; } .job-details { padding: 25px; } .job-row { font-size: 1rem; padding: 12px 0; } }

/* --- ICON WRAPPER --- */
.icon-wrapper { background-color: #f0f6ff; color: #0056b3; width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: transform 0.3s ease, background-color 0.3s ease; }
.icon-wrapper i { width: 28px; height: 28px; stroke-width: 2px; }
.content-box:hover .icon-wrapper { transform: translateY(-5px) scale(1.05); background-color: #e1edff; }
/* --- FAQ AKKORDEON --- */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.faq-question i { transition: transform 0.3s ease; }
.faq-question.active i { transform: rotate(180deg); }

/* --- LEAD GENERATION POPUP --- */
.lead-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; padding: 20px; }
.lead-modal-overlay.show { opacity: 1; visibility: visible; }
.lead-modal-content { background: #ffffff; width: 100%; max-width: 980px; border-radius: 28px; overflow: hidden; position: relative; box-shadow: 0 50px 100px rgba(0,0,0,0.35); transform: translateY(40px) scale(0.95); transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.lead-modal-overlay.show .lead-modal-content { transform: translateY(0) scale(1); }
.lead-modal-close { position: absolute; top: 20px; right: 20px; background: rgba(0,0,0,0.05); border: none; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all 0.3s ease; color: #333; }
.lead-modal-close:hover { background: rgba(0,0,0,0.1); transform: rotate(90deg); }
.lead-modal-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 550px; }
.lead-modal-image::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent); }
.lead-modal-form-area { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.lead-modal-header-logo { position: absolute; top: 25px; left: 30px; height: 45px; width: auto; z-index: 5; filter: brightness(0) invert(1); }
.lead-modal-form-area h3 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; color: #111; }
.lead-modal-image { background: url('bilder/TomyHarry2.webp') center/cover no-repeat; position: relative; }

/* --- BLOG HEADER & HERO --- */
.blog-header-split { padding: 120px 0 40px 0; align-items: center; }
.blog-header-split h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; color: #111; letter-spacing: -1px; }
.blog-header-split p { font-size: 1.15rem; color: #555; line-height: 1.6; }
.blog-hero-banner { width: 100%; height: 480px; border-radius: 32px; background-size: cover; background-position: center; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.1); margin-bottom: 60px; display: flex; align-items: flex-start; padding: 30px; text-decoration: none; }
.banner-badge { background: rgba(0,0,0,0.6); color: #fff; backdrop-filter: blur(4px); padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 0.9rem; }

/* --- BLOG FILTER & SEARCH --- */
.blog-filter-section { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eaeaea; padding-bottom: 20px; margin-bottom: 30px; flex-wrap: wrap; gap: 20px; }
.filter-pills { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.filter-title { font-weight: 700; color: #111; margin-right: 15px; }
.pill { padding: 8px 18px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; background: #f4f4f5; color: #555; border: none; }
.pill:hover { background: #e0e0e0; }
.pill.active { background: #111; color: #fff; }
.filter-results { font-size: 0.9rem; color: #888; font-weight: 500; }
.blog-search-container { display: flex; justify-content: flex-end; margin-bottom: 40px; }
.search-box-inner { background: #f4f4f5; padding: 15px; border-radius: 16px; width: 100%; max-width: 400px; }
.search-input-group { display: flex; gap: 10px; }
.search-input-group input { flex-grow: 1; padding: 12px 15px; border: none; border-radius: 10px; font-size: 0.95rem; outline: none; width: 100%; }
.search-input-group input:focus { box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2); }
.search-input-group button { background: #fff; border: none; padding: 12px 20px; border-radius: 10px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.search-input-group button:hover { background: #eaeaea; }
.search-hint { font-size: 0.75rem; color: #888; margin-top: 8px; display: block; }

/* --- BLOG CARDS --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mag-card { background: #ffffff; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: all 0.4s ease; text-decoration: none; color: inherit; height: 100%; }
.mag-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.mag-card-image { height: 220px; background-size: cover; background-position: center; position: relative; }
.image-tags { position: absolute; bottom: 15px; left: 15px; display: flex; gap: 8px; flex-wrap: wrap; }
.img-tag { background: #ffffff; color: #111; font-size: 0.75rem; font-weight: 700; padding: 6px 12px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.mag-card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.mag-meta { font-size: 0.8rem; color: #888; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.mag-card-content h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.35; margin-bottom: 12px; color: #111; }
.mag-card-content p { color: #666; font-size: 0.95rem; margin-bottom: 25px; flex-grow: 1; }
.mag-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f0f0f0; }
.mag-read-btn { font-weight: 700; color: #111; font-size: 0.95rem; background: #f4f4f5; padding: 8px 16px; border-radius: 10px; transition: background 0.3s; }
.mag-card:hover .mag-read-btn { background: #e0e0e0; }
.mag-time { font-size: 0.85rem; color: #888; font-weight: 500; }

/* --- PAGINATION --- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 60px; }
.page-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #f4f4f5; color: #111; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.page-btn.active { background: #111; color: #fff; }
.page-btn:hover:not(.active) { background: #e0e0e0; }

/* --- MOBILE ANPASSUNGEN (BLOG & MODAL) --- */
@media (max-width: 992px) { .blog-header-split h1 { font-size: 2.8rem; } .blog-grid { grid-template-columns: repeat(2, 1fr); } .blog-hero-banner { height: 350px; } }
@media (max-width: 768px) { .main-padded { padding-top: 100px; } .blog-grid { grid-template-columns: 1fr; } .blog-header-split { grid-template-columns: 1fr; text-align: center; gap: 15px; } .blog-search-container { justify-content: stretch; width: 100%; } .search-box-inner { max-width: 100%; } .blog-hero-banner { height: 250px; } .filter-title { display: none; } }
/* --- ARTIKEL LESE-SEITE --- */
.article-hero { padding-top: 140px; padding-bottom: 40px; text-align: center; max-width: 900px; margin: 0 auto; }
.article-meta { color: #888; font-size: 0.95rem; margin-bottom: 20px; display: flex; justify-content: center; align-items: center; gap: 15px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; color: #111; letter-spacing: -1px; margin-bottom: 30px; }
.article-hero-image { width: 100%; max-width: 1100px; height: 500px; border-radius: 32px; object-fit: cover; margin: 0 auto 50px auto; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.article-content { max-width: 720px; margin: 0 auto; font-size: 1.15rem; line-height: 1.8; color: #444; }
.article-content h2 { font-size: 2rem; font-weight: 800; color: #111; margin: 50px 0 20px 0; line-height: 1.3; }
.article-content h3 { font-size: 1.5rem; font-weight: 700; color: #222; margin: 30px 0 15px 0; }
.article-content p { margin-bottom: 25px; }
.article-content ul { margin-bottom: 30px; padding-left: 20px; }
.article-content li { margin-bottom: 10px; }
.article-pull-quote { font-size: 1.5rem; font-weight: 600; color: var(--primary-color); line-height: 1.5; border-left: 4px solid var(--primary-color); padding: 20px 0 20px 30px; margin: 40px 0; background: linear-gradient(to right, rgba(0, 86, 179, 0.05), transparent); border-radius: 0 16px 16px 0; }

/* --- AUTOREN BOX & FOOTER BUTTONS --- */
.article-author-box { background: #f4f4f5; border-radius: 20px; padding: 30px; display: flex; align-items: center; gap: 20px; margin-top: 60px; margin-bottom: 60px; }
.article-author-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.article-author-info h4 { margin: 0 0 5px 0; font-size: 1.2rem; color: #111; }
.article-author-info p { margin: 0; font-size: 0.95rem; color: #666; line-height: 1.5; }
.article-action-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 30px; border-top: 1px solid #eaeaea; }
.article-action-btn { background: #ffffff; border: 1px solid #ddd; color: #111; font-weight: 600; font-size: 0.95rem; padding: 12px 20px; border-radius: 12px; cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.article-action-btn:hover { background: #f4f4f5; border-color: #ccc; transform: translateY(-2px); }

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white !important; border-radius: 50px; padding: 10px 20px 10px 15px; display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; box-shadow: 0px 4px 15px rgba(0,0,0,0.15); text-decoration: none; z-index: 9999; transition: all 0.3s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0px 6px 20px rgba(0,0,0,0.25); background-color: #1EBE5A; }
.whatsapp-icon { width: 28px; height: 28px; fill: currentColor; }

/* --- MOBILE ANPASSUNGEN --- */
@media (max-width: 768px) { .article-hero { padding-top: 110px; } .article-hero h1 { font-size: 2.2rem; } .article-hero-image { height: 250px; border-radius: 20px; } .article-author-box { flex-direction: column; text-align: center; } .whatsapp-float { bottom: 20px; right: 20px; padding: 12px; border-radius: 50%; } .whatsapp-text { display: none; } .whatsapp-icon { width: 32px; height: 32px; } }
@media (max-width: 500px) { .article-action-footer { flex-direction: column; gap: 15px; } .article-action-btn { width: 100%; justify-content: center; } }
/* --- TYPOGRAFIE & BASIS LAYOUT --- */
body { font-family: 'Inter', sans-serif; color: #1d1d1f; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 32px; color: #1d1d1f; margin-bottom: 15px; }
.section-header p { font-size: 18px; color: #4A5568; }

/* --- NAVBAR & NAVIGATION --- */
.nav-links a { font-size: 17px; font-weight: 500; }
.nav-actions .btn-primary-small { font-size: 16px; padding: 14px 28px; font-weight: 600; border-radius: 8px; transition: all 0.3s ease; }
.nav-actions .btn-primary-small:hover { transform: scale(1.05); }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 14px 28px; font-weight: 600; border-radius: 6px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; text-align: center; }
.btn-primary { background-color: #0071e3; color: #fff; border: 2px solid #0071e3; } /* Apple Blau */
.btn-primary:hover { background-color: #005bb5; border-color: #005bb5; }
.btn-outline { background-color: transparent; color: #1d1d1f; border: 2px solid #1d1d1f; }
.btn-outline:hover { background-color: #1d1d1f; color: #fff; }
.btn-full { width: 100%; }

/* --- HERO SECTION --- */
.hero-section { padding: 100px 0 60px; text-align: center; background-color: #FAFAFA; }
.badge { background-color: #f5f5f7; color: #0071e3; padding: 6px 14px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 20px; display: inline-block; }
.hero-content h1 { font-size: 48px; color: #1d1d1f; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { font-size: 20px; color: #4A5568; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* --- TRUST BAR --- */
.trust-bar { background-color: #1d1d1f; color: #fff; padding: 20px 0; text-align: center; font-size: 15px; font-weight: 500; }
.trust-logos span, .trust-logos strong { margin: 0 10px; }
.trust-logos .divider { color: #0071e3; }

/* --- PRICING TABLE --- */
.pricing-section { padding: 80px 0; background-color: #f5f5f7; }
.table-responsive { overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; text-align: left; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.pricing-table th, .pricing-table td { padding: 20px; border-bottom: 1px solid #e5e5ea; }
.pricing-table th { background-color: #f5f5f7; }
.pricing-table th h3 { margin: 0 0 5px; font-size: 22px; color: #1d1d1f; }
.pricing-table th .price { font-size: 24px; font-weight: 700; color: #0071e3; }
.pricing-table th p { margin: 5px 0 0; font-size: 14px; color: #86868b; }
.basis-col { background-color: #ffffff; text-align: center; width: 25%; }
.premium-col { background-color: #f0f8ff; text-align: center; width: 25%; border-left: 2px solid #0071e3; border-right: 2px solid #0071e3; }
.pricing-table thead .premium-col { border-top: 2px solid #0071e3; }
.pricing-table .highlight-row { background-color: #FAFAFA; }
.pricing-table .highlight-row .premium-col { border-bottom: 2px solid #0071e3; color: #0071e3; font-weight: bold; background-color: #f0f8ff; }
.icon-check { color: #34c759; width: 24px; } /* Apple Grün */
.icon-cross { color: #86868b; width: 24px; opacity: 0.5; }

/* --- PROCESS GRID --- */
.process-section { padding: 80px 0; background-color: #FAFAFA; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.step-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: relative; }
.step-number { background-color: #0071e3; color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; margin-bottom: 20px; }
.step-card h3 { font-size: 20px; margin-bottom: 10px; color: #1d1d1f; }
.step-card p { color: #4A5568; line-height: 1.6; }

/* --- SECURITY BOX --- */
.security-section { padding: 80px 0; background-color: #fff; }
.security-box { background-color: #1d1d1f; color: #f5f5f7; padding: 50px; border-radius: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.security-content h2 { font-size: 28px; margin-bottom: 30px; color: #fff; }
.security-list { list-style: none; padding: 0; }
.security-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 18px; line-height: 1.5; }
.security-list i { color: #0071e3; flex-shrink: 0; margin-top: 3px; }

/* --- CONTACT SECTION & FORMS --- */
.contact-section { padding: 80px 0; background-color: #FAFAFA; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-text h2 { font-size: 36px; color: #1d1d1f; margin-bottom: 20px; }
.contact-text p { font-size: 18px; color: #4A5568; line-height: 1.6; }
.lead-form { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #E2E8F0; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 16px; background-color: #FAFAFA; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #0071e3; background-color: #fff; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 36px; }
  .hero-buttons { flex-direction: column; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .pricing-table th, .pricing-table td { padding: 10px; font-size: 14px; }
  .pricing-table th h3 { font-size: 18px; }
  .trust-logos span, .trust-logos strong { display: block; margin: 5px 0; }
  .trust-logos .divider { display: none; }
}

/* --- KONTAKTSEITE MOBILE FIX --- */
@media (max-width: 900px) {
  .contact-grid-mobile { grid-template-columns: 1fr !important; }
  .form-grid-mobile { grid-template-columns: 1fr !important; gap: 10px !important; margin-bottom: 10px !important; }
}

/* --- APPLE FEELING: SANFTE HOVER-EFFEKTE --- */

/* Der Pipeline Banner hebt sich sanft an */
.pipeline-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 113, 227, 0.12) !important; /* Sanfter blauer Schatten */
  border-color: #b3d4ff !important;
}

/* Die Preistabelle bekommt mehr Tiefe beim Drüberfahren */
.pricing-table {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pricing-table:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Generelle Cards (falls verwendet) */
.step-card-clean, .trust-box, .problem-card, .solution-card {
  transition: all 0.4s ease;
}
.step-card-clean:hover, .trust-box:hover, .problem-card:hover, .solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

/* === FLOATING CHAT BUTTON === */
.floating-chat-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #0071e3;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 113, 227, 0.3);
  cursor: pointer;
  z-index: 9998;
  transition: transform 0.3s ease;
}
.floating-chat-btn:hover { transform: scale(1.08); }

/* === MULTI-STEP MODAL === */
.ms-modal-overlay {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 400px;
  max-width: calc(100% - 40px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  border: 1px solid #e5e5ea;
}
.ms-modal-overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ms-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #86868b;
  z-index: 10;
  transition: color 0.2s;
}
.ms-close-btn:hover { color: #1d1d1f; }

/* Header: Zähler & Ladebalken */
.ms-header {
  padding: 25px 30px 0 30px;
}
.ms-step-counter {
  font-size: 0.85rem;
  font-weight: 600;
  color: #86868b;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.ms-progress-bar {
  height: 4px;
  background: #f2f2f7;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}
.ms-progress-fill {
  height: 100%;
  background: #0071e3;
  width: 16.66%; /* 1/6 */
  transition: width 0.4s ease;
}

/* Formular Schritte */
.ms-step {
  display: none;
  padding: 25px 30px 35px 30px;
}
.ms-step.active {
  display: block;
  animation: fadeInStep 0.4s ease forwards;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.ms-step h3 {
  font-size: 1.3rem;
  color: #1d1d1f;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.3;
}

/* Auswahl-Buttons (Pills) */
.ms-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ms-option-btn {
  width: 100%;
  padding: 16px;
  background: #fbfbfd;
  border: 1px solid #d1d1d6;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #1d1d1f;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ms-option-btn:hover, .ms-option-btn.selected {
  border-color: #0071e3;
  background: rgba(0, 113, 227, 0.05);
}

/* Inputs & Buttons */
.ms-input {
  width: 100%;
  padding: 16px;
  border: 1px solid #d1d1d6;
  border-radius: 12px;
  font-size: 1rem;
  background: #fbfbfd;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.ms-input:focus {
  outline: none;
  border-color: #0071e3;
  background: #ffffff;
}
.ms-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.ms-btn-primary {
  flex: 1;
  padding: 15px;
  background: #0071e3;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.ms-btn-primary:hover { background: #005bb5; }
.ms-btn-secondary {
  padding: 15px 25px;
  background: #f2f2f7;
  color: #1d1d1f;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}
.ms-checkbox-label {
  display: block;
  font-size: 0.85rem;
  color: #86868b;
  margin-top: 15px;
}
/* =========================================
   MOBILE LEAD-POPUP FIX (< 768px)
   ========================================= */
@media (max-width: 768px) {
  
  /* 1. Das Modal etwas kompakter machen und scrollbar machen, falls das Display winzig ist */
  .lead-modal-content {
    max-width: 92% !important;
    border-radius: 20px !important;
    max-height: 90vh !important;
    overflow-y: auto !important; /* Erlaubt scrollen IN der Box */
  }

  /* 2. Das Geheimnis: Aus zwei Spalten wird EINE Spalte (untereinander) */
  .lead-modal-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  /* 3. Das Bild nach oben packen und auf 160px Höhe begrenzen */
  .lead-modal-image {
    height: 160px !important;
    min-height: 160px !important;
    width: 100% !important;
    background-position: center 20% !important; /* Zeigt eher die Gesichter auf dem Bild */
  }

  /* 4. Das Formular darunter bekommt weniger dicke Ränder, um Platz zu sparen */
  .lead-modal-form-area {
    padding: 25px 20px !important;
  }

  /* 5. Texte minimal verkleinern für's Handy */
  .lead-modal-form-area h3 {
    font-size: 1.6rem !important;
  }

  /* 6. Das Logo auf dem Bild etwas kleiner machen */
  .lead-modal-header-logo {
    top: 15px !important;
    left: 20px !important;
    height: 30px !important;
  }

  /* 7. Den Schließen-Button (X) etwas kleiner machen und besser sichtbar machen */
  .lead-modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.9) !important; /* Weißer Hintergrund, damit man es auf dem Bild gut sieht */
  }

    /* --- 3. SCHWARZE BOX (SAUBER STRUKTURIERT) --- */
    .security-box {
        padding: 30px 20px !important;
    }
    .security-list li {
        display: flex !important;
        flex-direction: column !important; /* Icon oben, Text unten */
        align-items: flex-start !important;
        text-align: left !important;
        background: rgba(255, 255, 255, 0.05) !important; /* Leichter Kasten für bessere Lesbarkeit */
        padding: 15px !important;
        border-radius: 12px !important;
        margin-bottom: 15px !important;
        gap: 5px !important;
    }
    .security-list i {
        margin: 0 !important;
        font-size: 1.5rem !important;
        color: #0071e3 !important;
        margin-bottom: 10px !important;
    }
}