/* Grundlegendes Styling & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

nav a {
    text-decoration: none;
    color: #475569;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #2563eb;
}

/* Hero-Bereich */
.hero {
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e1;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #ffffff;
    color: #1e3a8a;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #1d4ed8;
}

/* Sektionen */
.about, .contact, .patents, .team-section {
    padding: 80px 20px;
    background: #ffffff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.about h3, .contact h3, .patents h3, .team-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f172a;
    text-align: center;
}

.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #475569;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #475569;
    font-size: 0.95rem;
}

/* Patente Sektion */
.patents {
    background: #eff6ff;
    text-align: center;
    border-left: none;
}

.patents p {
    max-width: 800px;
    margin: 0 auto;
    color: #1e3a8a;
    font-weight: 500;
}

/* Team Grid (Kurze Team Seite) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.team-member h4 {
    color: #1e3a8a;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.team-member .role {
    font-size: 0.9rem;
    color: #2563eb;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p {
    font-size: 0.9rem;
    color: #475569;
}
/* Einheitliches Styling für Team-Bilder */
.team-member {
    text-align: center;
}

.team-img {
    width: 130px;
    height: 130px;
    object-fit: cover;       /* Schneidet das Bild perfekt quadratisch zu, ohne dass es verzerrt wird */
    object-position: top;    /* Konzentriert den Ausschnitt auf den oberen Bereich (Gesichter) */
    border-radius: 50%;      /* Macht das Bild rund */
    margin: 0 auto 20px auto;
    display: block;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Logo Styling im Header */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px; 
    width: auto;   
}
.contact {
    background-color: #ffffff;
    padding: 80px 20px;
}

.contact .container {
    max-width: 7000px; /* Gibt dem Formular einen angenehmen, zentrierten Rahmen */
    max-width: 700px;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-align: left;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #ffffff;
    color: #334155;
    transition: all 0.3s ease;
}

/* Schöner Fokuseffekt beim Reinklicken */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: #ffffff;
}

/* Button-Anpassung im Formular */
.contact-form button.btn-secondary {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 14px;
    border-radius: 8px;
    background-color: #1e3a8a;
    color: white;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 10px;
}

.contact-form button.btn-secondary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

/* ==========================================
   Technologischer Vergleichs-Kasten
   ========================================== */
.comparison-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.comparison-table th, 
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table thead th {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    background-color: #f8fafc;
}

.comparison-table th.bad-column {
    color: #991b1b;
    background-color: #fef2f2;
    width: 35%;
}

.comparison-table th.good-column {
    color: #1e3a8a;
    background-color: #eff6ff;
    width: 40%;
}

.comparison-table tbody tr:hover {
    background-color: #f8fafc;
}

.bad-cell {
    color: #991b1b;
    background-color: #fff5f5;
}

.good-cell {
    color: #1e40af;
    background-color: #f0fdf4;
    font-weight: 600;
}

/* ==========================================
   Investor Key-Facts & Pipeline Styling
   ========================================== */
.investor-facts {
    padding: 60px 20px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.fact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.fact-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.fact-label {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

/* Pipeline Tabelle */
.pipeline-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.pipeline-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.pipeline-table th, 
.pipeline-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.pipeline-table thead th {
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
}

.pipeline-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Badges für Plattformen */
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-pharma {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-b2b {
    background-color: #dcfce7;
    color: #166534;
}