/* ════════════════════════════════════════
   ueber-uns.css – Über uns Seite
════════════════════════════════════════ */

/* ── HERO ──────────────────────────────── */
.ue-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #fff8f2 0%, #f0f4ff 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
}

.ue-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.ue-hero .section-badge {
    margin-bottom: 20px;
}

.ue-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ue-brand {
    background: linear-gradient(135deg, var(--brand-orange), #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ue-hero-lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.ue-hero-lead strong {
    color: var(--text-dark);
    font-weight: 600;
}

.ue-hero-slogan {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 10px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ue-slogan-dot {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.ue-hero-bg-deco {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,148,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── ALLGEMEINE SECTION ─────────────────── */
.ue-section {
    padding: 80px 0;
}

.ue-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.ue-section-header .section-badge {
    margin-bottom: 16px;
}

.ue-section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.ue-section-lead {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── MISSION: Two-Col ───────────────────── */
.ue-mission {
    background: white;
}

.ue-two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
}

.ue-text-col .section-badge {
    margin-bottom: 16px;
}

.ue-text-col h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.ue-text-col p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.ue-text-col p:last-child {
    margin-bottom: 0;
}

/* Stats */
.ue-stats-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ue-stat-card {
    background: var(--bg-light, #f8fafc);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.ue-stat-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.ue-stat-icon {
    font-size: 1.3rem;
    color: var(--brand-orange);
    margin-bottom: 8px;
}

.ue-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.ue-stat-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* ── ZERTIFIZIERUNGEN ───────────────────── */
.ue-trust-section {
    background: linear-gradient(135deg, #f8fafc 0%, #fff8f2 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ue-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .ue-cert-grid > .ue-cert-card:nth-child(4) {
        grid-column: 1;
    }
    .ue-cert-grid > .ue-cert-card:nth-child(5) {
        grid-column: 2;
    }
}

.ue-cert-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.2s;
}

.ue-cert-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.ue-cert-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ue-cert-orange { background: rgba(255,148,0,0.1); color: var(--brand-orange); }
.ue-cert-blue   { background: rgba(37,99,235,0.08); color: #2563eb; }
.ue-cert-green  { background: rgba(22,163,74,0.08); color: #16a34a; }
.ue-cert-purple { background: rgba(139,92,246,0.08); color: #8b5cf6; }
.ue-cert-flag   { background: rgba(37,99,235,0.08); color: #1d4ed8; }

.ue-cert-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.ue-cert-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.ue-trust-cta {
    text-align: center;
}

/* ── KUNDEN ─────────────────────────────── */
.ue-customers {
    background: white;
}

.ue-customer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.ue-customer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light, #f8fafc);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: border-color 0.2s, background 0.2s;
}

.ue-customer-tag:hover {
    border-color: rgba(255,148,0,0.4);
    background: rgba(255,148,0,0.04);
}

.ue-customer-tag i {
    font-size: 0.45rem;
    color: var(--brand-orange);
}

.ue-customer-more {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.ue-customer-more a {
    color: var(--brand-orange);
    font-weight: 600;
    text-decoration: none;
}

.ue-customer-more a:hover {
    text-decoration: underline;
}

/* ── TEAM ───────────────────────────────── */
.ue-team-section {
    background: var(--bg-light, #f8fafc);
    border-top: 1px solid var(--border);
}

.ue-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ue-team-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.ue-team-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

/* Foto */
.ue-team-photo-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0f0f0;
}

.ue-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.ue-team-card:hover .ue-team-photo {
    transform: scale(1.04);
}

/* Info-Block */
.ue-team-info {
    padding: 18px 20px 20px;
}

.ue-team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.ue-team-role {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 10px;
}

/* Abteilungs-Badge */
.ue-team-dept {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.ue-dept-orange {
    background: rgba(255,148,0,0.1);
    color: var(--brand-orange);
    border: 1px solid rgba(255,148,0,0.25);
}

.ue-dept-blue {
    background: rgba(37,99,235,0.08);
    color: #2563eb;
    border: 1px solid rgba(37,99,235,0.2);
}

.ue-dept-purple {
    background: rgba(139,92,246,0.08);
    color: #8b5cf6;
    border: 1px solid rgba(139,92,246,0.2);
}


/* ── CTA SECTION ────────────────────────── */
.ue-cta-section {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #e65c00 100%);
    padding: 72px 0;
}

.ue-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ue-cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.ue-cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    margin: 0;
    max-width: 480px;
}

.ue-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.ue-cta-actions .btn-primary {
    background: white;
    color: var(--brand-orange);
    border-color: white;
}

.ue-cta-actions .btn-primary:hover {
    background: rgba(255,255,255,0.92);
}

.ue-cta-actions .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: white;
    border-color: rgba(255,255,255,0.35);
}

.ue-cta-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.22);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
    .ue-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ue-stats-col {
        grid-template-columns: repeat(4, 1fr);
    }
    .ue-cert-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ue-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ue-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .ue-cta-text p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ue-hero h1 { font-size: 2rem; }
    .ue-hero-slogan { font-size: 0.82rem; gap: 8px; padding: 8px 16px; }
    .ue-section { padding: 56px 0; }
    .ue-section-header h2 { font-size: 1.65rem; }
    .ue-text-col h2 { font-size: 1.6rem; }
    .ue-stats-col { grid-template-columns: 1fr 1fr; }
    .ue-cert-grid { grid-template-columns: 1fr; }
    .ue-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ue-cta-actions { flex-direction: column; width: 100%; }
    .ue-cta-section { padding: 52px 0; }
    .ue-cta-text h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .ue-stats-col { grid-template-columns: 1fr 1fr; }
    .ue-customer-tag { font-size: 0.82rem; padding: 6px 14px; }
    .ue-team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
}
