/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #dfe9f3 0%, #ffffff 40%, #e9f0ff 100%);
    min-height: 100vh;
    color: #1d1d1f;
    position: relative;
}

/* Background soft blobs */
.background-blur {
    position: fixed;
    width: 100%;
    height: 100%;
    background:
    radial-gradient(circle at 20% 30%, rgba(120,180,255,0.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,180,220,0.35), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(180,255,220,0.3), transparent 40%);
    filter: blur(60px);
    z-index: -1;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
    margin: 40px auto;
    border-radius: 24px;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.glass-light {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px;
    border-radius: 0 0 40px 40px;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4b5563;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    background: linear-gradient(135deg, #4f8cff, #7c5cff);
    color: white;
    box-shadow: 0 6px 20px rgba(79, 140, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 140, 255, 0.6);
}

/* Typography */
h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.8rem;
}

p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #374151;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Tags */
.tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.tags li {
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.5);
}

/* Company list */
.industries {
    list-style: none;
    margin-top: 20px;
    line-height: 1.8;
    text-align: center;
}

/* Contact */
.contact {
    text-align: center;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    margin: 40px auto;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.legal-pages {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

#impressum h3 {
    margin-top: 10px;
}