/* ===== FILMDAG.NO ===== */
/* Lyst, fresh og bookingfokusert designsystem */

:root {
    /* Farger */
    --fd-bg: #FDF8F3;
    --fd-bg-soft: #F8F0E9;
    --fd-bg-card: #FFFFFF;
    --fd-bg-accent: #FDF2ED;
    --fd-text: #2D2420;
    --fd-text-secondary: #5C514A;
    --fd-text-muted: #8B7D73;
    --fd-border: #EDE4DC;
    --fd-border-light: #F5EDE6;
    
    /* Accent */
    --fd-accent: #F08A5D;
    --fd-accent-hover: #D97744;
    --fd-accent-light: #FCE8DE;
    --fd-accent-soft: #FDF2ED;
    
    /* Tilbakemeldinger */
    --fd-success: #2A9D8F;
    --fd-success-bg: #E8F5F3;
    --fd-error: #EF4444;
    --fd-error-bg: #FEF2F2;
    
    /* Typografi */
    --fd-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fd-font-display: 'Inter', sans-serif;
    
    /* Størrelser */
    --fd-space-1: 0.25rem;
    --fd-space-2: 0.5rem;
    --fd-space-3: 0.75rem;
    --fd-space-4: 1rem;
    --fd-space-5: 1.25rem;
    --fd-space-6: 1.5rem;
    --fd-space-8: 2rem;
    --fd-space-10: 2.5rem;
    --fd-space-12: 3rem;
    --fd-space-16: 4rem;
    --fd-space-20: 5rem;
    
    /* Tekststørrelser */
    --fd-text-xs: 0.75rem;
    --fd-text-sm: 0.875rem;
    --fd-text-base: 1rem;
    --fd-text-lg: 1.125rem;
    --fd-text-xl: 1.25rem;
    --fd-text-2xl: 1.5rem;
    --fd-text-3xl: 1.875rem;
    --fd-text-4xl: 2.25rem;
    --fd-text-5xl: 3rem;
    
    /* Radius */
    --fd-radius-sm: 0.5rem;
    --fd-radius-md: 0.75rem;
    --fd-radius-lg: 1rem;
    --fd-radius-xl: 1.25rem;
    --fd-radius-2xl: 1.5rem;
    --fd-radius-full: 9999px;
    
    /* Skygger */
    --fd-shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.04);
    --fd-shadow: 0 4px 12px rgba(44, 36, 32, 0.06);
    --fd-shadow-md: 0 12px 24px rgba(44, 36, 32, 0.08);
    --fd-shadow-lg: 0 20px 40px rgba(44, 36, 32, 0.1);
    --fd-shadow-card: 0 8px 32px rgba(44, 36, 32, 0.06);
    
    /* Container */
    --fd-container: 1200px;
}

/* ===== RESET & BASIS ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--fd-font);
    font-size: var(--fd-text-base);
    line-height: 1.6;
    color: var(--fd-text);
    background: var(--fd-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== HJELPEKLASSER ===== */
.fd-container {
    width: 100%;
    max-width: var(--fd-container);
    margin: 0 auto;
    padding: 0 var(--fd-space-5);
}

.fd-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== KNAPPER ===== */
.fd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fd-space-2);
    padding: var(--fd-space-3) var(--fd-space-6);
    font-size: var(--fd-text-base);
    font-weight: 600;
    border-radius: var(--fd-radius-full);
    border: 2px solid transparent;
    transition: all 0.2s ease;
    text-align: center;
}

.fd-btn--primary {
    background: var(--fd-accent);
    color: white;
    border-color: var(--fd-accent);
}

.fd-btn--primary:hover {
    background: var(--fd-accent-hover);
    border-color: var(--fd-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--fd-shadow-md);
}

.fd-btn--secondary {
    background: transparent;
    color: var(--fd-text);
    border-color: var(--fd-border);
}

