/* PIA Landing Page Styles */

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

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--background1);
}

/* ===== COLOR SCHEME ===== */
:root {
    --primary: #64BAAA;      
    --secondary: #F02671;    
    --secondary-light: hsl(338, 100%, 62%);    
    --accent: hsla(169, 80%, 72%, 1);       
    --dark: #4C8076;
    --dark-dark: #344b46;
    --black: #000000;
    --dark-gray: #161616;   
    --light: hsla(167, 90%, 75%, 1);
    --light-transparent: hsla(167, 90%, 88%, 0.1);     
    
    --white: #ffffff;
    --white-dark: #d1d1d1;
    --text-muted: #7f8c8d;
    --background1: #000000;
    --background2: hsl(0, 0%, 0%);
    
    /* Shadows */
    --shadow-light: 0 0px 0px rgba(255, 255, 255, 0.15);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.2);

    /* Button Gradients */
    --buttonBackground2: linear-gradient(55deg, var(--primary) 0%, var(--light) 100%);
    --buttonBackground1: rgb(255, 255, 255, 0.05);
    --buttonBackground3: rgb(255, 255, 255, 0.95);
    --buttonBorder: rgba(100, 186, 170, 0.2);
}

/* ===== LOGO STRIP ===== */
.logo-strip {
    background: var(--black);
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    height: 100px;
    width: auto;
}

.rnp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    left: -80px;
    transition: transform 0.3s ease;
}

.rnp-link:hover {
    transform: scale(1.15);
}

.rnp-arrow {
    height: auto;
    width: 80px;
    object-fit: contain;
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--background2);
    padding: 80px 40px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--white);
    line-height: 1.3;
}

.hero-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 0px 15px hsla(169, 38%, 85%, 0.9);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 186, 170, 0.4);
}

.hero-video video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ===== USE CASES SECTION ===== */
.use-cases {
    background: var(--background1);
    padding: 80px 40px;
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
}

.use-cases-container h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.use-cases-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 800px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-cases-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.use-cases-image {
    position: sticky;
    top: 8px;
}

.use-cases-image img {
    width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.case-card {
    background: var(--buttonBackground1);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--buttonBorder);
    border-left: 4px solid var(--secondary);
    color: var(--white);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.case-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.case-card p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

/* ===== KI & DATEN SECTION ===== */
.ki-data-section {
    background: var(--background2);
    padding: 80px 40px 40px 40px;
    border-top: 1px solid var(--buttonBorder);
}

.ki-data-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ki-data-container h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.ki-data-intro {
    font-size: 1.1rem;
    color: var(--white-dark);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 800px;
}

.ki-data-list {
    list-style: none;
    padding: 0 0 45px 30px;
}

.ki-data-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--white);
    line-height: 1.3;
}

.ki-data-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: var(--background2);
    padding: 80px 40px;
    border-top: 1px solid var(--buttonBorder);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-container h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: left;
}

.how-it-works-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.8;
    max-width: 800px;
}



.highlights-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 100px;
}

/* ===== PIA SECTION STYLES ===== */
.section {
  padding: 80px 0;
}

.pia { background: linear-gradient(0deg, rgba(100,186,170,0.08), rgba(100,186,170,0.08)); }

.section-title { position: relative; padding-bottom: 8px; }
.section-title::after { content:""; display:block; width: 120px; height: 3px; background: var(--primary); margin-top: 12px; }

.section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 14px;
  color: var(--dark-dark);
}

