/* --- PRELOADER --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    filter: brightness(0) invert(1);
    margin-bottom: 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent, #f97316);
    border-radius: 3px;
    animation: preloaderFill 1.2s ease-out forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes preloaderFill {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* --- GRUNDLÆGGENDE VARIABLER --- */
:root {
    --primary: #1e293b;
    --primary-light: #334155;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --text-dark: #1f2937;
    --text-light: #f1f5f9;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

/* --- RESET & GLOBAL STIL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- NYE EFFEKTER (KASTBERG STIL) --- */

/* 1. Watermark Baggrundstekst */
.watermark-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    /* Så man kan klikke igennem teksten */
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Juster tekst til venstre */
}

.watermark-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10rem;
    /* Meget stor tekst */
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    /* Meget svag farve */
    white-space: nowrap;
    padding-left: 5%;
    text-transform: uppercase;
    line-height: 1;
}

/* 2. Parallax Baggrund (Fixeret billede) */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 3. Hero Zoom Animation - REPLACED WITH TRANSITION */
/* Animation removed to prevent snapping */

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    /* Skjul på desktop som standard */
}

.logo img {
    height: 60px;
    /* Tilpas denne højde efter behov */
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

header.scrolled .logo img {
    height: 50px;
    filter: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    color: var(--bg-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

header.scrolled .nav-links li a {
    color: var(--primary);
    text-shadow: none;
}

/* --- HERO SEKTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--bg-white);
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    /* Vigtig for at zoomet billede ikke går ud over */
}

/* Separat baggrundselement til animation */
/* Separat baggrundselement til animation */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Smooth transition for both opacity and transform */
    transition: opacity 2.5s ease-in-out, transform 10s linear;
    transform: scale(1);
    will-change: opacity, transform;
}

.hero-bg-slide.active {
    opacity: 1;
    /* Scale up to 1.1 ensures the zoom effect */
    transform: scale(1.1);
    /* Transition time matches the "zoom speed" we want */
    transition: opacity 2.5s ease-in-out, transform 20s linear;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.6));
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* --- STATS BAR --- */
.stats-bar {
    background: var(--primary);
    padding: 50px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number,
    .stat-suffix {
        font-size: 2.5rem;
    }
}

/* --- YDELSER (SERVICES) --- */
.services {
    padding: 120px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
    /* For at holde watermark inde */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.2);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.service-card:hover .icon-box {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.service-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--primary-light);
}

.service-card ul li i {
    color: var(--accent);
    margin-right: 12px;
    margin-top: 5px;
}

/* --- CTA BANNER --- */
.cta-banner {
    background: var(--accent);
    padding: 60px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.cta-inner h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.05rem;
}

.cta-inner .btn {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    white-space: nowrap;
}

.cta-inner .btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        gap: 15px;
    }

    .cta-inner h3 {
        font-size: 1.3rem;
    }
}

/* --- PROCES --- */
.process {
    padding: 120px 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    padding: 40px 30px 30px;
    position: relative;
    border-top: 3px solid var(--accent);
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(30, 41, 59, 0.06);
    line-height: 1;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--primary-light);
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process {
        padding: 60px 0;
    }
}

/* --- OM JONAS --- */
.about {
    padding: 120px 0;
    background: white;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-image::before {
    display: none;
}

.about-text {
    flex: 1.2;
}

.about-text h4 {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.cert-badge {
    background-color: var(--bg-light);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.cert-badge:hover {
    transform: translateY(-5px);
    background: white;
    border-color: var(--accent);
}

.certifications {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* --- PROJEKTER --- */
.projects {
    padding: 120px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 2;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.2);
}

.project-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-location {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-highlight {
    background-color: #fff7ed;
    border-left: 4px solid var(--accent);
    padding: 15px;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--primary-light);
    margin-top: auto;
}

/* --- USP SEKTION (Med Parallax) --- */
.usp {
    /* Kastberg style parallax baggrund */
    background-image: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9)),
        url('baggrunde/usp-baggrund.jpg');
    /* Byggetegning baggrund */
    color: var(--bg-white);
    padding: 140px 0;
    position: relative;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.usp-item {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.usp-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.usp-item i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

/* --- KONTAKT & FOOTER --- */
.contact {
    padding: 120px 0 80px 0;
    background-color: white;
    /* Ændret til hvid for kontrast mod grå footer */
    text-align: center;
}

.contact-box {
    background: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    border: 1px solid #f1f5f9;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.contact-item {
    padding: 20px;
    border-radius: 12px;
    transition: background 0.3s;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

footer {
    background-color: var(--primary);
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- RESPONSIVT --- */
@media (max-width: 992px) {
    .watermark-text {
        font-size: 5rem;
        /* Mindre vandmærke på små skærme */
    }

    .mobile-menu-btn {
        display: none;
        /* Skjul på desktop som standard */
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-box {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .about-image {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
        background-color: var(--primary);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .hero {
        padding-top: 70px;
    }

    /* Mobile Menu Active State */
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active a {
        color: var(--primary);
        text-shadow: none;
    }

    .watermark-text {
        display: none;
        /* Skjul vandmærke på mobil */
    }

    .services-grid,
    .projects-grid,
    .usp-grid {
        grid-template-columns: 1fr;
    }

    .certifications {
        flex-direction: column;
    }

    /* Reduced padding for mobile */
    .services,
    .about,
    .projects,
    .usp,
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* --- KASTBERG HEADER EFFEKT --- */
.kastberg-header-wrap {
    position: relative;
    padding: 60px 0 40px 0;
    overflow: hidden;
    /* Sikrer at teksten ikke går ud over skærmen */
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    /* Centrerer indholdet vertikalt */
}

/* Den store baggrundstekst */
.kastberg-bg-text {
    position: absolute;
    left: -20px;
    /* Starter lidt til venstre */
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    /* Meget stor størrelse */
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 0;
    /* Ligger bagerst */

    /* Outline effekten (kun streger, ingen fyld) */
    color: transparent;
    -webkit-text-stroke: 2px rgba(30, 41, 59, 0.08);
    /* Svag mørkeblå kant */

    /* Forhindrer markering */
    user-select: none;
    pointer-events: none;
}

/* Den rigtige overskrift foran */
.kastberg-fg-text {
    position: relative;
    z-index: 1;
    /* Ligger forrest */
    padding-left: 20px;
    /* Lidt luft fra kanten */
    max-width: 800px;
}

.kastberg-fg-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: var(--bg-light);
    /* Lille baggrundstrick hvis teksten skal være tydeligere */
    display: inline-block;
    /* Så baggrunden kun dækker teksten */
    background: transparent;
    /* Eller gennemsigtig */
}

.kastberg-fg-text p {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-left: 5px;
    border-left: 4px solid var(--accent);
    /* Den orange streg i siden */
    padding-left: 15px;
}

/* --- KNAPPER --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    position: relative;
}

.hero-trust span:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* --- SCROLL OFFSET FIX --- */
section[id] {
    scroll-margin-top: 100px;
}

/* --- SKIP TO CONTENT --- */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
}

/* --- FOKUS STYLING --- */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* --- BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* --- KONTAKTFORMULAR --- */
.contact-form {
    text-align: left;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-status {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
}

.form-status.success {
    color: #16a34a;
}

.form-status.error {
    color: #dc2626;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsiv justering */
@media (max-width: 768px) {
    .kastberg-bg-text {
        font-size: 3.5rem;
        /* Mindre på mobil */
        left: 0;
        opacity: 0.3;
    }

    .kastberg-fg-text h2 {
        font-size: 2rem;
    }
}
