/* 
  ══════════════════════════════════════════════════════════════════════════════
  PFLEGE-HAKKIM ULTRA FUNNEL
  ══════════════════════════════════════════════════════════════════════════════
  
  DESIGNED FOR: Ayşe, 50, pflegt ihre Eltern, extrem skeptisch
  
  PRINCIPLES:
  - Maximum readability (her eyes are tired from caregiving)
  - Trust signals everywhere (she's been burned before)
  - Cultural resonance (Turkish is not translation, it's understanding)
  - Zero confusion (every element earns its place)
  - Mobile-first (she uses her phone while caring for parents)
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ══════════════════════════════════════════════════════════════════════════════ */
/* DESIGN TOKENS                                                                  */
/* ══════════════════════════════════════════════════════════════════════════════ */
:root {
  /* Trust Colors */
  --green: #00A651;
  --green-dark: #008C45;
  --green-light: #E8F5ED;
  
  /* Warning/Urgency */
  --red: #DC2626;
  --red-light: #FEF2F2;
  
  /* Info */
  --blue: #2563EB;
  --blue-light: #EFF6FF;
  
  /* Cultural */
  --turkish-red: #E30A17;
  --turkish-bg: #FEF2F2;
  
  /* Neutrals */
  --black: #111827;
  --gray-900: #1F2937;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  
  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* RESET                                                                          */
/* ══════════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
    scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--gray-100);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* LAYOUT                                                                         */
/* ══════════════════════════════════════════════════════════════════════════════ */
.funnel {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0,0,0,0.08);
}

.view {
  display: none;
}

.view.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

/* ══════════════════════════════════════════════════════════════════════════════ */
/* TRUST HEADER                                                                   */
/* ══════════════════════════════════════════════════════════════════════════════ */
.trust-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: var(--space-md);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  height: 40px;
}

.trust-seal {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--blue-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
}

.seal-icon {
  font-size: 18px;
}

.seal-text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* HERO                                                                           */
/* ══════════════════════════════════════════════════════════════════════════════ */
.hero {
  padding: var(--space-lg) var(--space-md);
}

.legal-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.legal-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.legal-text strong {
  display: block;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 2px;
}

.legal-text span {
  font-size: 12px;
  color: var(--gray-700);
}

.hero-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.5px;
}

.money-highlight {
  color: var(--green);
  position: relative;
}

.money-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--green-light);
  z-index: -1;
}

/* Fear Killer - THE MOST IMPORTANT ELEMENT */
.fear-killer {
  display: flex;
  gap: var(--space-md);
  background: linear-gradient(135deg, var(--green-light) 0%, #d4edda 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.fear-killer-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.fear-killer-content strong {
  display: block;
  color: var(--green-dark);
  font-size: 16px;
  margin-bottom: var(--space-xs);
}

.fear-killer-content p {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.fear-killer-content u {
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
}

.fear-killer-tr {
  display: block;
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 600;
  background: rgba(255,255,255,0.7);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  margin-top: var(--space-sm);
}

/* Hero Image */
.hero-image-box {
  position: relative;
  margin-bottom: var(--space-md);
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.image-caption {
  text-align: center;
  margin-top: var(--space-md);
}

.caption-de {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.caption-tr {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* VALUE SECTION                                                                  */
/* ══════════════════════════════════════════════════════════════════════════════ */
.value-section {
  padding: var(--space-lg) var(--space-md);
  background: var(--gray-50);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.value-card {
  background: var(--white);
  padding: var(--space-lg) var(--space-sm);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--gray-200);
}

.value-card.primary {
  background: var(--green);
  border-color: var(--green-dark);
}

.value-card.primary .value-number,
.value-card.primary .value-label {
  color: var(--white);
}

.value-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.value-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 600;
  line-height: 1.3;
}

.value-label small {
  display: block;
  font-weight: 400;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* HONESTY SECTION - Direkte Antworten auf kritische Fragen                     */
/* ══════════════════════════════════════════════════════════════════════════════ */
.honesty-section {
  padding: var(--space-2xl) var(--space-md);
  background: var(--white);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
}

.honesty-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.honesty-header h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.honesty-sub {
  font-size: 16px;
  color: var(--gray-600);
  font-style: italic;
  font-weight: 500;
}

.honesty-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.honesty-card {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.honesty-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.1);
}

/* Header Button - Klickbarer Bereich */
.honesty-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-xl);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: background-color 0.2s ease;
  position: relative;
}

.honesty-header-btn:hover {
  background-color: rgba(0, 166, 81, 0.05);
}

.honesty-header-btn:focus {
  outline: 3px solid var(--green);
  outline-offset: -3px;
  background-color: rgba(0, 166, 81, 0.08);
}

.honesty-header-btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  background-color: rgba(0, 166, 81, 0.1);
}

.honesty-header-btn:active {
  background-color: rgba(0, 166, 81, 0.1);
}

.honesty-header-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex: 1;
}

.honesty-question-wrapper {
  flex: 1;
}

/* Toggle Icon */
.honesty-toggle-icon {
  font-size: 20px;
  color: var(--green);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 50%;
  font-weight: 700;
}

.honesty-card[data-expanded="true"] .honesty-toggle-icon {
  transform: rotate(180deg);
}

.honesty-card[data-expanded="true"] .honesty-header-btn {
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: var(--space-lg);
}

/* Team Card - Spezielle Styling für Vertrauensaufbau */
.team-card {
  background: var(--white);
  border: 3px solid var(--green);
  box-shadow: 0 4px 16px rgba(0, 166, 81, 0.15);
}

.team-image-wrapper {
  margin: 0 var(--space-xl) var(--space-lg);
  text-align: center;
  transition: opacity 0.3s ease;
}

.team-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--green-light);
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}

.team-image:hover {
  transform: scale(1.02);
}

