/* --- Modern UI Variablen --- */
:root {
    --red: #f43f5e;
    --red-dark: #e11d48;
    --blue: #3b82f6;
    --dark: #090a0f;
    --dark-surface: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --light: #f8fafc;
    --muted: #94a3b8;
    --gradient: linear-gradient(135deg, var(--red), var(--blue));
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Basis Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background-color: var(--dark); color: var(--light); line-height: 1.6; position: relative; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- Typografie & Utilities --- */
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 0.85rem; }
.mb-2 { margin-bottom: 15px; } .mb-3 { margin-bottom: 20px; } .mb-4 { margin-bottom: 30px; }
.mt-2 { margin-top: 15px; } .mt-4 { margin-top: 40px; }

.profix-text { font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; display: inline-block; }
.profix-text span { color: var(--red); }

/* --- Background Glows --- */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; z-index: -1; pointer-events: none; }
.orb-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: var(--blue); }
.orb-2 { top: 40%; right: -150px; width: 500px; height: 500px; background: var(--red); opacity: 0.2; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.align-center { align-items: center; }
.title-lg { font-size: 3.5rem; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }

/* --- Capsule Navigation --- */
#navbar { position: fixed; top: 20px; width: 100%; z-index: 9999; display: flex; justify-content: center; transition: var(--transition); }
.nav-container.capsule { background: rgba(20, 22, 28, 0.7); backdrop-filter: blur(20px); border: 1px solid var(--border-glass); border-radius: 100px; padding: 10px 30px; display: flex; align-items: center; gap: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); width: 90%; max-width: 1000px; transition: var(--transition); }
#navbar.scrolled .nav-container.capsule { background: rgba(15, 17, 21, 0.9); padding: 8px 30px; width: 100%; max-width: 1200px; border-radius: 20px; top: 0; margin-top: -20px; }

.logo img { height: 60px; transition: var(--transition); filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5)); margin-top: 3px; }
#navbar.scrolled .logo img { height: 50px; }

.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--red); }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: white; transition: var(--transition); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-weight: 700; border-radius: 100px; cursor: pointer; transition: var(--transition); font-size: 0.95rem; border: none; }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-primary { background: var(--red); color: white; box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(244, 63, 94, 0.5); }
.btn-glass { background: var(--dark-surface); color: white; border: 1px solid var(--border-glass); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; border-radius: 16px; }

/* --- Hero Section --- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(9, 10, 15, 0.6) 0%, rgba(9, 10, 15, 1) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; max-width: 800px; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); padding: 8px 20px; border-radius: 100px; border: 1px solid var(--border-glass); font-size: 0.85rem; font-weight: 600; margin-bottom: 25px; backdrop-filter: blur(10px); }
.hero-title { font-size: 5.5rem; font-weight: 800; letter-spacing: -2px; line-height: 1.05; margin-bottom: 25px; }
.hero-subtitle { font-size: 1.2rem; color: var(--muted); margin-bottom: 40px; max-width: 600px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* --- Brand Ticker --- */
.brand-ticker { background: var(--dark-surface); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); padding: 20px 0; overflow: hidden; display: flex; white-space: nowrap; }
.ticker-content { display: flex; gap: 50px; animation: ticker 20s linear infinite; font-weight: 600; font-size: 1rem; color: var(--muted); }
.ticker-content span { display: flex; align-items: center; gap: 10px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- BENTO GRID SYSTEM --- */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 24px; }
.bento-card { background: var(--dark-surface); border: 1px solid var(--border-glass); border-radius: 32px; padding: 30px; position: relative; overflow: hidden; transition: var(--transition); backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: flex-end; }
.bento-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.bento-large { grid-column: span 2; grid-row: span 2; padding: 40px; }
.bento-medium { grid-column: span 3; grid-row: span 1; padding: 40px; }
.flex-row { flex-direction: row; align-items: center; justify-content: space-between; }

