/*
 Theme Name:   Astra Child Theme
 Theme URI:    https://få3tilbud.nu/astra-child
 Description:  Astra Child Theme for Få3Tilbud.nu
 Author:       Hasan Yilan
 Author URI:   https://få3tilbud.nu
 Template:     astra
 Version:      5.3.1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  astra-child
*/

/* Custom Styles for Få3Tilbud.nu */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --text-color: #333;
    --background-color: #f0f2f5;
    --card-bg: #ffffff;
    --gradient-start: #4361ee;
    --gradient-end: #3a0ca3;
    --highlight-color: #ffd700;
    --highlight-gradient: linear-gradient(135deg, #FFD700, #FFA500);
    --white-transparent: rgba(255, 255, 255, 0.1);
    --white-transparent-2: rgba(255, 255, 255, 0.2);
    --white-transparent-3: rgba(255, 255, 255, 0.3);
}
/* Global Styles */
* {
    box-sizing: border-box;
}

body, html {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main#main-content {
    padding-top: 0;
}

#header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar justering */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo container styling */
.logo {
    display: inline-block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Logo SVG styling - mindre størrelse */
.logo-icon {
    height: 38px; /* Reduceret fra 50px */
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effekter - mere subtile */
.logo:hover {
    transform: translateY(-1px); /* Mindre bevægelse */
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 2px 4px rgba(67, 97, 238, 0.08));
}

/* Scroll effekter */
.header.scrolled .logo-icon {
    height: 32px; /* Endnu mindre når der scrolles */
}

/* Responsivt design */
@media (max-width: 991px) {
    .logo-icon {
        height: 34px;
    }
}

@media (max-width: 768px) {
    .logo-icon {
        height: 32px;
    }
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 20px; /* Øget gap mellem menu items */
    margin-left: auto; /* Skubber menu til højre */
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.login-btn {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    color: white !important;
}

.login-btn:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
    color: var(--primary-color) !important;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none; /* Skjult på desktop */
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
        background-color: transparent;
        border: none;
        margin-left: auto; /* Flytter til højre */
        padding: 15px;
        position: relative;
        z-index: 1000;
        outline: none; /* Fjerner outline ved focus */
    }

    .hamburger:hover,
    .hamburger:focus,
    .hamburger:active {
        background-color: transparent !important; /* Sikrer ingen baggrund ved interaktion */
    }

    .hamburger-box {
        width: 24px;
        height: 18px;
        position: relative;
        display: inline-block;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 24px;
        height: 2px;
        background-color: var(--text-color);
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .hamburger-inner {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-inner::before {
        content: '';
        top: -8px;
    }

    .hamburger-inner::after {
        content: '';
        top: 8px;
    }

    /* Behold samme farve ved alle tilstande */
    .hamburger:hover .hamburger-inner,
    .hamburger:hover .hamburger-inner::before,
    .hamburger:hover .hamburger-inner::after,
    .hamburger:focus .hamburger-inner,
    .hamburger:focus .hamburger-inner::before,
    .hamburger:focus .hamburger-inner::after,
    .hamburger:active .hamburger-inner,
    .hamburger:active .hamburger-inner::before,
    .hamburger:active .hamburger-inner::after {
        background-color: var(--text-color);
    }

    /* Forbedret kryds animation */
    .hamburger.active .hamburger-inner {
        transform: rotate(45deg);
    }

    .hamburger.active .hamburger-inner::before {
        top: 0;
        transform: rotate(0deg);
        opacity: 0;
    }

    .hamburger.active .hamburger-inner::after {
        top: 0;
        transform: rotate(-90deg);
    }

    /* Tilføj margin til nav-links for at undgå overlap */
    .nav-links {
        margin-top: 60px; /* Justér denne værdi efter behov */
    }
}


/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 480px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 24px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guide-section {
    background: #f8f9fd;
    padding: 16px;
    border-radius: 8px;
}

.guide-section h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4361ee;
}

.guide-section a {
    display: block;
    padding: 10px 12px;
    color: #4a5568;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.guide-section a:hover {
    background: #4361ee;
    color: white;
    transform: translateX(4px);
}


/* Tilføj til eksisterende CSS */
@media (max-width: 1200px) {
    .nav-dropdown .dropdown-content {
        grid-template-columns: 1fr;
        width: 180px;
    }
}

@media (max-width: 991px) {
    .nav-dropdown {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown .dropdown-content {
        width: 100%;
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: 0;
    }
    
    .guide-section {
        padding: 5px 15px;
    }
}

@media (max-width: 480px) {
    .guide-section h4 {
        font-size: 0.9rem;
    }
    
    .guide-section a {
        padding: 6px 8px;
        font-size: 0.9rem;
    }
}

/* Fix for footer i blog sektioner */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.guides-archive {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8f9ff;
    padding: 0 20px;
}

/* Container og header */
.guides-archive .container {
    max-width: 1200px;
    margin: 85px auto 40px;
    flex: 1;
}

.customer-guides .container,
.partner-guides .container {
    margin-top: 85px !important;
}

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

.guides-header h1 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 25px;
}

/* Kategori links */
.guides-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.category-link {
    padding: 8px 16px;
    border-radius: 20px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 480px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 24px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guide-section {
    background: #f8f9fd;
    padding: 16px;
    border-radius: 8px;
}

.guide-section h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4361ee;
}

.guide-section a {
    display: block;
    padding: 10px 12px;
    color: #4a5568;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.guide-section a:hover {
    background: #4361ee;
    color: white;
    transform: translateX(4px);
}

/* Grid og Cards */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.guide-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(67, 97, 238, 0.1);
}

.guide-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.guide-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.guide-content h2 a {
    color: #2d3748;
    text-decoration: none;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.guide-excerpt {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .nav-dropdown .dropdown-content {
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-dropdown .dropdown-content {
        position: static;
        min-width: 100%;
        transform: none;
        box-shadow: none;
        grid-template-columns: 1fr;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guides-archive {
        padding: 0 15px;
    }

    .guides-archive .container,
    .customer-guides .container,
    .partner-guides .container {
        margin-top: 70px !important;
    }
    
    .guides-header h1 {
        font-size: 2rem;
    }
    
    .guide-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .guides-header h1 {
        font-size: 1.8rem;
    }

    .guide-section h4 {
        font-size: 0.9rem;
    }
    
    .guide-section a {
        padding: 6px 8px;
        font-size: 0.9rem;
    }
    
    .guide-content h2 {
        font-size: 1.15rem;
    }
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    background-repeat: repeat;
    animation: rotate 60s linear infinite;
    opacity: 0.3;
}

/* Hero Container Layout */
.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text-container {
    text-align: left;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-left {
    position: relative;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-wrap {
    display: flex;
    align-items: flex-start;
}

.title-main {
    font-size: 3.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    display: inline;
}

.main-grad-text {
    display: inline;
    background: linear-gradient(135deg, #FFD700 0%, #FF9933 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    opacity: 1;
    margin: 0;
    font-size: 3.6rem;
}

/* Promo Badge Styling */
.promo-badge-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 25px !important;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .promo-badge-container {
        margin-top: 5px !important;
    }
}

@media (max-width: 480px) {
    .promo-badge-container {
        margin-top: 5px !important;
    }
    .promo-badge {
        margin-top: 5px !important;
    }
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    animation: floatUpDown 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.promo-badge i {
    color: #FFD700;
    font-size: 1rem;
}

.promo-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 25px 0 60px;
    line-height: 1.5;
    max-width: 600px;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: #FFD700;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFD700;
    opacity: 0.8;
}

/* Category Section */
.category-section {
    margin-top: 45px;
    position: relative;
}

/* Category Tabs */
.category-tabs {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tabs::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.2)
    );
}

.category-tab {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.75);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    text-align: center;
}

.category-tab:focus {
    outline: none;
}

.category-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.category-tab.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Category Content */
.category-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
}

.category-content.active {
    opacity: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

/* Service Items */
.service-item {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 15px;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    z-index: 2;
}

.service-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.5),
        rgba(255, 215, 0, 0.2)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item:hover .service-icon::after {
    opacity: 1;
}

.service-icon i {
    font-size: 16px;
    color: #FFD700;
}

.service-name {
    font-size: 0.9rem;
    margin-top: 8px;
    color: white;
}

/* Popular Tag */
.popular-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--highlight-gradient);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    z-index: 2;
}

