/* =========================================
   N&M BILPLEJE
   ========================================= */

:root {
    --black: #050505;
    --black-light: #0b0b0b;
    --black-card: #101010;
    --black-soft: #151515;

    --gold: #d89200;
    --gold-light: #ffb20b;
    --gold-dark: #9c6800;

    --white: #ffffff;
    --text: #f4f4f4;
    --text-soft: #a7a7a7;
    --border: rgba(255, 255, 255, 0.09);

    --max-width: 1240px;

    --radius: 24px;
}


/* =========================================
   RESET
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);

    font-family:
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--max-width));
    margin-inline: auto;
}


/* =========================================
   HEADER
   ========================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid transparent;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.9);

    border-color: rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(16px);
}

.nav-container {
    width: min(calc(100% - 40px), var(--max-width));

    height: 86px;

    margin-inline: auto;

    display: flex;
    align-items: center;

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-right: auto;
}

.brand img {
    width: 100px;
    height: 100px;

    object-fit: contain;
}

.brand span {
    font-size: 18px;
    font-weight: 750;

    letter-spacing: -0.3px;
}

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 32px;
}

.desktop-nav a {
    color: #c7c7c7;

    font-size: 14px;
    font-weight: 600;

    transition: color 0.2s ease;
}

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

.nav-booking {
    background: var(--gold);

    color: #080808;

    border-radius: 999px;

    padding: 11px 22px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.nav-booking:hover {
    transform: translateY(-2px);

    background: var(--gold-light);
}


/* MOBILE MENU BUTTON */

.menu-button {
    width: 45px;
    height: 45px;

    display: none;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.menu-button span {
    width: 19px;
    height: 2px;

    background: white;

    transition: 0.3s ease;
}

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

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

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


/* MOBILE MENU */

.mobile-menu {
    display: none;

    position: fixed;

    top: 86px;
    left: 0;

    width: 100%;

    padding: 20px;

    background: rgba(5, 5, 5, 0.98);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    flex-direction: column;

    gap: 4px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 15px 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    color: #dedede;

    font-weight: 600;
}

.mobile-menu .mobile-booking {
    margin-top: 14px;

    background: var(--gold);

    color: black;

    text-align: center;

    border-radius: 12px;

    border: 0;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    position: relative;

    min-height: 850px;

    padding-top: 86px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 35%,
            rgba(216, 146, 0, 0.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050505,
            #070707 55%,
            #020202
        );
}

.hero-pattern,
.final-pattern {
    position: absolute;

    inset: 0;

    opacity: 0.17;

    background-image:
        linear-gradient(
            30deg,
            #242424 12%,
            transparent 12.5%,
            transparent 87%,
            #242424 87.5%,
            #242424
        ),
        linear-gradient(
            150deg,
            #242424 12%,
            transparent 12.5%,
            transparent 87%,
            #242424 87.5%,
            #242424
        ),
        linear-gradient(
            30deg,
            #242424 12%,
            transparent 12.5%,
            transparent 87%,
            #242424 87.5%,
            #242424
        ),
        linear-gradient(
            150deg,
            #242424 12%,
            transparent 12.5%,
            transparent 87%,
            #242424 87.5%,
            #242424
        );

    background-size: 80px 140px;

    background-position:
        0 0,
        0 0,
        40px 70px,
        40px 70px;

    pointer-events: none;
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.96),
        rgba(5, 5, 5, 0.72) 48%,
        rgba(5, 5, 5, 0.32)
    );

    z-index: 1;
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}

.hero-glow-one {
    width: 600px;
    height: 600px;

    background: rgba(228, 151, 0, 0.09);

    right: -200px;
    top: 100px;
}

.hero-glow-two {
    width: 400px;
    height: 400px;

    background: rgba(255, 185, 38, 0.05);

    left: 30%;
    bottom: -300px;
}

.hero-grid {
    position: relative;

    flex: 1;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.95fr;

    align-items: center;

    gap: 70px;

    padding-top: 70px;
    padding-bottom: 80px;
}


/* HERO TEXT */

.eyebrow {
    width: max-content;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    background: rgba(216, 146, 0, 0.08);

    border: 1px solid rgba(216, 146, 0, 0.28);

    border-radius: 999px;

    color: #e9b03d;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    margin-bottom: 27px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold-light);

    box-shadow: 0 0 12px rgba(255, 178, 11, 0.9);
}

