/* --- APPARAT & DESIGN VARIABLER --- */
:root {
    --primary-green: #82b33b;   /* Frisk logogrøn */
    --dark-green: #2e6930;      /* Dyb skovgrøn til premium kontraster */
    --brand-dark: #0d141f;      /* Dyb natteblå/sort i stedet for kedelig grå */
    --text-main: #2c3e50;
    --text-muted: #627284;
    --card-bg: rgba(255, 255, 255, 0.45);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* NY PREMIUM FONTVARIABEL */
    --font-heading: 'Plus Jakarta Sans', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    color: var(--text-main);
  
    background: radial-gradient(circle, #82b33b 50%, #93c743 0%, #6e9a2f 100%);
    overflow-x: hidden;
}
 /* Animationslaget */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: 
                radial-gradient(circle at 30% 70%, rgba(255,235,59,0.08) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(76,175,80,0.12) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
            animation: bgShift 15s ease-in-out infinite alternate;
        }

        @keyframes bgShift {
            0%   { transform: translate(0, 0) scale(1); }
            50%  { transform: translate(2%, -1%) scale(1.05); }
            100% { transform: translate(-2%, 1%) scale(1); }
        }


/* --- Avanceret Typografi til Overskrifter --- */
h1, h2, h3, h4, h5, h6, 
.seo-title, .section-header h2, .radio-header h2, .cta-box-content h2, .cta-form-content h2 {
    font-family: var(--font-heading) !important;
    letter-spacing: -0.03em !important; /* Gør overskrifterne mere kompakte og lækre */
}


/* --- Bliv ringet op Formularbelysning --- */

.cta-form-box {
    background: linear-gradient(135deg, var(--dark-green), #1a3c1c); /* Præcis farvematch fra screenshot */
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(46,105,48,0.25);
}

.cta-form-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-form-content p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.5;
}

.callback-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.form-field {
    flex: 1;
    min-width: 220px;
}

.callback-form input[type="text"],
.callback-form input[type="tel"] {
    width: 100%;
    padding: 16px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: #ffffff;
    color: var(--brand-dark);
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: var(--transition);
}

.callback-form input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.callback-form input:focus {
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.4);
    border-color: var(--primary-green);
}

.callback-form .btn-light-cta {
    border: none;
    cursor: pointer;
    padding: 16px 35px;
    font-size: 15px;
    white-space: nowrap;
}

/* Responsiv tilpasning til mindre skærme */
@media (max-width: 992px) {
    .cta-form-box {
        padding: 35px;
        text-align: center;
    }
    .callback-form {
        flex-direction: column;
        gap: 15px;
    }
    .form-field {
        width: 100%;
    }
    .callback-form .btn-light-cta {
        width: 100%;
        text-align: center;
    }
}


.cases-action {
    display: flex;
    justify-content: center;
    margin-top: 45px; /* Giver perfekt luft mellem kortene og knappen */
}


/* --- Cases / Referencer Sektion Styling --- */

.section.cases {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 30px;
}

.section.cases .container {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    background-color: var(--dark-green);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2 {
    color: var(--brand-dark);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.case-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px; /* Matcher det øvrige moderne boks-design */
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13,20,31,0.05);
    border-color: rgba(140, 198, 63, 0.3);
}

.case-quote {
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.case-card p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1; /* Sørger for at forfatter-linjen altid flugter i bunden */
}

.case-author {
    font-size: 14px;
    color: var(--dark-green);
    font-weight: 700;
}

/* Responsiv tilpasning til mindre skærmstørrelser */
@media (max-width: 992px) {
    .section.cases {
        margin: 40px auto;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .case-card {
        padding: 30px;
    }
}



.feature-card:hover::after {
    transform: translateY(-7px); /* Følger kortet opad */
    border-color: rgba(255, 255, 255, 0.65) transparent transparent; /* Bliver mere solid */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}
.stat-box:hover .stat-icon-wrapper svg {
    animation: float 2s ease-in-out infinite;
}



.btn:focus-visible, a:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 4px;
}





