/* =========================================
   INDUSTRY PAGES CSS: BRANCHER
   (Clean Split-Layout for maksimal læsbarhed)
========================================= */

/* Hovedcontaineren med top-padding for at gå fri af navbaren */
.industry-page-wrapper {
    padding-top: 10rem;
    /* Giver god luft ned fra toppen */
    padding-bottom: 8rem;
    background-color: #FAFAFC;
    /* En meget subtil, varm grå/hvid der fremhæver app'ens tech-look */
    min-height: 100vh;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    /* Centrerer indholdet vertikalt */
}

/* --- Venstre Side (Copywriting & CRO) --- */
.industry-text {
    max-width: 600px;
}

/* Den lille farvede "pre-header" over den store overskrift */
.industry-label {
    display: inline-block;
    color: #00FFD1;
    /* KlokIn Turkis */
    background: #0A0F14;
    /* KlokIn Mørk */
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.industry-text h1 {
    font-size: clamp(3rem, 4vw, 4rem);
    line-height: 1.1;
    color: #0A0F14;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.industry-text .lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.industry-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Tjekliste med fordele (Meget stærkt CRO element) */
.industry-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.industry-benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
}

/* Skaber det grønne flueben via CSS uden at hente billeder */
.industry-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    color: #00FFD1;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Knapper */
.industry-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    align-items: center;
}

.btn-primary-industry {
    display: inline-block;
    background-color: #00FFD1;
    color: #0A0F14;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 10px 20px rgba(0, 255, 209, 0.2);
}

.btn-primary-industry:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 255, 209, 0.4);
}

.industry-trust {
    font-size: 0.9rem;
    color: #777;
}

/* --- Højre Side (Billede) --- */
.industry-image {
    position: relative;
}

.industry-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    /* Et meget højt portræt format */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Et lille grafisk design-element bag billedet for SaaS feel */
.industry-image::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 100%;
    height: 100%;
    background: #00FFD1;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.1;
}

/* Mobil Responsivitet */
@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .industry-page-wrapper {
        padding-top: 6rem;
    }

    .industry-image {
        order: -1;
        /* Billedet rykkes til toppen på mobiler, eller lade teksten være øverst. Tekst øverst er bedst til CRO. Jeg lader det være (order: initial). */
    }

    .industry-image img {
        aspect-ratio: 1/1;
    }

    .industry-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-industry {
        text-align: center;
    }
}