.fd-btn--secondary:hover {
    border-color: var(--fd-text-muted);
    background: var(--fd-bg-soft);
}

.fd-btn--ghost {
    background: transparent;
    color: var(--fd-text-secondary);
    border-color: transparent;
}

.fd-btn--ghost:hover {
    background: var(--fd-bg-soft);
}

.fd-btn--lg {
    padding: var(--fd-space-3) var(--fd-space-6);
    font-size: var(--fd-text-base);
}

.fd-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== HEADER ===== */
.fd-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--fd-border-light);
}

.fd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.fd-logo {
    display: flex;
    align-items: baseline;
    gap: var(--fd-space-2);
    font-weight: 800;
    font-size: var(--fd-text-xl);
    color: var(--fd-text);
    letter-spacing: -0.02em;
}

.fd-logo span {
    font-weight: 500;
    font-size: var(--fd-text-sm);
    color: var(--fd-text-muted);
}

.fd-nav {
    display: none;
    align-items: center;
    gap: var(--fd-space-8);
}

.fd-nav__link {
    font-size: var(--fd-text-sm);
    font-weight: 500;
    color: var(--fd-text-secondary);
    transition: color 0.2s;
}

.fd-nav__link:hover {
    color: var(--fd-accent);
}

.fd-header__cta {
    display: none;
}

@media (min-width: 768px) {
    .fd-header__cta .fd-btn {
        padding: var(--fd-space-2) var(--fd-space-4);
        font-size: var(--fd-text-sm);
    }
}

.fd-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    background: none;
    border: none;
    padding: var(--fd-space-2);
}

.fd-mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--fd-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .fd-nav,
    .fd-header__cta {
        display: flex;
    }
    .fd-mobile-toggle {
        display: none;
    }
}

/* ===== MOBILMENY ===== */
.fd-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--fd-bg-card);
    box-shadow: var(--fd-shadow-lg);
    padding: var(--fd-space-6);
    transition: right 0.3s ease;
    z-index: 200;
}

.fd-mobile-menu.open {
    right: 0;
}

.fd-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 190;
}

.fd-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.fd-mobile-menu__close {
    position: absolute;
    top: var(--fd-space-4);
    right: var(--fd-space-4);
    background: none;
    border: none;
    font-size: var(--fd-text-2xl);
    color: var(--fd-text);
}

.fd-mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: var(--fd-space-4);
    margin-top: var(--fd-space-12);
}

.fd-mobile-menu__link {
    font-size: var(--fd-text-lg);
    font-weight: 600;
    padding: var(--fd-space-3) 0;
    border-bottom: 1px solid var(--fd-border-light);
}

/* ===== HERO ===== */
.fd-hero {
    padding: var(--fd-space-5) 0 var(--fd-space-5);
    background: linear-gradient(180deg, var(--fd-bg) 0%, var(--fd-bg-soft) 100%);
}

@media (min-width: 768px) {
    .fd-hero {
        padding: var(--fd-space-10) 0 var(--fd-space-8);
    }
}

.fd-hero__inner {
    display: grid;
    gap: var(--fd-space-8);
    align-items: start;
}

@media (min-width: 1024px) {
    .fd-hero__inner {
        grid-template-columns: 1fr 1.1fr;
        gap: var(--fd-space-16);
        padding: var(--fd-space-8) 0;
    }
}

.fd-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--fd-space-2);
    padding: var(--fd-space-2) var(--fd-space-4);
    background: var(--fd-bg-soft);
    color: var(--fd-text-muted);
    font-size: var(--fd-text-sm);
    font-weight: 500;
    border-radius: var(--fd-radius-full);
    margin-bottom: var(--fd-space-5);
}

.fd-hero__title {
    font-size: clamp(var(--fd-text-3xl), 8vw, var(--fd-text-5xl));
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 var(--fd-space-4);
}

@media (min-width: 768px) {
    .fd-hero__title {
        margin: 0 0 var(--fd-space-5);
    }
}