/* Bento Inhalte */
.bento-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 0.8s ease; }
.bento-card:hover .bento-img { transform: scale(1.05); }
.bento-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(9,10,15,0.9) 0%, transparent 100%); z-index: 2; }
.bento-content-bottom { position: relative; z-index: 3; }
.bento-content-top { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; }
.bento-card h3 { font-size: 1.5rem; margin-bottom: 10px; font-weight: 700; letter-spacing: -0.5px; }
.bento-large h3 { font-size: 2.2rem; }
.bento-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.icon-glass { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; backdrop-filter: blur(10px); }

/* Bento Team Element */
.bento-text-half { width: 55%; }
.bento-img-half { width: 40%; height: 100%; border-radius: 20px; overflow: hidden; }
.bento-img-half img { width: 100%; height: 100%; object-fit: cover; }

/* --- Step Process --- */
.bg-glass { background: linear-gradient(180deg, var(--dark) 0%, #0d0f16 100%); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }
.step-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-item { background: var(--dark-surface); padding: 40px; border-radius: 32px; border: 1px solid var(--border-glass); text-align: left; transition: var(--transition); }
.step-item:hover { background: rgba(255,255,255,0.05); }
.step-num { font-size: 3rem; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2); margin-bottom: 20px; font-family: 'Plus Jakarta Sans', sans-serif; }
.step-item h4 { font-size: 1.3rem; margin-bottom: 10px; }
.step-item p { color: var(--muted); font-size: 0.95rem; }

/* --- Kontakt (Modern Layout) --- */
.modern-info-card { background: transparent; }
.info-row { display: flex; gap: 20px; margin-bottom: 30px; }
.info-row i { font-size: 1.5rem; margin-top: 5px; background: rgba(244, 63, 94, 0.1); padding: 15px; border-radius: 16px; }
.info-row h5 { font-size: 1.1rem; margin-bottom: 5px; }
.info-row p, .info-row a { color: var(--muted); line-height: 1.6; transition: var(--transition); }
.info-row a:hover { color: var(--light); }

.glass-form-card { background: var(--dark-surface); border: 1px solid var(--border-glass); padding: 40px; border-radius: 32px; backdrop-filter: blur(20px); }
.form-row { display: flex; gap: 15px; margin-bottom: 15px; }
.modern-input { width: 100%; padding: 18px 24px; background: rgba(0,0,0,0.2); border: 1px solid var(--border-glass); border-radius: 16px; color: white; font-size: 1rem; transition: var(--transition); }
.modern-input:focus { outline: none; border-color: var(--red); background: rgba(0,0,0,0.4); box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1); }

/* --- Footer --- */
.modern-footer { padding: 60px 0 40px; border-top: 1px solid var(--border-glass); }
.footer-content { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 30px; }
.footer-links a { margin-right: 20px; color: var(--muted); font-weight: 500; }
.footer-links a:hover { color: var(--red); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-large { grid-column: span 1; height: 400px; }
    .bento-medium { grid-column: span 1; flex-direction: column; text-align: center; }
    .bento-text-half, .bento-img-half { width: 100%; }
    .bento-img-half { height: 250px; margin-top: 30px; }
    .grid-2, .step-container { grid-template-columns: 1fr; }
    .hero-title { font-size: 4rem; }
}

@media (max-width: 768px) {
    .nav-container.capsule { border-radius: 16px; padding: 15px 20px; }
    .nav-links { position: fixed; right: -100%; top: 0; flex-direction: column; background: var(--dark); width: 100%; height: 100vh; justify-content: center; transition: 0.4s ease; z-index: 999; }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 20px 0; }
    .hamburger { display: block; z-index: 1000; }
    .hero-title { font-size: 3rem; }
    .form-row { flex-direction: column; }
    .title-lg { font-size: 2.5rem; }
    .footer-content { flex-direction: column; align-items: flex-start; }
}