.hero h1 {
    max-width: 760px;

    font-size: clamp(54px, 5.5vw, 82px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 850;

    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    white-space: nowrap;
    color: var(--gold);
}

.hero-text {
    max-width: 590px;

    color: #b8b8b8;

    font-size: 18px;

    line-height: 1.75;

    margin-bottom: 38px;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 43px;
}


/* BUTTONS */

.button {
    min-height: 53px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border-radius: 999px;

    border: 1px solid transparent;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-gold {
    color: #080808;

    background:
        linear-gradient(
            135deg,
            #f3a700,
            #d58b00
        );

    box-shadow:
        0 10px 35px rgba(216, 146, 0, 0.15);
}

.button-gold:hover {
    box-shadow:
        0 15px 40px rgba(216, 146, 0, 0.27);
}

.button-dark {
    background: rgba(255, 255, 255, 0.045);

    border-color: rgba(255, 255, 255, 0.13);

    color: white;
}

.button-dark:hover {
    border-color: rgba(255, 255, 255, 0.3);
}


/* HERO INFO */

.hero-info {
    display: flex;
    align-items: center;

    gap: 23px;
}

.hero-info > div:not(.hero-info-line) {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.hero-info strong {
    font-size: 14px;
}

.hero-info span {
    color: #777;

    font-size: 12px;
}

.hero-info-line {
    width: 1px;
    height: 32px;

    background: rgba(255, 255, 255, 0.15);
}


/* HERO VISUAL */

.hero-visual {
    position: relative;

    min-height: 580px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    position: relative;

    z-index: 2;

    width: min(108%, 670px);

    filter:
        drop-shadow(0 30px 45px rgba(0, 0, 0, 0.65));

    animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.logo-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227, 151, 0, 0.17),
            rgba(227, 151, 0, 0.04) 45%,
            transparent 70%
        );

    filter: blur(10px);
}

.floating-card {
    position: absolute;

    z-index: 4;

    padding: 13px 16px;

    display: flex;
    align-items: center;

    gap: 11px;

    background: rgba(13, 13, 13, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.11);

    border-radius: 15px;

    backdrop-filter: blur(15px);

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.floating-card-one {
    left: -15px;
    top: 105px;
}

.floating-card-two {
    right: -5px;
    bottom: 100px;
}

.floating-card > span {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

.check-circle {
    color: #090909;

    background: var(--gold);
}

.gold-star {
    color: var(--gold);

    font-size: 20px;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card small {
    color: #777;

    font-size: 10px;
}


/* TRUST ROW */

.hero-bottom {
    position: relative;

    z-index: 3;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    background: rgba(0, 0, 0, 0.28);
}

.trust-row {
    min-height: 104px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 17px;

    padding: 25px 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-item > span {
    color: var(--gold);

    font-size: 12px;
    font-weight: 900;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 13px;
}

.trust-item small {
    color: #777;

    font-size: 11px;
}


/* =========================================
   GENERAL SECTIONS
   ========================================= */

.section {
    padding: 125px 0;
}

.section-label {
    display: inline-block;

    margin-bottom: 17px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2.2px;
}

.section-heading h2,
.center-heading h2,
.gallery-heading h2,
.booking-info h2,
.faq-heading h2,
.area-content h2 {
    color: white;

    font-size: clamp(40px, 5vw, 67px);

    line-height: 1.04;

    letter-spacing: -2.6px;

    font-weight: 820;
}

.section-heading h2 span,
.center-heading h2 span,
.gallery-heading h2 span,
.booking-info h2 span,
.faq-heading h2 span,
.area-content h2 span {
    color: var(--gold);
}

.center-heading {
    max-width: 650px;

    margin: 0 auto 65px;

    text-align: center;
}

.center-heading p {
    margin-top: 17px;

    color: #858585;
}


/* =========================================
   INTRO
   ========================================= */

.intro-section {
    background:
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
}

.intro-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1fr;

    gap: 100px;

    align-items: end;
}

.intro-text {
    display: grid;

    gap: 22px;

    color: #999;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   PRICES
   ========================================= */

.pricing-section {
    background: #080808;

    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 19px;

    align-items: stretch;
}

.price-card {
    position: relative;

    min-height: 570px;

    padding: 36px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #111111,
            #0b0b0b
        );

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.price-card:hover {
    transform: translateY(-7px);

    border-color: rgba(216, 146, 0, 0.35);
}

.price-card.featured {
    border-color: rgba(216, 146, 0, 0.55);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(216, 146, 0, 0.12),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #13110b,
            #0b0b0b
        );
}

.popular-badge {
    position: absolute;

    top: 0;
    right: 28px;

    padding: 8px 15px;

    border-radius: 0 0 11px 11px;

    background: var(--gold);

    color: #090909;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.vehicle-type {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.price-card h3 {
    font-size: 35px;

    line-height: 1;

    margin-bottom: 13px;
}

.price-top p {
    min-height: 52px;

    color: #777;

    font-size: 13px;
}

.price {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin: 32px 0 25px;
}

.price strong {
    color: white;

    font-size: 66px;

    line-height: 0.9;

    letter-spacing: -3px;
}

.price span {
    color: #888;

    font-size: 14px;

    margin-top: 7px;
}

.price-divider {
    height: 1px;

    margin-bottom: 27px;

    background: rgba(255, 255, 255, 0.08);
}

.price-card ul {
    list-style: none;

    display: grid;

    gap: 13px;

    margin-bottom: 32px;
}

.price-card li {
    position: relative;

    padding-left: 25px;

    color: #b0b0b0;

    font-size: 13px;
}

.price-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--gold);

    font-weight: 900;
}

.price-button {
    width: 100%;

    min-height: 49px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.13);

    color: white;

    font-size: 13px;
    font-weight: 800;

    transition: 0.25s ease;
}

.price-button:hover {
    background: rgba(255, 255, 255, 0.06);

    border-color: rgba(255, 255, 255, 0.25);
}

.price-button.gold {
    border: 0;

    background: var(--gold);

    color: black;
}

.price-button.gold:hover {
    background: var(--gold-light);
}

.pricing-note {
    margin-top: 29px;

    text-align: center;

    color: #6e6e6e;

    font-size: 12px;
}


/* =========================================
   BENEFITS
   ========================================= */

.benefits-section {
    background: #050505;
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 55px;
}

.benefit {
    position: relative;

    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-number {
    position: absolute;

    top: 31px;
    right: 0;

    color: #333;

    font-size: 12px;
    font-weight: 800;
}

.benefit-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(216, 146, 0, 0.08);

    border: 1px solid rgba(216, 146, 0, 0.22);

    color: var(--gold);
}

.benefit-icon svg {
    width: 25px;
    height: 25px;
}

.benefit h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.benefit p {
    color: #858585;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   GALLERY
   ========================================= */

.gallery-section {
    background: #090909;
}

.gallery-heading {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 60px;
}

.gallery-heading > p {
    color: #818181;
    line-height: 1.8;
}

.before-after-grid {
    display: grid;
    gap: 35px;
}


/* HELE FØR/EFTER KORTET */

.comparison-card {
    width: 100%;
    max-width: 1050px;

    margin-inline: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 3px;

    padding: 3px;

    border-radius: 24px;

    background: #151515;

    border: 1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;
}


/* HVERT BILLEDE */

.photo-slot {
    position: relative;

    height: 520px;

    overflow: hidden;

    background: #101010;
}


/* SELVE BILLEDET */

.gallery-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 1;

    transition: transform 0.5s ease;
}

/* Første FØR-billede */
.comparison-card:first-child
.photo-slot:first-child
.gallery-image {
    object-position: 50% 50%;
}


/* Første EFTER-billede */
.comparison-card:first-child
.photo-slot:nth-child(2)
.gallery-image {
    object-position: 50% 27.5%;
}

.photo-slot:hover .gallery-image {
    transform: scale(1.02);
}


/* FØR / EFTER LABEL */

.photo-label {
    position: absolute;

    z-index: 5;

    top: 18px;
    left: 18px;

    padding: 7px 12px;

    background: rgba(0, 0, 0, 0.8);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.photo-label.gold-label {
    background: var(--gold);

    border-color: var(--gold);

    color: black;
}


/* VISES KUN HVIS BILLEDET MANGLER */

.photo-fallback {
    position: absolute;

    inset: 0;

    z-index: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    color: #535353;
}

.photo-fallback > span {
    width: 47px;
    height: 47px;

    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid #333;

    font-size: 24px;
}

.photo-fallback strong {
    font-size: 12px;
}

.photo-fallback small {
    margin-top: 3px;

    font-size: 10px;

    color: #444;
}


/* TABLET */

@media (max-width: 850px) {

    .gallery-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .photo-slot {
        height: 440px;
    }

}


/* MOBIL */

@media (max-width: 600px) {

    .comparison-card {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }

    .photo-slot {
        height: 330px;
    }

    .photo-label {
        top: 10px;
        left: 10px;

        padding: 5px 9px;

        font-size: 8px;
    }

}


/* =========================================
   PROCESS
   ========================================= */

.process-section {
    background: #050505;
}

.process-wrapper {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 42px;

    margin-top: 20px;
}

.process-line {
    position: absolute;

    z-index: 0;

    top: 27px;
    left: 8%;

    width: 84%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(216, 146, 0, 0.4),
            rgba(216, 146, 0, 0.4),
            transparent
        );
}

.process-step {
    position: relative;

    z-index: 2;

    text-align: center;
}

.step-circle {
    width: 55px;
    height: 55px;

    margin: 0 auto 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #080808;

    border: 1px solid rgba(216, 146, 0, 0.48);

    color: var(--gold);

    font-size: 13px;
    font-weight: 900;

    box-shadow:
        0 0 0 8px #050505;
}

.process-step h3 {
    margin-bottom: 9px;

    font-size: 17px;
}

.process-step p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   AREA
   ========================================= */

.area-section {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #0d0b07,
            #080706 45%,
            #050505
        );

    border-top: 1px solid rgba(216, 146, 0, 0.1);
    border-bottom: 1px solid rgba(216, 146, 0, 0.1);

    overflow: hidden;
}