.fd-hero__title em {
    color: var(--fd-accent);
    font-style: normal;
}

.fd-hero__lead {
    font-size: var(--fd-text-lg);
    color: var(--fd-text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--fd-space-6);
    max-width: 480px;
}

.fd-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fd-space-2);
}

@media (min-width: 768px) {
    .fd-trust-list {
        gap: var(--fd-space-3);
    }
}

.fd-trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--fd-space-1);
    font-size: var(--fd-text-xs);
    font-weight: 500;
    color: var(--fd-text-secondary);
    padding: 6px 10px;
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-full);
}

.fd-trust-item svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .fd-trust-item {
        font-size: var(--fd-text-sm);
        padding: var(--fd-space-2) var(--fd-space-3);
        gap: var(--fd-space-2);
    }
    .fd-trust-item svg {
        width: 16px;
        height: 16px;
    }
}

.fd-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--fd-success);
    flex-shrink: 0;
}

/* ===== BOOKINGKORT ===== */
.fd-booking {
    background: var(--fd-bg-card);
    border-radius: 2rem;
    box-shadow: var(--fd-shadow-card);
    border: 1px solid var(--fd-border);
    padding: var(--fd-space-6);
}

@media (min-width: 768px) {
    .fd-booking {
        padding: var(--fd-space-8);
        border-radius: 2.5rem;
    }
}

.fd-booking__header {
    margin-bottom: var(--fd-space-6);
}

.fd-booking__title {
    font-size: var(--fd-text-xl);
    font-weight: 700;
    margin: 0 0 var(--fd-space-2);
}

.fd-booking__subtitle {
    font-size: var(--fd-text-sm);
    color: var(--fd-text-muted);
    margin: 0;
}

/* Progress */
.fd-progress {
    display: flex;
    align-items: center;
    gap: var(--fd-space-1);
    margin-bottom: var(--fd-space-5);
    max-width: 280px;
}

.fd-progress__step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    font-size: 10px;
    font-weight: 600;
    color: var(--fd-text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.fd-progress__step.active {
    border-color: var(--fd-accent);
    color: var(--fd-accent);
    background: var(--fd-accent-soft);
}

.fd-progress__step.completed {
    border-color: var(--fd-success);
    color: var(--fd-success);
    background: var(--fd-success-bg);
}

.fd-progress__line {
    flex: 1;
    height: 1px;
    background: var(--fd-border);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.fd-progress__line.completed {
    background: var(--fd-success);
}

/* Booking steps */
.fd-booking-step {
    display: none;
    animation: fdFadeIn 0.3s ease;
}

.fd-booking-step.active {
    display: block;
}

@keyframes fdFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.fd-booking-step__title {
    font-size: var(--fd-text-base);
    font-weight: 600;
    margin: 0 0 var(--fd-space-4);
    color: var(--fd-text);
}

/* Kalender */
.fd-calendar__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--fd-space-4);
}

.fd-calendar__month {
    font-size: var(--fd-text-base);
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}

.fd-calendar__btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fd-bg-soft);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    color: var(--fd-text);
    transition: all 0.2s;
}

.fd-calendar__btn:hover:not(:disabled) {
    background: var(--fd-border);
}

.fd-calendar__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.fd-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--fd-space-1);
    margin-bottom: var(--fd-space-2);
}

@media (max-width: 480px) {
    .fd-calendar__weekdays {
        grid-template-columns: repeat(7, 40px);
        justify-content: center;
        gap: 6px;
    }
}

.fd-calendar__weekday {
    text-align: center;
    font-size: var(--fd-text-xs);
    font-weight: 600;
    color: var(--fd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fd-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--fd-space-1);
    justify-items: center;
}

@media (max-width: 480px) {
    .fd-calendar__days {
        grid-template-columns: repeat(7, 40px);
        justify-content: center;
        gap: 6px;
    }
}

