        *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark: #141414;
    --dark-card: #1a1a1a;
    --gray: #888;
    --light-gray: #ccc;
    --white: #f5f5f5;
    --accent: #e6205e;
    --accent-cyan: #00b4d8;
    --accent-yellow: #f5c518;
    --accent-magenta: #d63384;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--white);
    color: var(--black);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-cta:hover {
    opacity: 0.85;
}

.nav-logo img {
    /* Logo has white text + CMYK feather — works natively on dark bg */
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg img.active {
    opacity: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.78) 50%,
        rgba(10, 10, 10, 0.96) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    width: 340px;
    max-width: 80vw;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--light-gray);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--black);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
}

/* SECTION SHARED */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 1rem auto 0;
}

/* SERVICES */
#tjanster {
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.service-icon.dekor { background: rgba(230, 32, 94, 0.15); color: var(--accent); }
.service-icon.fordon { background: rgba(0, 180, 216, 0.15); color: var(--accent-cyan); }
.service-icon.skylt { background: rgba(245, 197, 24, 0.15); color: var(--accent-yellow); }
.service-icon.tryck { background: rgba(214, 51, 132, 0.15); color: var(--accent-magenta); }
.service-icon.insyn { background: rgba(100, 200, 150, 0.15); color: #64c896; }
.service-icon.montage { background: rgba(130, 130, 230, 0.15); color: #8282e6; }
.service-icon.api { background: rgba(130, 130, 230, 0.15); color: #8282e6; }

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* PORTFOLIO */
.portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.portfolio-overlay span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ABOUT / USP */
#om-oss {
    background: var(--dark);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* CONTACT */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    transition: border-color 0.3s;
}

.contact-card:hover {
    border-color: rgba(255,255,255,0.15);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(230, 32, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--white);
}

.contact-info p {
    color: var(--gray);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, transform 0.3s;
    text-decoration: none;
}

.social-link:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--gray);
}

/* FAQ ACCORDION */
#faq {
    background: var(--dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-list details {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-list details:hover {
    border-color: rgba(255,255,255,0.15);
}

.faq-list details[open] {
    border-color: rgba(230, 32, 94, 0.3);
}

.faq-list summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gray);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-list .faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FOOTER */
footer {
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
}

footer span {
    opacity: 0.6;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SCROLL ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
        color: var(--white);
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 100svh;
        padding: 5rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 4rem 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .portfolio-item {
        border-radius: 8px;
    }

    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
        padding: 1rem;
    }

    .portfolio-hide-mobile {
        display: none;
    }

    .portfolio-overlay h4 {
        font-size: 0.85rem;
    }

    .portfolio-overlay span {
        font-size: 0.7rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* ===== Tjänstesidor (undersidor) ===== */
.page-hero {
    padding: 9rem 2rem 3.5rem;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(230,32,94,0.18), transparent 60%),
        var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}
.page-hero h1 .highlight { color: var(--accent); }
.page-hero p {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: var(--light-gray);
    font-size: 1.1rem;
}
.breadcrumb {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.prose { max-width: 780px; margin: 0 auto; color: var(--light-gray); }
.prose p { margin-bottom: 1.2rem; }
.prose h2 { color: var(--white); font-size: 1.6rem; margin: 2.5rem 0 1rem; letter-spacing: -0.01em; }
.prose h3 { color: var(--white); font-size: 1.15rem; margin: 1.8rem 0 0.6rem; }
.prose ul { margin: 0 0 1.2rem 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--accent-cyan); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.step {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.8rem;
}
.step-nr {
    display: inline-block;
    width: 2rem; height: 2rem; line-height: 2rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff; text-align: center; font-weight: 700;
    margin-bottom: 1rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { color: var(--gray); font-size: 0.95rem; }
.cta-box {
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(230,32,94,0.15), rgba(0,180,216,0.10));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
}
.cta-box h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.cta-box p { color: var(--light-gray); margin-bottom: 1.5rem; }
.cta-box .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-box .cta-row a { text-decoration: none; }
.cta-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 1.6rem; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15); color: var(--white);
}
.cta-secondary:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.related-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem; max-width: 1000px; margin: 0 auto;
}
.related-card {
    display: block; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 1.5rem; color: var(--white); text-decoration: none;
    transition: border-color .2s, transform .2s;
}
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.related-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.related-card p { color: var(--gray); font-size: 0.9rem; }
.section-tight { padding-top: 3rem; padding-bottom: 3rem; }