.area-grid {
    min-height: 550px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 90px;
}

.area-content p {
    max-width: 510px;

    margin: 25px 0 32px;

    color: #909090;

    line-height: 1.8;
}

.area-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.location-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(216, 146, 0, 0.13);
}

.ring-one {
    width: 220px;
    height: 220px;

    border-color: rgba(216, 146, 0, 0.3);
}

.ring-two {
    width: 350px;
    height: 350px;
}

.ring-three {
    width: 490px;
    height: 490px;
}

.location-center {
    position: relative;

    z-index: 3;

    width: 145px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    border-radius: 50%;

    color: var(--gold);

    background:
        radial-gradient(
            circle at 30% 20%,
            #1c160b,
            #090909
        );

    border: 1px solid rgba(216, 146, 0, 0.5);

    box-shadow:
        0 0 80px rgba(216, 146, 0, 0.12);
}

.location-center svg {
    width: 32px;
    height: 32px;

    margin-bottom: 7px;
}

.location-center strong {
    font-size: 13px;
}

.location-center small {
    color: #777;

    font-size: 9px;
}


/* =========================================
   BOOKING
   ========================================= */

.booking-section {
    background: #080808;
}

.booking-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1fr;

    gap: 90px;

    align-items: start;
}

.booking-info {
    position: sticky;

    top: 130px;
}

