﻿
body {
    margin: 0;
    padding-bottom: 80px; /* ungefär foterns höjd */
    background-color: #020617;
    color: #e5e7eb;
}

/* Väldigt subtil bakgrund – mindre "laser show" */
.bg-image {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 12% 20%, rgba(59,130,246,.18) 0, transparent 45%), radial-gradient(circle at 88% 80%, rgba(236,72,153,.14) 0, transparent 50%);
    opacity: .6;
    z-index: -1;
}

/* Sektioner – mer luft, konsekvent spacing */
.section {
    position: relative;
    z-index: 1;
    padding-block: 3.5rem;
}

@media (max-width: 575.98px) {
    .section {
        padding-block: 2.75rem;
    }
}

/* Kort / panels – FLAT istället för glas */
.card-ghost,
.hero-card,
.meeting-card,
.header-dark-glass {
    background-color: #020617;
    border-radius: 1.25rem;
    border: 1px solid rgba(148,163,184,.35);
    box-shadow: 0 18px 40px rgba(15,23,42,.55);
    /* ingen blur, ingen glas-effekt */
}

/* Hero */
.hero-section {
    color: #f9fafb;
}

    .hero-section .lead {
        color: #cbd5f5;
        max-width: 40rem;
    }

.hero-kicker {
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Mötet-kort / carousel */
.meeting-bg {
    filter: brightness(0.6);
}

.meeting-overlay {
    background: linear-gradient(to top, rgba(15,23,42,.95), rgba(15,23,42,.15));
}

.meeting-body {
    min-height: 260px;
}

/* Små detaljer */
.soft-badge {
    border-radius: 999px;
    padding-inline: 0.9rem;
    padding-block: 0.35rem;
}

/* Ikoncheck-lista */
.list-icon-check {
    padding-left: 0;
    list-style: none;
}

    .list-icon-check li {
        position: relative;
        padding-left: 1.6rem;
        margin-bottom: .35rem;
    }

        .list-icon-check li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0.05rem;
            font-size: .9rem;
            color: #22c55e;
        }

/* Formulär */
.ai-form .form-label {
    color: #e5e7eb;
}

.ai-form .form-control,
.ai-form .form-check-input {
    background-color: #020617;
    border-color: rgba(148,163,184,.7);
    color: #e5e7eb;
}

    .ai-form .form-control::placeholder {
        color: #6b7280;
    }

    .ai-form .form-control:focus,
    .ai-form .form-check-input:focus {
        border-color: #38bdf8;
        box-shadow: 0 0 0 0.1rem #020617, 0 0 0 0.2rem rgba(56,189,248,.65);
    }

/* Knappar – lite mer flat */
.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
    border-radius: 999px;
    font-weight: 600;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: #1d4ed8;
        border-color: #1d4ed8;
    }

.btn-outline-light {
    border-color: rgba(226,232,240,.75);
    color: #e5e7eb;
    border-radius: 999px;
    font-weight: 500;
}

    .btn-outline-light:hover {
        background-color: rgba(248,250,252,.08);
    }

/* Fixerad footer längst ned i viewporten */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #020617;
    border-top: 1px solid rgba(148,163,184,.35);
    color: #9ca3af;
    z-index: 1030; /* ovanför innehållet */
}

    .footer a {
        color: #e5e7eb;
    }

        .footer a:hover {
            color: #bfdbfe;
        }

/* Typografi-hierarki för beslutsfattare */
.display-5 {
    letter-spacing: -0.03em;
}

.section h2,
.section .h3,
.section .h4 {
    letter-spacing: -0.02em;
}

/* Responsivt: mindre plottrigt på mobil */
@media (max-width: 767.98px) {
    .hero-card,
    .card-ghost {
        border-radius: 1rem;
        box-shadow: 0 14px 30px rgba(15,23,42,.7);
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .meeting-body {
        min-height: auto;
    }
}
