/* GLOBAL STYLING - Genopbygget fra Next.js tokens */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1f2c;
    background-color: #f9fafb;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* NAVIGATION */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    margin-left: 28px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* KNAPPER */
.btn-primary {
    background-color: #2563eb;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-lg-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-lg-primary:hover {
    background-color: #1d4ed8;
}

.btn-lg-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #4b5563;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #d1d5db;
    margin-left: 16px;
    transition: background-color 0.2s;
}

.btn-lg-secondary:hover {
    background-color: #f3f4f6;
}

/* HERO SECTION */
.hero {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #111827;
}

.hero-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* TRIN SECTION */
.steps-section {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.steps-section h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 12px;
}

.subtitle {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
}

.step-num {
    background-color: #eff6ff;
    color: #2563eb;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 12px;
    color: #111827;
}

.step-card p {
    color: #4b5563;
    font-size: 15px;
}

/* MARKETING CARDS */
.marketing-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.info-card {
    border: 1px solid #e5e7eb;
    padding: 28px;
    border-radius: 8px;
}

.info-card h3 {
    margin-bottom: 10px;
    color: #111827;
}

.info-card p {
    color: #4b5563;
}

/* FOOTER */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 40px 0;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: #ffffff;
}

/* RESPONSIVITET (Til Mobilskærme) */
@media (max-width: 768px) {
    .hero-grid, .steps-grid, .card-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .btn-lg-secondary {
        margin-left: 0;
        margin-top: 12px;
        display: block;
        text-align: center;
    }
    .btn-lg-primary {
        display: block;
        text-align: center;
    }
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-links a {
        display: block;
        margin: 8px 0;
    }
}