.booking-info > p {
    max-width: 470px;

    margin: 25px 0 40px;

    color: #8b8b8b;

    line-height: 1.8;
}

.contact-methods {
    display: grid;

    gap: 12px;
}

.contact-method {
    max-width: 420px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 14px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 15px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.03);

    border-color: rgba(216, 146, 0, 0.26);
}

.contact-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(216, 146, 0, 0.08);

    color: var(--gold);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.instagram-symbol {
    font-size: 24px;
}

.contact-method > div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-method small {
    color: #777;

    font-size: 10px;
}

.contact-method strong {
    font-size: 14px;
}


/* FORM */

.booking-form {
    padding: 39px;

    background:
        linear-gradient(
            145deg,
            #111,
            #0b0b0b
        );

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 25px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-bottom: 18px;
}

.form-group label {
    color: #bdbdbd;

    font-size: 11px;
    font-weight: 700;
}

.form-group label span {
    color: #555;

    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 12px;

    outline: none;

    color: white;

    background: #090909;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 51px;

    padding: 0 14px;
}

.form-group textarea {
    padding: 14px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #494949;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(216, 146, 0, 0.6);

    box-shadow:
        0 0 0 3px rgba(216, 146, 0, 0.05);
}

.form-group select {
    color-scheme: dark;
}

.booking-submit {
    width: 100%;

    border: 0;

    margin-top: 7px;
}

.form-info {
    margin-top: 13px;

    color: #545454;

    text-align: center;

    font-size: 10px;
}

.form-success {
    display: none;

    margin-top: 15px;

    padding: 12px 15px;

    border-radius: 10px;

    border: 1px solid rgba(216, 146, 0, 0.25);

    background: rgba(216, 146, 0, 0.06);

    color: #dca124;

    font-size: 12px;
}

.form-success.show {
    display: block;
}


/* =========================================
   FAQ
   ========================================= */