.section .lead { font-size: 1.05rem; color: #2f3f3b; }

.emphasis { font-weight:600; color: var(--dark-dark); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.pia-card { 
  background: linear-gradient(180deg, var(--dark-dark) 0%, var(--white) 100%);
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--secondary);
  margin-top: 24px; 
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 40px;
  box-shadow: none;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pia-card > * {
  width: auto;
}

.pia-card-header { color: var(--dark); font-weight:600; font-size: 1.3rem; margin-bottom: 14px; }
.pia-grid { display:grid; grid-template-columns: repeat(4, minmax(300px, 1fr)); gap: 28px; max-width: 1200px; }

.pia-item { text-align:center; padding: 10px 50px 15px; position: relative; background: #ffffff; border-radius: 12px; transition: all 0.3s ease; border: 2px solid transparent; }
.pia-item:hover { background: var(--light-transparent); border-color: var(--primary); }
.pia-item .icon { color: var(--secondary); }
.pia-item .icon img { height:110px; width:110px; transition: transform 1.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.pia-item:hover .icon img { transform: scale(1.15); }

/* Icon Scroll Animation */
@keyframes iconPopIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pia-item.animate-icon .icon img {
  animation: iconPopIn 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.pia-item h4 { margin: 4px 0 6px; font-size: 1.2rem; color: var(--dark-dark); line-height: 1.3; }
.pia-item small { color: var(--text-muted); }


@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Tooltip with Image */
.tooltip-content {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light-transparent);
  background: color-mix(in srgb, var(--primary) 70%, transparent);
  color: var(--white);
  padding: 16px;
  border-radius: 8px;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  z-index: 1000;
  animation: tooltipFadeIn 0.3s ease-out;
}

.tooltip-content img {
  width: 320px;
  height: 180px;
  margin-bottom: 12px;
  object-fit: contain;
  border-radius: 12px;
}

.tooltip-content p {
  margin: 0;
  font-size: 1.0rem;
  line-height: 1.4;
  padding-top: 5px;
  padding-bottom: 10px;
}

/* PIA Card Note */
.pia-card-note {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 40px;
  text-align: center;
}

.pia-card-note p {
  font-size: 1.1rem;
  color: var(--dark-dark);
  line-height: 1.8;
  margin: 0;
}

.pia-care-link {
  color: var(--secondary);
  font-size: 1.75rem;
  font-weight: 660;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 0px solid var(--secondary);
}

.pia-care-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.pia-note { margin-top: 18px; font-weight:600; color:#2f3f3b; }
.pia-callout { margin-top: 14px; background: #fff4d6; border:1px solid rgba(76,128,118,0.15); border-radius:8px; padding: 16px 18px; }

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

.pia-text-link:hover {
  transform: scale(1.2);
}

.pia-callout-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  margin: 0 4px;
  vertical-align: baseline;
}

@media (max-width: 1000px) { .pia-grid { grid-template-columns: repeat(2, minmax(180px,1fr)); } }
@media (max-width: 600px) { .pia-grid { grid-template-columns: 1fr; } }


.technical-highlights {
    order: -1;
}

.highlights-video {
    max-width: 50%;
    height: auto;
    border-radius: 15px;
    border: 1px solid var(--black);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
    display: block;
    margin: 0 auto;
}

.highlights-video video {
    width: 100%;
    height: auto;
    border-radius: 15px;
}



.technical-highlights {
    background: var(--black);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--black);
}

.technical-highlights h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.technical-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.technical-highlights li {
    padding-left: 30px;
    position: relative;
    color: var(--white);
    line-height: 1.6;
}

.technical-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== PROCESS IMPROVEMENT SECTION ===== */
.process-improvement {
    background: var(--background1);
    padding: 80px 40px;
}

.process-improvement-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-improvement-container h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 100px;
    line-height: 1.3;
    text-align: center;
}

.process-improvement-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.principles-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kvp-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.principle-card {
    background: var(--buttonBackground);
    padding: 0px;
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
    border: 0px solid var(--buttonBorder);
    border-left: 0px solid var(--secondary);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.principle-card h3 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 12px;
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

.kvp-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.kvp-section {
    background: var(--buttonBackground1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--buttonBorder);
}

.kvp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.kvp-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkmark {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.kvp-item p {
    color: var(--white);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(130deg, var(--primary) 0%, var(--light) 75%);
    padding: 60px 40px;
}

.cta-section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-section-container h2 {
    font-size: 2.8rem;
    color: var(--white);
    text-shadow: 0px 0px 15px rgba(10, 34, 30, 0.329);
    margin-bottom: 60px;
    line-height: 1.3;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-buttons .primary-button {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
}

.cta-buttons .primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .secondary-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
}

.cta-buttons .secondary-button:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background: var(--background1);
    padding: 80px 40px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1.3;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--buttonBackground);
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
    border: 0px solid var(--buttonBorder);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--black);
    padding: 100px 40px;
    border-top: 1px solid rgba(100, 186, 170, 0.3);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 20px;
    text-align: left;
}

.pricing-section > .pricing-container > .pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 60px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(100, 186, 170, 0.05) 0%, rgba(240, 38, 113, 0.05) 100%);
    border: 1px solid rgba(100, 186, 170, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--light);
    background: var(--light-transparent);
    box-shadow: 0 20px 40px rgba(100, 186, 170, 0.15);
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.pricing-subtitle-card {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-price {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(100, 186, 170, 0.2);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
}

.price-currency {
    font-size: 1.5rem;
    color: var(--accent);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: auto;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--white);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(100, 186, 170, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: inline-block;
    padding: 14px 30px;
    background: var(--buttonBackground2);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.pricing-cta:hover {
    background: var(--primary);
    box-shadow: 0 10px 25px rgba(100, 186, 170, 0.3);
    transform: scale(1.02);
}

/* ===== PIA PROZESSPFLEGE SECTION ===== */
.process-care-section {
    background: var(--background1);
    padding: 100px 40px;
    border-top: 1px solid rgba(100, 186, 170, 0.3);
}

.process-care-container {
    max-width: 1200px;
    margin: 0 auto;
}

.care-header {
    text-align: center;
    margin-bottom: 80px;
}

.care-header h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    line-height: 1.3;
}

.care-tagline {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 40px;
}

.care-intro {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.care-intro p {
    margin: 0;
}

.care-intro ol {
    list-style: none;
    counter-reset: care-counter;
    padding-left: 0;
    margin: 0;
}

.care-intro ol li {
    counter-increment: care-counter;
    position: relative;
    padding-left: 2.5em;
    margin-bottom: 0.8em;
}

.care-intro ol li::before {
    content: counter(care-counter) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--accent-green);
    min-width: 1.8em;
}

/* Modelle */
.care-model {
    background: linear-gradient(135deg, rgba(100, 186, 170, 0.05) 0%, rgba(240, 38, 113, 0.05) 100%);
    border: 1px solid rgba(100, 186, 170, 0.2);
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.care-model:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(100, 186, 170, 0.1);
}

.model-footnote {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 28px;
    margin-bottom: -30px;
    margin-left: -15px;
}

.model-header h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.model-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.model-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.model-content h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    margin-top: 0;
}

/* Preistabelle */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table thead {
    background: rgba(100, 186, 170, 0.1);
}

.pricing-table th {
    padding: 8px 20px;
    text-align: left;
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px solid rgba(100, 186, 170, 0.2);
}

.pricing-table th:last-child {
    text-align: right;
}

.pricing-table td {
    padding: 8px 20px;
    color: var(--white);
    border-bottom: 1px solid rgba(100, 186, 170, 0.1);
}

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

.table-label {
    font-weight: 600;
    color: var(--primary);
    width: 120px;
}

.table-price {
    text-align: right;
    color: var(--primary);
    font-size: 1.1rem;
}

.table-additional {
    background: rgba(100, 186, 170, 0.05);
}

/* Features & Benefits */
.model-features,
.model-benefits {
    margin-top: 16px;
}

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

.feature-list li,
.benefits-list li {
    padding: 5px 0 5px 30px;
    position: relative;
    color: var(--white);
    line-height: 1.5;
}

.benefits-list li .check {
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Flexible Abrechnung */
.flexible-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.flexible-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--white);
    line-height: 1.6;
}