.fd-calendar__day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--fd-bg-card);
    border: 1.5px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    font-size: var(--fd-text-sm);
    font-weight: 700;
    color: var(--fd-text);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    width: 100%;
}

@media (max-width: 480px) {
    .fd-calendar__day {
        min-height: 40px;
        font-size: var(--fd-text-xs);
        border-radius: 10px;
    }
}

.fd-calendar__day:hover:not(.disabled):not(.selected) {
    border-color: var(--fd-accent);
    background: var(--fd-accent-soft);
    transform: translateY(-1px);
}

.fd-calendar__day.selected {
    background: var(--fd-accent);
    border-color: var(--fd-accent);
    color: white;
    box-shadow: 0 6px 16px rgba(240, 138, 93, 0.45);
    transform: scale(1.08);
    font-weight: 800;
}

@media (max-width: 480px) {
    .fd-calendar__day.selected {
        transform: scale(1.1);
    }
}

.fd-calendar__day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--fd-bg-soft);
    border-color: transparent;
    font-weight: 500;
}

.fd-calendar__day.fully-booked {
    opacity: 0.45;
    cursor: not-allowed;
    background: var(--fd-bg-soft);
    border-color: transparent;
    text-decoration: line-through;
    font-weight: 500;
}

.fd-calendar__day.outside {
    color: var(--fd-text-muted);
    background: transparent;
    border-color: transparent;
}

/* Tidsvelger */
.fd-time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--fd-space-3);
}

@media (min-width: 640px) {
    .fd-time-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fd-time-slot {
    padding: var(--fd-space-4) var(--fd-space-2);
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-lg);
    font-size: var(--fd-text-base);
    font-weight: 600;
    color: var(--fd-text);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.fd-time-slot:hover:not(.disabled):not(.selected) {
    border-color: var(--fd-accent);
    background: var(--fd-accent-soft);
}

.fd-time-slot.selected {
    background: var(--fd-accent);
    border-color: var(--fd-accent);
    color: white;
}

.fd-time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    background: var(--fd-bg-soft);
}

.fd-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fd-space-2);
    padding: var(--fd-space-8);
    color: var(--fd-text-muted);
    font-size: var(--fd-text-sm);
}

.fd-loading__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--fd-border);
    border-top-color: var(--fd-accent);
    border-radius: 50%;
    animation: fdSpin 0.8s linear infinite;
}

@keyframes fdSpin {
    to { transform: rotate(360deg); }
}

/* Skjema */
.fd-form {
    display: grid;
    gap: var(--fd-space-4);
}

.fd-form__row {
    display: grid;
    gap: var(--fd-space-4);
}

@media (min-width: 640px) {
    .fd-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.fd-form__group {
    display: grid;
    gap: var(--fd-space-1);
}

.fd-form__label {
    font-size: var(--fd-text-sm);
    font-weight: 600;
    color: var(--fd-text);
}

.fd-form__label .required {
    color: var(--fd-accent);
}

.fd-form__input,
.fd-form__textarea,
.fd-form__select {
    width: 100%;
    padding: var(--fd-space-3) var(--fd-space-4);
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-lg);
    font-size: var(--fd-text-base);
    color: var(--fd-text);
    font-family: inherit;
    transition: all 0.2s ease;
}

.fd-form__input:focus,
.fd-form__textarea:focus,
.fd-form__select:focus {
    outline: none;
    border-color: var(--fd-accent);
    box-shadow: 0 0 0 3px var(--fd-accent-soft);
}

.fd-form__input::placeholder,
.fd-form__textarea::placeholder {
    color: var(--fd-text-muted);
    opacity: 0.7;
}

.fd-form__textarea {
    resize: vertical;
    min-height: 90px;
}