.faq-section {
    background: #050505;
}

.faq-grid {
    display: grid;

    grid-template-columns:
        0.7fr 1fr;

    gap: 100px;

    align-items: start;
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;

    padding: 24px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 0;

    background: transparent;

    color: white;

    text-align: left;

    font-size: 14px;
    font-weight: 650;
}

.faq-plus {
    color: var(--gold);

    font-size: 23px;

    font-weight: 300;

    transition: transform 0.3s ease;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-answer p {
    max-width: 600px;

    padding-bottom: 22px;

    color: #858585;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   FINAL CTA
   ========================================= */

.final-cta {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(216, 146, 0, 0.13),
            transparent 44%
        ),
        #080808;

    border-top: 1px solid rgba(216, 146, 0, 0.14);
}

.final-pattern {
    opacity: 0.1;
}

.final-content {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;

    flex-direction: column;

    text-align: center;
}

.final-content img {
    width: 150px;

    margin-bottom: 13px;
}

.final-content > span {
    color: var(--gold);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 17px;
}

.final-content h2 {
    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.07;

    letter-spacing: -2.5px;

    font-weight: 500;
}

.final-content h2 strong {
    color: var(--gold);

    font-weight: 850;
}

.final-buttons {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;

    margin-top: 36px;
}


/* =========================================
   FOOTER
   ========================================= */

.footer {
    padding-top: 45px;

    background: #020202;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    padding-bottom: 40px;

    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 70px;

    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 12px;
}

.footer-brand img {
    width: 62px;
    height: 62px;

    object-fit: contain;
}

.footer-brand > div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 14px;
}

.footer-brand span {
    color: #606060;

    font-size: 10px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: #777;

    font-size: 11px;

    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    color: #4d4d4d;

    font-size: 10px;
}


/* =========================================
   SCROLL REVEAL
   ========================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .nav-booking {
        margin-left: auto;
    }

    .brand {
        margin-right: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.85fr;

        gap: 20px;
    }

    .floating-card-one {
        left: -20px;
    }

    .floating-card-two {
        right: -20px;
    }

    .pricing-grid {
        gap: 12px;
    }

    .price-card {
        padding: 28px;
    }

    .benefits-grid {
        gap: 30px;
    }

}


@media (max-width: 850px) {

    .section {
        padding: 90px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        padding-top: 75px;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow {
        margin-inline: auto;
    }

    .hero h1 {
        margin-inline: auto;
    }

    .hero-text {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-info {
        justify-content: center;
    }

    .hero-visual {
        min-height: 460px;
    }

    .hero-logo {
        width: min(90%, 520px);
    }

    .floating-card-one {
        left: 5%;
    }

    .floating-card-two {
        right: 5%;
    }

    .trust-row {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        border-left: 1px solid rgba(255, 255, 255, 0.07);

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;

        max-width: 550px;

        margin-inline: auto;
    }

    .price-card {
        min-height: auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }

    .gallery-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .process-wrapper {
        grid-template-columns:
            1fr 1fr;

        gap: 55px 30px;
    }

    .process-line {
        display: none;
    }

    .area-grid {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 25px;
    }

    .area-content p {
        margin-inline: auto;
    }

    .area-visual {
        min-height: 450px;
    }

    .booking-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .booking-info {
        position: static;
    }

    .contact-method {
        max-width: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;

        align-items: start;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .nav-container {
        width: min(calc(100% - 28px), var(--max-width));

        height: 74px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand span {
        font-size: 14px;
    }

    .nav-booking {
        display: none;
    }

    .mobile-menu {
        top: 74px;
    }

    .hero {
        padding-top: 74px;
    }

    .hero-grid {
        padding-top: 65px;
        padding-bottom: 45px;
    }

    .hero h1 {
        font-size: 54px;

        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-info {
        gap: 14px;
    }

    .hero-info strong {
        font-size: 12px;
    }

    .hero-info span {
        font-size: 10px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-logo {
        width: 95%;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-card-one {
        top: 35px;
        left: 0;
    }

    .floating-card-two {
        bottom: 35px;
        right: 0;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-card small {
        font-size: 8px;
    }

    .trust-item {
        padding: 19px 20px;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading h2,
    .center-heading h2,
    .gallery-heading h2,
    .booking-info h2,
    .faq-heading h2,
    .area-content h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .center-heading {
        margin-bottom: 45px;
    }

    .price-card {
        padding: 27px;
    }

    .price strong {
        font-size: 59px;
    }

    .comparison-card {
        grid-template-columns: 1fr;
    }

    .photo-slot {
        aspect-ratio: 4 / 5;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .area-visual {
        min-height: 360px;
    }

    .ring-one {
        width: 160px;
        height: 160px;
    }

    .ring-two {
        width: 260px;
        height: 260px;
    }

    .ring-three {
        width: 350px;
        height: 350px;
    }

    .location-center {
        width: 120px;
        height: 120px;
    }

    .booking-form {
        padding: 25px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 80px 0;
    }

    .final-content h2 {
        font-size: 39px;

        letter-spacing: -1.7px;
    }

    .final-buttons {
        width: 100%;

        flex-direction: column;
    }

    .final-buttons .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 20px 0;

        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }

}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.facebook-link:hover .contact-icon {
    background: rgba(216, 146, 0, 0.14);
}

.booking-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.form-success strong {
    color: var(--gold);
}

input[type="date"] {
    color-scheme: dark;
}

/* =========================================
   EXTRA TILLÆG
   ========================================= */