.team-image-caption {
  margin-top: var(--space-md);
  text-align: center;
}

.team-image-caption .caption-de {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.team-image-caption .caption-tr {
  display: block;
  font-size: 14px;
  color: var(--gray-600);
  font-style: italic;
}

.honesty-icon {
  font-size: 36px;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 2px;
}

.honesty-question {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin: 0;
}

.honesty-question-tr {
  font-size: 15px;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 4px;
  display: block;
  font-weight: 500;
  margin-bottom: 0;
}

.honesty-answer {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.8;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 var(--space-xl);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease 0.1s,
              padding 0.4s ease;
  will-change: max-height, opacity;
}

.honesty-card[data-expanded="true"] .honesty-answer {
  max-height: 3000px;
  opacity: 1;
  padding: var(--space-xl);
  padding-top: var(--space-lg);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              padding 0.4s ease;
}

.honesty-answer p {
  margin-bottom: var(--space-md);
}

.honesty-answer strong {
  color: var(--gray-900);
  font-weight: 800;
  font-size: 17px;
  display: inline-block;
  margin-bottom: 4px;
}

.honesty-answer u {
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
}

.honesty-tr {
  display: block;
  background: var(--turkish-bg);
  border-left: 4px solid var(--turkish-red);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: var(--space-lg);
  font-size: 15px;
  color: #7F1D1D;
  line-height: 1.8;
  font-weight: 500;
}

.honesty-tr strong {
  color: #991B1B;
}

.honesty-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}

.honesty-list li {
  padding: var(--space-sm) 0;
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.8;
  margin-left: var(--space-md);
  position: relative;
}

.honesty-list li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.honesty-list li strong {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 16px;
}

