/* Extracted from lohnabrechnung-wechseln.php. Edit here, not in PHP. */

/* ============================================
   LW, Lohnabrechnung Wechseln Seiten-Styles (CI-konform)
   Design: "Anbieterwechsel / Sicherheit & Vertrauen", Lohnklar Light Blue
   Prefix: lw-
   ============================================ */

/* ---- HERO ---- */
.lw-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5.5rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}
.lw-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.lw-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.lw-hero-content {
}
.lw-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.lw-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #1e3a5f;
    line-height: 1.18;
    margin-bottom: 1.25rem;
}
.lw-hero h1 .lw-h1-accent {
    color: #2563eb;
}
.lw-hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 540px;
}
.lw-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.25rem;
}
.lw-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1.5px solid #bfdbfe;
    color: #1e3a5f;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 1px 4px rgba(37,99,235,0.07);
}
.lw-chip-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}
.lw-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.lw-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
.lw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.lw-btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 50px;
    padding: 0.85rem 1.85rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.18s, color 0.18s;
}
.lw-btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

/* ---- HERO SVG VISUAL ---- */
.lw-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lw-hero-svg {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 12px 40px rgba(37,99,235,0.12));
}

/* ---- STATS BAR ---- */
.lw-stats-bar {
    background: #1e3a5f;
    padding: 2rem;
}
.lw-stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.lw-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.lw-stat-label {
    font-size: 0.82rem;
    color: #93c5fd;
    font-weight: 500;
}

/* ---- GRÜNDE SECTION ---- */
.lw-gruende {
    padding: 5rem 2rem;
    background: #fff;
}
.lw-gruende-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.lw-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.lw-section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
}
.lw-section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}
.lw-gruende-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.lw-grund-card {
    background: #f8fafc;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.lw-grund-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}
.lw-grund-icon-wrap {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.lw-grund-icon {
    font-size: 1.5rem;
    line-height: 1;
}
.lw-grund-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
}
.lw-grund-card p {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.65;
}
.lw-grund-card .lw-tag {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    background: #dbeafe;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

/* ---- 4-PHASEN PROZESS (Navy BG) ---- */
.lw-prozess {
    background: #1e3a5f;
    padding: 5.5rem 2rem;
}
.lw-prozess-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.lw-prozess .lw-section-title {
    color: #fff;
}
.lw-prozess .lw-section-subtitle {
    color: #93c5fd;
}
.lw-phasen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-top: 3rem;
}
.lw-phasen-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #10b981);
    z-index: 0;
}
.lw-phase-card {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: background 0.2s;
}
.lw-phase-card:hover {
    background: rgba(255,255,255,0.10);
}
.lw-phase-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.25);
}
.lw-phase-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.lw-phase-card .lw-phase-dauer {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.15);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
    letter-spacing: 0.04em;
}
.lw-phase-card p {
    font-size: 0.88rem;
    color: #93c5fd;
    line-height: 1.65;
}
.lw-phase-card ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    text-align: left;
}
.lw-phase-card ul li {
    font-size: 0.84rem;
    color: #bfdbfe;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.lw-phase-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* ---- SERVICE KARTEN (Was Lohnklar übernimmt) ---- */
.lw-services {
    padding: 5rem 2rem;
    background: #f0f9ff;
}
.lw-services-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.lw-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.lw-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1.5px solid #e0f2fe;
    transition: box-shadow 0.2s, transform 0.2s;
}
.lw-service-card:hover {
    box-shadow: 0 10px 32px rgba(37,99,235,0.1);
    transform: translateY(-3px);
}
.lw-service-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}
.lw-service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.6rem;
}
.lw-service-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
}
.lw-service-card .lw-emerald-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    margin-top: 0.85rem;
}