.extras {
    max-width: 850px;
    margin: 55px auto 0;
}

.extras-heading {
    text-align: center;
    margin-bottom: 22px;
}

.extras-heading > span {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.extras-heading h3 {
    color: white;

    font-size: 23px;
    font-weight: 750;

    letter-spacing: -0.5px;
}

.extras-list {
    display: grid;
    gap: 10px;
}

.extra-item {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 18px 23px;

    background:
        linear-gradient(
            145deg,
            #111111,
            #0b0b0b
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.extra-item:hover {
    transform: translateY(-2px);

    border-color: rgba(216, 146, 0, 0.3);
}

.extra-info {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.extra-info strong {
    color: white;

    font-size: 14px;
}

.extra-info span {
    color: #777;

    font-size: 11px;
}

.extra-price {
    flex-shrink: 0;

    color: #777;

    font-size: 11px;
}

.extra-price strong {
    margin-left: 3px;

    color: var(--gold);

    font-size: 15px;
}

.extras-note {
    margin-top: 14px;

    color: #656565;

    text-align: center;

    font-size: 10px;
}


/* MOBIL */

@media (max-width: 600px) {

    .extras {
        margin-top: 40px;
    }

    .extra-item {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .extra-price {
        font-size: 10px;
    }

}

.faq-contact {
    margin-top: 28px;

    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);

    text-align: center;
}

.faq-contact p {
    color: #7f7f7f;

    font-size: 12px;
}

.faq-contact a {
    color: var(--gold);

    font-weight: 800;

    transition: color 0.2s ease;
}

.faq-contact a:hover {
    color: var(--gold-light);
}

/* =========================================
   ERHVERV
========================================= */

.active-nav {
    color: var(--gold) !important;
}


/* HERO */

.business-hero {
    position: relative;

    min-height: 660px;

    padding-top: 86px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(216, 146, 0, 0.11),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050505,
            #0a0804
        );
}

.business-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,0.97),
            rgba(5,5,5,0.75),
            rgba(5,5,5,0.4)
        );
}

.business-glow {
    position: absolute;

    right: 5%;
    top: 20%;

    width: 500px;
    height: 500px;

    background: rgba(216,146,0,.08);

    filter: blur(100px);

    border-radius: 50%;
}

.business-hero-content {
    position: relative;

    z-index: 3;
}

.business-hero h1 {
    max-width: 800px;

    font-size: clamp(55px, 7vw, 95px);

    line-height: .98;

    letter-spacing: -4px;

    margin-bottom: 28px;
}

.business-hero h1 span {
    display: block;

    color: var(--gold);
}

.business-hero-content > p {
    max-width: 620px;

    margin-bottom: 35px;

    color: #aaa;

    font-size: 18px;

    line-height: 1.8;
}


/* OPTIONS */

.business-options {
    background: #080808;
}

.business-card-grid {
    max-width: 1000px;

    margin-inline: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.business-card {
    position: relative;

    min-height: 450px;

    padding: 38px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            #111,
            #0a0a0a
        );

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 22px;
}

.featured-business {
    border-color:
        rgba(216,146,0,.45);

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(216,146,0,.12),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            #111,
            #090909
        );
}

.business-card-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: #3a3a3a;

    font-size: 12px;

    font-weight: 900;
}

.business-card-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    background:
        rgba(216,146,0,.08);

    border:
        1px solid rgba(216,146,0,.25);

    border-radius: 15px;
}

