:root {
    --bg: #fafafa;
    --card: #fff;
    --fg: #111;
    --muted: #6b7280;
    --border: #e5e7eb;
    --accent: #111;
    --container: 1280px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font:
        16px/1.5 system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial;
    color: var(--fg);
    background: var(--bg);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}
@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}
.section {
    padding: 64px 0;
}
@media (min-width: 640px) {
    .section {
        padding: 96px 0;
    }
}
.section--alt {
    background: #fff;
    border-top: 1px solid var(--border);
}
.section--muted {
    background: #f5f5f5;
    border-top: 1px solid var(--border);
}
section {
    scroll-margin-top: 80px;
}
.h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 600;
    margin: 0;
}
.h3 {
    font-weight: 600;
    margin: 0 0 8px;
}
.uline {
    text-decoration: underline;
}
/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border);
    backdrop-filter: saturate(180%) blur(6px);
}
.nav-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    gap: 12px;
    align-items: center;
}
.brand-dot {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: var(--accent);
}
.brand-name {
    font-weight: 600;
    letter-spacing: 0.2px;
}
.nav {
    display: none;
    gap: 20px;
    font-size: 14px;
}
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}
.nav-link {
    opacity: 0.9;
    position: relative;
    color: #6b7280;
    cursor: pointer;
}
.nav-link:hover {
    opacity: 0.8;
}
.nav-link.active {
    color: var(--fg);
}
.nav-link.active::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--fg);
    border-radius: 9999px;
    margin-top: 4px;
}
.cta {
    display: none;
}
@media (min-width: 768px) {
    .cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid var(--border);
        padding: 10px 16px;
        border-radius: 14px;
        font-size: 14px;
    }
}
.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
}
@media (min-width: 768px) {
    .menu-btn {
        display: none;
    }
}
/* Mobile menu */
.hidden {
    display: none;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
}
.mobile-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
.mobile-panel {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    margin: 0 16px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.mobile-nav {
    display: grid;
    gap: 6px;
    font-size: 16px;
}
.mobile-nav button {
    padding: 10px 12px;
    text-align: left;
    border-radius: 10px;
    border: 0;
    background: transparent;
}
.mobile-nav button:hover {
    background: #f3f4f6;
}
.btn-call {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #111;
    color: #fff;
    padding: 12px 16px;
}
/* Hero */
.hero {
    position: relative;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}
.hero-inner {
    position: relative;
}
.hero-pad {
    padding: 112px 0;
}
@media (min-width: 640px) {
    .hero-pad {
        padding: 144px 0;
    }
}
.hero h1 {
    max-width: 48ch;
    font-size: 36px;
    line-height: 1.15;
    color: #fff;
    font-weight: 650;
    margin: 0;
}
@media (min-width: 640px) {
    .hero h1 {
        font-size: 48px;
    }
}
.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
}
.btn-primary {
    background: #fff;
    color: #111;
    border-color: #fff;
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
}
.actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}
/* Grid */
.grid {
    display: grid;
    gap: 24px;
}
@media (min-width: 768px) {
    .grid-2-md {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .grid-3-lg {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Cards */
.card {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.card.small-pad {
    padding: 14px;
}
.muted {
    color: var(--muted);
}
.icon-box {
    margin-bottom: 10px;
    display: inline-flex;
    height: 38px;
    width: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
}
/* Contact */
.contact-grid {
    display: grid;
    gap: 12px;
}
@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.icon-col {
    margin-right: 10px;
}
.label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: #6b7280;
}
.val {
    font-size: 14px;
    font-weight: 600;
}
/* About image */
.about-img-wrap {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.about-img {
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
/* About image */
.uc-img-wrap {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.uc-img {
	 object-fit: cover;
}
/* Fordon (logotyp till höger) */
.fordon-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr auto;
    align-items: start;
}
@media (min-width: 768px) {
    .fordon-grid {
        gap: 24px;
    }
}
.fordon-logo-wrap {
    justify-self: end;
    align-self: start;
}
.fordon-logo {
    max-height: 64px;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
@media (min-width: 1024px) {
    .fordon-logo {
        max-height: 96px;
        max-width: 240px;
    }
}
/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: #fff;
}
.footer-inner {
    padding: 28px 0;
}
.footer-grid {
    display: grid;
    gap: 12px;
}
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
