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

:root {
    --navy: #2b4d8e;
    --teal: #5b9fc4;
    --gold: #e8a820;
    --gray: #6b7280;
    --light: #f8f9fa;
    --white: #ffffff;
    --dark: #1a2e52;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", system-ui, sans-serif;
    color: #222;
    background: var(--white);
    line-height: 1.6;
}

/* ── NAVIGATION ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 70px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}
.nav-brand img {
    height: 48px;
    width: auto;
    border-radius: 4px;
}
.nav-brand-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.nav-brand-text span {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--teal);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}
.nav-cta {
    background: var(--gold) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    padding: 0.45rem 1.1rem !important;
}
.nav-cta:hover {
    background: #d4950e !important;
}

/* hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 700px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.2rem;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 0.6rem 0.5rem;
        border-radius: 4px;
    }
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 55%, var(--teal) 100%);
    color: var(--white);
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 5 L55 50 L5 50 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
}
.hero-inner {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}
.hero-logo {
    width: 130px;
    margin-bottom: 1.8rem;
    border-radius: 8px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto 2.2rem;
}

/* ── HERO BUTTONS ── */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}
.hero-btns .btn-outline {
    margin-left: 0;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn-gold {
    background: var(--gold);
    color: var(--dark);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin-left: 0.8rem;
}
.btn-outline:hover {
    border-color: var(--white);
}

/* ── SECTION BASE ── */
section {
    padding: 5rem 1.5rem;
}
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.section-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 0.6rem;
}
.section-sub {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* ── VIDEO ── */
#video {
    background: var(--white);
}
.video-wrap {
    max-width: 860px;
    margin: 0 auto;
}
.video-wrap video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(43, 77, 142, 0.18);
    display: block;
}

/* ── SERVICES ── */
#ydelser {
    background: var(--light);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.8rem;
    box-shadow: 0 2px 12px rgba(43, 77, 142, 0.08);
    border-top: 4px solid var(--teal);
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(43, 77, 142, 0.14);
}
.service-card.featured {
    border-top-color: var(--gold);
}
.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    display: block;
    color: var(--teal);
    flex-shrink: 0;
}
.service-card.featured .service-icon {
    color: var(--gold);
}
.service-card.muted .service-icon {
    color: var(--gray);
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ── ABOUT ── */
#om {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 700px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.about-text p {
    color: #444;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--light);
    border-radius: 8px;
    padding: 1rem 1.2rem;
}
.highlight-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--navy);
    margin-top: 2px;
}
.highlight h4 {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.highlight p {
    color: var(--gray);
    font-size: 0.88rem;
}

/* ── CONTACT ── */
#kontakt {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    color: var(--white);
}
#kontakt .section-title {
    color: var(--white);
}
#kontakt .section-sub {
    color: rgba(255, 255, 255, 0.75);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.contact-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.8rem;
    text-align: center;
    transition: background 0.2s;
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.13);
}
.contact-card .ci {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.7rem;
    display: block;
    color: var(--teal);
}
.contact-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 0.4rem;
}
.contact-card a,
.contact-card p {
    color: var(--white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
}
.contact-card a:hover {
    color: var(--gold);
}
.contact-cta {
    text-align: center;
    margin-top: 2.8rem;
}
.contact-cta p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.88rem;
}
footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
footer a:hover {
    color: var(--gold);
}