.business-card-icon svg {
    width: 25px;
    height: 25px;
}

.business-small {
    color: var(--gold);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.7px;

    margin-bottom: 10px;
}

.business-card h3 {
    margin-bottom: 18px;

    font-size: 31px;
}

.business-card p {
    color: #8d8d8d;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 17px;
}

.business-card-button {
    min-height: 50px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 999px;

    font-size: 12px;

    font-weight: 800;

    transition: .25s ease;
}

.business-card-button:hover {
    border-color:
        rgba(216,146,0,.4);

    transform: translateY(-2px);
}

.gold-business-button {
    background: var(--gold);

    color: black;

    border-color: var(--gold);
}


/* BENEFITS */

.business-benefits {
    background: #050505;
}


/* CONTACT */

.business-contact-section {
    background:
        linear-gradient(
            135deg,
            #0b0905,
            #050505
        );

    border-top:
        1px solid rgba(216,146,0,.1);
}

.business-contact-grid {
    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 100px;

    align-items: center;
}

.business-contact-text h2 {
    font-size:
        clamp(42px,5vw,65px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.business-contact-text h2 span {
    color: var(--gold);
}

.business-contact-text > p {
    max-width: 500px;

    margin: 24px 0 35px;

    color: #888;

    line-height: 1.8;
}

.business-contact-box {
    padding: 40px;

    border:
        1px solid rgba(216,146,0,.28);

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(216,146,0,.12),
            transparent 45%
        ),
        #0d0d0d;
}

.business-contact-box > span {
    color: var(--gold);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.8px;
}

.business-contact-box h3 {
    margin: 10px 0 15px;

    font-size: 30px;
}

.business-contact-box p {
    color: #888;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.business-contact-box .button {
    width: 100%;
}

.business-contact-box > small {
    display: block;

    margin-top: 14px;

    text-align: center;

    color: #555;

    font-size: 10px;
}


/* MOBILE */

@media (max-width: 850px) {

    .business-card-grid {
        grid-template-columns: 1fr;
    }

    .business-contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .business-hero {
        min-height: 620px;

        padding-top: 74px;
    }

    .business-hero h1 {
        font-size: 53px;

        letter-spacing: -3px;
    }

    .business-hero-content > p {
        font-size: 15px;
    }

    .business-card {
        padding: 27px;

        min-height: 420px;
    }

    .business-contact-box {
        padding: 27px 20px;
    }

}

/* =========================================
   ERHVERVSFORMULAR
========================================= */

.business-form-grid {
    display: grid;

    grid-template-columns: 0.72fr 1fr;

    gap: 90px;

    align-items: start;
}


/* VENSTRE SIDE */

.business-form-intro {
    position: sticky;
    top: 125px;
}

.business-form-intro h2 {
    max-width: 520px;

    color: white;

    font-size: clamp(42px, 5vw, 66px);

    line-height: 1.04;

    letter-spacing: -2.6px;
}

.business-form-intro h2 span {
    color: var(--gold);
}

.business-form-intro > p {
    max-width: 500px;

    margin: 25px 0 35px;

    color: #888;

    line-height: 1.8;
}


/* FORDELE */

.business-form-points {
    display: grid;

    gap: 13px;

    margin-bottom: 35px;
}

.business-form-points > div {
    display: flex;

    gap: 13px;

    align-items: flex-start;
}

.business-form-points > div > span {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216, 146, 0, 0.1);

    border: 1px solid rgba(216, 146, 0, 0.25);

    color: var(--gold);

    font-size: 11px;
    font-weight: 900;
}