.flexible-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.flexible-note {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
}

/* Entscheidungshilfe */
.care-decision {
    background: linear-gradient(135deg, rgba(100, 186, 170, 0.1) 0%, rgba(240, 38, 113, 0.08) 100%);
    background: black;
    border: 0px solid rgba(100, 186, 170, 0.3);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
}

.care-decision h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 40px;
}

.decision-options {
    margin-bottom: 50px;
}

.decision-row {
    padding: 25px 0;
    border-bottom: 1px solid rgba(100, 186, 170, 0.2);
}

.decision-row:last-child {
    border-bottom: none;
}

.decision-title {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 10px 0;
}

.decision-text {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
    line-height: 1.6;
}

.care-cta {
    margin-top: 50px;
}

.cta-main {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.care-button {
    display: inline-block;
    padding: 16px 50px;
    background: var(--buttonBackground2);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.care-button:hover {
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(100, 186, 170, 0.3);
    transform: scale(1.05);
}

.care-note {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 186, 170, 0.2);
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.contact-modal.active {
    display: flex;
}

.contact-modal-content {
    background: var(--background2);
    border: 1px solid rgba(100, 186, 170, 0.3);
    border-radius: 12px;
    padding: 50px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

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

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-close:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

.contact-modal-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-modal-header h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.contact-modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Formular Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 186, 170, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(100, 186, 170, 0.1);
    box-shadow: 0 0 8px rgba(100, 186, 170, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364BAAA' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
    padding: 10px 15px;
}

.form-group select option:checked {
    background: var(--primary);
    color: var(--white);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.form-button-submit,
.form-button-cancel {
    flex: 1;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button-submit {
    background: var(--buttonBackground2);
    color: var(--white);
    border: 1px solid var(--primary);
}

.form-button-submit:hover {
    background: var(--primary);
    box-shadow: 0 10px 25px rgba(100, 186, 170, 0.3);
    transform: translateY(-2px);
}

.form-button-cancel {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(100, 186, 170, 0.2);
}

.form-button-cancel:hover {
    color: var(--white);
    border-color: var(--primary);
    background: rgba(100, 186, 170, 0.05);
}

.form-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .logo-container {
        padding: 0 20px;
    }

    .hero-video {
        order: -1;
    }

    .use-cases-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .use-cases-image {
        position: static;
    }

    .highlights-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlights-video {
        max-width: 100%;
    }

    .hero-video video {
        width: 100%;
    }

    .process-improvement-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .kvp-features {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .cta-button {
        width: 100%;
    }

    .cta-section-container h2 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .care-model {
        padding: 30px 20px;
    }

    .care-header h2 {
        font-size: 1.8rem;
    }

    .care-tagline {
        font-size: 1.1rem;
    }

    .decision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 15px;
    }

    .contact-modal-content {
        width: 95%;
        padding: 30px 25px;
        max-width: 100%;
    }

    .contact-modal-header h2 {
        font-size: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid var(--light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
}

.footer-links {
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links .separator {
    margin: 0 10px;
    color: var(--text-muted);
}

/* ===== STICKY CONTACT BADGE ===== */
.contact-badge {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 280px;
    overflow: hidden;
    z-index: 999;
    transition: opacity 1.5s ease;
    opacity: 0;
    pointer-events: none;
}

.contact-badge.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Badge Overlay - blockiert Touch-Events auf Hintergrund */
.badge-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 998;
    touch-action: none;
    pointer-events: none;
}

.contact-badge.expanded .badge-overlay {
    display: block;
    pointer-events: none;
}

/* Badge Trigger - Minimierter Zustand */
.badge-trigger {
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge-trigger-content h4 {
    margin: -20px 0 10px 0;
    font-size: 0.95rem;
    color: var(--dark-dark);
    font-weight: 600;
    text-align: center;
}

.trigger-list {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
}

.trigger-list li {
    font-size: 0.85rem;
    color: var(--dark);
    padding: 4px 0 4px 20px;
    position: relative;
    line-height: 1.3;
}

.trigger-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary);
    font-weight: bold;
}

.trigger-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--light);
    padding-top: 10px;
}

.trigger-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trigger-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.trigger-item a {
    font-size: 0.8rem;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.trigger-item a:hover {
    color: var(--primary);
}

/* Badge Chevron - Klick-Indikator */
.badge-chevron {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    padding: 8px;
    margin: 0;
    line-height: 1;
    animation: chevronBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes chevronBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px);
        opacity: 0.7;
    }
}

/* Chevron verschwindet wenn expandiert */
.contact-badge.expanded .badge-chevron {
    display: none;
}

/* Badge Expanded Styles */
.badge-expanded {
    display: none;
    padding: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease-out;
}

/* Wird mit JavaScript aktiviert */
.contact-badge.expanded .badge-expanded {
    display: block;
    opacity: 1;
    transform: translateY(0);
    max-height: 100vh;
}

.badge-profile {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light);
}

.badge-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid var(--primary);
}

