
:root {
    --bg-dark: #060709;
    --bg-card: #111319;
    --accent: #ff7a1a;
    --accent-soft: rgba(255, 122, 26, 0.18);
    --text-main: #f5f5f5;
    --text-muted: #a9b0c0;
    --border-subtle: #1f232d;
    --max-width: 1100px;
}

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

body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #141824 0, #050509 55%, #020206 100%);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.82), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.brand-text {
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

nav {
    flex: 1;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    list-style: none;
    font-size: 0.9rem;
}

nav a,
nav button.link-like {
    position: relative;
    padding-bottom: 0.25rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

nav a::after,
nav button.link-like::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #ff7a1a, #ffb347);
    transition: width 0.2s ease;
}

nav a:hover,
nav button.link-like:hover {
    color: #ffffff;
}

nav a:hover::after,
nav button.link-like:hover::after {
    width: 100%;
}

nav a.active {
    color: #ffffff;
}

nav a.active::after {
    width: 100%;
}

.nav-cta {
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 122, 26, 0.55);
    background: radial-gradient(circle at top left, rgba(255, 122, 26, 0.16), transparent);
    color: #ffd9b1;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.nav-cta:hover {
    background: radial-gradient(circle at top left, rgba(255, 122, 26, 0.38), rgba(255, 122, 26, 0.18));
    box-shadow: 0 0 14px rgba(255, 122, 26, 0.6);
    transform: translateY(-1px);
}

/* Burger */

.menu-toggle {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    margin: 4px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

/* Dropdown */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 200px;
    background: rgba(5, 6, 10, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
    list-style: none;
    padding: 0.4rem 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 25;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.4rem 0.9rem;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-toggle-icon {
    font-size: 0.6rem;
    margin-left: 0.25rem;
}

/* Hero */

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3.2rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: center;
}

.hero--compact {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
}

.hero--simple {
    grid-template-columns: minmax(0, 1fr);
}

.hero-text h1 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 0.9rem;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: --accent;
    margin-bottom: 0.65rem;
}

.hero-subtitle {
    font-size: 0.96rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin-bottom: 1.1rem;
}

.hero-bullets {
    list-style: none;
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-bullets li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.35rem;
}

.hero-bullets li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

/* Buttons */

.btn-primary {
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff7a1a, #ffb347);
    color: #1b1007;
    font-weight: 600;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8), 0 0 18px rgba(255, 122, 26, 0.7);
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9), 0 0 22px rgba(255, 122, 26, 0.8);
}

.btn-ghost {
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

/* Hero media */

.hero-media {
    display: grid;
    gap: 0.8rem;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.hero-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.hero-image-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 122, 26, 0.35), transparent 55%);
    pointer-events: none;
}

.hero-stat {
    background: radial-gradient(circle at top left, rgba(255, 122, 26, 0.2), rgba(8, 9, 14, 0.98));
    border-radius: 14px;
    border: 1px solid rgba(255, 122, 26, 0.5);
    padding: 0.7rem 0.9rem;
    font-size: 0.8rem;
}

.hero-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ffd9b1;
    display: block;
    margin-bottom: 0.25rem;
}

.hero-stat-main {
    font-weight: 600;
}

/* Sections */

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.3rem 1.5rem 0;
}

.section-alt {
    padding-top: 2.8rem;
}

.section-heading {
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-title-row h2 {
    font-size: 1.4rem;
}

.section-title-row p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 26rem;
}

/* Grids & cards */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
}

.card {
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), rgba(11, 13, 20, 0.98));
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    padding: 1.2rem 1.2rem 1.1rem;
    font-size: 0.9rem;
}

/* Service cards med billeder */

.cards-with-images .service-card {
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), rgba(11, 13, 20, 0.98));
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.service-image {
    position: relative;
    max-height: 190px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(9, 10, 14, 0.98));
}

.placeholder-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.service-content {
    padding: 1.1rem 1.2rem 1.1rem;
    font-size: 0.88rem;
}

.service-content h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.service-link {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ffd9b1;
}

/* Lists */

.marker-list {
    list-style: none;
    margin-bottom: 0.6rem;
    font-size: 0.86rem;
}

.marker-list li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.marker-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Steps */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.step-card {
    background: radial-gradient(circle at top, rgba(255, 122, 26, 0.12), rgba(11, 13, 20, 0.98));
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 26, 0.45);
    padding: 1.3rem 1.2rem 1.2rem;
    font-size: 0.9rem;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.35);
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

/* Experience grid */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.experience-card {
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), rgba(11, 13, 20, 0.98));
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    padding: 1.2rem 1.2rem 1.1rem;
    font-size: 0.9rem;
}

.experience-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

/* Kontakt */

.contact-section {
    padding: 3rem 1.5rem 3.6rem;
}

.contact-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 2.2rem;
}

.contact-card {
    background: radial-gradient(circle at top, rgba(255, 122, 26, 0.19), rgba(10, 10, 13, 0.98));
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 26, 0.55);
    padding: 1.7rem 1.6rem;
    font-size: 0.9rem;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.45rem;
}

.contact-card p {
    color: #ffe4c7;
    margin-bottom: 1rem;
}

.contact-details {
    font-size: 0.9rem;
}

.contact-details dt {
    font-weight: 600;
    margin-top: 0.6rem;
}

.contact-details dd {
    margin: 0;
    color: var(--text-muted);
}

.contact-details a {
    color: #ffd2a4;
}

.contact-sidecard {
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), rgba(9, 10, 14, 0.98));
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    padding: 1.6rem 1.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-sidecard h3 {
    font-size: 1.02rem;
    margin-bottom: 0.5rem;
}

.contact-sidecard ul {
    list-style: none;
    margin-bottom: 0.6rem;
}

.contact-sidecard li {
    padding-left: 0.9rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.contact-sidecard li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* CTA */

.cta-section {
    padding: 3rem 1.5rem 3.2rem;
}

.cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 26, 0.5);
    background: radial-gradient(circle at top left, rgba(255, 122, 26, 0.22), rgba(8, 9, 14, 0.98));
    padding: 1.8rem 1.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cta-inner h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.cta-inner p {
    font-size: 0.92rem;
    color: #ffe4c7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

/* Footer */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.3rem 1.5rem 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.02), #040407);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-inner span strong {
    color: #e8edf7;
}

.footer-tagline {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Responsivitet */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 3rem;
    }

    .hero-media {
        order: -1;
    }

    .hero--compact,
    .hero--simple {
        grid-template-columns: minmax(0, 1fr);
    }

    .grid-3,
    .grid-2,
    .steps-grid,
    .experience-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        position: fixed;
        inset: 54px 0 auto 0;
        background: rgba(4, 5, 8, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.9rem 1.5rem 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    nav ul.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: inline-block;
    }

    .nav-cta {
        display: none;
    }

    .dropdown-menu {
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        padding-left: 0.6rem;
        margin-top: 0.2rem;
        transform: none;
    }

    .dropdown-menu a {
        padding-left: 0;
    }

    .dropdown-menu.collapsed {
        display: none;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero,
    .section,
    .contact-section,
    .cta-section {
        padding-inline: 1.1rem;
    }

    .contact-card,
    .contact-sidecard {
        padding-inline: 1.25rem;
    }
}
