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

:root {
    --dark: #0d0e14;
    --dark2: #13141c;
    --blue: #3d8ef0;
    --blue-dim: rgba(61,142,240,0.12);
    --text: #e2e4ea;
    --muted: #6b7588;
    --subtle: #292c3a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 36px; }

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.lang-active { color: var(--text); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61,142,240,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61,142,240,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    line-height: 1.05;
    color: #fff;
    max-width: 780px;
    font-weight: 700;
}

.hero h1 em {
    font-style: italic;
    color: var(--blue);
}

.hero-sub {
    margin-top: 32px;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-cta {
    margin-top: 52px;
}

.hero-cta a {
    display: inline-block;
    padding: 14px 36px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
}

.hero-cta a:hover {
    background: #2f7ee0;
    transform: translateY(-1px);
}

/* ── SECTION BASE ── */
.section {
    padding: 100px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
}

/* ── SERVICES ── */
#verksamhet, #services {
    border-top: 1px solid var(--subtle);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 20px;
}

.split-left p {
    margin-bottom: 16px;
}

.split-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 8px;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--subtle);
}

.service-row:first-child {
    border-top: 1px solid var(--subtle);
}

.service-num {
    font-size: 0.7rem;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 3px;
    flex-shrink: 0;
    width: 28px;
}

.service-text h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.service-text p {
    font-size: 0.875rem;
    color: var(--muted);
    max-width: none;
    line-height: 1.6;
}

/* ── CONTACT ── */
#kontakt, #contact {
    border-top: 1px solid var(--subtle);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 20px;
    align-items: start;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item .c-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.contact-item .c-value {
    font-size: 1rem;
    color: var(--text);
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover { color: var(--blue); }

.contact-note {
    background: var(--blue-dim);
    border: 1px solid rgba(61,142,240,0.2);
    border-radius: 4px;
    padding: 20px 24px;
    font-size: 0.875rem;
    color: #8aa8d4;
    line-height: 1.7;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--subtle);
    padding: 32px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

footer .f-left {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #fff;
}

footer .f-right {
    font-size: 0.8rem;
    color: var(--muted);
}

.highlight { color: #c8d4e3; font-weight: 500; }
.contact-note-wrap { padding-top: 72px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav { padding: 18px 24px; }
    .nav-links { gap: 20px; }
    .hero { padding: 100px 24px 60px; }
    .section { padding: 70px 24px; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 0; }
    footer { padding: 28px 24px; }
}