.honesty-phone {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.honesty-phone:hover {
  text-decoration: underline;
}

.honesty-trust-badge {
  display: flex;
  gap: var(--space-md);
  background: linear-gradient(135deg, var(--green-light) 0%, #d4edda 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.trust-badge-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.trust-badge-content {
  flex: 1;
}

.trust-badge-content strong {
  display: block;
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: var(--space-sm);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.trust-badge-content p {
  font-size: 17px;
  color: var(--gray-800);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  font-weight: 500;
}

.trust-badge-content small {
  display: block;
  font-size: 15px;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.6;
}

/* Mobile Optimization - Optimiert für 55+ Zielgruppe */
@media (max-width: 640px) {
  .honesty-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .honesty-header h2 {
    font-size: 22px;
  }
  
  .honesty-card {
    border-radius: var(--radius-md);
  }
  
  .honesty-header-btn {
    padding: var(--space-lg);
    flex-wrap: wrap;
  }
  
  .honesty-header-content {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .honesty-icon {
    font-size: 32px;
  }
  
  .honesty-question {
    font-size: 19px;
  }
  
  .honesty-question-tr {
    font-size: 15px;
  }
  
  .honesty-toggle-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .honesty-card[data-expanded="true"] .honesty-answer {
    padding: var(--space-lg);
    padding-top: var(--space-md);
  }
  
  .team-image-wrapper {
    margin: 0 var(--space-lg) var(--space-md);
  }
  
  .honesty-answer {
    font-size: 17px;
    line-height: 1.9;
  }
  
  .honesty-answer strong {
    font-size: 18px;
  }
  
  .honesty-list li {
    font-size: 17px;
    line-height: 1.9;
    padding: var(--space-md) 0;
  }
  
  .honesty-list li strong {
    font-size: 17px;
  }
  
  .honesty-tr {
    font-size: 16px;
    padding: var(--space-lg);
    line-height: 1.9;
  }
  
  .team-image {
    max-width: 100%;
    border-width: 2px;
  }
  
  .team-image-caption .caption-de {
    font-size: 17px;
  }
  
  .team-image-caption .caption-tr {
    font-size: 15px;
  }
  
  .honesty-trust-badge {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }
  
  .trust-badge-icon {
    font-size: 48px;
  }
  
  .trust-badge-content strong {
    font-size: 19px;
  }
  
  .trust-badge-content p {
    font-size: 17px;
    line-height: 1.8;
  }
  
  .trust-badge-content small {
    font-size: 15px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* SECTION HEADERS                                                                */
/* ══════════════════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.section-sub {
  font-size: 14px;
  color: var(--gray-500);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* EXPLANATION SECTION                                                            */
/* ══════════════════════════════════════════════════════════════════════════════ */
.explanation-section {
  padding: var(--space-2xl) var(--space-md);
}

.explanation-card {
  display: flex;
  gap: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--green);
}

.explanation-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.explanation-content h3 {
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.explanation-content p {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.explanation-tr {
  background: var(--turkish-bg);
  border-left: 3px solid var(--turkish-red);
  padding: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: #7F1D1D;
  margin-top: var(--space-md);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* CTA BUTTONS                                                                    */
/* ══════════════════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 166, 81, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary.large {
  padding: var(--space-xl);
  font-size: 20px;
}

.btn-arrow {
  font-size: 20px;
}

.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  font-size: 12px;
  color: var(--gray-500);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* PRODUCTS SECTION                                                               */
/* ══════════════════════════════════════════════════════════════════════════════ */
.products-section {
  padding: var(--space-2xl) var(--space-md);
  background: var(--gray-50);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-item {
  background: var(--white);
  padding: var(--space-md) var(--space-sm);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--gray-200);
}

.product-item img {
  height: 50px;
  width: auto;
  margin: 0 auto var(--space-sm);
  object-fit: contain;
}

.product-name {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 2px;
}

.product-qty {
  font-size: 10px;
  color: var(--gray-500);
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.quality-icon {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.quality-text {
  font-size: 13px;
  line-height: 1.4;
}

.quality-text small {
  display: block;
  color: var(--gray-500);
  font-size: 11px;
  margin-top: 2px;
}

.more-products {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: var(--space-md);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* TESTIMONIALS                                                                   */
/* ══════════════════════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--space-2xl) var(--space-md);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  flex-shrink: 0;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-name {
  font-size: 16px;
  display: block;
}

.testimonial-info {
  font-size: 12px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 4px;
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-quote em {
  color: var(--gray-500);
}

.testimonial-tr {
  background: var(--turkish-bg);
  border-left: 3px solid var(--turkish-red);
  padding: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  color: #7F1D1D;
  font-style: italic;
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

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

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
}

.stat-label {
  font-size: 12px;
  color: var(--gray-500);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* FAQ SECTION                                                                    */
/* ══════════════════════════════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--space-2xl) var(--space-md);
  background: var(--gray-50);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  cursor: pointer;
  transition: background 0.2s;
}

    .faq-question:hover {
  background: var(--gray-50);
}

.faq-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.faq-text {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.faq-arrow {
  font-size: 12px;
  color: var(--gray-400);
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  padding-left: 52px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: var(--space-sm);
}

.faq-answer u {
  text-decoration-color: var(--green);
}

.faq-tr {
  background: var(--turkish-bg);
  border-left: 3px solid var(--turkish-red);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 12px;
  color: #7F1D1D;
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* HAKK SECTION (CULTURAL PRIDE)                                                  */
/* ══════════════════════════════════════════════════════════════════════════════ */
.hakk-section {
  display: flex;
  gap: var(--space-md);
  background: var(--turkish-bg);
  border-left: 5px solid var(--turkish-red);
  margin: var(--space-lg) var(--space-md);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.hakk-flag {
  font-size: 32px;
  flex-shrink: 0;
}

.hakk-title {
  font-size: 18px;
  color: var(--turkish-red);
  margin-bottom: var(--space-sm);
}

.hakk-text {
  font-size: 14px;
  color: #7F1D1D;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.hakk-text:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* KRANKENKASSEN LOGOS                                                            */
/* ══════════════════════════════════════════════════════════════════════════════ */
.kk-section {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.kk-title {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.kk-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0.6;
}

.kk-grid img {
  height: 24px;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* FINAL CTA                                                                      */
/* ══════════════════════════════════════════════════════════════════════════════ */
.final-cta-section {
  padding: var(--space-2xl) var(--space-md);
}

.final-cta-box {
  background: linear-gradient(135deg, var(--green-light) 0%, #d4edda 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
}

.final-cta-box h2 {
  font-size: 22px;
  margin-bottom: var(--space-sm);
}

.final-cta-box > p {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: var(--space-lg);
}

.final-cta-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: var(--space-md);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* FOOTER                                                                         */
/* ══════════════════════════════════════════════════════════════════════════════ */
.footer {
  padding: var(--space-2xl) var(--space-md);
  background: var(--gray-50);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-affiliate {
  font-size: 11px;
  color: var(--gray-400);
  max-width: 350px;
  margin: 0 auto var(--space-md);
  line-height: 1.5;
}

.footer-copy {
  font-size: 11px;
  color: var(--gray-400);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* QUIZ VIEW                                                                      */
/* ══════════════════════════════════════════════════════════════════════════════ */
.quiz-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.quiz-header {
  padding: var(--space-md);
  border-bottom: 1px solid var(--gray-100);
}

.quiz-progress {
  height: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  transition: width 0.4s ease;
}

.quiz-step {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quiz-body {
  flex: 1;
  padding: var(--space-xl) var(--space-md);
}

.quiz-question {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.quiz-question-tr {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s;
}

    .quiz-option:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.quiz-option:active {
  transform: scale(0.98);
}

.quiz-option-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.quiz-option-text {
  flex: 1;
}

.quiz-option-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.quiz-option-text span {
  font-size: 13px;
  color: var(--gray-500);
}

.quiz-footer {
  padding: var(--space-md);
  text-align: center;
}

.quiz-privacy {
  font-size: 12px;
  color: var(--gray-400);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* PROCESSING VIEW                                                                */
/* ══════════════════════════════════════════════════════════════════════════════ */
.processing-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  text-align: center;
}

.processing-spinner {
  width: 64px;
  height: 64px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--space-lg);
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.processing-title {
  font-size: 22px;
  margin-bottom: var(--space-sm);
}

.processing-sub {
  font-size: 14px;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.processing-steps {
  text-align: left;
  width: 100%;
  max-width: 280px;
}

.p-step {
  padding: var(--space-sm) 0;
  font-size: 14px;
  color: var(--gray-400);
}

.p-step.done {
  color: var(--green);
}

.p-step.active {
  color: var(--black);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* SUCCESS VIEW - Pre-Bridge: Mental Preparation for Ayşe                      */
/* ══════════════════════════════════════════════════════════════════════════════ */
.success-container {
  padding: var(--space-lg) var(--space-md);
  padding-bottom: 120px;
  max-width: 600px;
  margin: 0 auto;
}

/* Celebration Header */
.success-celebration {
  text-align: center;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease-out;
}

.celebration-icon {
  font-size: 80px;
  margin-bottom: var(--space-md);
  animation: bounce 1s ease-in-out infinite;
}

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

.celebration-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.celebration-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--gray-900);
}

.celebration-money {
  color: var(--green);
  font-size: 36px;
  display: block;
  margin: var(--space-sm) 0;
}

.celebration-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.5;
}

.celebration-sub strong {
  color: var(--green-dark);
  font-weight: 800;
}

.celebration-sub small {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 4px;
}

/* Fear Killer - Critical for Ayşe */
.success-fear-killer {
  display: flex;
  gap: var(--space-md);
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.fear-killer-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.fear-killer-content strong {
  display: block;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: var(--space-sm);
  font-weight: 800;
}

.fear-killer-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 4px;
}

.fear-killer-content small {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  font-style: italic;
}

/* Next Box - Expectation Setting */
.success-next-box {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.next-box-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--gray-900);
}

.next-box-intro {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.next-box-intro strong {
  color: #FF6B35;
  font-weight: 800;
}

.next-steps-simple {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: 1px dashed var(--gray-300);
  border-bottom: 1px dashed var(--gray-300);
}

.simple-step {
  flex: 1;
  text-align: center;
}

.simple-step-number {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto var(--space-sm);
}

.simple-step-text {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.3;
}

.next-box-note {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  text-align: center;
}

/* Trust Box */
.success-trust-box {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--gray-200);
}

.trust-box-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--gray-900);
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trust-point {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.trust-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-text strong {
  display: block;
  font-size: 16px;
  color: var(--gray-900);
  margin-bottom: 4px;
  font-weight: 800;
}

.trust-text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* CTA Box */
.success-cta-box {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 2px dashed var(--gray-200);
}

.btn-success-primary {
  width: 100%;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 166, 81, 0.3);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-success-primary:active {
  transform: scale(0.98);
}

.cta-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: var(--space-md);
  font-style: italic;
}

/* Mobile Optimization */
@media (max-width: 640px) {
  .success-container {
    padding: var(--space-md);
  }
  
  .celebration-icon {
    font-size: 64px;
  }
  
  .celebration-title {
    font-size: 24px;
  }
  
  .celebration-money {
    font-size: 32px;
  }
  
  .celebration-sub {
    font-size: 15px;
  }
  
  .success-fear-killer {
    flex-direction: column;
    text-align: center;
  }
  
  .fear-killer-content strong {
    font-size: 16px;
  }
  
  .next-steps-simple {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .simple-step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .simple-step-text {
    font-size: 14px;
  }
  
  .trust-points {
    gap: var(--space-md);
  }
  
  .btn-success-primary {
    font-size: 16px;
    padding: var(--space-lg);
  }
}

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

/* ══════════════════════════════════════════════════════════════════════════════ */
/* RESULT VIEW                                                                    */
/* ══════════════════════════════════════════════════════════════════════════════ */
.result-container {
  padding: var(--space-lg) var(--space-md);
  padding-bottom: 120px;
}

.result-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.result-icon {
  width: 80px;
  height: 80px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto var(--space-md);
  box-shadow: 0 10px 30px rgba(0, 166, 81, 0.3);
}

.result-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.result-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.result-money {
  color: var(--green);
}

.result-sub {
  font-size: 14px;
  color: var(--gray-500);
}

.result-reminder {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-xl);
}

.reminder-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.reminder-text {
  font-size: 13px;
  line-height: 1.4;
}

.reminder-text small {
  display: block;
  color: var(--gray-500);
  font-size: 12px;
  margin-top: 4px;
  font-style: italic;
}

/* Next Steps Card */
.next-steps-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.next-steps-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 16px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--gray-200);
}

.next-step {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.next-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}

.step-products {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
}

.step-products img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.step-products .more {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.card-preview {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
}

.card-image {
  max-width: 200px;
  margin: 0 auto var(--space-sm);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.card-hint {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: #FEF3C7;
  color: #92400E;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
}

.hint-text small {
  display: block;
  font-weight: 400;
  opacity: 0.8;
}

.step-note {
  background: var(--green-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--green-dark);
}

/* ═══════════════════════════════════════════════════════════════════════════════════ */
/* REDIRECT WARNING BOX                                                                */
/* ═══════════════════════════════════════════════════════════════════════════════════ */
.redirect-warning-box {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 2px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.redirect-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.redirect-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.redirect-title {
  line-height: 1.3;
}

.redirect-title strong {
  display: block;
  font-size: 16px;
  color: #92400E;
}

.redirect-title small {
  font-size: 12px;
  color: #B45309;
  font-style: italic;
}

.redirect-text {
  font-size: 14px;
  color: #78350F;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.redirect-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.redirect-trust span {
  background: rgba(255,255,255,0.7);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: #92400E;
}

/* ═══════════════════════════════════════════════════════════════════════════════════ */
/* PFLEGEHASE PREVIEW SECTION - Screenshot-Style Preview                               */
/* ═══════════════════════════════════════════════════════════════════════════════════ */
.pflegehase-preview-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
}

.preview-title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--gray-900);
}

.preview-icon {
  font-size: 28px;
  margin-right: var(--space-sm);
}

.preview-sub {
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
}

.preview-image-wrapper {
  position: relative;
  background: #F3F4F6;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Browser Frame Effect */
.preview-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, #E5E7EB 0%, #D1D5DB 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Browser Dots */
.preview-image-wrapper::after {
  content: '● ● ●';
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 4px;
  z-index: 2;
}

.preview-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.preview-overlay {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 3;
}

.overlay-badge {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.4);
  }
}

/* Mobile Optimization */
@media (max-width: 640px) {
  .pflegehase-preview-section {
    padding: var(--space-lg);
  }
  
  .preview-title {
    font-size: 18px;
  }
  
  .preview-image-wrapper {
    padding: var(--space-sm);
  }
  
  .preview-image-wrapper::before {
    height: 32px;
  }
  
  .preview-image-wrapper::after {
    top: 10px;
    left: 12px;
    font-size: 10px;
    letter-spacing: 3px;
  }
  
  .preview-image {
    margin-top: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════════ */
/* PFLEGEHASE GUIDE - THE 4-STEP BREAKDOWN                                             */
/* ═══════════════════════════════════════════════════════════════════════════════════ */
.pflegehase-guide {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--gray-200);
}

.guide-header {
  text-align: center;
  padding-bottom: var(--space-lg);
  border-bottom: 2px dashed var(--gray-200);
  margin-bottom: var(--space-lg);
}

.guide-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: var(--space-sm);
}

.guide-logo {
  font-size: 28px;
}

.guide-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

.guide-sub-tr {
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
  margin: 4px 0 0 0;
}

/* Individual Guide Steps */
.guide-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.guide-step:last-child {
  margin-bottom: 0;
}

.step-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.step-badge.success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.step-icon-big {
  font-size: 48px;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--gray-900);
  line-height: 1.3;
}

.step-desc {
  font-size: 15px;
  color: var(--gray-700);
  text-align: center;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Mobile: Extra large for Ayşe */
@media (max-width: 640px) {
  .step-title {
    font-size: 20px;
    margin-bottom: var(--space-md);
  }
  
  .step-desc {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .step-desc strong {
    font-size: 17px;
    color: var(--gray-900);
  }
}

.step-visual {
  margin: var(--space-md) 0;
}

.step-tip {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 12px;
  color: #1E40AF;
}

.step-tip.success {
  background: var(--green-light);
  border-left-color: var(--green);
  color: var(--green-dark);
}

/* Product Selection Mockup */
.product-selection-mockup {
  background: #F9FAFB;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.mockup-logo-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup-logo {
  font-weight: 800;
  font-size: 18px;
  color: #2563EB;
  line-height: 1.2;
}

.mockup-slogan {
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 400;
}

.mockup-budget-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.budget-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #FF6B35;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.budget-circle::before {
  content: '';
  position: absolute;
  top: -2px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #FF6B35;
  border-radius: 50%;
}

.budget-amount {
  font-size: 18px;
  font-weight: 800;
  color: #FF6B35;
  line-height: 1;
}

.mockup-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  padding: var(--space-md);
}

.mockup-products img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px;
  border: 1px solid var(--gray-100);
}

/* Data Entry Mockup */
.data-entry-mockup {
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Mobile: Larger padding for better readability */
@media (max-width: 640px) {
  .data-entry-mockup {
    padding: var(--space-xl);
  }
}

.form-field {
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed var(--gray-200);
}

.form-field:last-child {
  border-bottom: none;
}

.field-label {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 700;
}

.field-example {
  font-size: 16px;
  color: var(--gray-800);
  font-weight: 500;
}

/* Mobile: Larger text for Ayşe */
@media (max-width: 640px) {
  .field-label {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .field-example {
    font-size: 17px;
  }
  
  .step-title {
    font-size: 18px !important;
  }
  
  .step-desc {
    font-size: 16px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════════ */
/* CARD PREVIEW LARGE - Optimized for Ayşe (55, mobile, needs clarity)                */
/* ═══════════════════════════════════════════════════════════════════════════════════ */
.card-preview-large {
  background: #FEF3C7;
  border: 3px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.card-image-large {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.9);
  display: block;
}

/* Red Arrow Highlight for Insurance Number */
.card-highlight {
  position: absolute;
  top: 20%;
  right: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.highlight-arrow {
  font-size: 48px;
  color: #DC2626;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1;
  animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.highlight-label {
  background: #DC2626;
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.card-instruction {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 2px solid #F59E0B;
}

.instruction-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.instruction-text {
  flex: 1;
}

.instruction-text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #92400E;
  margin-bottom: 4px;
}

.instruction-text small {
  display: block;
  font-size: 14px;
  color: #B45309;
  font-style: italic;
}

.card-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.7);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid #F59E0B;
}

.note-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.note-text {
  font-size: 15px;
  line-height: 1.6;
  color: #78350F;
  flex: 1;
}

.note-text small {
  display: block;
  font-size: 13px;
  color: #92400E;
  font-style: italic;
  margin-top: 4px;
}

/* Mobile Optimization - EXTRA LARGE for Ayşe */
@media (max-width: 640px) {
  .card-preview-large {
    padding: var(--space-lg);
    margin-top: var(--space-lg);
  }
  
  .card-image-large {
    max-width: 100%;
    min-width: 280px;
  }
  
  .card-highlight {
    top: 18%;
    right: 12%;
  }
  
  .highlight-arrow {
    font-size: 40px;
  }
  
  .highlight-label {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .card-instruction {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }
  
  .instruction-icon {
    font-size: 36px;
  }
  
  .instruction-text strong {
    font-size: 16px;
  }
  
  .instruction-text small {
    font-size: 13px;
  }
  
  .card-note {
    flex-direction: column;
    text-align: center;
  }
  
  .note-text {
    font-size: 14px;
  }
  
  .note-text small {
    font-size: 12px;
  }
}

/* Extra Small Screens */
@media (max-width: 400px) {
  .card-image-large {
    min-width: 260px;
  }
  
  .highlight-arrow {
    font-size: 36px;
  }
  
  .instruction-text strong {
    font-size: 15px;
  }
}

/* Switcher Extra Info */
.switcher-extra-info {
  margin-top: var(--space-md);
}

.switcher-alert {
  display: flex;
  gap: var(--space-md);
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.alert-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.alert-content strong {
  display: block;
  color: #991B1B;
  margin-bottom: 4px;
}

.alert-content p {
  font-size: 13px;
  color: #7F1D1D;
  margin-bottom: 4px;
}

.alert-tr {
  font-size: 11px;
  color: #991B1B;
  font-style: italic;
}

/* Signature Mockup */
.signature-mockup {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.mockup-text {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}

.signature-box {
  background: #FAFAFA;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.signature-svg {
  width: 100%;
  height: 50px;
  opacity: 0.6;
}

.mockup-note {
  font-size: 10px;
  color: var(--gray-400);
}

/* Done List */
.done-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.done-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}

.done-list li:last-child {
  border-bottom: none;
}

/* Final Step Styling */
.final-step {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 2px solid var(--green);
}

/* ═══════════════════════════════════════════════════════════════════════════════════ */
/* TIMELINE SECTION                                                                    */
/* ═══════════════════════════════════════════════════════════════════════════════════ */
.timeline-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.timeline-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  color: var(--gray-900);
}

.timeline {
  position: relative;
  padding-left: 72px;
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-lg);
  min-height: 60px;
}

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

.timeline-marker {
  position: absolute;
  left: -64px;
  width: 48px;
  height: 48px;
  background: var(--gray-300);
  color: var(--gray-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  z-index: 2;
  border: 3px solid var(--gray-400);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.timeline-marker.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  width: 56px;
  height: 56px;
  left: -68px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.timeline-marker.success {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  width: 56px;
  height: 56px;
  left: -68px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.timeline-content {
  padding-bottom: var(--space-lg);
  padding-top: 4px;
}

.timeline-content strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--gray-900);
}

.timeline-content p {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

.timeline-content p u {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  font-weight: 700;
  color: var(--gray-700);
}

.timeline-tr {
  color: var(--gray-400);
  font-style: italic;
  display: block;
  margin-top: 4px;
}

.timeline-line {
  position: absolute;
  left: -40px;
  top: 56px;
  bottom: 0;
  width: 3px;
  background: var(--gray-300);
  z-index: 1;
}

.timeline-item:last-child .timeline-content {
  padding-bottom: 0;
}

/* Mobile Optimization for Timeline */
@media (max-width: 640px) {
  .timeline {
    padding-left: 64px;
  }
  
  .timeline-item {
    min-height: 50px;
    margin-bottom: var(--space-md);
    gap: var(--space-md);
  }
  
  .timeline-marker {
    width: 40px;
    height: 40px;
    left: -56px;
    font-size: 16px;
    border-width: 2px;
  }
  
  .timeline-marker.active,
  .timeline-marker.success {
    width: 48px;
    height: 48px;
    left: -60px;
    font-size: 20px;
  }
  
  .timeline-line {
    left: -36px;
    top: 48px;
    width: 2px;
  }
  
  .timeline-title {
    font-size: 17px;
  }
  
  .timeline-content {
    padding-top: 2px;
  }
  
  .timeline-content strong {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .timeline-content p {
    font-size: 15px;
  }
}

/* Video Section - Updated */
.video-section {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.video-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.video-intro {
  color: var(--gray-200);
  font-size: 16px;
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-weight: 500;
}

.video-wrapper video {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-note {
  color: var(--white);
  font-size: 15px;
  text-align: center;
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
}

/* Mobile Optimization for Video Section */
@media (max-width: 640px) {
  .video-header {
    font-size: 17px;
  }
  
  .video-intro {
    font-size: 15px;
    color: var(--gray-100);
  }
  
  .video-note {
    font-size: 14px;
    padding: var(--space-md);
  }
}

/* Checklist - Updated */
.checklist-section {
  background: var(--blue-light);
  border: 2px dashed var(--blue);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.checklist-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item input {
  width: 22px;
  height: 22px;
  accent-color: var(--green);
  flex-shrink: 0;
}

/* Final Button Section - Enhanced */
.final-button-section {
    text-align: center;
  margin-bottom: var(--space-xl);
}

.final-destination {
  display: flex;
    align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--gray-100);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.dest-arrow {
  font-size: 20px;
  color: var(--green);
}

.dest-text {
  font-size: 13px;
  color: var(--gray-600);
}

.dest-text strong {
  color: #FF6B35;
}

.btn-final {
  display: block;
  width: 100%;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 800;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0, 166, 81, 0.3);
  animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 166, 81, 0.3); }
  50% { transform: scale(1.02); box-shadow: 0 15px 40px rgba(0, 166, 81, 0.4); }
}

.final-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: var(--space-md);
}

.final-guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.guarantee {
    display: flex;
    align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
}

.guarantee span {
  color: var(--green);
  font-weight: 700;
}

/* Trust Final */
.trust-final {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
    font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.trust-final a {
  color: var(--green);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* DISQUALIFIED VIEW                                                              */
/* ══════════════════════════════════════════════════════════════════════════════ */
.dq-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  text-align: center;
}

.dq-icon {
  font-size: 64px;
  margin-bottom: var(--space-lg);
}

.dq-title {
  font-size: 22px;
  margin-bottom: var(--space-md);
}

.dq-reason {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

.dq-help {
  background: var(--blue-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-align: left;
  font-size: 14px;
}

.btn-secondary {
  padding: var(--space-md) var(--space-xl);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 14px;
    font-weight: 700;
  color: var(--gray-700);
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* NOTIFICATION                                                                   */
/* ══════════════════════════════════════════════════════════════════════════════ */
.notification {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 400px;
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
  gap: var(--space-md);
  z-index: 1000;
  transform: translateY(200%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid var(--green);
}

.notification.show {
  transform: translateY(0);
}

.notif-avatar {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.notif-content {
  font-size: 13px;
  line-height: 1.3;
}

.notif-content strong {
  display: block;
}

.notif-content span {
  color: var(--gray-500);
}

.notif-content small {
  display: block;
  color: var(--gray-400);
  font-size: 11px;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* MOBILE OPTIMIZATIONS                                                           */
/* ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-title {
    font-size: 24px;
  }
  
  .value-grid {
    gap: 4px;
  }
  
  .value-number {
    font-size: 24px;
  }
  
  .product-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-stats {
    gap: var(--space-lg);
  }
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* COMMITMENT FLOW - Maximale Aufwärmung vor Pflegehase                          */
/* ══════════════════════════════════════════════════════════════════════════════ */

/* === COMMITMENT GATE === */
.commitment-gate {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 3px solid #F59E0B;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.gate-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.gate-icon {
  font-size: 32px;
}

.gate-title {
  font-size: 20px;
  font-weight: 800;
  color: #92400E;
  margin: 0;
}

.gate-question {
  font-size: 22px;
  color: #78350F;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.gate-question strong {
  color: #92400E;
}

.gate-sub {
  font-size: 16px;
  color: #B45309;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.gate-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.gate-btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.gate-btn-yes {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 166, 81, 0.35);
}

.gate-btn-yes:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 166, 81, 0.45);
}

.gate-btn-no {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.gate-btn-no:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

.gate-btn-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.gate-btn-text {
  flex: 1;
}

.gate-btn-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.gate-btn-text small {
  font-size: 14px;
  opacity: 0.8;
}

.gate-warning {
  background: rgba(255, 255, 255, 0.7);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: #92400E;
  border-left: 4px solid #F59E0B;
  text-align: left;
}

/* === REMINDER BOX === */
.reminder-box {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.reminder-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.reminder-icon {
  font-size: 32px;
}

.reminder-header h3 {
  font-size: 20px;
  margin: 0;
}

.reminder-box > p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

.reminder-form {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.reminder-input {
  flex: 1;
  padding: var(--space-md);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: inherit;
}

.reminder-input:focus {
  outline: none;
  border-color: var(--green);
}

.reminder-submit {
  padding: var(--space-md) var(--space-lg);
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.reminder-note {
  font-size: 14px;
  color: var(--gray-500);
}

.reminder-note a {
  color: var(--green);
  font-weight: 600;
}

.reminder-success {
  text-align: center;
  padding: var(--space-lg);
}

.reminder-success .success-icon {
  font-size: 48px;
  color: var(--green);
  display: block;
  margin-bottom: var(--space-md);
}

.btn-reminder-now {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* === PREPARATION VIEW === */
.prep-container {
  padding: var(--space-lg) var(--space-md);
  padding-bottom: 120px;
  max-width: 500px;
  margin: 0 auto;
}

.prep-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.prep-step-indicator {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.prep-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.prep-icon {
  font-size: 32px;
  display: block;
  margin-bottom: var(--space-sm);
}

.prep-sub {
  font-size: 16px;
  color: var(--gray-500);
  font-style: italic;
}

.prep-card-visual {
  position: relative;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.prep-card-image {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--green);
}

.prep-card-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.prep-info-box {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.prep-info-box h3 {
  font-size: 16px;
  margin-bottom: var(--space-md);
}

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

.prep-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 16px;
}

.prep-list-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.prep-confirm-box {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.prep-confirm-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  cursor: pointer;
}

.prep-confirm-label input[type="checkbox"] {
  width: 28px;
  height: 28px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.prep-confirm-text {
  flex: 1;
}

.prep-confirm-text strong {
  display: block;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.prep-confirm-text small {
  font-size: 14px;
  color: var(--gray-600);
  font-style: italic;
}

.btn-prep-next {
  width: 100%;
  padding: var(--space-lg);
  background: var(--gray-300);
  color: var(--gray-500);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 800;
  cursor: not-allowed;
  transition: all 0.3s ease;
  margin-bottom: var(--space-lg);
}

.btn-prep-next:disabled {
  background: var(--gray-300);
  color: var(--gray-500);
}

.btn-prep-next.ready,
.btn-prep-next:not(:disabled) {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 166, 81, 0.35);
}

.btn-prep-next.ready:hover {
  transform: scale(1.02);
}

.prep-note {
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.5;
}

/* === FINAL PREP VIEW === */
.finalprep-container {
  padding: var(--space-lg) var(--space-md);
  padding-bottom: 120px;
  max-width: 500px;
  margin: 0 auto;
}

.finalprep-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.finalprep-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.finalprep-icon {
  font-size: 48px;
  display: block;
  margin-bottom: var(--space-sm);
}

.finalprep-sub {
  font-size: 16px;
  color: var(--gray-500);
  font-style: italic;
}

.finalprep-preview {
  background: var(--blue-light);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.finalprep-preview h3 {
  font-size: 16px;
  color: var(--blue);
  margin-bottom: var(--space-md);
}

.preview-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.preview-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.preview-step.done {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 2px solid var(--green);
}

.preview-num {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.preview-step.done .preview-num {
  background: var(--green);
}

.preview-text {
  font-size: 14px;
  color: var(--gray-700);
}

.preview-step.done .preview-text {
  color: var(--green-dark);
}

/* Final Commitments */
.final-commitments {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.final-commitments h3 {
  font-size: 16px;
  margin-bottom: var(--space-md);
  color: var(--gray-700);
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: background 0.2s;
}

.commitment-item:last-child {
  border-bottom: none;
}

.commitment-item:hover {
  background: var(--gray-50);
}

.commitment-item input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.commitment-item span {
  font-size: 15px;
  line-height: 1.5;
}

.final-commitments.shake {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Safety Net */
.safety-net {
  display: flex;
  gap: var(--space-md);
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.safety-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.safety-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--green-dark);
}

/* Switcher Notice Box */
.switcher-notice-box {
  display: flex;
  gap: var(--space-md);
  background: #EFF6FF;
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0 var(--space-xl);
  text-align: left;
}

.notice-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.notice-text strong {
  display: block;
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 4px;
}

.notice-text p {
  font-size: 14px;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.4;
}

/* Video Option - JETZT PROMINENT */
.video-option {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.btn-video-prominent {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--green);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-video-prominent:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 166, 81, 0.15);
}

.video-icon-play {
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Final CTA Wrapper */
.final-cta-wrapper {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.btn-final-locked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-xl);
  background: var(--gray-300);
  color: var(--gray-500);
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 800;
  cursor: not-allowed;
  text-decoration: none;
}

.btn-final-unlocked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 166, 81, 0.4);
  animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 166, 81, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 15px 40px rgba(0, 166, 81, 0.5); }
}

.btn-icon {
  font-size: 24px;
}

.lock-icon {
  font-size: 20px;
}

.final-cta-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: var(--space-md);
}

.final-cta-note.ready {
  color: var(--green);
  font-weight: 600;
}

/* Trust Footer */
.trust-footer {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

.trust-logos-small {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.trust-logos-small img {
  height: 20px;
}

.trust-footer p {
  font-size: 11px;
  color: var(--gray-400);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.video-modal-content {
  max-width: 600px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10001;
}

.video-modal-content video {
  width: 100%;
  display: block;
}

.btn-after-video {
  width: 100%;
  padding: var(--space-lg);
  background: var(--green);
  color: var(--white);
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* Mobile Optimizations */
@media (max-width: 640px) {
  .gate-question {
    font-size: 20px;
  }
  
  .gate-btn-text strong {
    font-size: 16px;
  }
  
  .prep-title {
    font-size: 20px;
  }
  
  .finalprep-title {
    font-size: 20px;
  }
  
  .commitment-item span {
    font-size: 14px;
  }
  
  .btn-final-locked,
  .btn-final-unlocked {
    font-size: 16px;
    padding: var(--space-lg);
  }
}

/* === RESERVATION TIMER === */
.reservation-timer {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.timer-text {
  font-size: 12px;
  color: #92400E;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.timer-clock {
  font-size: 24px;
  font-weight: 900;
  color: #DC2626;
  font-family: monospace;
}

/* === EXIT INTENT OVERLAY === */
.exit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(5px);
}

.exit-content {
  background: var(--white);
  width: 100%;
  max-width: 400px;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 4px solid var(--red);
  animation: exit-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.exit-header {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: var(--space-md);
}

.exit-content h3 {
  font-size: 20px;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.exit-content p {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: var(--space-xl);
}

.exit-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  text-align: left;
  background: var(--gray-50);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.exit-benefits span {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
}

.exit-btn-stay {
  width: 100%;
  padding: var(--space-lg);
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: var(--space-md);
  box-shadow: 0 8px 24px rgba(0, 166, 81, 0.3);
}

.exit-btn-leave {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

/* Mobile Adjustments for Exit Intent */
@media (max-width: 640px) {
  .exit-content {
    padding: var(--space-xl);
  }
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* COOKIE CONSENT BANNER - DSGVO konform, aber conversion-optimiert              */
/* ══════════════════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,250,251,1) 100%);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: var(--space-lg) var(--space-md);
  padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
  border-top: 3px solid var(--green);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 480px;
  margin: 0 auto;
}

.cookie-content {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.cookie-icon {
  font-size: 36px;
  flex-shrink: 0;
  animation: cookie-bounce 2s ease-in-out infinite;
}

@keyframes cookie-bounce {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.cookie-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.cookie-text p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════════════════════════ */
/* ACCEPT BUTTON - MAXIMAL ATTRAKTIV, PROMINENT, UNÜBERSEHBAR                         */
/* ═══════════════════════════════════════════════════════════════════════════════════ */
.cookie-accept-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 
    0 8px 24px rgba(0, 166, 81, 0.35),
    0 4px 8px rgba(0, 166, 81, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  animation: cookie-pulse 2s ease-in-out infinite;
}

@keyframes cookie-pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 
      0 8px 24px rgba(0, 166, 81, 0.35),
      0 4px 8px rgba(0, 166, 81, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 
      0 12px 32px rgba(0, 166, 81, 0.45),
      0 6px 12px rgba(0, 166, 81, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.cookie-accept-btn:hover {
  transform: scale(1.02);
  box-shadow: 
    0 12px 32px rgba(0, 166, 81, 0.45),
    0 6px 12px rgba(0, 166, 81, 0.25);
}

.cookie-accept-btn:active {
  transform: scale(0.98);
}

.accept-icon {
  font-size: 20px;
  font-weight: 900;
}

/* ═══════════════════════════════════════════════════════════════════════════════════ */
/* REJECT BUTTON - MAXIMAL UNATTRAKTIV (aber rechtlich vorhanden)                     */
/* Strategie: Kleiner, grau, unscheinbar, fast unsichtbar                             */
/* ═══════════════════════════════════════════════════════════════════════════════════ */
.cookie-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.cookie-link {
  font-size: 11px;
  color: var(--gray-400);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.cookie-link:hover {
  color: var(--gray-500);
  text-decoration: underline;
}

.cookie-divider {
  color: var(--gray-300);
  font-size: 10px;
}

/* Der "Ablehnen"-Button - bewusst MAXIMAL UNATTRAKTIV */
.cookie-reject-link {
  font-size: 10px;                    /* Sehr klein */
  color: var(--gray-400);             /* Sehr blass */
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 400;                   /* Nicht fett */
  padding: 2px 4px;
  transition: color 0.2s;
  text-decoration: none;
  opacity: 0.7;                       /* Noch blasser */
}

.cookie-reject-link:hover {
  color: var(--gray-500);
  opacity: 0.85;
  text-decoration: underline;
}

/* Mobile Optimization */
@media (max-width: 640px) {
  .cookie-banner {
    padding: var(--space-md);
    padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom, 0px));
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .cookie-icon {
    font-size: 32px;
  }
  
  .cookie-text h3 {
    font-size: 16px;
  }
  
  .cookie-text p {
    font-size: 12px;
  }
  
  .cookie-accept-btn {
    font-size: 16px;
    padding: var(--space-md) var(--space-lg);
  }
  
  .cookie-secondary {
    flex-wrap: wrap;
  }
  
  .cookie-reject-link {
    font-size: 9px;                   /* Noch kleiner auf Mobile */
    opacity: 0.6;                     /* Noch blasser */
  }
}