/* Category Info */
.category-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 30px;
    padding: 15px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-info i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Animationer */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes drawCurvedLine {
    0% {
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes fadeArrowhead {
    0%, 70% { opacity: 0; }
    100% { opacity: 1; }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge i {
    font-size: 1.2rem;
    color: var(--highlight-color);
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--white-transparent);
    backdrop-filter: blur(12px);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
}

.stat-card h3 {
    font-size: 1rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* Quick Start Form Container */
.quick-start-container {
    position: relative;
    max-width: 500px;
    margin: 100px 0 0;
    z-index: 1;
    justify-self: flex-end;
}

/* Start Here Text */
.start-here-text-container {
    position: absolute;
    top: 15px;
    right: -200px;
    background: var(--white-transparent);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 16px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.start-here-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.start-here-text .highlight {
    background: linear-gradient(135deg, #FFE600, #FFBA00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Arrow Styling */
.arrow-container {
    position: absolute;
    top: 55px;
    right: 15px;
    width: 80px;
    height: 90px;
    z-index: 10;
}

.arrow {
    position: relative;
    width: 100%;
    height: 100%;
}

.arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 55px;
    border-left: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 100% 0 0 0;
    transform-origin: bottom left;
    animation: drawCurvedLine 2s ease-in-out 1;
}

.arrow::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-left: 3px solid rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);
    transform: rotate(-45deg);
    left: -4.8px;
    bottom: 30px;
    animation: fadeArrowhead 2s ease-in-out 1;
}

/* Quick Start Form */
.quick-start {
    position: relative;
    background: var(--white-transparent);
    backdrop-filter: blur(12px);
    border: 1px solid var(--white-transparent-2);
    border-radius: 24px;
    padding: 45px;
    transition: all 0.4s ease;
    z-index: 1;
}

.quick-start h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Elements */
.quick-start input,
.quick-start select {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid var(--white-transparent-3);
    border-radius: 12px;
    padding: 15px 25px;
    color: #fff !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.quick-start input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1;
}

.quick-start select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    color: rgba(255, 255, 255, 0.7) !important;
}

.quick-start select:focus {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.quick-start select option {
    background: white !important;
    color: #333 !important;
    padding: 10px !important;
}

.quick-start button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
}

.quick-start button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

/* User Count Bubble */
.user-count-bubble {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 999px;
    padding: 15px 35px;
    min-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
    flex-wrap: wrap;
    height: 70px;
}

/*.user-count-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}*/

.user-count-number {
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    padding: 0 5px;
    position: relative;
}

.user-count-number::after,
.user-count-number::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.user-count-number::before {
    bottom: -12px;
    width: 80%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.user-count-text {
    color: #64748b;
    font-size: 1.15rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .title-main {
        font-size: 3.8rem;
    }
    
    .category-tabs {
        padding-bottom: 10px;
    }

    /* Opdateret user-count-bubble styling */
    .user-count-bubble {
        width: 90%;
        max-width: 400px;
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 18px;
        margin: 0 auto;
    }
	
    
    .user-count-number {
        font-size: 1.4rem;
        padding: 5px 0;
        margin-bottom: 5px;
    }

    .user-count-number::after,
    .user-count-number::before {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
    }

    .user-count-number::after {
        bottom: -3px;
    }

    .user-count-number::before {
        bottom: -7px;
        width: 60%;
    }
    
    .user-count-text {
        font-size: 1.1rem;
        padding: 0 10px;
        padding-top: 5px;
        text-align: center;
        width: 100%;
    }
}

/* Eksisterende mobilstilarter for max-width:768px og 480px bevares */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    overflow-x: hidden;
  }
  .hero .container {
    display: block;  /* Ændrer fra grid til block */
    padding: 0 15px;
    max-width: 100%;
    margin: 0;
  }
  .hero-content {
    display: block;  /* Ændrer fra grid til block */
    width: 100%;
  }
  .hero-text-container {
    width: 100%;
    margin-bottom: 30px;
  }
  .hero-left {
    width: 100%;
  }
  .title-main {
    font-size: 3rem;
    text-align: center;
  }
  .main-grad-text {
    font-size: 2.6rem;
  }
  .hero-description {
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto;
    padding: 0 15px;
  }
  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
  }
  /* Fix kategori sektion */
  .category-section {
    width: 100%;
    margin: 30px auto;
    padding: 0 15px;
  }
  .category-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  /* Fix form container */
  .quick-start-container {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 0 15px;
    position: relative;
    display: flex;
    justify-content: center;
  }
  .quick-start {
    width: 100%;
    padding: 25px;
    margin: 0;
    max-width: none;
  }
  .quick-start h3 {
    font-size: 1.5rem;
  }

  /* Skjul "Det tager kun 1 minut" tekst og pil på tablet */
  .start-here-text-container,
  .arrow-container {
    display: none;
  }

  /* --- Nye mobilstilændringer --- */
  /* Skjul promo badge på mobil */
  .promo-badge-container {
    display: none;
  }
  /* Skjul desktop-formularen på mobil */
  .quick-start-container {
    display: none;
  }
  /* Vis mobilformularen */
  .mobile-quick-start-container {
    display: block;
    margin: 20px 0;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .mobile-quick-start-container {
    width: calc(100% - 30px);
    max-width: 600px; /* Juster efter behov */
    margin: 20px auto;
  }
}


@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
    margin-top: 90px !important;
  }
  .title-main {
    font-size: 2.5rem;
  }
  .main-grad-text {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .category-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .service-item {
    padding: 12px;
    height: auto;
    min-height: 90px;
  }
  .user-count-bubble {
    min-width: auto;
    width: 92%;
    max-width: 400px;
    height: auto;
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
    gap: 18px; /* Øget gap mellem elementer */
  }
  .user-count-number {
    font-size: 1.4rem;
    padding: 5px 0;
    margin-bottom: 5px; /* Tilføj ekstra margin i bunden */
  }
  /* Fix understreger */
  .user-count-number::after,
  .user-count-number::before {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
  .user-count-number::after {
    bottom: -3px;
  }
  .user-count-number::before {
    bottom: -7px;
    width: 60%;
  }
  .user-count-text {
    font-size: 1.1rem;
    padding: 0 10px;
    padding-top: 5px; /* Ekstra padding i toppen */
  }
  .quick-start {
    padding: 20px;
  }
  .quick-start input,
  .quick-start select {
    height: 50px;
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  .quick-start button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* Skjul mobilformularen på desktop */
@media (min-width: 769px) {
  .mobile-quick-start-container {
    display: none;
  }
}


/* Services Section Base Styles */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    filter: blur(40px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.gradient-blur {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.1;
    border-radius: 50%;
}

.blur-1 {
    top: 20%;
    right: 10%;
}

.blur-2 {
    bottom: 10%;
    left: 15%;
}

/* Header Styles */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.services-header h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2d3748;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
}

.card-content {
    padding: 30px;
    position: relative;
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-badge.accent {
    background: rgba(255, 179, 0, 0.1);
    color: #ffa000;
}

/* Service Icon */
.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Service Content */
.service-card h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 48px; /* Juster denne værdi efter behov */
}

/* Service Info */
.service-info {
    display: flex;
    flex-direction: column;
	flex-grow: 1;
    gap: 12px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
}

.info-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.service-tags span {
    padding: 6px 12px;
    background: rgba(67, 97, 238, 0.08);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.service-tags span:hover {
    background: rgba(67, 97, 238, 0.15);
    transform: translateY(-2px);
}

/* Service Link */
.service-card .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px; /* Sikrer minimum højde på alle kort */
}


.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
	margin-top: auto; 
}

.service-link:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Hover Effects */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(67, 97, 238, 0.05) 0%,
        rgba(58, 12, 163, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 0 15px;
    }

    .services-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-icon i {
        font-size: 20px;
    }
}
/* Testimonials Section opdatering */
.testimonials {
    padding: 100px 0;
    background-color: var(--background-color);
    position: relative;
}

.testimonials h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3748;
    font-weight: 700;
}

.testimonials .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image i {
    font-size: 24px;
    color: var(--primary-color);
}

.profile-info h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0;
}

.profile-info .location {
    font-size: 0.9rem;
    color: #64748b;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-type {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(67, 97, 238, 0.08);
    border-radius: 20px;
    width: fit-content;
}

.service-type i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.service-type span {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq h2 {
    font-size: clamp(2rem, 5vw, 2.8rem); /* Responsive font size */
    text-align: center;
    margin-bottom: 50px;
    color: #2d3748;
    font-weight: 700;
    padding: 0 20px; /* Added padding for mobile */
}

.faq .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px; /* Added default padding */
}

.faq-item {
    margin-bottom: 16px; /* Slightly reduced for mobile */
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: clamp(16px, 4vw, 25px) clamp(20px, 4vw, 30px); /* Responsive padding */
    background: white;
    border: none; /* Added */
    border-radius: 12px;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: clamp(1rem, 2.5vw, 1.1rem); /* Responsive font size */
    cursor: pointer;
    outline: none; /* Added */
    -webkit-tap-highlight-color: transparent; /* Better mobile touch */
    touch-action: manipulation; /* Better touch handling */
}

.faq-question:active {
    background: rgba(67, 97, 238, 0.05); /* Feedback on mobile touch */
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2.5vw, 1.2rem); /* Responsive icon size */
    transition: transform 0.3s ease;
    min-width: 20px; /* Ensure icon doesn't shrink */
    text-align: center;
    margin-left: 15px; /* Space between text and icon */
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    opacity: 0;
    padding: 0 clamp(20px, 4vw, 30px); /* Responsive padding */
}

.faq-answer p {
    margin: 0;
    padding: clamp(20px, 4vw, 20px) 0; /* Responsive padding */
    color: #64748b;
    line-height: 1.6;
    font-size: clamp(0.95rem, 2vw, 1rem); /* Responsive font size */
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0; /* Reduced padding on mobile */
    }
    
    .faq-accordion {
        margin: 0 12px; /* Adjusted margin */
    }
    
    .faq-item {
        margin-bottom: 12px; /* Reduced spacing */
    }
    
    .faq-answer {
        padding: 0 20px; /* Consistent padding */
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .faq h2 {
        margin-bottom: 30px; /* Reduced margin */
    }
    
    .faq-question {
        padding: 16px 20px; /* Comfortable touch target */
    }
    
    .faq-answer p {
        padding: 16px 0; /* Adjusted padding */
    }
}



/* Container struktur */
.company-registration {
    background: #eef2ff; /* Ny baggrundsfarve */
    position: relative;
    overflow: hidden;
    animation: companyRegFadeIn 0.8s ease-in-out;
    margin-top: 55px !important; /* Tilføjer margin-top */
    padding-top: 0;
    text-align: center;
    padding-bottom: 60px; 
}

.company-registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #eef2ff 0%, #f8faff 100%);
    animation: companyRegGradientFloat 15s ease infinite;
    z-index: 0;
}