/* ---- TIMELINE (horizontal) ---- */
.lw-timeline {
    padding: 5rem 2rem;
    background: #fff;
}
.lw-timeline-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.lw-timeline-track {
    position: relative;
    margin-top: 3rem;
}
.lw-timeline-line {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, #dbeafe, #2563eb, #10b981);
    border-radius: 2px;
    z-index: 0;
}
.lw-timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.lw-timeline-step {
    text-align: center;
}
.lw-timeline-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.lw-timeline-dot.lw-dot-1 { background: #dbeafe; color: #1d4ed8; border: 2.5px solid #2563eb; }
.lw-timeline-dot.lw-dot-2 { background: #dbeafe; color: #1d4ed8; border: 2.5px solid #2563eb; }
.lw-timeline-dot.lw-dot-3 { background: #d1fae5; color: #065f46; border: 2.5px solid #10b981; }
.lw-timeline-dot.lw-dot-4 { background: #047857; color: #fff; border: 2.5px solid #065f46; }
.lw-timeline-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.4rem;
}
.lw-timeline-week {
    font-size: 0.7rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.35rem;
}
.lw-timeline-step ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lw-timeline-step ul li {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    padding: 0.2rem 0;
}

/* ---- VERGLEICH KASTEN ---- */
.lw-vergleich {
    padding: 4.5rem 2rem;
    background: #f8fafc;
}
.lw-vergleich-inner {
    max-width: 900px;
    margin: 0 auto;
}
.lw-vergleich-karten {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.lw-vergleich-karte {
    border-radius: 16px;
    padding: 2rem;
}
.lw-vergleich-karte.lw-alt {
    background: #fee2e2;
    border: 1.5px solid #fca5a5;
}
.lw-vergleich-karte.lw-neu {
    background: #d1fae5;
    border: 1.5px solid #6ee7b7;
}
.lw-vergleich-karte h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.lw-vergleich-karte.lw-alt h3 { color: #991b1b; }
.lw-vergleich-karte.lw-neu h3 { color: #065f46; }
.lw-vergleich-karte ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lw-vergleich-karte ul li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}
.lw-vergleich-karte.lw-alt ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}
.lw-vergleich-karte.lw-alt ul li { color: #7f1d1d; }
.lw-vergleich-karte.lw-neu ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}
.lw-vergleich-karte.lw-neu ul li { color: #064e3b; }

/* ---- FAQ ---- */
.lw-faq {
    padding: 5rem 2rem;
    background: #fff;
}
.lw-faq-inner {
    max-width: 860px;
    margin: 0 auto;
}
.lw-faq-item {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.lw-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.lw-faq-question {
    width: 100%;
    background: #f8fafc;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.15s;
}
.lw-faq-question:hover { background: #eff6ff; }
.lw-faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: #2563eb;
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
}
.lw-faq-answer {
    display: none;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}
.lw-faq-answer p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}
.lw-faq-answer p + p { margin-top: 0.75rem; }

/* ---- EMERALD CTA ---- */
.lw-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    text-align: center;
}
.lw-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.lw-cta h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.lw-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.lw-btn-white {
    background: #fff;
    color: #059669;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.lw-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ---- INTERNE LINKS ---- */
.lw-interlinks {
    padding: 4rem 2rem;
    background: #f8fafc;
}
.lw-interlinks-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.lw-interlinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.lw-interlink-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    display: block;
}
.lw-interlink-card:hover {
    box-shadow: 0 6px 20px rgba(37,99,235,0.1);
    border-color: #bfdbfe;
}
.lw-interlink-card .lw-il-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.4rem;
}
.lw-interlink-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.4rem;
}
.lw-interlink-card p {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}
.lw-interlink-card .lw-il-arrow {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: #2563eb;
    font-weight: 600;
}

/* ---- TESTIMONIAL ---- */
.lw-testimonials {
    padding: 4.5rem 2rem;
    background: #f0f9ff;
}
.lw-testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.lw-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.lw-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1.5px solid #e0f2fe;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
}
.lw-testimonial-stars {
    color: #b45309;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.lw-testimonial-text {
    font-size: 0.93rem;
    color: #4b5563;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.25rem;
}
.lw-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.lw-testimonial-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.lw-testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
}
.lw-testimonial-role {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .lw-phasen-grid { grid-template-columns: repeat(2, 1fr); }
    .lw-phasen-grid::before { display: none; }
    .lw-gruende-grid { grid-template-columns: repeat(2, 1fr); }
    .lw-gruende-grid .lw-grund-card:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .lw-services-grid { grid-template-columns: repeat(2, 1fr); }
    .lw-timeline-steps { grid-template-columns: repeat(2, 1fr); }
    .lw-timeline-line { display: none; }
    .lw-interlinks-grid { grid-template-columns: repeat(2, 1fr); }
    .lw-testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .lw-hero-inner { grid-template-columns: 1fr; }
    .lw-hero-content { text-align: center; }
}
@media (max-width: 640px) {
    .lw-hero { padding: 3.5rem 1.25rem 3rem; }
    .lw-phasen-grid { grid-template-columns: 1fr; }
    .lw-gruende-grid { grid-template-columns: 1fr; }
    .lw-services-grid { grid-template-columns: 1fr; }
    .lw-stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .lw-vergleich-karten { grid-template-columns: 1fr; }
    .lw-timeline-steps { grid-template-columns: 1fr; }
    .lw-interlinks-grid { grid-template-columns: 1fr; }
}
