/* Extracted from lohnklar-vs-inhouse.php. Edit here, not in PHP. */

/* =============================================
   LOHNKLAR-VS-INHOUSE PAGE, lvi- prefix
   Design: Navy Hero, Blue Accent
   ============================================= */

/* ---------- Hero ---------- */
.lvi-hero {
    background: #1e3a5f;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.lvi-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.lvi-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.lvi-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.lvi-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #93c5fd;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.lvi-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.lvi-hero h1 span {
    color: #93c5fd;
}
.lvi-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}
.lvi-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.lvi-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(16,185,129,0.3);
}
.lvi-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16,185,129,0.4);
}
.lvi-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.45);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.lvi-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ---------- Hero Visual (Cost SVG) ---------- */
.lvi-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lvi-hero-visual svg {
    width: 100%;
    max-width: 440px;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.25));
}

/* ---------- Trust Bar ---------- */
.lvi-trust-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
}
.lvi-trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    align-items: center;
}
.lvi-stat {
    text-align: center;
}
.lvi-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a5f;
    line-height: 1;
    margin-bottom: 4px;
}
.lvi-stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

/* ---------- Cost Comparison ---------- */
.lvi-costs {
    padding: 80px 0;
    background: #fff;
}
.lvi-costs-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.lvi-section-label {
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.lvi-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
}
.lvi-section-sub {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    max-width: 620px;
    margin: 0 auto 52px;
    line-height: 1.65;
}
.lvi-cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.lvi-cost-card {
    border-radius: 16px;
    padding: 36px;
    border: 2px solid transparent;
}
.lvi-cost-card.internal {
    background: #fff;
    border-color: #e5e7eb;
}
.lvi-cost-card.outsource {
    background: linear-gradient(135deg, #f0fdf4, #d1fae5);
    border-color: #10b981;
}
.lvi-cost-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.lvi-cost-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.lvi-cost-card.internal .lvi-cost-icon {
    background: #f3f4f6;
}
.lvi-cost-card.outsource .lvi-cost-icon {
    background: rgba(16,185,129,0.15);
}
.lvi-cost-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}
.lvi-cost-subtitle {
    font-size: 0.82rem;
    color: #6b7280;
}
.lvi-cost-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lvi-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.93rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.lvi-cost-row:last-child {
    border-bottom: none;
}
.lvi-cost-row-label {
    color: #4b5563;
    flex: 1;
}
.lvi-cost-row-value {
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
    margin-left: 16px;
}
.lvi-cost-row-value.red {
    color: #dc2626;
}
.lvi-cost-row-value.green {
    color: #059669;
}
.lvi-cost-total {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lvi-cost-card.internal .lvi-cost-total {
    background: #fef2f2;
}
.lvi-cost-card.outsource .lvi-cost-total {
    background: rgba(16,185,129,0.12);
}
.lvi-cost-total-label {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.95rem;
}
.lvi-cost-total-value {
    font-size: 1.3rem;
    font-weight: 800;
}
.lvi-cost-card.internal .lvi-cost-total-value {
    color: #dc2626;
}
.lvi-cost-card.outsource .lvi-cost-total-value {
    color: #059669;
}
.lvi-cost-note {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 12px;
    text-align: center;
}

/* ---------- Hidden Costs Section ---------- */
.lvi-hidden {
    padding: 80px 0;
    background: #f8fafc;
}
.lvi-hidden-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.lvi-risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.lvi-risk-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.lvi-risk-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.lvi-risk-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}
.lvi-risk-body p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ---------- Honest Both Sides ---------- */
.lvi-honest {
    padding: 80px 0;
    background: #fff;
}
.lvi-honest-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.lvi-decision-card {
    border-radius: 16px;
    padding: 36px;
    border: 2px solid;
}
.lvi-decision-card.internal-card {
    border-color: #e5e7eb;
    background: #f9fafb;
}
.lvi-decision-card.outsource-card {
    border-color: #bfdbfe;
    background: #eff6ff;
}
.lvi-decision-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}
.lvi-decision-card .lvi-threshold {
    font-size: 0.84rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-style: italic;
}
.lvi-decision-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lvi-decision-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: #374151;
    line-height: 1.5;
}
.lvi-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.lvi-decision-note {
    margin-top: 20px;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 0.87rem;
    line-height: 1.55;
    color: #374151;
}
.lvi-decision-card.internal-card .lvi-decision-note {
    background: #f3f4f6;
    border-left: 3px solid #9ca3af;
}
.lvi-decision-card.outsource-card .lvi-decision-note {
    background: #dbeafe;
    border-left: 3px solid #2563eb;
    color: #1e3a5f;
}

/* ---------- What You Get ---------- */
.lvi-benefits {
    padding: 80px 0;
    background: #1e3a5f;
}
.lvi-benefits-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.lvi-benefits .lvi-section-label {
    color: #93c5fd;
}
.lvi-benefits .lvi-section-title {
    color: #fff;
}
.lvi-benefits .lvi-section-sub {
    color: rgba(255,255,255,0.7);
}
.lvi-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.lvi-benefit-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 28px;
    transition: background 0.2s;
}
.lvi-benefit-card:hover {
    background: rgba(255,255,255,0.11);
}
.lvi-benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 14px;
    display: block;
}
.lvi-benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.lvi-benefit-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0;
}

/* ---------- FAQ ---------- */
.lvi-faq {
    padding: 80px 0;
    background: #f8fafc;
}
.lvi-faq-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.lvi-faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lvi-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}
.lvi-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.97rem;
    gap: 16px;
    list-style: none;
    user-select: none;
}
.lvi-faq-q .lvi-faq-arrow {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: #2563eb;
}
.lvi-faq-item.open .lvi-faq-arrow {
    transform: rotate(180deg);
}
.lvi-faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}
.lvi-faq-item.open .lvi-faq-a {
    max-height: 600px;
    padding: 0 24px 20px;
}

/* ---------- CTA ---------- */
.lvi-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #10b981, #059669);
}
.lvi-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.lvi-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.lvi-cta p {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.lvi-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #065f46;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 17px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.lvi-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.lvi-cta-sub {
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .lvi-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lvi-hero-visual {
        display: none;
    }
    .lvi-cost-grid {
        grid-template-columns: 1fr;
    }
    .lvi-honest-inner {
        grid-template-columns: 1fr;
    }
    .lvi-benefit-grid {
        grid-template-columns: 1fr 1fr;
    }
    .lvi-risk-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .lvi-hero {
        padding: 70px 0 60px;
    }
    .lvi-trust-bar-inner {
        gap: 28px;
    }
    .lvi-benefit-grid {
        grid-template-columns: 1fr;
    }
}
