/* ========================================
   SIE KANN KI - STYLESHEET
   ======================================== */

/* ========================================
   FONT FACE DEFINITIONS
   ======================================== */
@font-face {
  font-family: 'SommetRegular';
  src: url('Schriften/SommetRegular/font.woff2') format('woff2'),
       url('Schriften/SommetRegular/font.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SommetBold';
  src: url('Schriften/SommetBold/font.woff2') format('woff2'),
       url('Schriften/SommetBold/font.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SommetSlabBlack';
  src: url('Schriften/SommetSlabBlack/font.woff2') format('woff2'),
       url('Schriften/SommetSlabBlack/font.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --bg: #f5f5f5; /* hellgrau */
  --card: #f8f9fa;
  --muted: #666666;
  --text: #333333;
  --brand: #FF7F50; /* coral orange */
  --brand-2: #FF7F50; /* coral orange */
  --accent: #00AAAA; /* teal für headlines */
  --radius: 0px;
  --shadow: none;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

/* Verhindere horizontales Scrollen für alle Elemente */
* {
  max-width: 100%;
}

/* Ausnahme für Bilder in Cards */
.card img {
  max-width: none !important;
}

html { 
  margin: 0; 
  padding: 0; 
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body { 
  margin: 0; 
  padding: 0; 
  background: var(--bg); 
  color: var(--text); 
  font-family: SommetRegular, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  
  /* Verhindere horizontales Scrollen */
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

a { 
  color: var(--accent); 
  text-decoration: none; 
}

a:hover { 
  text-decoration: underline; 
}

.wrap { 
  width: min(1100px, 92vw); 
  margin: 0 auto; 
}

/* ========================================
   NAVIGATION
   ======================================== */
nav { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 50; 
  background: var(--bg); 
  backdrop-filter: blur(8px); 
}

.nav-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 0 4vw; 
  height: 100px; 
}

.logo { 
  position: absolute; 
  left: 4vw; 
  top: 50%; 
  transform: translateY(-50%);
  z-index: 10;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-right: 10px;
}

.logo-text {
  font-family: SommetBold;
  font-weight: bold;
  letter-spacing: .2px;
  color: var(--text);
  font-size: 24px;
  white-space: nowrap;
  display: block;
}

.logo-highlight {
  color: var(--brand);
}

.nav-links { 
  display: flex; 
  gap: 0; 
  position: absolute; 
  left: 50%; 
  top: 0; 
  transform: translateX(-50%); 
  background: white; 
  box-shadow: none; 
  padding: 8px; 
  height: 100px; 
  align-items: center; 
}

.nav-links a { 
  color: var(--text); 
  opacity: .9; 
  font-size: 20px; 
  font-weight: 600; 
  padding: 12px 20px; 
  transition: background 0.2s ease; 
}

.nav-links a:hover { 
  background: #f8f9fa; 
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */
.burger-menu { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; 
  cursor: pointer; 
  position: absolute; 
  right: 4vw; 
  top: 50%; 
  transform: translateY(-50%);
  
  /* iOS-spezifische Fixes */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 44px;
  min-width: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  z-index: 1001;
}

.burger-line { 
  width: 25px; 
  height: 3px; 
  background: var(--text); 
  border-radius: 2px; 
  transition: all 0.3s ease; 
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  padding: 20px;
  z-index: 1000;
  
  /* iOS-spezifische Fixes */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #00AAAA;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.ghost { 
  height: 100px; 
} /* spacer for fixed nav */

/* ========================================
   WEBINAR OVERLAY
   ======================================== */
.webinar-overlay {
  position: absolute;
  top: 320px;
  right: 230px;
  z-index: 10;
  background: #FFD700;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webinar-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.webinar-link {
  text-decoration: none;
  color: #333;
}

.webinar-text {
  text-align: center;
}

.webinar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: #333;
}

.webinar-subtitle {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #333;
}

.webinar-date {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

/* Mobile Webinar Overlay */
@media (max-width: 768px) {
  .webinar-overlay {
    top: 600px;
    right: 30px;
    padding: 12px 16px;
  }
  
  .webinar-title {
    font-size: 10px;
  }
  
  .webinar-subtitle {
    font-size: 14px;
  }
  
  .webinar-date {
    font-size: 12px;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
header.hero { 
  position: relative; 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero video,
.hero .video-fallback {
  position: absolute; 
  top: 280px; 
  left: 200px; 
  right: 200px;
  width: calc(100% - 400px); 
  height: calc(100% - 280px); 
  object-fit: cover; 
  z-index: 1;
  margin: 0;
  padding: 0;
}

.hero::after {
  content: ""; 
  position: absolute; 
  top: 280px; 
  left: 200px; 
  right: 200px;
  width: calc(100% - 400px); 
  height: calc(100% - 280px); 
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.7) 100%);
  z-index: 2;
  margin: 0;
  padding: 0;
}

.hero-content { 
  position: absolute; 
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3; 
  text-align: center; 
  max-width: calc(100% - 400px); 
  padding: 0 4vw;
  width: calc(100% - 400px);
}

.hero-social-left { 
  position: absolute;
  left: -120px;
  top: calc(70% + 500px);
  transform: translateY(-50%);
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: flex-start;
  gap: 10px; 
}

.social-icons-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 5px;
}

.hero-main {
  text-align: center;
  flex: 1;
}

.social-icon { 
  width: 32px; 
  height: 32px; 
  filter: none; 
}

.contact-line { 
  width: 2px;
  height: 80px;
  background-color: black;
  margin: 0 auto;
}

.contact-text { 
  color: black; 
  font-size: 12px; 
  font-weight: bold; 
  letter-spacing: 3px; 
  writing-mode: vertical-rl; 
  text-orientation: mixed; 
  transform: rotate(180deg);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.eyebrow { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  padding: 0; 
  border: none; 
  background: none; 
  font-size: 16px; 
  margin-bottom: 50px; 
  color: #000000; 
  text-transform: uppercase; 
  font-weight: 600; 
}

.dash-line { 
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #000000;
  margin: 0 8px;
  vertical-align: middle;
}

.eyebrow b { 
  color: var(--brand-2); 
  font-weight: 700; 
}

h1 { 
  font-family: SommetSlabBlack; 
  font-size: clamp(60px, 8vw, 100px); 
  line-height: 1.05; 
  margin: 0 0 20px; 
  color: #333333; 
  text-transform: uppercase; 
  white-space: nowrap; 
  letter-spacing: 5px; 
}

.mission { 
  font-family: SommetBold; 
  font-size: clamp(28px, 4vw, 40px); 
  line-height: 1.3; 
  margin: 0 0 20px; 
  color: var(--text); 
  font-weight: bold; 
}

.sub { 
  font-size: clamp(16px, 2.2vw, 22px); 
  color: var(--text); 
  opacity: .8; 
  max-width: 850px; 
  margin: 0; 
  text-align: left; 
}

.section-sub { 
  font-size: clamp(16px, 2.2vw, 22px); 
  line-height: 1.3em; 
  color: var(--muted); 
  margin: 0 0 32px; 
}

/* ========================================
   BUTTONS & CTAs
   ======================================== */
.cta-row { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  margin-top: 26px; 
  justify-content: center; 
  
  /* iOS-spezifische Fixes */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.btn {
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  padding: 14px 18px; 
  border-radius: 0px; 
  background: #00AAAA;
  color: white; 
  font-weight: 700; 
  border: 0; 
  box-shadow: none; 
  transition: transform .08s ease, filter .2s ease;
  
  /* iOS-spezifische Fixes */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px; /* iOS Touch-Target-Mindestgröße */
  min-width: 44px;
  position: relative;
  z-index: 1;
}

.btn:hover { 
  transform: translateY(-1px); 
  filter: brightness(1.05); 
  text-decoration: none; 
}

.btn.secondary { 
  background: #f8f9fa; 
  color: var(--text); 
  border: none; 
  font-weight: 600; 
  
  /* iOS-spezifische Fixes */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn-large {
  font-size: 20px;
  padding: 20px 40px;
  font-weight: bold;
  background: #FF7F6B;
  color: white;
  
  /* iOS-spezifische Fixes */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 44px;
  min-width: 44px;
}

.btn-large:hover {
  background: #FF6B54;
}

.badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  padding: 6px 10px; 
  background: #f8f9fa; 
  border: none; 
  border-radius: 0px; 
  font-size: 12px; 
  color: var(--text); 
}

/* ========================================
   SECTIONS
   ======================================== */
section { 
  padding: 80px 0; 
}

.section-title { 
  font-family: SommetBold; 
  font-size: clamp(48px, 6vw, 80px); 
  margin: 0 0 40px; 
  color: #666666; 
}

.rotated-text { 
  display: inline-block; 
  transform: rotate(-5deg); 
  background: #DAA520; 
  color: white; 
  padding: 13px 10px 4px 10px; 
  border-radius: 0px; 
  margin: 0 6px;
  margin-top: 5px;
  text-align: center;
  font-size: 0.6em;
  font-weight: bold;
  position: relative;
  top: -18px;
}

.rotated-text-small { 
  display: inline-block; 
  transform: rotate(-5deg); 
  background: #DAA520; 
  color: white; 
  padding: 2px 4px; 
  border-radius: 0px; 
  margin: 0 2px;
  text-align: center;
  font-size: 0.8em;
  font-weight: bold;
  position: relative;
  top: -2px;
}

/* ========================================
   GRID LAYOUTS
   ======================================== */
.grid { 
  display: grid; 
  gap: 18px; 
}

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

.cols-2 { 
  grid-template-columns: repeat(2, minmax(0, 1fr)); 
}

.card { 
  background: #00AAAA; 
  border: none; 
  border-radius: 0px; 
  padding: 20px; 
  box-shadow: none; 
}

.card h3 { 
  margin: 0 0 6px; 
  font-size: 26px; 
  font-family: SommetBold; 
  color: white; 
}

/* ========================================
   VALUES GRID
   ======================================== */
.values-grid { 
  display: flex; 
  gap: 24px; 
  margin-top: 32px; 
  overflow-x: auto; 
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: #527B7F #f0f0f0;
  scroll-behavior: smooth;
}

.values-grid::-webkit-scrollbar {
  height: 8px;
}

.values-grid::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.values-grid::-webkit-scrollbar-thumb {
  background: #527B7F;
  border-radius: 4px;
}

.value-card { 
  background: transparent; 
  border: none; 
  border-radius: 0px; 
  padding: 24px; 
  box-shadow: none; 
  position: relative; 
  border-top: 4px solid #527B7F; 
  min-width: 300px;
  flex-shrink: 0;
  width: calc(33.333% - 16px);
}

.value-number { 
  display: none; 
}

.value-card h3 { 
  font-family: SommetBold; 
  font-size: 32px; 
  color: #666666; 
  margin: 0 0 20px; 
  line-height: 1.2;
}

.value-card p { 
  color: var(--muted); 
  line-height: 1.5; 
  margin: 0; 
  font-size: 18px;
}

/* ========================================
   VALUES NAVIGATION
   ======================================== */
.values-navigation {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin: 24px 0;
}

.nav-arrow {
  background: #527B7F;
  border: none;
  border-radius: 0px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  
  /* iOS-spezifische Fixes */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 44px;
  min-width: 44px;
}

.nav-arrow:hover {
  background: #527B7F;
  transform: scale(1.1);
}

.nav-arrow:active {
  transform: scale(0.95);
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   LEADERSHIP STYLES
   ======================================== */
.leadership-name { 
  font-family: SommetSlabBlack; 
  font-size: 28px; 
  color: var(--accent); 
  margin: 0 0 8px; 
}

.leadership-title { 
  font-family: SommetBold; 
  font-size: 16px; 
  color: var(--brand); 
  margin: 0 0 20px; 
}

.leadership-text { 
  color: var(--text); 
  line-height: 1.6; 
  margin: 0 0 16px; 
}

.muted { 
  color: white; 
  font-size: 18px; 
  line-height: 1.3em; 
}

/* ========================================
   FEATURE IMAGES
   ======================================== */
.feature-image {
  width: calc(100% + 40px) !important;
  height: 200px !important;
  object-fit: cover !important;
  margin: -20px -20px 16px -20px !important;
  border-radius: 0px !important;
  max-width: none !important;
  display: block !important;
}

/* ========================================
   LISTS WITH CHECKS
   ======================================== */
.checklist { 
  display: grid; 
  gap: 10px; 
  margin: 0; 
  padding: 0; 
  list-style: none; 
}

.checklist li { 
  display: flex; 
  gap: 10px; 
  align-items: flex-start; 
}

.check { 
  width: 22px; 
  height: 22px; 
  border-radius: 0px; 
  background: linear-gradient(45deg, var(--brand), var(--brand-2)); 
  display: grid; 
  place-items: center; 
  font-size: 14px; 
  box-shadow: none; 
}

/* ========================================
   COMMUNITY VIDEO LAYOUT
   ======================================== */
.section-header-with-video {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}

.section-text-content {
  flex: 1;
  max-width: 50%;
}

.community-video {
  width: 650px;
  height: 433px;
  object-fit: cover;
  border-radius: 0px;
  flex-shrink: 0;
  
  /* Verhindere Vollbildmodus auf mobilen Geräten */
  -webkit-playsinline: true;
  playsinline: true;
  
  /* Poster-Bild Optimierungen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ========================================
   FOUNDER VIDEO
   ======================================== */
.founder-video-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.founder-video {
  width: 450px;
  height: 800px;
  object-fit: cover;
  border-radius: 0px;
}

.video-caption {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  text-align: left;
  max-width: 450px;
  line-height: 1.4;
}

.caption-line {
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #666;
  margin-right: 8px;
  vertical-align: middle;
}

/* ========================================
   COMMUNITY CTA
   ======================================== */
.community-cta {
  text-align: center;
  margin-top: 60px;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-container {
  width: 100%;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
  
  /* iOS-spezifische Fixes */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 44px;
}

.faq-question:hover {
  color: #FF7F6B;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* FAQ CSS - DETAILS/SUMMARY LÖSUNG */
details.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

summary.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  outline: none;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::marker {
  display: none;
}

.faq-answer {
  padding: 0 0 20px 0;
  margin-top: 10px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 18px;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  user-select: none;
}

/* Details geöffnet */
details[open] .faq-icon {
  transform: rotate(45deg);
}

/* ========================================
   FOOTER
   ======================================== */
footer { 
  padding: 48px 0; 
  border-top: 1px solid #e0e0e0; 
  color: var(--muted); 
}

.small { 
  font-size: 13px; 
}

/* ========================================
   ANCHORS SPACING
   ======================================== */
.anchor { 
  scroll-margin-top: 80px; 
}

/* ========================================
   MOBILE STYLES
   ======================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
  .value-card {
    min-width: 280px;
    width: 280px;
  }
}

/* Mobile Styles */
@media (max-width: 900px) { 
  .cols-3 { 
    grid-template-columns: 1fr 1fr; 
  }
  
  /* Mobile Viewport Fixes */
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  .wrap {
    max-width: 100vw;
    padding: 0 4vw;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links { 
    display: none; 
  }
  
  .mobile-menu.show { 
    display: flex !important; 
    z-index: 1000 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Zusätzliche Sicherheit für mobile Menü */
  .burger-menu {
    z-index: 1001 !important;
  }
  
  /* Mobile Logo Anpassungen */
  .logo-image {
    height: 50px;
    max-width: 150px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  /* Mobile Fließtext größer machen */
  .section-sub,
  .muted,
  .sub {
    font-size: 20px !important;
    line-height: 1.7 !important;
  }
  
  /* Founder Video auf Mobile ausblenden */
  .founder-video-container {
    display: none !important;
  }
  
  /* Mobile Headlines - alle gleich groß wie "Frauen AB 40" */
  .section-title {
    font-size: clamp(56px, 8vw, 90px) !important;
    line-height: 1.2 !important;
    margin: 0 0 30px !important;
  }
  
  /* Mobile einheitliche Abstände */
  .section-sub {
    margin: 0 0 30px !important;
  }
  
  .grid {
    margin: 0 0 30px !important;
  }
  
  .section-header-with-video {
    gap: 30px !important;
    margin-bottom: 30px !important;
  }
  
  /* Mobile einheitliche Sektion-Abstände */
  section {
    padding: 50px 0 !important;
  }
  
  /* Erster Abschnitt - mehr Abstand */
  #why-women {
    padding: 70px 0 !important;
  }
  
  /* Mobile Viewport Fixes */
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  .wrap {
    max-width: 100vw;
    padding: 0 calc(4vw - 5px);
  }
  
  /* Fix für Elemente die über die Breite hinausragen */
  .hero video,
  .hero .video-fallback,
  .hero::after {
    max-width: 100vw;
  }
  
  .values-grid {
    max-width: 100vw;
    overflow-x: auto;
  }
  
  .section-header-with-video {
    max-width: 100vw;
  }
  
  /* Hero Video Anpassungen */
  .hero video,
  .hero .video-fallback {
    top: 200px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 200px);
  }
  
  .hero::after {
    top: 200px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 200px);
  }
  
  .hero-content {
    top: 40px;
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
    padding: 0 15px;
  }
  
  .hero-social-left {
    display: none; /* Social Icons auf mobil ausblenden */
  }
  
  /* Values Grid */
  .value-card {
    min-width: 260px;
    width: 260px;
  }
  
  /* Mobile Grid Layout - Horizontal Scroll */
  .grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) transparent;
  }
  
  .grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .grid::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .grid::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 3px;
  }
  
  .grid::-webkit-scrollbar-thumb:hover {
    background: var(--brand-dark);
  }
  
  .grid .card {
    flex: 0 0 320px;
    min-width: 320px;
  }
  
  /* Community Video Layout */
  .section-header-with-video {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  /* Mobile Video Container Optimierung */
  .section-header-with-video .community-video {
    order: 2; /* Video nach dem Text anzeigen */
    margin-top: 20px;
  }
  
  .section-text-content {
    max-width: 100%;
  }
  
  .community-video {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0px;
    
    /* Mobile Poster-Optimierungen */
    background-size: cover;
    background-position: center;
  }
  
  /* Mission Text für mittlere mobile Bildschirme - kleiner als Sektion-Headlines */
  .mission {
    font-size: clamp(36px, 5vw, 60px) !important;
    line-height: 1.2 !important;
  }
}

/* Small Mobile Styles */
@media (max-width: 640px) { 
  /* Grid bleibt horizontal scrollbar */
  .cols-3, .cols-2 { 
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
  }
  
  .grid .card {
    flex: 0 0 300px;
    min-width: 300px;
  }
  
  /* Kleine Mobile Viewport Fixes */
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  .wrap {
    max-width: 100vw;
    padding: 0 calc(4vw - 5px);
  }
  
  /* Alle Container auf Viewport begrenzen */
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .hero,
  .hero-content,
  .hero video,
  .hero .video-fallback,
  .hero::after {
    max-width: 100vw;
  }
  
  /* Kleine Mobile Logo Anpassungen */
  .logo-image {
    height: 45px;
    max-width: 120px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  /* Kleine Mobile Fließtext */
  .section-sub,
  .muted,
  .sub {
    font-size: 18px !important;
    line-height: 1.6 !important;
  }
  
  /* Kleine Mobile Headlines - alle gleich groß wie "Frauen AB 40" */
  .section-title {
    font-size: clamp(48px, 9vw, 80px) !important;
    line-height: 1.1 !important;
    margin: 0 0 25px !important;
  }
  
  /* Kleine Mobile einheitliche Abstände */
  .section-sub {
    margin: 0 0 25px !important;
  }
  
  .grid {
    margin: 0 0 25px !important;
  }
  
  .section-header-with-video {
    gap: 25px !important;
    margin-bottom: 25px !important;
  }
  
  /* Kleine Mobile einheitliche Sektion-Abstände */
  section {
    padding: 40px 0 !important;
  }
  
  /* Erster Abschnitt - mehr Abstand (kleine Mobile) */
  #why-women {
    padding: 60px 0 !important;
  }
  
  /* Kleine Mobile Video Optimierungen */
  .community-video {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  /* Mobile Hero Video für sehr kleine Bildschirme */
  .hero video,
  .hero .video-fallback {
    top: 180px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 180px);
  }
  
  .hero::after {
    top: 180px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 180px);
  }
  
  .hero-content {
    top: 30px;
    max-width: calc(100% - 20px);
    width: calc(100% - 20px);
    padding: 0 10px;
  }
  
  h1 {
    font-size: clamp(40px, 10vw, 60px);
    letter-spacing: 2px;
  }
  
  /* Mission Text für sehr kleine Bildschirme - kleiner als Sektion-Headlines */
  .mission {
    font-size: clamp(32px, 6vw, 55px) !important;
    line-height: 1.1 !important;
  }
  
  .eyebrow {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .dash-line {
    width: 40px;
    height: 2px;
    background-color: #000000;
    margin: 4px 0;
  }
}

/* ========================================
   iOS-SPEZIFISCHE FIXES
   ======================================== */

/* iOS Safari-spezifische Fixes */
@supports (-webkit-touch-callout: none) {
  .btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  /* Sicherstellen, dass Buttons auf iOS sichtbar sind */
  .btn,
  .btn-secondary,
  .btn-large,
  .faq-question,
  .nav-arrow {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
  
  .card {
    border: 1px solid var(--text);
  }
}

/* Print styles */
@media print {
  .hero video,
  .hero .video-fallback,
  .community-video,
  .founder-video {
    display: none;
  }
  
  .hero::after {
    display: none;
  }
  
  nav {
    position: static;
  }
  
  .ghost {
    display: none;
  }
}