.fd-form__note {
    font-size: var(--fd-text-sm);
    color: var(--fd-text-muted);
    margin: 0;
    padding: var(--fd-space-3) var(--fd-space-4);
    background: var(--fd-bg-soft);
    border-radius: var(--fd-radius-md);
    line-height: 1.55;
}

.fd-form__hint {
    font-size: var(--fd-text-sm);
    color: var(--fd-text-muted);
    margin: calc(var(--fd-space-1) * -1) 0 var(--fd-space-3) 0;
    line-height: 1.5;
}

.fd-form__note--calm {
    background: transparent;
    border: 1px solid var(--fd-border);
    color: var(--fd-text-muted);
    padding: var(--fd-space-4);
}

.fd-form__selected {
    text-align: center;
    padding: var(--fd-space-4);
    background: var(--fd-accent-soft);
    border-radius: var(--fd-radius-lg);
    color: var(--fd-accent-hover);
    font-weight: 600;
    font-size: var(--fd-text-sm);
}

/* Navigasjon i booking */
.fd-booking__nav {
    display: flex;
    justify-content: space-between;
    margin-top: var(--fd-space-6);
    padding-top: var(--fd-space-6);
    border-top: 1px solid var(--fd-border-light);
}

/* Meldinger */
.fd-message {
    text-align: center;
    padding: var(--fd-space-8) var(--fd-space-4);
}

.fd-message__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--fd-space-5);
    background: var(--fd-success-bg);
    color: var(--fd-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fd-message__icon svg {
    width: 32px;
    height: 32px;
}

.fd-message__title {
    font-size: var(--fd-text-2xl);
    font-weight: 700;
    margin: 0 0 var(--fd-space-3);
}

.fd-message__text {
    font-size: var(--fd-text-base);
    color: var(--fd-text-secondary);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 400px;
}

.fd-error {
    padding: var(--fd-space-3) var(--fd-space-4);
    background: var(--fd-error-bg);
    color: var(--fd-error);
    border-radius: var(--fd-radius-md);
    font-size: var(--fd-text-sm);
    font-weight: 500;
}

/* ===== SEKSJONER ===== */
.fd-section {
    padding: var(--fd-space-16) 0;
}

.fd-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--fd-space-10);
}

.fd-section__eyebrow {
    display: inline-block;
    font-size: var(--fd-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fd-accent);
    margin-bottom: var(--fd-space-3);
}

.fd-section__title {
    font-size: clamp(var(--fd-text-2xl), 4vw, var(--fd-text-4xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 var(--fd-space-4);
}

.fd-section__lead {
    font-size: var(--fd-text-lg);
    color: var(--fd-text-secondary);
    margin: 0;
}

/* Hvordan fungerer det */
.fd-steps {
    display: grid;
    gap: var(--fd-space-6);
}

@media (min-width: 768px) {
    .fd-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fd-step {
    position: relative;
    padding: var(--fd-space-5) var(--fd-space-4);
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-xl);
    text-align: center;
    transition: all 0.2s ease;
}

.fd-step:hover {
    box-shadow: var(--fd-shadow-md);
    transform: translateY(-2px);
}

.fd-step__num {
    width: 32px;
    height: 32px;
    margin: 0 auto var(--fd-space-3);
    background: var(--fd-accent-soft);
    color: var(--fd-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fd-text-base);
    font-weight: 800;
}

.fd-step__title {
    font-size: var(--fd-text-base);
    font-weight: 700;
    margin: 0 0 var(--fd-space-1);
}

.fd-step__text {
    font-size: var(--fd-text-sm);
    color: var(--fd-text-secondary);
    margin: 0;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .fd-step {
        padding: var(--fd-space-6);
    }
    .fd-step__num {
        width: 40px;
        height: 40px;
        margin: 0 auto var(--fd-space-4);
        font-size: var(--fd-text-lg);
    }
    .fd-step__title {
        margin: 0 0 var(--fd-space-2);
    }
}

/* Kundeportal */
.fd-portal {
    background: var(--fd-bg-soft);
}

.fd-portal__grid {
    display: grid;
    gap: var(--fd-space-6);
    align-items: center;
}

@media (min-width: 1024px) {
    .fd-portal__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--fd-space-12);
    }
}

