:root {
    --beta-blue: #0E2954;
    --beta-green: #78A342;
    --beta-green-hover: #658c35;
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #475569;
    --smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 4px 20px rgba(14, 41, 84, 0.05);
    --shadow-heavy: 0 15px 35px -5px rgba(14, 41, 84, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* html { scroll-behavior: smooth; }  <-- Gelöscht, da Lenis das jetzt extrem hochwertig übernimmt! */
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--bg-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
.section { padding: 100px 0; }
.bg-soft { background-color: var(--bg-soft); }

.text-center { text-align: center; }
.section-title { font-size: 2.5rem; color: var(--beta-blue); margin-bottom: 20px; text-align: center; }
.section-desc { max-width: 700px; margin: 0 auto 50px auto; color: var(--text-light); font-size: 1.1rem; line-height: 1.7; text-align: center; }
.accent-title { color: var(--beta-green); letter-spacing: 2px; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; text-align: center; }
.about-text .section-title, .about-text .accent-title { text-align: left; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s var(--smooth); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- LOGO STYLING --- */
.logo-link { display: flex; align-items: center; text-decoration: none; }
.brand-logo { max-height: 85px; width: auto; object-fit: contain; transition: transform 0.3s ease; }
.brand-logo:hover { transform: scale(1.05); }
.brand-logo-footer { max-height: 90px; width: auto; object-fit: contain; margin-bottom: 5px; } /* Etwas kleiner für den Grid Footer */

.logo-text { font-size: 1.8rem; font-weight: 800; font-family: 'Poppins', sans-serif; display: flex; gap: 6px; }
.logo-text-footer { font-size: 2.5rem; font-weight: 800; font-family: 'Poppins', sans-serif; display: flex; gap: 8px; margin-bottom: 15px; }
.logo-beta { color: var(--beta-green); }
.logo-hm { color: var(--beta-blue); }
.logo-hm-footer { color: white; }

.glass-nav { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,0.05); z-index: 1000; padding: 10px 0; transition: background 0.3s var(--smooth); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1300px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .nav-container { padding: 0 20px; } }

.menu { display: flex; align-items: center; gap: 30px; }
.menu a { text-decoration: none; color: var(--beta-blue); font-weight: 500; transition: color 0.3s ease; }
.menu a:hover { color: var(--beta-green); }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 30px; height: 3px; background: var(--beta-blue); border-radius: 3px; transition: all 0.3s var(--smooth); }

@media (max-width: 850px) {
    .hamburger { display: flex; }
    .menu { position: absolute; top: 100%; right: -100%; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: flex-start; padding-top: 50px; transition: right 0.5s var(--smooth); box-shadow: -10px 0 30px rgba(0,0,0,0.05); }
    .menu.active { right: 0; }
    .menu a { font-size: 1.5rem; margin-bottom: 20px; }
    .hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

.btn-primary { background-color: var(--beta-green); color: white; padding: 12px 28px; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.btn-primary:hover { background-color: var(--beta-green-hover); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(120, 163, 66, 0.4); }
.btn-large { padding: 18px 45px; font-size: 1.1rem; }
.glow-effect { box-shadow: 0 0 20px rgba(120, 163, 66, 0.5); }

.hero { height: 100vh; display: flex; align-items: center; justify-content: center; background: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=1920&q=80') center/cover fixed; position: relative; text-align: center; padding: 0 20px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,41,84,0.92) 0%, rgba(14,41,84,0.6) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; color: white; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 40px; color: #e2e8f0; }

/* --- GLOW-HOVER EFFEKT --- */
.compact-card, .card-style, .review-card, .faq-item { position: relative; background: var(--bg-main); border-radius: 20px; border: 1px solid transparent; box-shadow: var(--shadow-soft); transition: all 0.4s var(--smooth); cursor: pointer; }
.compact-card::before, .card-style::before, .review-card::before, .faq-item::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: rgba(120, 163, 66, 0.9); box-shadow: 0 2px 15px 3px rgba(120, 163, 66, 0.6); border-radius: 4px; transition: all 0.4s var(--smooth); z-index: 10; opacity: 0; }
.compact-card:hover, .card-style:hover, .review-card:hover, .faq-item:hover, .faq-item.is-open { transform: translateY(-5px); border-color: rgba(120, 163, 66, 0.4); box-shadow: 0 10px 30px rgba(14, 41, 84, 0.08), 0 0 25px rgba(120, 163, 66, 0.15); }
.faq-item.is-open { transform: translateY(0); }
.faq-item:hover { transform: translateY(-3px); }
.compact-card:hover::before, .card-style:hover::before, .review-card:hover::before, .faq-item:hover::before, .faq-item.is-open::before { width: calc(100% - 60px); opacity: 1; }

.compact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.compact-card { display: flex; align-items: center; padding: 15px; }
.compact-card img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; margin-right: 20px; transition: transform 0.3s ease; }
.compact-card:hover img { transform: scale(1.1); }
.compact-info h3 { color: var(--beta-blue); font-size: 1.1rem; margin-bottom: 4px; }
.compact-info p { color: var(--text-light); font-size: 0.9rem; line-height: 1.4; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; text-align: center; }
.card-style { padding: 40px 30px; }
.why-icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: var(--bg-soft); border-radius: 50%; color: var(--beta-green); transition: all 0.3s ease; }
.card-style:hover .why-icon { background: var(--beta-green); color: white; transform: scale(1.1) rotate(5deg); }
.why-item h3 { color: var(--beta-blue); margin-bottom: 10px; font-size: 1.4rem; }
.why-item p { color: var(--text-light); }

.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media(max-width: 900px) { .about-wrapper { grid-template-columns: 1fr; } }
.about-text h2 { font-size: 2.5rem; color: var(--beta-blue); margin-bottom: 20px; line-height: 1.2; }
.about-description { color: var(--text-light); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.7; }
.check-list { list-style: none; }
.check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 12px; color: var(--text-dark); font-size: 1.05rem; font-weight: 500; }
.check-icon { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: rgba(120,163,66,0.1); color: var(--beta-green); border-radius: 50%; font-size: 0.8rem; }