.badge-greeting {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-dark);
    line-height: 1.4;
}

.badge-intro {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.5;
    font-weight: 500;
}

.badge-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.service-item {
    background: var(--light-transparent);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.service-item h5 {
    margin: 0 0 6px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.service-item p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--dark);
    line-height: 1.4;
}

.badge-contact-info {
    border-top: 1px solid var(--light);
    padding-top: 15px;
}

.badge-phone-direct {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--dark-dark);
}

.badge-phone-direct a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.badge-phone-direct a:hover {
    text-decoration: underline;
}

.badge-hours {
    margin: 0 0 12px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.badge-button {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 12px 24px;
    background-color: var(--dark-dark);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.badge-button:hover {
    background-color: color-mix(in srgb, var(--secondary) 60%, var(--light));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .contact-badge {
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 100vh;
     
        overflow-y: auto;
    }
    
    .badge-chevron {
        display: block;
    }
    
    .badge-trigger {
        padding: 14px 16px;
        background: white;
    }
    
    .badge-trigger-content h4 {
        color: var(--dark-dark);
    }
    
    .trigger-list li {
        color: var(--dark);
    }
    
    .trigger-contact {
        border-top-color: var(--light);
    }
    
    .trigger-item a {
        color: var(--dark);
        font-weight: 500;
    }
    
    .trigger-item a:hover {
        color: var(--primary);
    }
    
    .contact-badge:hover .badge-trigger {
        background: white;
    }
}
