/* Extracted from lohnklar-gruppe.php. */

/* === LOHNKLAR-GRUPPE === prefix: lg- */

.lg-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    padding: 5rem 0 4rem;
    color: #fff;
    text-align: center;
}
.lg-hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.lg-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #fff;
}
.lg-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.lg-hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.lg-hero-trust strong { color: #fff; }

/* Brand Cards */
.lg-brands {
    padding: 5rem 0;
    background: #f8fafc;
}
.lg-brands-header {
    text-align: center;
    margin-bottom: 3rem;
}
.lg-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.lg-brand-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border-top: 4px solid var(--lg-brand-color, #2563eb);
}
.lg-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.lg-brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--lg-brand-bg, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.lg-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.35rem;
}
.lg-brand-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lg-brand-color, #2563eb);
    margin-bottom: 0.75rem;
}
.lg-brand-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.lg-brand-services {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.lg-brand-services li {
    font-size: 0.88rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lg-brand-services li::before {
    content: "✓";
    color: var(--lg-brand-color, #2563eb);
    font-weight: 700;
    flex-shrink: 0;
}
.lg-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lg-brand-color, #2563eb);
    text-decoration: none;
}
.lg-brand-link:hover { text-decoration: underline; }
.lg-brand-url {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Why Section */
.lg-why {
    padding: 5rem 0;
    background: #fff;
}
.lg-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.lg-why-item {
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 14px;
}
.lg-why-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.lg-why-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}
.lg-why-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Team Hint */
.lg-team {
    padding: 4rem 0;
    background: #1e3a5f;
    color: #fff;
    text-align: center;
}
.lg-team h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}
.lg-team-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.lg-team-avatars {
    display: flex;
    justify-content: center;
    gap: -0.5rem;
    margin-bottom: 2rem;
}
.lg-team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #1e3a5f;
    margin-left: -12px;
    object-fit: cover;
    background: rgba(255,255,255,0.2);
}
.lg-team-avatar:first-child { margin-left: 0; }
.lg-team-facts {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.lg-team-fact { text-align: center; }
.lg-team-fact strong { display: block; font-size: 1.75rem; font-weight: 800; color: #fff; }
.lg-team-fact span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* So arbeiten wir */
.lg-how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.lg-how-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.lg-how-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lg-how-body strong { display: block; font-weight: 700; color: #1f2937; margin-bottom: 0.4rem; }
.lg-how-body p { font-size: 0.9rem; color: #4b5563; line-height: 1.6; margin: 0; }

/* CTA */
.lg-cta {
    padding: 4rem 0;
    background: #f0f9ff;
    text-align: center;
}
.lg-cta h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}
.lg-cta-sub {
    color: #4b5563;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}
.lg-cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .lg-brands-grid { grid-template-columns: 1fr; }
    .lg-why-grid { grid-template-columns: 1fr; }
    .lg-hero-trust { flex-direction: column; gap: 0.75rem; align-items: center; }
}