/* --- Gå til top knap (Perfekt rund med centreret trekant) --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;  /* Fast, ensartet bredde og højde sikrer en perfekt cirkel */
    height: 46px;
    background-color: var(--dark-green);
    border: none;
    border-radius: 50%; /* Gør knappen fuldstændig rund */
    cursor: pointer;
    
    /* Flexbox centrerer SVG-ikonet perfekt i midten af cirklen */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Start-tilstand (skjult og skaleret ned) */
    transform: scale(0); 
    opacity: 0;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(13, 20, 31, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* Selve den trekantede pil indeni */
.scroll-top-btn .arrow-icon {
    width: 16px;  /* Styring af pilens størrelse indeni cirklen */
    height: 16px;
    fill: #ffffff; /* Gør trekanten helt hvid */
    display: block;
    transition: transform 0.3s ease;
}

/* Visuel tilstand når knappen fader ind via JavaScript */
.scroll-top-btn.visible {
    transform: scale(1);
    opacity: 1;
}

/* Hover-effekter */
.scroll-top-btn:hover {
    background-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(140, 198, 63, 0.4);
}

.scroll-top-btn:hover .arrow-icon {
    color: var(--brand-dark);
    fill: var(--brand-dark); /* Skifter pilens farve til mørk ved hover, hvis det ønskes */
    transform: translateY(-2px); /* Løfter pilen en smule opad ved hover for en levende effekt */
}

/* Tilpasning til mobilskærme */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
    .scroll-top-btn .arrow-icon {
        width: 14px;
        height: 14px;
    }
}




/* --- Slider Navigations-elementer --- */