@keyframes companyRegFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes companyRegGradientFloat {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.company-registration .container {
    padding-top: 80px; /* Tilføjer padding i toppen af containeren i stedet */
}

.company-registration h2 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.company-registration .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.company-registration .subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.company-registration .gradient-accent {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

/* Forbedret hover effekt på benefit items */
.company-registration .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.company-registration .benefit-item {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-registration .benefit-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
}

/* Responsiv styling */
@media (max-width: 768px) {
    .company-registration h2 {
        font-size: 2.2rem;
    }
    
    .company-registration .subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .company-registration .benefits {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .company-registration h2 {
        font-size: 2rem;
    }
    
    .company-registration .subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .company-registration .benefits {
        gap: 8px;
    }
    
    .company-registration .benefit-item {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
}

.partner-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partner-benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.benefits-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(-5deg);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .partner-benefits {
        padding: 60px 0;
    }

    .partner-benefits h2 {
        font-size: 2.2rem;
    }

    .benefits-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Partner content og layout justering */
.partner-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin: 0 auto;
    max-width: 1100px;
    align-items: flex-start;
    padding: 20px;
    position: relative;
}

.registration-form-container {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 14px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    background-color: #fff;
}

.registration-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.registration-form button:hover {
    background-color: var(--secondary-color);
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
}

.benefits {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    font-size: 1rem;
    color: #333;
}

.cvr-form-container {
    background-color: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    width: 380px;
    transition: transform 0.3s ease;
}

.cvr-form-container .icon-large {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cvr-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cvr-form-container p {
    margin-bottom: 25px;
    color: #64748b;
}

#cvrForm .input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#cvrForm input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
}

#cvrForm button {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Leads Example sektion */
.leads-example-title {
    margin-top: 0; /* Reset margin */
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 600;
    padding-top: 12px; /* Lille padding i toppen */
}

/* Responsive justering */
@media (max-width: 768px) {
    .leads-example-title {
        margin-top: 30px;
    }
}
/* Sales list container */
.sales-list {
    width: 100%;
    max-width: 600px;
    margin-top: -10px; /* Lille negativ margin for at rykke det op */
}


/* Sale items spacing */
.sale-item {
    display: grid;
    grid-template-columns: 85px minmax(250px, 1fr) 90px 70px;
    gap: 12px;
    align-items: center;
    background: white;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: 100%;
    box-sizing: border-box;
}

.sale-time {
    font-size: 0.9rem;
    color: #64748b;
    white-space: nowrap;
    text-align: left;
}

.sale-product {
    color: #2d3748;
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    padding-right: 10px;
}

.sale-status {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 20px;
    text-align: center;
    white-space: nowrap;
    justify-self: end;
}

.sale-status.sent {
    background-color: #e6f7e6;
    color: #28a745;
}

.sale-status.not-sent {
    background-color: #fff3cd;
    color: #ffc107;
}

.see-lead {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: right;
    white-space: nowrap;
    justify-self: end;
    padding-right: 2px;
}

/* Tablet responsivt design */
@media (max-width: 768px) {
    .sale-item {
        grid-template-columns: 80px minmax(180px, 1fr) 85px 65px;
        gap: 10px;
        padding: 12px 16px;
    }

    .sale-product {
        max-width: 200px;
    }
}

/* Medium skærme */
@media (max-width: 640px) {
    .sale-item {
        grid-template-columns: 70px 1fr auto auto;
        gap: 8px;
        padding: 12px;
    }

    .sale-product {
        max-width: 160px;
        font-size: 0.9rem;
    }

    .sale-status {
        padding: 4px 8px;
        font-size: 0.8rem;
        margin: 0 6px;
    }

    .see-lead {
        min-width: 60px;
        padding: 4px 8px;
    }
}

/* Meget små skærme */
@media (max-width: 480px) {
    .sale-item {
        grid-template-columns: 65px 1fr auto auto;
        gap: 6px;
    }

    .sale-time {
        font-size: 0.85rem;
    }

    .sale-product {
        font-size: 0.85rem;
        max-width: 120px;
    }

    .sale-status {
        padding: 3px 6px;
        font-size: 0.75rem;
    }
    
    .see-lead {
        font-size: 0.85rem;
        min-width: 55px;
    }
}

/* Total Sales Bubble - Forbedret Design */
.total-sales {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 999px;
    padding: 15px 35px;
    min-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
    flex-wrap: wrap;
    height: 70px;
    animation: totalSaleFadeIn 0.8s ease-in-out;
}

/*.total-sales::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: totalSaleGradientFloat 15s ease infinite;
}*/

@keyframes totalSaleFadeIn {
    from { 
        opacity: 0;
        transform: translate(-50%, -30px); /* Start lidt højere oppe */
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%); /* Slut på normal position */
    }
}

@keyframes totalSaleGradientFloat {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.total-sales p {
    color: #64748b;
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.total-sales strong {
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    padding: 0 4px;
    position: relative;
    display: inline-block;
}

.total-sales strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.5;
}

/* Tablet */
@media (max-width: 992px) {
    .total-sales {
        max-width: 450px;
        padding: 12px 25px;
        margin-top: -30px;
    }
    
    .total-sales p {
        font-size: 1rem;
    }
    
    .total-sales strong {
        font-size: 1.3rem;
    }
	
    .detailed-form-page .container {
        max-width: 90%;
        margin-top: 70px !important;
        padding-top: 60px;
    }
}

/* Tablet and Mobile Devices */
@media (max-width: 768px) {
    /* Layout & Structure */
    .partner-content {
        flex-direction: column;
    }

    .cvr-form-container, 
    .sales-list {
        width: 100%;
        max-width: 100%;
    }

    /* Navigation */
    .navbar {
        padding: 10px 15px;
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-height: 60px;
    }

    .logo-icon {
        height: 32px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        padding: 0;
        margin: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        padding: 15px;
    }

    .nav-links a {
        padding: 10px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
        margin: 0;
        font-size: 15px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .login-btn {
        text-align: center;
        justify-content: center;
        width: 100%;
        margin: 8px 0;
    }
    .logged-in-menu {
        margin: 0;
        padding-top: 12px;
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .dashboard-btn,
    .logout-btn {
        width: 100%;
        text-align: center;
        margin: 4px 0;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content {
        padding: 0 20px;
    }

    /* Stats Section */
    .stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-card {
        width: 85%;
        margin-bottom: 0;
    }

    /* Steps Section */
    .steps {
        flex-direction: column;
        gap: 25px;
    }

    .step {
        margin-bottom: 0;
    }

    /* Footer */
    .footer-section {
        flex: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }

    /* Quick Start */
    .start-here {
        display: none;
    }

    .quick-start-container {
        margin-top: 40px;
        padding: 0 15px;
    }

    /* Company Registration */
    .company-registration .benefits {
        flex-direction: column;
        gap: 10px;
    }

    .company-registration .benefit-item {
        margin: 0;
    }

    /* Forms */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .detailed-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .detailed-form .form-row .form-group {
        margin-bottom: 20px;
    }

    .detailed-form-page .container {
        max-width: 90%;
        margin-top: 70px !important;
        padding-top: 60px;
    }

    .detailed-form-page {
        padding-bottom: 40px;
    }

    /* Total Sales */
    .total-sales {
        width: 90%;
        max-width: 400px;
        height: auto;
        padding: 15px 20px;
        margin: 0 auto;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .total-sales p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .total-sales strong {
        font-size: 1.2rem;
    }

    /* Additional Mobile Optimizations */
    body.menu-open {
        overflow: hidden;
    }

    .hamburger {
        padding: 8px;
        position: relative;
        z-index: 1001;
        margin-left: 10px;
    }

    .logo {
        position: relative;
        z-index: 1001;
    }
}

/* Medium Mobile Devices */
@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 8px 12px;
        min-height: 55px;
    }

    .logo-icon {
        height: 28px;
    }

    .nav-links.active {
        padding: 12px;
    }

    .nav-links a {
        padding: 8px 0;
        font-size: 15px;
    }

    /* Hero Section */
    .hero {
        padding: 70px 0 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Total Sales */
    .total-sales {
        min-width: auto;
        width: 92%;
        max-width: 400px;
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 1
    }

    .total-sales p {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .total-sales strong {
        font-size: 1.1rem;
        margin: 2px 0;
    }

    /* Forms and Content */
    .stat-card {
        width: 90%;
    }

    .quick-start-container {
        padding: 0 12px;
    }

    .form-row {
        gap: 12px;
    }
	
    .detailed-form-page .container {
        max-width: 100%;
        margin: 55px 10px 0 10px !important;
        padding-top: 30px;
        border-radius: 10px;
    }
    
    .detailed-form-page {
        padding-bottom: 30px;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    /* Navigation */
    .navbar {
        padding: 6px 10px;
        min-height: 50px;
    }

    .logo-icon {
        height: 26px;
    }

    .nav-links.active {
        padding: 10px;
    }

    .nav-links a {
        padding: 7px 0;
        font-size: 14px;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }

    /* Total Sales */
    .total-sales {
        min-width: auto;
        width: 92%;
        max-width: 400px;
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 1
    }

    .total-sales p {
        font-size: 0.85rem;
    }

    .total-sales strong {
        font-size: 1rem;
    }

    /* Buttons */
    .dashboard-btn,
    .logout-btn {
        padding: 7px 10px;
        font-size: 14px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 320px) {
    /* Navigation */
    .navbar {
        min-height: 45px;
    }

    .logo-icon {
        height: 24px;
    }

    .nav-links a {
        font-size: 13px;
        padding: 6px 0;
    }

    /* Total Sales */
    .total-sales {
        width: calc(100% - 20px);
        padding: 8px 10px;
        margin-top: -15px;
    }

    .total-sales p {
        font-size: 0.8rem;
    }

    .total-sales strong {
        font-size: 0.95rem;
    }

    /* Buttons */
    .dashboard-btn,
    .logout-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* Landscape Mode */
@media (max-height: 480px) and (orientation: landscape) {
    .nav-links {
        max-height: 85vh;
        padding: 10px;
    }

    .nav-links a {
        padding: 6px 0;
    }

    .total-sales {
        margin: 12px auto;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .stat-card {
        width: 70%;
    }
}

/* Ensure smooth transitions */
.navbar,
.nav-links,
.nav-links a,
.hamburger,
.logo-icon,
.total-sales,
.login-btn,
.dashboard-btn,
.logout-btn {
    transition: all 0.3s ease-in-out;
}

/* Footer Section */
footer {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    background-repeat: repeat;
    animation: rotate 60s linear infinite;
    opacity: 0.1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-section {
    flex: 1;
    margin-right: 30px;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-email {
    color: #fcff4f !important;
    text-decoration: none;
}

.footer-email:hover {
    text-decoration: underline;
}

/* Focus Styles for Accessibility 
a:focus, button:focus, input:focus, select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}*/

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Cookie Consent Banner 
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    color: var(--text-color);
    padding: 1rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.cookie-consent p {
    margin: 0 0 1rem;
}

.cookie-consent button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-consent button:hover {
    background: var(--secondary-color);
}

.cookie-consent a {
    color: var(--primary-color);
    text-decoration: underline;
}*/

/* Registration Form Styles */
.registration-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.registration-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.registration-header {
    background: var(--primary-color);
    padding: 30px;
    text-align: center;
}

.registration-header h2 {
    margin: 0;
    font-size: 2.5rem;
    color: white;
}

.registration-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group select {
    height: auto;
    padding-right: 30px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0h12L6 6z" fill="%23333"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.terms-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
}

.terms-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    top: -1px;
    margin: 0;
    padding: 0;
}

.terms-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.terms-checkbox input[type="checkbox"]:checked::before {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    line-height: 1;
}

.terms-checkbox label {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    cursor: pointer;
}

.terms-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-checkbox a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.progress-step:last-child::after {
    display: none;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-number {
    background-color: var(--primary-color);
}

.step-text {
    font-size: 14px;
    color: #777;
}

.progress-step.active .step-text {
    color: var(--primary-color);
    font-weight: bold;
}

/* Detailed Form Page */
.detailed-form-page {
    background: #eef2ff;
    position: relative;
    overflow: hidden;
    animation: companyRegFadeIn 0.8s ease-in-out;
    padding-top: 0;
    text-align: center;
    padding-bottom: 60px;
}

.detailed-form-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #eef2ff 0%, #f8faff 100%);
    animation: companyRegGradientFloat 15s ease infinite;
    z-index: 0;
}

.detailed-form-page .container {
    padding-top: 80px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 85px !important;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.detailed-form-page h1 {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    margin: 0;
    font-size: 2.2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.detailed-form {
    padding: 35px;
    overflow: hidden;  /* Dette sikrer også at form-indholdet respekterer containerens grænser */
}

.detailed-form input,
.detailed-form select,
.detailed-form textarea {
    padding: 10px 12px;
    font-size: 15px;
}

.detailed-form .submit-btn {
    padding: 12px 25px;
    font-size: 17px;
}


.detailed-form .terms-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
}

.detailed-form .terms-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    top: -1px;
    margin: 0;
    padding: 0;
}

.detailed-form .terms-checkbox input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.detailed-form .terms-checkbox input[type="checkbox"]:checked::before {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    line-height: 1;
}

.detailed-form .terms-checkbox label {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    cursor: pointer;
}

.detailed-form .terms-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.detailed-form .terms-checkbox a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Detailed Form Progress Bar Styles */
.detailed-form-page .form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.detailed-form-page .progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.detailed-form-page .progress-step::after {
    content: '';
    position: absolute;
    top: 35px; /* Adjust to move the line down */
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.detailed-form-page .progress-step:last-child::after {
    display: none;
}

.detailed-form-page .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 10px; /* Increase margin-top to move the icon down */
    position: relative;
    z-index: 2;
}

.detailed-form-page .progress-step.active .step-number {
    background-color: var(--primary-color);
}

.detailed-form-page .step-text {
    font-size: 14px;
    color: #777;
}

.detailed-form-page .progress-step.active .step-text {
    color: var(--primary-color);
    font-weight: bold;
}


/* Loading Spinner */
.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Error and Success Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 1rem;
}

.alert-success {
    background-color: #e6f7e6;
    color: #2e7d32;
    border: 1px solid #c5e1a5;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Ensartet Button Styles */
button,
input[type="submit"],
input[type="button"] {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Ensartet Form Styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 14px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    outline: none;
}

/* Footer Section */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.footer-section {
    flex: 1 1 200px; /* Gør det muligt for sektionerne at tilpasse sig */
    margin-right: 30px;
    margin-bottom: 30px;
    min-width: 200px;
}

.footer-section:last-child {
    margin-right: 0;
}

/* Juster nav.footer-links hvis nødvendigt */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        margin-right: 0;
        margin-bottom: 20px;
        flex: 1 1 100%;
    }

    .footer-section:last-child {
        margin-bottom: 0;
    }
}

/* logo upload virksomhed form */
.logo-upload-container {
    background-color: #f9f9f9;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.logo-upload-container:hover {
    border-color: var(--primary-color);
}
.logo-upload-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.logo-preview {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}
.logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-upload-container .remove-image {
    position: absolute;
    top: 2px; /* Rettet fra -5x til -5px */
    right: 3px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.logo-upload-container .remove-image:hover {
    transform: scale(1.1); /* Skalerer knappen lidt op ved hover */
    background: rgba(0, 0, 0, 0.8); /* Gør baggrunden mørkere ved hover */
    color: red;
}

.logo-upload-content {
    flex: 1;
}
.upload-text {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}
.file-requirements {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}

/* Boble form */
.subcategory-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.subcategory-bubble {
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subcategory-bubble:hover {
    background-color: #e0e0e0;
}

.subcategory-bubble.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Confirmation Page Styles */
.confirmation-page {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation-icon {
    font-size: 64px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.confirmation-content h1 {
    color: #333;
    margin-bottom: 20px;
}

.confirmation-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.next-steps {
    text-align: left;
    margin-top: 40px;
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
}

.next-steps h2 {
    color: #333;
    margin-bottom: 15px;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    color: #555;
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-block;
    background-color: #4361ee;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a0ca3;
}


/*how it works*/
.how-it-works h2 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}


.how-it-works .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.how-it-works .gradient-accent {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.partner-benefits .gradient-accent1 {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.ai-benefits .gradient-accent1 {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.process-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Tilføj responsivitet */
@media (max-width: 768px) {
    .how-it-works h2 {
        font-size: 2.2rem;
    }
    
    .process-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}
.how-it-works {
    background: #f8f9ff;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
	margin-top: 0; /* Fjern margin */
}

.process-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-wrapper h2 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.process-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-container {
    display: flex;
    align-items: flex-start;
    gap: 30px; /* Reduceret mellemrum */
    justify-content: space-between;
    padding: 40px 0;
}

.steps-container {
    flex: 0 0 520px;
}

.process-step {
    background: transparent;
    padding: 24px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.process-step:hover {
    background: rgba(67, 97, 238, 0.03);
}

.step-icon {
    background: rgba(67, 97, 238, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    color: #4361ee;
    font-size: 1.1rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2d3748;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.step-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Modern iPhone Mockup */
.mockup-container {
    position: relative;
    flex: 0 0 320px;
    margin-right: -20px;
}

.mockup-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: #4361ee;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(40px);
}

.iphone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(67, 97, 238, 0.12),
        0 20px 40px rgba(67, 97, 238, 0.08);
}

.iphone-screen {
    background: white;
    height: 100%;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Status Messages front page*/
.status-message {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.status-1 {
    top: 15%;
    left: -165px; 
    flex-direction: row-reverse;
}

.status-2 {
    bottom: 15%;
    right: -125px; 
    flex-direction: row;
}

.status-icon {
    background: #4361ee;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.status-content {
    color: #2d3748;
    font-size: 0.9rem;
    font-weight: 500;
}


/* Responsive Design */
@media (max-width: 1400px) {
    .process-wrapper {
        max-width: 1200px;
    }
    
    .process-container {
        gap: 30px;
    }

    .status-1 {
        left: -60px;
    }
    
    .status-2 {
        right: -60px;
    }
}

@media (max-width: 1200px) {
    .process-container {
        gap: 30px;
    }
    
    .steps-container {
        flex: 0 0 480px;
    }
    
    .mockup-container {
        margin-right: 0;
    }

    .status-1 {
        left: -40px;
    }
    
    .status-2 {
        right: -40px;
    }
}

@media (max-width: 991px) {
    .process-wrapper h2 {
        font-size: 2.4rem;
    }
    
    .process-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .steps-container {
        flex: 0 0 100%;
    }
    
    .mockup-container {
        margin-top: 40px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }
    
    .process-wrapper h2 {
        font-size: 2.2rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process-wrapper {
        padding: 0 20px;
    }
    
    .iphone-mockup {
        width: 240px;
        height: 490px;
    }
    
    .mockup-background {
        width: 340px;
        height: 340px;
    }
    
    .status-message {
        padding: 10px 14px;
    }
}

.logged-in-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px; /* Tilføj afstand fra andre menu items */
}

.welcome-text {
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap; /* Forhindrer tekst i at wrappe */
    max-width: 200px; /* Maksimal bredde */
    overflow: hidden;
    text-overflow: ellipsis; /* Viser ... hvis teksten er for lang */
}

/* Dashboard Menu Fix */
.partner-dashboard .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.partner-dashboard .logged-in-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* Dashboard Button Styling */
.partner-dashboard .dashboard-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-dashboard .dashboard-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.partner-dashboard .logout-btn {
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.partner-dashboard .logout-btn:hover {
    background-color: white;
    color: var(--primary-color) !important;
}

/* Navigation Links i Dashboard */
.partner-dashboard .nav-links a {
    color: white !important;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.partner-dashboard .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Generel Dashboard Button (uden for dashboard) */
.dashboard-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dashboard-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Log ud knap (uden for dashboard) 
.logout-btn {
    background-color: transparent;
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.logout-btn:hover {
    background-color: var(--primary-color);
    color: white;
}
*/
@keyframes DASHfadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-text {
    animation: fadeInDown 0.5s ease;
}

@media (max-width: 1200px) {
    .welcome-text {
        max-width: 150px; /* Mindre på mindre skærme */
    }
}

@media (max-width: 991px) {
    .nav-links {
        flex-wrap: wrap; /* Tillader wrap på mindre skærme */
    }
    
    .logged-in-menu {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }
}



.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 25px 0;
    padding: 0 15px;
}

.benefit-pill {
    background: rgba(67, 97, 238, 0.1);
    color: #4361ee;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.benefit-pill.primary {
    background: #4361ee;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
}

.benefit-pill.primary strong {
    color: #FFD700;
    margin-left: 3px;
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    .benefit-pill:hover {
        transform: translateY(-2px);
    }
    
    .benefit-pill.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
    }
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    .benefits {
        gap: 10px;
        margin: 20px 0;
    }
    
    .benefit-pill {
        font-size: 0.9rem;
        padding: 7px 14px;
    }
    
    .benefit-pill.primary {
        padding: 9px 18px;
        font-size: 0.95rem;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
    .benefits {
        gap: 8px;
        margin: 15px 0;
    }
    
    .benefit-pill {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .benefit-pill.primary {
        padding: 8px 16px;
        font-size: 0.9rem;
        width: auto;
        margin: 0 auto;
    }
}

/* Extra Small Mobile (under 480px) */
@media (max-width: 479px) {
    .benefits {
        gap: 6px;
        padding: 0 10px;
    }
    
    .benefit-pill {
        font-size: 0.8rem;
        padding: 5px 10px;
        flex: 0 1 auto;
    }
    
    .benefit-pill.primary {
        padding: 7px 14px;
        font-size: 0.85rem;
        order: -1; /* Flytter price pill til toppen på meget små skærme */
        margin-bottom: 4px;
        width: auto;
    }
}

/* Landscape mode optimization */
@media (max-height: 480px) and (orientation: landscape) {
    .benefits {
        margin: 15px 0;
    }
    
    .benefit-pill {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
}

/* AI Benefits Section */
.ai-benefits {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ai-feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-content h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: #2d3748;
}

.feature-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.mockup-preview {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.ai-assistant-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
}

.preview-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-content {
    padding: 20px;
}

.message-type {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    margin-bottom: 15px;
}

.message-example {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 10px;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 120px;
    position: relative;
}

.ai-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--secondary-color);
}



.typewriter-text {
    display: inline;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.5;
}

.typewriter-text.typing {
    opacity: 1;
    animation: typing 4s steps(40, end);
}

.typing {
    animation: type 4s steps(50, end);
}

@keyframes typing {
    0% {
        width: 0;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Generate Button Animation */
.control-btn.generating {
    position: relative;
    pointer-events: none;
    overflow: hidden;
}

.control-btn.generating::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: generating 1.5s infinite;
}

@keyframes generating {
    from { left: -100%; }
    to { left: 100%; }
}

/* Responsive Design */
@media (max-width: 991px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .mockup-preview {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .ai-benefits {
        padding: 60px 0;
    }
    
    .ai-feature-card {
        padding: 20px;
    }
    
    .ai-controls {
        flex-direction: column;
    }
    
    .control-btn {
        width: 100%;
        justify-content: center;
    }
}

.lead-select-container {
    margin-bottom: 20px;
}

.lead-select-container h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 12px;
}

.lead-search-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-field {
    width: 100%;
}

.lead-search-input,
.lead-details-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8f9ff;
    color: #2d3748;
    font-size: 0.95rem;
    cursor: not-allowed;
}

.lead-search-input::placeholder,
.lead-details-input::placeholder {
    color: #2d3748;
    opacity: 0.8;
}

/* Tilpas mobil visning */
@media (max-width: 768px) {
    .lead-search-fields {
        gap: 6px;
    }
    
    .lead-search-input,
    .lead-details-input {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* AI Section Specific Styles */
.ai-header-section {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.ai-title {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ai-gradient-text {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ai-gradient-accent {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
}

.ai-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Shared styles for forgot password and reset password */
.forgot-password-container,
.reset-password-container {
    max-width: 480px;
    margin: 200px auto 200px; /* Equal top and bottom margin */
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.forgot-header,
.reset-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.forgot-header h1,
.reset-header h1 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.forgot-subtitle,
.reset-subtitle {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.forgot-password-form,
.reset-password-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3748;
    transition: all 0.3s ease;
    -webkit-appearance: none; /* Fix for iOS */
    appearance: none;
}

.form-group input:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    outline: none;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.submit-btn {
    background: #4361ee;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation; /* Optimize for touch */
}

.submit-btn:hover {
    background: #3a0ca3;
    transform: translateY(-1px);
}

/* Active state for touch devices */
.submit-btn:active {
    transform: translateY(1px);
    background: #3a0ca3;
}

.back-to-login {
    text-align: center;
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
    display: inline-block;
    padding: 8px 0; /* Larger touch target */
}

.back-to-login:hover {
    color: #4361ee;
}

.error-message {
    text-align: center;
    padding: 2rem;
}

.error-message h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.error-message p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.message-container {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.message-container.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
    display: block;
}

.message-container.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fee2e2;
    display: block;
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .forgot-password-container,
    .reset-password-container {
        margin: 220px auto 220px;
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .forgot-password-container,
    .reset-password-container {
        margin: 200px auto 200px;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .forgot-password-container,
    .reset-password-container {
        margin: 180px auto 180px;
        max-width: 440px;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .forgot-password-container,
    .reset-password-container {
        margin: 160px auto 160px;
        max-width: 400px;
        padding: 2rem;
    }
    
    .forgot-header h1,
    .reset-header h1 {
        font-size: 1.6rem;
    }
}

/* Mobile Landscape */
@media (max-height: 480px) and (orientation: landscape) {
    .forgot-password-container,
    .reset-password-container {
        margin: 80px auto 80px;
        padding: 1.5rem;
    }
    
    .forgot-header,
    .reset-header {
        margin-bottom: 1.5rem;
    }
}

/* Mobile Portrait (575px and down) */
@media (max-width: 575px) {
    .forgot-password-container,
    .reset-password-container {
        margin: 120px 1rem 120px;
        padding: 1.5rem;
    }
    
    .forgot-header h1,
    .reset-header h1 {
        font-size: 1.5rem;
    }
    
    .form-group input[type="email"],
    .form-group input[type="password"] {
        padding: 10px 14px;
    }
}

/* Small Mobile (320px and down) */
@media (max-width: 320px) {
    .forgot-password-container,
    .reset-password-container {
        margin: 100px 0.8rem 100px;
        padding: 1.2rem;
    }
    
    .forgot-header h1,
    .reset-header h1 {
        font-size: 1.4rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .submit-btn:hover {
        transform: none;
    }
    
    .form-group input:focus {
        box-shadow: none;
    }
}

/* iPad specific adjustments */
@media only screen and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (-webkit-min-device-pixel-ratio: 2) {
    .forgot-password-container,
    .reset-password-container {
        margin: 160px auto 160px;
    }
    
    .submit-btn {
        padding: 14px 24px; /* Larger touch target for iPad */
    }
}

/*slet profil UI */
.btn-danger {
    background-color: #dc3545;
    color: white;
    border: 2px solid #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Modal styling */
.delete-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.delete-modal-content {
    position: relative;
    background-color: #fff;
    max-width: 500px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.delete-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #dc3545;
}

.delete-modal-header i {
    font-size: 24px;
    margin-right: 10px;
}

.delete-modal-message {
    margin-bottom: 25px;
    color: #4a5568;
    line-height: 1.6;
}

.delete-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.delete-confirm-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.delete-cancel-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Profile Actions Styling */
.profile-form-actions {
    margin-top: 30px;
    border-top: 1px solid #edf2f7;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-form-actions .primary-actions {
    flex: 1;
}

.profile-form-actions .secondary-actions {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.profile-form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.profile-form-actions .btn i {
    font-size: 16px;
}

.profile-form-actions .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.profile-form-actions .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.profile-form-actions .btn-secondary {
    background-color: #64748b;
    color: white;
    border: 2px solid #64748b;
}

.profile-form-actions .btn-secondary:hover {
    background-color: #475569;
    border-color: #475569;
    transform: translateY(-2px);
}

.profile-form-actions .btn-danger {
    background-color: #dc3545;
    color: white;
    border: 2px solid #dc3545;
}

.profile-form-actions .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-form-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-form-actions .secondary-actions {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
    }
    
    .profile-form-actions .primary-actions {
        width: 100%;
    }
    
    .profile-form-actions .btn {
        padding: 10px 20px;
    }
    
    .profile-form-actions .primary-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-form-actions .secondary-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .profile-form-actions .secondary-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Layout - Fuld styling */
body.single-post {
   background: #f8f9ff;
   padding: 0 20px;
}

/* Blog indhold container */
.single-post #primary {
   max-width: 1000px;
   margin: 85px auto 60px;
   background: white;
   border-radius: 20px;
   box-shadow: 0 4px 30px rgba(67, 97, 238, 0.08);
   padding: 40px;
}

/* Header */
.single-post .entry-header {
   text-align: center !important;
   margin-bottom: 40px;
   position: relative;
}

.single-post .entry-title {
   font-size: 2.6rem;
   color: #2d3748;
   line-height: 1.3;
   font-weight: 700;
   margin-bottom: 20px;
   text-align: center !important;
}

/* Meta info */
.single-post .entry-meta {
   display: flex;
   align-items: center;
   justify-content: center !important;
   gap: 20px;
   color: #64748b;
   font-size: 0.95rem;
   margin-bottom: 30px;
   border-bottom: 1px solid #edf2f7;
   padding-bottom: 20px;
   text-align: center !important;
}

/* Fjern separator linjer globalt 
.wp-block-separator {
    border: none !important;
    height: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
}*/


/* Content */
.single-post .entry-content {
   max-width: 800px;
   margin: 0 auto;
}

.single-post .entry-content p {
   color: #4a5568;
   line-height: 1.8;
   font-size: 1.1rem;
   margin-bottom: 1.5rem;
}

/* Resten af din styling forbliver den samme */
.single-post .entry-content h2 {
   font-size: 1.8rem;
   color: #2d3748;
   margin: 2.5rem 0 1.2rem;
   font-weight: 600;
}

.single-post .entry-content h3 {
   font-size: 1.4rem;
   color: #2d3748;
   margin: 2rem 0 1rem;
   font-weight: 600;
}

/* Lists */
.single-post .entry-content ul,
.single-post .entry-content ol {
   margin: 0 0 2rem 1.2rem;
   padding: 0;
}

.single-post .entry-content li {
   color: #4a5568;
   margin-bottom: 0.8rem;
   line-height: 1.6;
}

/* Checkmarks og ikoner */
.single-post .entry-content .check-list {
   list-style: none;
   margin-left: 0;
}

.single-post .entry-content .check-list li {
   position: relative;
   padding-left: 30px;
}

.single-post .entry-content .check-list li:before {
   content: '✓';
   color: var(--primary-color);
   position: absolute;
   left: 0;
}

/* Feature boxes */
.single-post .entry-content .feature-box {
   background: #f8f9ff;
   padding: 25px;
   border-radius: 12px;
   margin: 30px 0;
   border-left: 4px solid var(--primary-color);
}

/* Links */
.single-post .entry-content a {
   color: var(--primary-color);
   text-decoration: none;
   border-bottom: 1px solid transparent;
   transition: border-color 0.3s ease;
}

.single-post .entry-content a:hover {
   border-bottom-color: var(--primary-color);
}

/* Citations */
.single-post .entry-content blockquote {
   border-left: 4px solid var(--primary-color);
   margin: 2rem 0;
   padding: 1rem 0 1rem 2rem;
   font-style: italic;
   color: #4a5568;
}

/* Tables */
.single-post .entry-content table {
   width: 100%;
   border-collapse: collapse;
   margin: 2rem 0;
}

.single-post .entry-content th,
.single-post .entry-content td {
   padding: 12px;
   border: 1px solid #e2e8f0;
   text-align: left;
}

.single-post .entry-content th {
   background: #f8f9ff;
   font-weight: 600;
}

/* Images */
.single-post .entry-content img {
   max-width: 100%;
   height: auto;
   border-radius: 8px;
   margin: 2rem 0;
}

/* Code blocks */
.single-post .entry-content pre {
   background: #f8f9ff;
   padding: 20px;
   border-radius: 8px;
   overflow-x: auto;
   margin: 2rem 0;
}

.single-post .entry-content code {
   font-family: monospace;
   font-size: 0.9em;
}

/* Responsive */
@media (max-width: 1024px) {
   .single-post #primary {
       max-width: 90%;
   }
}

@media (max-width: 768px) {
   body.single-post {
       padding: 0 15px;
   }
   
   .single-post #primary {
       margin-top: 70px;
       margin-bottom: 40px;
       padding: 25px;
   }
   
   .single-post .entry-title {
       font-size: 2rem;
   }
   
   .single-post .entry-content p {
       font-size: 1rem;
   }
   
   .single-post .entry-content blockquote {
       padding-left: 1.5rem;
   }
}

@media (max-width: 480px) {
   .single-post .entry-title {
       font-size: 1.8rem;
   }
   
   .single-post .entry-content h2 {
       font-size: 1.5rem;
   }
   
   .single-post .entry-content h3 {
       font-size: 1.3rem;
   }
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    .nav-dropdown .dropdown-content {
        grid-template-columns: 1fr;
        width: 180px;
    }

    /* Tilføj disse nye styles */
    .navbar {
        padding: 8px 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
        margin-left: 15px;
    }

    /* Fjern quick-start animationer */
    .start-here-text-container,
    .arrow-container {
        display: none;
    }

    /* Juster CVR form */
    .quick-start-container {
        width: 90%;
        margin: 30px auto;
        padding: 0 15px;
    }

    .quick-start {
        padding: 25px;
    }

    .quick-start h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .nav-dropdown {
        width: 100%;
    }
    
    /* Tilføj disse nye styles */
    .hero .container {
        padding: 0 20px;
        max-width: 90%;
    }

    .title-main,
    .main-grad-text {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
        margin: 20px 0;
    }

    /* Juster stats container */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
.service-item {
    width: 120px; /* Mindre størrelse på iPad */
    height: 120px;
    padding: 12px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .service-item {
        width: 110px;
        height: 110px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
    }

    .service-name {
        font-size: 0.85rem;
    }
}

/* iPad landscape mode */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .user-count-bubble {
        transform: translateY(-15px);
        max-width: 450px;
    }
}

@media (max-width: 1024px) {  /* Ændret fra 768px til 1024px */
    .hamburger {
        display: block;
        cursor: pointer;
        background-color: transparent;
        border: none;
        margin-left: auto;
        padding: 15px;
        position: relative;
        z-index: 1000;
        outline: none;
    }

    .hamburger:hover,
    .hamburger:focus,
    .hamburger:active {
        background-color: transparent !important;
    }

    .hamburger-box {
        width: 24px;
        height: 18px;
        position: relative;
        display: inline-block;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 24px;
        height: 2px;
        background-color: var(--text-color);
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .hamburger-inner {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-inner::before {
        content: '';
        top: -8px;
    }

    .hamburger-inner::after {
        content: '';
        top: 8px;
    }

    .hamburger:hover .hamburger-inner,
    .hamburger:hover .hamburger-inner::before,
    .hamburger:hover .hamburger-inner::after,
    .hamburger:focus .hamburger-inner,
    .hamburger:focus .hamburger-inner::before,
    .hamburger:focus .hamburger-inner::after,
    .hamburger:active .hamburger-inner,
    .hamburger:active .hamburger-inner::before,
    .hamburger:active .hamburger-inner::after {
        background-color: var(--text-color);
    }

    .hamburger.active .hamburger-inner {
        transform: rotate(45deg);
    }

    .hamburger.active .hamburger-inner::before {
        top: 0;
        transform: rotate(0deg);
        opacity: 0;
    }

    .hamburger.active .hamburger-inner::after {
        top: 0;
        transform: rotate(-90deg);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        padding: 0;
        margin: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        padding: 15px;
    }

    .nav-links a {
        padding: 10px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
        margin: 0;
        font-size: 15px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* iPad i portræt tilstand */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px)
and (orientation: portrait) {
    /* Hero layout som mobil */
    .hero .container {
        display: block;  /* Ændrer fra grid til block */
        padding: 0 15px;
        max-width: 100%;
        margin: 0;
    }

    .hero-content {
        display: block;  /* Ændrer fra grid til block */
        width: 100%;
    }

    .hero-text-container {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    /* CVR Form som mobil */
    .quick-start-container {
        width: 100%;
        max-width: 500px;
        margin: 30px auto;
        padding: 0 15px;
        position: relative;
        display: flex;
        justify-content: center;
    }
    
    .quick-start {
        width: 100%;
        padding: 25px;
        margin: 0;
        max-width: none;
    }
    
    .quick-start h3 {
        font-size: 1.5rem;
    }

    /* Skjul "Det tager kun 1 minut" tekst og pil */
    .start-here-text-container,
    .arrow-container {
        display: none;
    }
}

/* iPad i landscape/vandret tilstand */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px)
and (orientation: landscape) {
    /* Force samme mobile layout som i portræt */
    .hero .container {
        display: block !important;
        padding: 0 15px;
        max-width: 100%;
        margin: 0;
    }

    .hero-content {
        display: block !important;
        width: 100%;
    }

    .hero-text-container {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    /* CVR Form under teksten */
    .quick-start-container {
        width: 100%;
        max-width: 600px;  /* Lidt bredere i landscape */
        margin: 30px auto;
        padding: 0 15px;
        position: relative;
        display: flex;
        justify-content: center;
    }
    
    .quick-start {
        width: 100%;
        padding: 25px;
        margin: 0;
        max-width: none;
    }

    /* Skjul "Det tager kun 1 minut" tekst og pil */
    .start-here-text-container,
    .arrow-container {
        display: none;
    }
}

/* Behold eksisterende landscape styles */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px)
and (orientation: landscape) {
    /* Behold de oprindelige styles for landscape mode */
    .hero .container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
    }
}


/* Logged In Menu Styles */
.logged-in-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.welcome-text {
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* Dashboard Button Styling */
.dashboard-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.dashboard-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

/* Desktop styles (1200px and up) */
@media (min-width: 1200px) {
    .logged-in-menu {
        margin-left: 30px;
    }

    .welcome-text {
        max-width: 250px;
    }
    .login-btn {
        margin-left: 20px;
    }
}

/* Tablet landscape (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .logged-in-menu {
        margin-left: 20px;
    }

    .welcome-text {
        max-width: 180px;
    }


    .dashboard-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .login-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Tablet portrait (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    .logged-in-menu {
        margin: 15px 0 0;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .welcome-text {
        text-align: center;
        max-width: none;
        width: 100%;
        margin-bottom: 10px;
    }


    .dashboard-btn {
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
    }
    .login-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        margin: 8px 0;
    }
    .nav-links .login-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        margin: 8px 0;
    }
}

/* Mobile landscape (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .nav-links {
        padding: 0.8rem;
    }

    .logged-in-menu {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .dashboard-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    .login-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
    }
    .nav-links .login-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
        margin: 8px 0;
    }
}

/* Mobile portrait (575px and below) */
@media (max-width: 575px) {
    .nav-links {
        padding: 0.5rem;
    }

    .logged-in-menu {
        flex-direction: column;
        width: 100%;
        gap: 6px;
        margin: 10px 0 0;
    }

    .welcome-text {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .dashboard-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    .login-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    .nav-links .login-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
        min-height: 40px;
        margin: 8px 0;
    }
}


/* Landscape mode optimization */
@media (max-height: 480px) and (orientation: landscape) {
    .nav-links {
        max-height: 85vh;
        overflow-y: auto;
    }

    .logged-in-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }


    .dashboard-btn {
        min-height: 36px;
        padding: 8px 16px;
    }
    .login-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
        min-height: 40px;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .nav-links .login-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        min-height: 36px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .dashboard-btn {
        font-weight: 500; /* Slightly reduced font weight for better rendering */
    }
    .login-btn {
        font-weight: 500; /* Slightly reduced font weight for better rendering */
    }
}

/* Touch device optimization */
@media (hover: none) {
    .dashboard-btn {
        padding: 12px 24px; /* Larger touch targets */
    }
    .login-btn {
        padding: 12px 24px; /* Larger touch targets */
    }
    
    .dashboard-btn:hover {
        transform: none; /* Disable hover effects on touch devices */
    }
    .login-btn:hover {
        transform: none; /* Disable hover effects on touch devices */
    }
}

/* Ensure smooth transitions */
.nav-links,
.logged-in-menu,
.login-btn,
.dashboard-btn {
    transition: all 0.3s ease-in-out;
}

/* Partner Directory Container */
.pd-container {
   padding: 0 0 60px;  /* Remove top padding */
   background: linear-gradient(to bottom, #f8faff 0%, #ffffff 100%);
}

/* Header Spacing Fix */
.pd-container .container {
    margin-top: 85px !important;  /* Match company registration spacing */
    padding-top: 75px;  /* Add padding to top */
    position: relative;
    z-index: 1;
}

.pd-header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.pd-title {
   font-size: 3.2rem;
   font-weight: 700;
   text-align: center;
   margin-bottom: 40px;
   background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
   letter-spacing: -0.02em;
}

.pd-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pd-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: center;
}


.pd-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
}

.pd-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(67, 97, 238, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.pd-benefit:hover {
    transform: translateY(-2px);
    background: rgba(67, 97, 238, 0.08);
}

.pd-benefit i {
    color: #4361ee;
    font-size: 1.1rem;
    display: flex; /* Tilføjet for bedre ikon alignment */
    align-items: center;
    justify-content: center;
    width: 20px; /* Fast bredde til ikonet */
    height: 20px; /* Fast højde til ikonet */
    flex-shrink: 0; /* Forhindrer ikon i at krympe */
}

.pd-benefit span {
    color: #1e293b;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    display: inline-block; /* Forbedrer tekst alignment */
    vertical-align: middle; /* Sikrer vertikal centrering */
}

.pd-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pd-filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
}

.pd-filter-group label i {
    color: #4361ee;
}

/* Search Section */
.pd-search-wrapper {
  background: white;
  padding: 24px 44px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  gap: 24px;
  margin: 60px auto 0;
  max-width: 1000px;
}

.pd-search-box {
  flex: 1;
  position: relative;
  height: 37px;
}

.pd-search-input {
  width: 100%;
  height: 37px;
  padding: 0 48px 0 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1.1rem;
  line-height: 37px;
  box-sizing: border-box;
}

.pd-search-icon {
   position: absolute;
   right: 20px;
   top: 50%;
   transform: translateY(-50%);
   color: #4361ee;
   font-size: 1.2rem;
   height: 15px;
   display: flex;
   align-items: center;
}

/* Filter Controls */
.pd-filter-controls {
   display: flex;
   gap: 20px;
   height: 37px;
}

.pd-select {
   flex: 1;
   height: 40px;
   padding: 0 40px 0 20px;
   border: 2px solid #e2e8f0;
   border-radius: 12px;
   line-height: 37px;
   background-color: white;
   font-size: 1rem;
   color: #1a202c;
   font-weight: 500;
   cursor: pointer;
   transition: all 0.3s ease;
   appearance: none;
   box-sizing: border-box;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 16px center;
   background-size: 18px;
}

.pd-select:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
    outline: none;
}

.pd-select option {
    color: #1a202c;
    padding: 8px;
    font-weight: 500;
    min-height: 40px; /* Højere options */
    line-height: 40px; /* Centrerer tekst vertikalt */
    white-space: nowrap; /* Forhindrer tekstbrydning */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Partners Grid */
.pd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    padding: 40px 0;
    align-items: stretch; /* Sikrer at kortene strækker sig til samme højde */
}

.pd-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    height: auto; /* Lad kortet tilpasse sig indholdet */
}

.pd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.pd-card-header {
    height: 180px;
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.pd-logo {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pd-card:hover .pd-logo {
    transform: scale(1.05);
}

.pd-logo-placeholder {
    width: 90px;
    height: 90px;
    background: rgba(67, 97, 238, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-logo-placeholder i {
    font-size: 36px;
    color: #4361ee;
}

.pd-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 320px; /* Sikrer minimumshøjde for indhold */
	gap: 8px; /* Reduceret fra 16px */
}

.pd-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px; /* Reduceret fra 16px */
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    flex-grow: 0; /* Ændret fra 1 for at undgå uønsket stretch */
}

.pd-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px; /* Reduceret fra 20px */
    min-height: unset; /* Fjern fast højde */
}

.pd-category, 
.pd-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.95rem;
}

.pd-meta-icon {
    color: #4361ee;
    font-size: 1.1rem;
}

.pd-description {
    margin-bottom: 24px;
    margin: 0; /* Fjern margins */
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1; /* Gør beskrivelsen fleksibel tilgængelig plads */
        min-height: unset; /* Fjern minimum højde */
    position: relative;
    padding-bottom: 0; /* Fjern padding i bunden */
	padding: 0; /* Fjern al padding */
    min-height: 100px;
    display: flex;
    flex-direction: column;
}

.laes-mere {
    display: none; /* Skjult som standard */
}

/* Vis kun hvis beskrivelsen er trunkeret */
.pd-description.truncated + .laes-mere {
    display: block;
}

.pd-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-contact-btn {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: #4361ee;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
	margin-bottom: 0; /* Fjern margin i bunden */
}

/*indhent tilbud knappen*/
.pd-contact-btn:hover {
    background: #3a0ca3;
    transform: translateY(-2px);
}

/* Contact Modal */
.pd-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.pd-modal-content {
    position: relative;
    background: white;
    margin: 15vh auto;
    padding: 32px;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pd-modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.pd-modal-text {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pd-modal-close {
    padding: 12px 24px;
    background: #e2e8f0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pd-close-icon {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 24px;
    color: #a0aec0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pd-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pd-page-link {
    padding: 8px 16px;
    border-radius: 8px;
    background: white;
    color: #4361ee;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.pd-page-link:hover,
.pd-page-link.active {
    background: #4361ee;
    color: white;
}

.pd-description-text {
    display: none;
}

.pd-read-more {
    color: #4361ee;
    margin: 4px 0; /* Reduceret margin */
    background: none;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    padding: 0;
    margin-bottom: 4px; /* Justér hvis du ønsker mere/mindre luft */
}

/* Hover effekt med mørkere blå */
.pd-read-more:hover {
    background: none;
    color: #3a0ca3;
}

.pd-page-ellipsis {
    padding: 8px 16px;
    color: #4361ee;
}

/* Responsive Design */
@media (min-width: 1441px) {
   .pd-search-wrapper {
       max-width: 1200px;
   }
   
   .pd-grid {
       grid-template-columns: repeat(3, 1fr); /* Ændret fra 4 til 3 kolonner */
       gap: 25px;
   }
}

@media (max-width: 1440px) {
   .pd-search-wrapper {
       max-width: 1000px;
   }
   
   .pd-grid {
       grid-template-columns: repeat(3, 1fr);
       gap: 25px;
   }
   
   .pd-card-content {
       padding: 24px;
       gap: 8px;
   }
}
@media (max-width: 1024px) {
   .pd-search-wrapper {
       padding: 20px 32px;
   }
   
   .pd-grid {
       grid-template-columns: repeat(2, 1fr);
       gap: 20px;
       padding: 30px 15px;
   }
   
   .pd-card-content {
       padding: 20px;
       gap: 6px;
   }
   
   .pd-description {
       margin-bottom: 12px;
   }
   
   .pd-contact-btn {
       margin-top: 8px;
   }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .pd-container .container {
        margin-top: 70px !important;
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .pd-container .container {
        margin-top: 70px !important;
        padding-top: 40px;
        padding: 40px 15px 0;
    }
    
    .pd-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

   .pd-search-wrapper {
       flex-direction: column;
       padding: 16px;
       margin: 30px auto 0;
       gap: 16px;
   }

   .pd-filter-controls {
       flex-direction: column;
       width: 100%;
       gap: 12px;
       height: auto;
   }

   .pd-search-box,
   .pd-select {
       width: 100%;
       min-width: unset;
   }
   .pd-search-icon {
       height: 30px;
       width: 19px;
       font-size: 1.2rem;
   }
	

    .pd-intro {
        padding: 0 15px;
    }
    
    .pd-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .pd-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .pd-benefit {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start; /* Sikrer konsistent alignment på mobil */
        padding: 0.875rem 1.25rem;
    }
   .pd-grid {
       grid-template-columns: repeat(2, 1fr);
       gap: 16px;
       padding: 20px 12px;
   }
   
   .pd-card-content {
       padding: 16px;
       gap: 6px;
   }
   
   .pd-card-header {
       height: 140px;
   }
}


@media (max-width: 480px) {
   .pd-container {
       padding: 40px 12px;
   }
   
    .pd-container .container {
        margin-top: 55px !important;
        padding-top: 30px;
    }
    
    .pd-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

   .pd-search-wrapper {
       padding: 12px;
       gap: 12px;
   }

   .pd-grid {
       grid-template-columns: 1fr;
       gap: 16px;
       padding: 15px 10px;
   }
   
   .pd-card-content {
       padding: 16px;
       gap: 4px;
   }
   
   .pd-card-header {
       height: 120px;
   }
   
   .pd-description {
       margin-bottom: 8px;
   }
   
   .pd-contact-btn {
       margin-top: 6px;
       padding: 12px;
   }

   .pd-select, 
   .pd-search-input {
       font-size: 16px;
   }
   .pd-search-icon {
       height: 25px;
       width: 15px;
       font-size: 1rem;
   }
	
    .pd-intro {
        padding: 0 10px;
    }
    
    .pd-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .pd-benefit {
        padding: 0.75rem 1rem;
    }
    
    .pd-benefit span {
        font-size: 0.9rem;
    }
}

/* Touch Devices */
@media (hover: none) {
   .pd-card:hover {
       transform: none;
       box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
   }
   
   .pd-select,
   .pd-search-input,
   .pd-contact-btn {
       -webkit-tap-highlight-color: transparent;
   }
    .pd-benefit {
        padding: 1rem 1.5rem;
    }
    
    .pd-benefit:hover {
        transform: none;
    }
}

/* Landscape Mode */
@media (orientation: landscape) and (max-width: 768px) {
   .pd-search-wrapper {
       flex-direction: row;
   }
   
   .pd-filter-controls {
       flex-direction: row;
   }
    .pd-benefits {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pd-benefit {
        width: calc(50% - 1rem);
        max-width: none;
    }
    .pd-container .container {
        margin-top: 60px !important;
        padding-top: 30px;
    }
}
/* Partner Ratings Styles */
.pd-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px; /* Ændret fra 8px 0 16px for at fjerne top margin */
}

.pd-stars {
    color: #fbbf24;
    font-size: 1rem;
    display: flex;
    gap: 2px;
}

.pd-rating-count {
    color: #64748b;
    font-size: 0.9rem;
}

.pd-stars i {
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
}

/* Rating Page Container */
.rating-container {
    padding: 0 0 60px;
    background: linear-gradient(to bottom, #f8faff 0%, #ffffff 100%);
}

/* Header Spacing Fix */
.rating-container .container {
    margin-top: 100px !important; /* Øget margin-top for mere plads */
    padding-top: 80px; /* Øget padding-top for mere plads */
    margin-bottom: 80px !important; /* Tilføjet margin-bottom for at skabe plads til footer */
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Rating Page Header */
.rating-header {
    text-align: center;
    margin-bottom: 40px;
}

.rating-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.rating-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-align: center;
}

/* Enhanced Rating Form Styles */
.rating-form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.rating-form h2 {
    color: #1a202c;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.rating-stars {
    font-size: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    color: #fbbf24;
}

.rating-stars i {
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.rating-stars i:hover {
    transform: scale(1.2);
    color: #f59e0b;
}

.rating-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.rating-form textarea:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.rating-form button {
    width: 100%;
    padding: 1rem;
    background: #4361ee;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rating-form button:hover {
    background: #3a0ca3;
    transform: translateY(-2px);
}

.rating-form button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Success Message Styling */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.success-message h2 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.success-message p {
    color: #64748b;
    line-height: 1.6;
}

/* Rating Error Styles */
.rating-error {
    background: #fdecea;
    border-left: 6px solid #f56565;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 20px 0 30px !important; /* Justeret margin-top og margin-bottom */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
}

.rating-error-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-error-content i {
    font-size: 1.5rem;
    color: #f56565;
}

.rating-error-content span {
    font-size: 1.1rem;
    color: #b91c1c;
}

/* Animation for Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Hover Effect for Error Message */
.rating-error:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Rating Stars Active State */
.rating-stars.has-rating i {
    transition: transform 0.2s ease, color 0.2s ease;
}

.rating-stars.has-rating .fas {
    transform: scale(1.1);
    color: #f59e0b;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .rating-container .container {
        margin-bottom: 100px !important; /* Øget margin-bottom for mellemstore skærme */
    }
}

@media (min-width: 1201px) {
    .rating-container .container {
        margin-bottom: 150px !important; /* Endnu mere margin-bottom for meget store skærme */
    }
}

@media (max-width: 768px) {
    .rating-container .container {
        margin-top: 90px !important; /* Justeret for mindre skærme */
        padding-top: 70px; /* Justeret for mindre skærme */
        margin-bottom: 70px !important; /* Justeret margin-bottom for mindre skærme */
    }
    
    .rating-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .rating-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .rating-stars {
        font-size: 2rem;
        gap: 0.75rem;
    }
    
    .rating-error {
        margin: 15px 0 25px !important; /* Mindre margin på mobile enheder */
        padding: 14px 18px; /* Mindre padding på mobile enheder */
    }
}

@media (max-width: 480px) {
    .rating-container .container {
        margin-top: 70px !important; /* Justeret for små skærme */
        padding-top: 60px; /* Justeret for små skærme */
        margin-bottom: 60px !important; /* Justeret margin-bottom for små skærme */
    }
    
    .rating-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .rating-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .rating-form {
        padding: 20px 15px;
    }
    
    .rating-error {
        margin: 10px 0 20px !important; /* Endnu mindre margin på meget små skærme */
        padding: 12px 16px; /* Endnu mindre padding på meget små skærme */
    }
}

/* Justering for større skærme (Desktop, iPad Pro, etc.) */
@media (min-width: 1201px) {
    .rating-container .container {
        margin-bottom: 420px !important; /* Øget margin-bottom for meget store skærme */
    }
    
    .rating-title {
        font-size: 3.5rem; /* Øget font-size for større skærme */
    }
    
    .rating-form {
        padding: 50px; /* Mere padding for større skærme */
    }
    
    .rating-error {
        margin: 25px 0 40px !important; /* Mere margin for større skærme */
        padding: 20px 24px; /* Mere padding for større skærme */
    }
}

/* Justering for meget store skærme (ultra-large desktops) */
@media (min-width: 1600px) {
    .rating-container .container {
        margin-bottom: 420px !important; /* Yderligere øget margin-bottom */
    }
    
    .rating-title {
        font-size: 4rem; /* Større font-size */
    }
    
    .rating-form {
        padding: 60px; /* Øget padding */
    }
    
    .rating-error {
        margin: 30px 0 50px !important; /* Endnu mere margin */
        padding: 24px 28px; /* Endnu mere padding */
    }
}

.lead-features {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.notification-preview {
    max-width: 400px;
    margin: 60px auto 0;
    padding: 20px;
}

.notification-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.notification-box:hover {
    transform: translateY(-5px);
}

.notification-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-header i {
    animation: bellRing 2s infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70% { transform: rotate(10deg); }
    20%, 40%, 60%, 80% { transform: rotate(-10deg); }
}

.notification-content {
    padding: 20px;
}

.notification-content h4 {
    margin: 0 0 10px;
    color: #2d3748;
}

.notification-content p {
    color: #64748b;
    margin: 0 0 15px;
}

.notification-meta {
    display: flex;
    gap: 15px;
    color: #64748b;
    font-size: 0.9rem;
}

.notification-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.notification-action {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notification-action:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .lead-features {
        padding: 60px 0;
    }
    
    .notification-preview {
        margin: 40px auto 0;
        padding: 15px;
    }
}

.welcome-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.welcome-modal.show {
	opacity: 1;
}

.welcome-modal-content {
	position: relative;
	background: white;
	width: 200%;
	max-width: 750px;
	margin: 2rem auto;
	border-radius: 20px;
	padding: 2rem;
	transform: translateY(-20px);
	opacity: 0;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}

.welcome-modal.show .welcome-modal-content {
	transform: translateY(0);
	opacity: 1;
}

.welcome-modal-header {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid #f0f0f0;
}

.modal-logo {
	width: 120px;
	margin-bottom: 1rem;
}

.welcome-modal-header h2 {
	color: #4f46e5;
	font-size: 1.8rem;
	margin: 0;
}

.welcome-section {
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border-radius: 12px;
	background: #f8fafc;
	transition: transform 0.2s ease;
}

.welcome-section:hover {
	transform: translateY(-2px);
}

.welcome-icon {
	font-size: 2rem;
	color: #4f46e5;
	margin-bottom: 1rem;
}

.welcome-section h3 {
	color: #1e293b;
	margin: 0.5rem 0;
	font-size: 1.2rem;
}

.welcome-section p {
	color: #64748b;
	margin: 0;
	line-height: 1.6;
}

.welcome-footer {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	justify-content: center;
}

.tour-btn, .close-btn {
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	border: none;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tour-btn {
	background: #f8fafc;
	color: #4f46e5;
	border: 2px solid #4f46e5;
}

.tour-btn:hover {
	background: #4f46e5;
	color: white;
}

.close-btn {
	background: #4f46e5;
	color: white;
}

.close-btn:hover {
	background: #4338ca;
	transform: translateY(-2px);
}

/* Ny sektion til visning af velkomstcredits */
.welcome-credits {
    display: flex;
    align-items: center;
    background: #e0f7fa;
    border: 1px solid #4f46e5;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}
.welcome-credits-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    color: #4f46e5;
}


@media (max-width: 768px) {
	.welcome-modal-content {
		width: 95%;
		padding: 1.5rem;
		margin: 1rem auto;
	}

	.welcome-footer {
		flex-direction: column;
	}

	.tour-btn, .close-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Base styling for kampagne-banneret */
.campaign-banner {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 1.1rem;
}

.campaign-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.campaign-banner i {
  color: #ffcc00;
  font-size: 1.5rem;
}

/* Bliv Partner-side specifik styling */
.bliv-partner-page {
  background: #eef2ff;
}

.bliv-partner-page .campaign-banner {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 1.1rem;
  z-index: 9999 !important;
  animation: campaignSlideDown 0.5s ease-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.bliv-partner-page .company-registration {
  margin-top: 0 !important;
  padding-top: 60px;
  background: #eef2ff;
}

@keyframes campaignSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bliv-partner-page #header {
  top: 115px !important;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.bliv-partner-page main#main-content {
  margin-top: 125px;
  background: #eef2ff;
}

/* Responsive design */
@media (min-width: 1200px) {
  .bliv-partner-page .campaign-banner {
    font-size: 1.2rem;
    padding: 0.85rem 0;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .bliv-partner-page .campaign-banner {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    top: 75px;
  }
  .bliv-partner-page #header {
    top: 110px !important;
  }
  .bliv-partner-page main#main-content {
    margin-top: 120px;
  }
}

@media (max-width: 767px) {
  .bliv-partner-page .campaign-banner {
    font-size: 1rem;
    padding: 0.65rem 0;
    top: 70px;
  }
  .bliv-partner-page #header {
    top: 105px !important;
  }
  .bliv-partner-page main#main-content {
    margin-top: 115px;
  }
}

@media (max-width: 480px) {
  .bliv-partner-page .campaign-banner {
    font-size: 0.9rem;
    padding: 0.6rem 0;
    top: 65px;
  }
  .bliv-partner-page #header {
    top: 100px !important;
  }
  .bliv-partner-page main#main-content {
    margin-top: 110px;
  }
}