.showcase-container { position: relative; width: 100%; height: 500px; border-radius: 20px; padding: 20px; }
.showcase-bg { position: absolute; right: 0; top: 10%; width: 70%; height: 80%; background: var(--beta-blue); border-radius: 20px; opacity: 0.05; z-index: 0; }
.show-main { position: absolute; left: 0; top: 0; width: 75%; height: 85%; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-heavy); z-index: 1; border: 6px solid white; }
.show-overlay { position: absolute; right: 5%; bottom: 0; width: 50%; height: 55%; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-heavy); z-index: 2; border: 6px solid white; }
.glass-panel { position: absolute; top: 15%; right: -5%; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(10px); padding: 20px 30px; border-radius: 15px; box-shadow: var(--shadow-heavy); z-index: 3; text-align: center; border: 1px solid rgba(255,255,255,0.5); }
.glass-panel h3 { color: var(--beta-green); font-size: 2rem; line-height: 1; margin-bottom: 5px; }
.glass-panel p { color: var(--beta-blue); font-weight: 600; font-size: 0.9rem; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
.floating { animation: float 6s ease-in-out infinite; }
.floating-slow { animation: float 8s ease-in-out infinite reverse; }

.carousel-wrapper { position: relative; display: flex; align-items: center; max-width: 100%; margin-top: 30px; }
.carousel-viewport { overflow: hidden; width: 100%; padding: 20px 0 40px 0; }
.carousel-track { display: flex; gap: 30px; }
.review-card { min-width: 320px; padding: 35px; }
.stars { color: #facc15; font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 2px; }
.review-card p { font-style: italic; color: var(--text-light); margin-bottom: 15px; font-size: 1.05rem; }
.carousel-nav { background: var(--bg-main); border: 2px solid transparent; width: 50px; height: 50px; border-radius: 50%; color: var(--beta-blue); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-soft); transition: all 0.3s ease; flex-shrink: 0; z-index: 10; }
.carousel-nav:hover { background: var(--beta-green); color: white; transform: scale(1.1); box-shadow: 0 5px 15px rgba(120,163,66,0.3); }
.carousel-nav.prev { margin-right: -25px; }
.carousel-nav.next { margin-left: -25px; }
@media(max-width: 768px) {
    .carousel-nav { display: none; } 
    .carousel-viewport { overflow-x: auto; scroll-snap-type: x mandatory; }
    .review-card { scroll-snap-align: center; min-width: 280px; }
}

.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; overflow: hidden; }
.faq-head { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Poppins'; font-weight: 600; color: var(--beta-blue); }
.faq-arrow { width: 30px; height: 30px; background: var(--bg-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--beta-green); transition: transform 0.4s var(--smooth); }
.faq-body { max-height: 0; padding: 0 25px; color: var(--text-light); transition: all 0.4s var(--smooth); opacity: 0; }
.faq-body.open { max-height: 200px; padding: 0 25px 20px 25px; opacity: 1; }

.contact-box { background: var(--beta-blue); color: white; padding: 60px 40px; border-radius: 24px; box-shadow: var(--shadow-heavy); position: relative; overflow: hidden; }
.contact-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(120,163,66,0.15) 0%, transparent 60%); z-index: 0; }
.contact-box h2, .contact-box p, .contact-box a { position: relative; z-index: 1; }
.contact-box p { color: #cbd5e1; margin-bottom: 30px; font-size: 1.1rem; }

/* --- NEUES FOOTER GRID DESIGN --- */
.footer { background: #07152b; color: white; padding: 80px 0 20px 0; }
.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 60px; 
}
.footer-col h3 { color: white; font-size: 1.2rem; margin-bottom: 25px; position: relative; display: inline-block; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 3px; background: var(--beta-green); border-radius: 2px; }

.footer-links-col { display: flex; flex-direction: column; gap: 15px; }
.footer-links-col a { color: #cbd5e1; text-decoration: none; transition: color 0.3s ease; font-weight: 500; display: inline-flex; align-items: center; }
.footer-links-col a:hover { color: var(--beta-green); transform: translateX(5px); }
.footer-links-col a::before { content: '›'; margin-right: 8px; font-size: 1.2rem; color: var(--beta-green); }

.socials { display: flex; gap: 12px; }
.social-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 1.3rem; transition: all 0.3s var(--smooth); }
.social-icon:hover { background: var(--beta-green); transform: translateY(-4px); box-shadow: 0 5px 15px rgba(120,163,66,0.4); color: white; }

.footer-info p { color: #cbd5e1; margin-bottom: 12px; }
.smart-mail-wrapper { cursor: pointer; transition: color 0.3s ease; }
.smart-mail-wrapper:hover { color: var(--beta-green); }
.copy-success-msg { color: var(--beta-green); font-size: 0.85rem; margin-left: 10px; font-weight: 600; display: none; }

.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; color: #64748b; font-size: 0.9rem; }

.floating-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: var(--beta-blue); color: white; border: none; border-radius: 50%; font-size: 18px; cursor: pointer; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; z-index: 999; box-shadow: 0 5px 15px rgba(0,0,0,0.2); pointer-events: none; }
.floating-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-top:hover { background: var(--beta-green); transform: translateY(-5px); }

/* --- IMPRESSUM --- */
.page-header { background: linear-gradient(135deg, var(--beta-blue) 0%, #1a4a8c 100%); height: 350px; display: flex; align-items: center; justify-content: center; color: white; }
.page-header h1 { font-size: 3rem; margin-top: 40px; text-align: center; }
.overlap-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.content-box { background: var(--bg-main); border-radius: 20px; padding: 50px; box-shadow: var(--shadow-heavy); margin-top: -80px; position: relative; z-index: 10; margin-bottom: 100px; }
.underlined { position: relative; display: inline-block; margin-bottom: 20px; color: var(--beta-blue); font-family: 'Poppins'; }
.underlined::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 50px; height: 4px; background: var(--beta-green); border-radius: 2px; }
@media(max-width: 600px) { .content-box { padding: 30px; } .page-header h1 { font-size: 2rem; } }