/* =========================================================
   GLOBAL BASE STYLES
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    background: #0d0d12;
    color: #ffffff;
    line-height: 1.7;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

section {
    padding: 90px 0;
}

h1, h2, h3 {
    font-weight: 700;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-shell {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.55);
    backdrop-filter: blur(12px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-pill {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.brand-sub {
    font-size: 0.8rem;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.2s ease;
    font-size: 1.05rem;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

/* SPRÅKVAL */
.lang-switch {
    margin-left: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.lang-switch a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
}

.lang-switch a:hover {
    opacity: 1;
}

/* CTA */
.nav-cta {
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.nav-cta:hover {
    opacity: 0.85;
}

/* MOBILMENY */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fff;
}

.nav-mobile {
    display: none;
    background: #0d0d12;
    padding: 20px;
}

.nav-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
/* =========================================================
   HERO GRID
   ========================================================= */

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    padding: 120px 5% 80px;
}

.hero-kicker {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 22px;
}

.hero-gradient {
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-tags {
    margin-bottom: 32px;
}

.hero-actions {
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.hero-meta-dot {
    width: 8px;
    height: 8px;
    background: #7b2ff7;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}
/* =========================================================
   PANELS
   ========================================================= */

.panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 14px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.panel-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.panel-pill {
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.chip {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.9rem;
}

.chip-strong {
    background: rgba(255, 255, 255, 0.18);
}

.panel-note {
    font-size: 0.95rem;
    opacity: 0.85;
}
/* =========================================================
   SECTION HEADER
   ========================================================= */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-kicker {
    font-size: 0.9rem;
    opacity: 0.7;
}

.section-title {
    font-size: 2rem;
    margin-top: 6px;
}

.section-sub {
    max-width: 420px;
    opacity: 0.85;
    font-size: 1rem;
}
/* =========================================================
   CARD GRID
   ========================================================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
}

.card-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.card-body {
    opacity: 0.85;
    margin-bottom: 18px;
}

.card-tags {
    display: flex;
    gap: 10px;
}

.card-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.85rem;
}
/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 60px 0;
    text-align: center;
    opacity: 0.8;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-mobile {
        display: block;
    }
}
