/* GLÜCKSBERGER - FINAL STYLESHEET 2026 - BRANDED EDITION */

:root {
    --bg-dark: #0d1117;
    --bg-card: #161b22;
    /* Dein neues Petrol CI statt Blau */
    --accent: #2e5c5d; 
    --text-main: #e6edf3;
    --text-dim: #8b949e;
    --border: #30363d;
    --glass: rgba(13, 17, 23, 0.9);
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; 
}

body { 
    background: var(--bg-dark); color: var(--text-main); 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1 { 
    font-size: clamp(2.2rem, 7vw, 4rem); font-weight: 800; line-height: 1.1; 
    margin-bottom: 25px; hyphens: auto; word-wrap: break-word; overflow-wrap: break-word;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; font-weight: 700; }

/* NAVBAR */
.navbar { 
    position: fixed; top: 0; width: 100%; z-index: 1000; 
    background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border); padding: 15px 0; 
}

.nav-container { 
    max-width: 1100px; margin: 0 auto; display: flex; 
    justify-content: space-between; align-items: center; padding: 0 20px; 
}

.nav-logo { font-weight: 800; text-decoration: none; color: #fff; font-size: 1.3rem; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-size: 0.95rem; transition: 0.2s; }
.nav-links a:hover { color: #fff; }

.nav-btn { 
    background: var(--accent); color: #fff !important; padding: 8px 18px; 
    border-radius: 6px; font-weight: 600; font-size: 0.9rem;
}

/* HERO */
header.hero { padding: 180px 20px 80px; text-align: center; max-width: 1100px; margin: 0 auto; }

.highlight { 
    color: var(--accent); 
    /* Petrol Verlauf passend zum Logo */
    background: linear-gradient(90deg, #2e5c5d, #4d8a8b); 
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; 
}

.subtitle { color: var(--text-dim); font-size: 1.25rem; max-width: 750px; margin: 0 auto 45px; }

/* BUTTONS */
.btn-primary { 
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 34px; border-radius: 8px; text-decoration: none; 
    font-weight: 600; background: var(--accent); color: #fff; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none; line-height: 1;
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(46, 92, 93, 0.3); 
}

/* TRUST BAR */
.trust-bar { 
    display: flex; justify-content: center; gap: clamp(20px, 4vw, 40px); 
    padding: 35px 20px; background: rgba(255, 255, 255, 0.02); 
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-wrap: wrap; 
}
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 500; font-size: 0.9rem; }

/* GRID SYSTEMS */
.section { padding: 100px 20px; max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.tag { color: var(--accent); text-transform: uppercase; font-size: 0.8rem; font-weight: 700; margin-bottom: 12px; display: block; letter-spacing: 1.5px; }

.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.card { background: var(--bg-card); padding: 40px; border-radius: 16px; border: 1px solid var(--border); transition: 0.3s; }
.card:hover { border-color: var(--accent); transform: translateY(-5px); }
.card-icon { font-size: 2.2rem; margin-bottom: 20px; }
.card h3 { margin-bottom: 15px; color: #fff; font-size: 1.4rem; }
.card p { color: var(--text-dim); }

.about-centered { max-width: 800px; margin: 0 auto; text-align: center; }
.about-centered p { margin-bottom: 20px; color: var(--text-dim); font-size: 1.1rem; }

/* TECH GRID */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 10px; }
.tech-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.tech-box { 
    background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); 
    border-radius: 16px; height: 110px; width: 100%; max-width: 140px; 
    display: flex; align-items: center; justify-content: center; transition: 0.3s; 
}
.tech-item:hover .tech-box { border-color: var(--accent); transform: scale(1.05); }
.tech-box img { max-width: 60%; max-height: 50%; object-fit: contain; }
.tech-item span { color: var(--text-dim); font-size: 0.9rem; }

/* DISCLAIMER FIX - Bleibt genau so zentriert */
.brand-disclaimer { 
    display: block; width: 100%; text-align: center; 
    font-size: 0.75rem; color: #484f58; margin-top: 30px; 
}

/* CONTACT CARD */
.contact-card { 
    background: linear-gradient(145deg, #161b22 0%, #0d1117 100%); 
    padding: 80px 40px; border-radius: 20px; border: 1px solid var(--border); 
    text-align: center; display: flex; flex-direction: column; align-items: center;
}
.contact-card h2 { margin-bottom: 15px; }
.contact-card p { margin-bottom: 35px; color: var(--text-dim); max-width: 500px; }

/* FOOTER */
footer { padding: 60px 20px; text-align: center; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.9rem; }
.footer-links { margin-top: 20px; }
.footer-links a { color: var(--accent); text-decoration: none; margin: 0 15px; }

/* ANIMATION */
.fade-in { animation: fadeInUp 0.8s ease-out forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    header.hero { padding: 120px 20px 60px; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .tech-box { height: 100px; }
    h1 { font-size: 1.85rem; }
    .trust-bar { gap: 15px; }
    .section { padding: 60px 20px; }
}