/*
==============================================================================
LUVEX THEME - UV SOLUTIONS PAGE (V108 - Final Positions Confirmed)
==============================================================================
*/

/* --- 1.0 Hero Section --- */
.luvex-hero--solutions {
    background: var(--luvex-dark-blue);
    color: var(--luvex-white);
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 90vh;
    display: flex;
    align-items: flex-start; /* Beibehaltung für präzise Margin-Steuerung von oben */
    justify-content: center;
    overflow: hidden;
}

/* Background Grid Overlay */
.luvex-hero--solutions::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="hero-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(109, 213, 237, 0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hero-grid)"/></svg>');
    opacity: 0.4; pointer-events: none; z-index: 1;
}

#hero-solutions-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}

/* --- 2.0 Hero Content --- */
.luvex-hero--solutions .luvex-hero__container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
    width: 100%;
    pointer-events: none; /* Verhindert, dass der Textcontainer Maus-Events abfängt */
}

.luvex-hero--solutions .luvex-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 0 20px rgba(109, 213, 237, 0.5);
    /* FINALE POSITION */
    margin: 12rem 0 0 0;
}

.luvex-hero--solutions .luvex-hero__subtitle {
    /* FINALE ANPASSUNGEN */
    font-size: clamp(1.1rem, 2.2vw, 1.4rem); /* Schrift vergrößert */
    font-weight: 500; /* Schriftstärke erhöht */
    color: var(--luvex-gray-200);
    max-width: 700px; /* Breite angepasst für besseren Umbruch */
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(109, 213, 237, 0.3); /* Dezenter Leuchteffekt */
    /* FINALE POSITION */
    margin: 11rem auto 0 auto;
}


/* --- 3.0 Solution Categories Section --- */
.solution-categories {
    padding: 6rem 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--luvex-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--luvex-gray-200);
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--luvex-bright-cyan);
}

.solution-card__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-card__icon {
    font-size: 2rem;
    width: 60px; height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #e7f1ff, #f0f8ff);
    color: var(--luvex-vibrant-blue);
}

.solution-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--luvex-dark-blue);
    margin: 0;
}

.solution-card__description {
    color: var(--luvex-gray-700);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.solution-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--luvex-vibrant-blue);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.solution-card__link .fa-arrow-right {
    transition: transform 0.3s ease;
}

.solution-card__link:hover .fa-arrow-right {
    transform: translateX(4px);
}