.fd-portal__content {
    max-width: 480px;
}

.fd-portal__text {
    font-size: var(--fd-text-lg);
    color: var(--fd-text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--fd-space-6);
}

.fd-portal__features {
    display: grid;
    gap: var(--fd-space-3);
    margin-bottom: var(--fd-space-6);
}

.fd-portal__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--fd-space-3);
    font-size: var(--fd-text-base);
    color: var(--fd-text-secondary);
}

.fd-portal__feature svg {
    width: 20px;
    height: 20px;
    color: var(--fd-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.fd-portal__mockups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fd-space-4);
}

.fd-portal__mockup {
    background: var(--fd-bg-card);
    border-radius: var(--fd-radius-xl);
    box-shadow: var(--fd-shadow-md);
    overflow: hidden;
    border: 1px solid var(--fd-border);
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fd-text-muted);
    font-size: var(--fd-text-xs);
    text-align: center;
    padding: var(--fd-space-4);
}

.fd-portal__mockup:nth-child(2) {
    transform: translateY(-20px);
}

.fd-portal__mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Priser */
.fd-pricing__grid {
    display: grid;
    gap: var(--fd-space-4);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fd-pricing__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fd-price-card {
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-xl);
    padding: var(--fd-space-5) var(--fd-space-4);
    text-align: center;
    transition: all 0.2s ease;
}

.fd-price-card:hover {
    box-shadow: var(--fd-shadow-md);
    transform: translateY(-2px);
}

.fd-price-card__label {
    font-size: var(--fd-text-xs);
    font-weight: 600;
    color: var(--fd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--fd-space-2);
}

.fd-price-card__price {
    font-size: var(--fd-text-2xl);
    font-weight: 800;
    color: var(--fd-accent);
    margin-bottom: var(--fd-space-1);
}

.fd-price-card__unit {
    font-size: var(--fd-text-xs);
    color: var(--fd-text-muted);
}

.fd-price-card__note {
    margin-top: var(--fd-space-3);
    padding-top: var(--fd-space-3);
    border-top: 1px solid var(--fd-border-light);
    font-size: var(--fd-text-xs);
    color: var(--fd-text-secondary);
}

@media (min-width: 768px) {
    .fd-price-card {
        padding: var(--fd-space-6);
    }
    .fd-price-card__label {
        font-size: var(--fd-text-sm);
        margin-bottom: var(--fd-space-3);
    }
    .fd-price-card__price {
        font-size: var(--fd-text-3xl);
    }
    .fd-price-card__unit {
        font-size: var(--fd-text-sm);
    }
    .fd-price-card__note {
        margin-top: var(--fd-space-4);
        padding-top: var(--fd-space-4);
        font-size: var(--fd-text-sm);
    }
}

/* FAQ */
.fd-faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: var(--fd-space-3);
}

.fd-faq__item {
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-lg);
    overflow: hidden;
}

.fd-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--fd-space-4);
    padding: var(--fd-space-4) var(--fd-space-5);
    background: none;
    border: none;
    font-size: var(--fd-text-base);
    font-weight: 600;
    color: var(--fd-text);
    text-align: left;
    cursor: pointer;
}

.fd-faq__question:hover {
    color: var(--fd-accent);
}