.business-form-points p {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.business-form-points strong {
    color: #ddd;

    font-size: 13px;
}

.business-form-points small {
    color: #666;

    font-size: 11px;
}


/* DIREKTE KONTAKT */

.business-direct-contact {
    display: flex;
    flex-direction: column;

    gap: 4px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.business-direct-contact small {
    color: #666;

    margin-bottom: 5px;
}

.business-direct-contact a {
    width: fit-content;

    color: #ddd;

    font-size: 13px;

    font-weight: 700;

    transition: color .2s ease;
}

.business-direct-contact a:hover {
    color: var(--gold);
}


/* SELVE FORMULAREN */

.business-form {
    padding: 40px;

    border-radius: 25px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(216, 146, 0, 0.07),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #111,
            #0a0a0a
        );
}

.business-form-title {
    margin-bottom: 30px;
}

.business-form-title > span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.business-form-title h3 {
    margin: 6px 0 4px;

    color: white;

    font-size: 28px;
}

.business-form-title p {
    color: #666;

    font-size: 11px;
}


/* SMÅ OVERSKRIFTER */

.business-form-divider {
    position: relative;

    margin: 15px 0 23px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.business-form-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: rgba(255,255,255,0.08);
}

.business-form-divider span {
    color: var(--gold);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* CHECKBOXES */

.business-checkboxes {
    display: grid;

    gap: 9px;
}

.business-choice {
    position: relative;

    min-height: 68px;

    padding: 13px 15px;

    display: flex;
    align-items: center;

    gap: 13px;

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 12px;

    background: #090909;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.business-choice:hover {
    border-color: rgba(216,146,0,.32);
}

.business-choice input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.choice-box {
    width: 21px;
    height: 21px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    border: 1px solid #444;

    background: #101010;
}

.business-choice input:checked + .choice-box {
    background: var(--gold);

    border-color: var(--gold);
}

.business-choice input:checked + .choice-box::after {
    content: "✓";

    color: #050505;

    font-size: 12px;

    font-weight: 900;
}

.business-choice:has(input:checked) {
    border-color: rgba(216,146,0,.45);

    background: rgba(216,146,0,.035);
}

.choice-text {
    display: flex;

    flex-direction: column;

    gap: 1px;
}

.choice-text strong {
    color: #ddd;

    font-size: 12px;
}

.choice-text small {
    color: #626262;

    font-size: 10px;
}


/* KNAP */

.business-submit {
    width: 100%;

    margin-top: 5px;

    border: 0;
}

.business-submit:disabled {
    opacity: .6;

    cursor: not-allowed;

    transform: none;
}

.business-form-note {
    max-width: 530px;

    margin: 13px auto 0;

    color: #505050;

    text-align: center;

    font-size: 9px;

    line-height: 1.6;
}


/* MOBIL */

@media (max-width: 850px) {

    .business-form-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .business-form-intro {
        position: static;
    }

}


@media (max-width: 600px) {

    .business-form {
        padding: 26px 18px;
    }

    .business-form-title h3 {
        font-size: 24px;
    }

}

/* =========================================
   PRIVATLIVSPOLITIK
========================================= */

.privacy-hero {
    position: relative;

    min-height: 430px;

    padding-top: 86px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(216, 146, 0, 0.1),
            transparent 35%
        ),
        #050505;
}

.privacy-hero-content {
    position: relative;

    z-index: 2;
}

.privacy-hero h1 {
    font-size: clamp(54px, 7vw, 90px);

    line-height: 1;

    letter-spacing: -4px;
}

.privacy-hero h1 span {
    color: var(--gold);
}

.privacy-hero p {
    max-width: 600px;

    margin-top: 22px;

    color: #888;

    font-size: 16px;

    line-height: 1.8;
}


.privacy-section {
    padding: 90px 0 120px;

    background: #080808;
}

.privacy-content {
    max-width: 900px;
}

.privacy-block {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 25px;

    padding: 38px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.privacy-number {
    color: var(--gold);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}

.privacy-block h2 {
    margin-bottom: 16px;

    color: white;

    font-size: 25px;

    letter-spacing: -.6px;
}

.privacy-block p {
    margin-bottom: 14px;

    color: #888;

    font-size: 14px;

    line-height: 1.8;
}

.privacy-block ul {
    margin: 18px 0;

    padding-left: 18px;

    color: #888;
}

.privacy-block li {
    margin-bottom: 8px;

    font-size: 14px;
}

.privacy-block li::marker {
    color: var(--gold);
}

.privacy-block a {
    color: var(--gold);
}

.privacy-contact {
    margin-top: 22px;

    padding: 20px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,.08);

    background: #0d0d0d;

    color: #888;

    font-size: 13px;
}

.privacy-contact strong {
    color: white;

    margin-bottom: 5px;
}

.privacy-external {
    display: inline-block;

    margin-top: 5px;

    font-size: 13px;

    font-weight: 800;
}

.privacy-updated {
    padding-top: 30px;

    color: #4d4d4d;

    font-size: 10px;
}


@media (max-width: 600px) {

    .privacy-hero {
        min-height: 370px;

        padding-top: 74px;
    }

    .privacy-hero h1 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .privacy-section {
        padding: 60px 0 85px;
    }

    .privacy-block {
        grid-template-columns: 1fr;

        gap: 8px;
    }

}

.form-info a,
.business-form-note a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}