/* Fælles stil for pile */
.slider-arrow {
    position: absolute;
    top: 50%;
    left: auto;  /* Sørger for at venstre/højre ikke forstyrrer */
    transform: translateY(-50%);  /* Dette centrerer vertikalt */
    background: rgba(46, 204, 113, 0.2);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    /* Tilføj disse for ekstra sikkerhed */
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Venstre pil */
.slider-arrow.prev {
    left: 20px;
    right: auto;
}

/* Højre pil */
.slider-arrow.next {
    right: 20px;
    left: auto;
}
.slider-arrow:hover {
    background: var(--primary-green);
    color: var(--brand-dark);
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

/* Placering af prikker (Dots) */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Enkelte prikker */
.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover, 
.dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Skjul pile på helt små mobilskærme for bedre plads */
@media (max-width: 576px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .prev-arrow { left: 10px; }
    .next-arrow { right: 10px; }
}




/* --- Integreret Radiospot Boks Design --- */

.radio-media-box {
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px; /* Matcher det øvrige moderne boks-design */
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(13, 20, 31, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.radio-header {
    text-align: center;
    margin-bottom: 35px;
}

.radio-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.radio-header h2 {
    color: var(--brand-dark);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.radio-header p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.audio-players-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.audio-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(140, 198, 63, 0.04); /* Diskret grønlig nuance der matcher SEO-boksen */
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
}

.audio-card h4 {
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.audio-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.audio-card audio {
    width: 100%; /* Sørger for afspilleren fylder hele kortets bredde */
    outline: none;
    border-radius: 30px; /* Matcher det bløde look */
}

/* Responsiv tilpasning til mindre skærme */
@media (max-width: 768px) {
    .radio-media-box {
        padding: 30px 20px;
    }
    .radio-header h2 {
        font-size: 22px;
    }
    .audio-players-grid {
        flex-direction: column;
        gap: 20px;
    }
    .audio-card {
        min-width: 100%;
    }
}






/* --- Integreret SEO-Boks Design --- */

.seo-modern-box {
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px; /* Matcher stats-section og cta-banner-box */
    padding: 50px;
    margin: 60px 0;
    box-shadow: 0 15px 35px rgba(13, 20, 31, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.seo-title {
    color: var(--dark-green);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.seo-grid-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.seo-main-text {
    flex: 1.3;
    min-width: 350px;
}

.seo-side-text {
    flex: 1;
    min-width: 350px;
    background-color: rgba(140, 198, 63, 0.04); /* Meget let grøn tone for at skabe visuel dybde */
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-green);
}

.seo-modern-box h3 {
    color: var(--brand-dark);
    font-size: 19px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
}

.seo-modern-box h3:first-of-type {
    margin-top: 0;
}

.seo-modern-box p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.seo-modern-box p:last-child {
    margin-bottom: 0;
}

.seo-list {
    list-style: none;
    margin-bottom: 20px;
}

.seo-list li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.seo-list li::before {
    content: "✓";
    color: var(--dark-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.seo-list strong {
    color: var(--brand-dark);
}

/* Responsiv tilpasning til tablets og mobil */
@media (max-width: 992px) {
    .seo-modern-box {
        padding: 35px;
        margin: 40px 0;
    }
    .seo-title {
        font-size: 26px;
    }
    .seo-grid-layout {
        gap: 30px;
        flex-direction: column;
    }
    .seo-main-text, .seo-side-text {
        min-width: 100%;
    }
}








/* Fuld skærms fast baggrund med avanceret dæmpningslag */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.site-background::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(244,247,246,0.6), rgba(255,255,255,0.2));
    z-index: -1;
}

/* 100% Bredde Ultra-Topbar */
.top-contact {
    background-color: rgba(13, 20, 31, 0.92);
    color: #fff;
    font-size: 13px;
    padding: 12px 0;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Tilføjer en blød skygge i bunden */
}
.top-contact-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-contact a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

/* Moderne Transparent Sticky Header */
.main-header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    z-index: 1000;
    transition: var(--transition);
}
.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

/* Stilren Minimalistisk Menu */
.desktop-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.desktop-nav ul li a {
    color: var(--brand-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 6px;
    transition: var(--transition);
}
.desktop-nav ul li a:hover, 
.desktop-nav ul li a.active {
    color: var(--dark-green);
    background-color: rgba(140, 198, 63, 0.28);
}

/* Dropdown Menu Innovation */
.desktop-nav ul.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 10px;
    margin-top: 4px;
}


.dropdown:hover .dropdown-content {
    display: block;
}
.desktop-nav ul.dropdown-content li {
    width: 100%;
}
.desktop-nav ul.dropdown-content li a {
    display: block;
    padding: 12px;
    font-weight: 500;
}

/* Konverterende Menuknap */
.cta-menu-btn a {
    background-color: var(--dark-green) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    box-shadow: 0 6px 20px rgba(46, 105, 48, 0.2);
}
.cta-menu-btn a:hover {
    background-color: var(--brand-dark) !important;
    box-shadow: 0 6px 20px rgba(13, 20, 31, 0.2);
    transform: translateY(-2px);
}

/* --- Opdateret Hero Split-Sektion med gennemsigtig baggrund --- */
.hero-split-section {
    max-width: 1240px;
    margin: 40px auto;
    padding: 50px; /* Øget for at give luft indeni boksen ligesom SEO- og radio-boksene */
    
    /* Hvid, gennemsigtig baggrund og blød skygge */
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px; /* Matcher præcist dine andre bokse */
    box-shadow: 0 15px 35px rgba(13, 20, 31, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    
    transition: var(--transition);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text-side {
    flex: 1.2;
    min-width: 400px;
}

.badge {
    background-color: var(--dark-green);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text-side h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-text-side p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Særlig mørkegrøn styling til brødteksten */
.hero-text-side p.dark-green-text {
    color: var(--dark-green);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Sikrer at knapperne pakker pænt på mindre skærme */
}

.hero-video-side {
    flex: 1;
    min-width: 400px;
}

.modern-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(13, 20, 31, 0.15);
}

.modern-video-wrapper iframe {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
}

/* --- RESPONSIV TILPASNING (Media Queries) --- */

@media (max-width: 1340px) {
    /* Forhindrer boksen i at gå helt ud til skærmkanten på mellemstore skærme */
    .hero-split-section {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    .hero-split-section {
        padding: 35px; /* Mindre padding indeni på tablets ligesom de andre bokse */
        margin: 30px 20px;
    }
    .hero-container {
        flex-direction: column;
        gap: 35px;
    }
    .hero-text-side, .hero-video-side {
        min-width: 100%;
    }
    .hero-text-side h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-split-section {
        padding: 25px 20px; /* Optimeret luft til mobilskærme */
        border-radius: 16px; /* Lidt mindre afrunding på mobil for bedre udnyttelse af pladsen */
    }
    .hero-text-side h1 {
        font-size: 28px;
    }
    .hero-actions {
        flex-direction: column; /* Knapperne lægges under hinanden på mobil */
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}






/* Universelle Knapper */
.btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}
.btn-primary {
    background-color: var(--dark-green);
    color:#fff;
    box-shadow: 0 10px 25px rgba(140, 198, 63, 0.3);
}
.btn-primary:hover {
     background-color: var(--dar-green);
    border:1px solid green;
    color: #fff;
    transform: translateY(-3px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--brand-dark);
    border: 2px solid rgba(13, 20, 31, 0.15);
}
.btn-secondary:hover {
    border-color: var(--brand-dark);
    background-color: rgba(0,0,0,0.02);
}
.hero-text-side p.dark-green-text {
    color: var(--dark-green);
    font-weight: 600; /* Gør teksten en smule tydeligere i den mørkegrønne farve */
}

/* Højopløselig Videoramme */
.hero-video-side {
    flex: 1;
    min-width: 400px;
}
.modern-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(13, 20, 31, 0.15);
}
.modern-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

/* STATISTIK-BOARD (Salgsfremmende) */
.stats-section {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 30px;
}
.stats-container {
    background-color: var(--brand-dark);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(13,20,31,0.12);
}
.stat-box {
    text-align: center;
    color: #fff;
}
.stat-box h2 {
    font-size: 42px;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 5px;
}
.stat-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* STRIP-MINIMALISTISK SLIDER */
.modern-slider-section {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 30px;
}
.slider-container {
    position: relative;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.slide {
    position: absolute;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: flex-start; /* Ændret til flex-start for at placere i toppen */
    justify-content: flex-end; /* Tilføjet for at placere til højre */
    padding: 60px;
}
.slide.active { display: flex; }
.slide-content {
    text-align: right; /* Sikrer at tekstlinjerne flugter pænt mod højre */
}
.slide-content h2 {
    color: #fff;
    font-size: 54px; /* Gjort større (før 42px) */
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 1px 5px rgba(0,0,0,0.4); /* Forboret og forstærket skygge */
}
.hero-sub {
    font-size: 24px; /* Gjort større (før 20px) */
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Tilføjet skygge for optimal kontrast */
}

/* HOVEDLAYOUT OG PRODUKTKORT */
.main-content-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px 60px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13,20,31,0.05);
    border-color: rgba(140, 198, 63, 0.3);
}
.card-icon {
    margin-bottom: 25px;
}
.feature-card h3 {
    font-size: 28px;
    color: var(--brand-dark);
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SALGS-BOX (CTA BANNER BOX) */
.cta-banner-box {
    background: linear-gradient(135deg, var(--dark-green), #1a3c1c);
    border-radius: 24px;
    padding: 50px;
    margin-bottom:0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    color: #fff;
    box-shadow: 0 15px 35px rgba(46,105,48,0.25);
}
.cta-box-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}
.cta-box-content p {
    font-size: 16px;
    opacity: 0.85;
}
.btn-light-cta {
    background-color: #fff;
    color: var(--dark-green);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-light-cta:hover {
    background-color: var(--primary-green);
    color: var(--brand-dark);
    transform: scale(1.03);
}

/* MODERNE TRANSPARENT FOOTER */
.modern-footer {
    background-color: rgba(13, 20, 31, 0.95);
    backdrop-filter: blur(15px);
    color: #ecf0f1;
    padding: 80px 30px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
}
.footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.6;
}
.footer-links h4, .footer-contact-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--primary-green); }
.footer-contact-info p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 10px;
}
.borregaard-partner {
    margin-top: 25px;
}
.borregaard-partner img {
    max-width: 130px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}
.footer-copyright {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: #7f8c8d;
}

/* HAMBURGER & MOBIL RESPONSIVITET */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.menu-toggle span {
    width: 28px; height: 3px;
    background-color: var(--brand-dark);
    border-radius: 2px;
}

.mobile-nav {
    position: fixed;
    top: 0; right: -320px;
    width: 320px; height: 100vh;
    background-color: var(--brand-dark);
    z-index: 2000;
    padding: 80px 40px;
    transition: var(--transition);
}
.mobile-nav.active { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 15px 0;
}
.close-menu {
    position: absolute; top: 25px; right: 30px;
    font-size: 35px; color: #fff; cursor: pointer;
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    .hero-container { flex-direction: column; }
    .hero-text-side, .hero-video-side { min-width: 100%; }
    .hero-text-side h1 { font-size: 36px; }
    .slide-content h2 { font-size: 28px; }
    .cta-banner-box { flex-direction: column; text-align: center; padding: 35px; }
}