.fd-faq__question svg {
    width: 20px;
    height: 20px;
    color: var(--fd-text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fd-faq__item.open .fd-faq__question svg {
    transform: rotate(180deg);
}

.fd-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.fd-faq__item.open .fd-faq__answer {
    max-height: 300px;
    padding: 0 var(--fd-space-5) var(--fd-space-4);
}

.fd-faq__answer p {
    margin: 0;
    font-size: var(--fd-text-base);
    color: var(--fd-text-secondary);
    line-height: 1.6;
}

/* Hvem står bak */
.fd-about {
    background: var(--fd-bg-soft);
}

.fd-about__content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.fd-about__text {
    font-size: var(--fd-text-lg);
    color: var(--fd-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.fd-about__text strong {
    color: var(--fd-text);
}

/* ===== FOOTER ===== */
.fd-footer {
    background: var(--fd-text);
    color: var(--fd-bg-soft);
    padding: var(--fd-space-12) 0 var(--fd-space-8);
}

.fd-footer__inner {
    display: grid;
    gap: var(--fd-space-8);
}

@media (min-width: 768px) {
    .fd-footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.fd-footer__brand {
    font-size: var(--fd-text-xl);
    font-weight: 800;
    margin-bottom: var(--fd-space-3);
}

.fd-footer__brand span {
    font-weight: 500;
    font-size: var(--fd-text-sm);
    color: var(--fd-text-muted);
}

.fd-footer__text {
    font-size: var(--fd-text-sm);
    color: var(--fd-text-muted);
    line-height: 1.6;
    margin: 0;
}

.fd-footer__title {
    font-size: var(--fd-text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 var(--fd-space-4);
}

.fd-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--fd-space-2);
}

.fd-footer__links a {
    font-size: var(--fd-text-sm);
    color: var(--fd-text-muted);
    transition: color 0.2s;
}

.fd-footer__links a:hover {
    color: var(--fd-accent);
}

.fd-footer__bottom {
    margin-top: var(--fd-space-10);
    padding-top: var(--fd-space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fd-text-xs);
    color: var(--fd-text-muted);
    text-align: center;
}

/* ===== CHECKBOXES & RADIO ===== */
.fd-checkbox-group,
.fd-radio-group {
    display: grid;
    gap: var(--fd-space-2);
}

.fd-checkbox,
.fd-radio {
    display: flex;
    align-items: flex-start;
    gap: var(--fd-space-3);
    padding: var(--fd-space-3) var(--fd-space-4);
    background: var(--fd-bg-card);
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fd-checkbox:hover,
.fd-radio:hover {
    border-color: var(--fd-accent);
    background: var(--fd-accent-soft);
}

.fd-checkbox input,
.fd-radio input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.fd-checkbox__box {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--fd-border);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.2s ease;
}

.fd-checkbox__box::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 2px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.fd-checkbox input:checked + .fd-checkbox__box {
    background: var(--fd-accent);
    border-color: var(--fd-accent);
}

.fd-checkbox input:checked + .fd-checkbox__box::after {
    opacity: 1;
    transform: scale(1);
}

.fd-checkbox__label,
.fd-radio__label {
    font-size: var(--fd-text-sm);
    color: var(--fd-text);
    line-height: 1.5;
}

.fd-radio__circle {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--fd-border);
    border-radius: 50%;
    background: var(--fd-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.2s ease;
}

.fd-radio__circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--fd-accent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.fd-radio input:checked + .fd-radio__circle {
    border-color: var(--fd-accent);
}

.fd-radio input:checked + .fd-radio__circle::after {
    opacity: 1;
    transform: scale(1);
}

.fd-radio input:checked ~ .fd-radio__label,
.fd-checkbox input:checked ~ .fd-checkbox__label {
    color: var(--fd-text);
    font-weight: 500;
}

/* ===== CTA ===== */
.fd-cta-center {
    display: flex;
    justify-content: center;
    margin-top: var(--fd-space-8);
}

@media (min-width: 768px) {
    .fd-cta-center {
        margin-top: var(--fd-space-10);
    }
}

/* ===== BOOKING ANCHOR ===== */
#booking {
    scroll-margin-top: 100px;
}

@media (min-width: 768px) {
    #booking {
        scroll-margin-top: 120px;
    }
}

/* ===== ANIMASJONER ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
