/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f1f3d;
    --primary-mid: #1a2e54;
    --primary-light: #243b6a;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-soft: rgba(59, 130, 246, 0.1);
    --accent-glow: rgba(59, 130, 246, 0.25);
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-bg: #f1f5f9;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

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

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

/* ===== HEADER ===== */
.header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo span {
    color: var(--accent);
    font-weight: 400;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav a.nav-cta {
    color: #e53e3e;
    font-weight: 600;
}

.nav a.nav-cta:hover {
    color: #c53030;
    background: rgba(255, 255, 255, 0.08);
}

.nav a.nav-cta.active {
    color: #e53e3e;
    background: rgba(255, 255, 255, 0.12);
}

.lang-switch {
    margin-left: auto;
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 3px;
}

.lang-switch a {
    padding: 5px 8px;
    border-radius: 6px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    opacity: 0.5;
}

.lang-switch a svg {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    display: block;
}

.lang-switch a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
}

.lang-switch a.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    background: var(--primary);
    color: var(--white);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 560px;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline-dark {
    border: 1.5px solid var(--border);
    color: var(--text);
    background: var(--white);
}

.btn-outline-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 16px 56px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #60a5fa);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

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

.service-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
}

.service-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.service-card .learn-more:hover {
    gap: 10px;
    color: var(--accent-hover);
}

/* ===== INTRO / ABOUT SECTION ===== */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .section-label {
    text-align: left;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.intro-graphic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-photo {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Legacy support */
.intro-image {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    border: 1px solid var(--border);
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    margin-top: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.value-card .icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== SERVICES PAGE (DETAILED) ===== */
.service-detail {
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
    max-width: 820px;
    margin: 0 auto;
    scroll-margin-top: 96px;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-detail-text h2 .h2-icon {
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border);
    vertical-align: -9px;
    margin-right: 10px;
}

.service-detail-text p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 12px;
    font-size: 1.02rem;
}

.service-detail-text ul {
    list-style: none;
    margin-top: 20px;
}

.service-detail-text ul li {
    padding: 8px 0;
    color: var(--text-light);
    padding-left: 28px;
    position: relative;
    font-size: 0.98rem;
}

.service-detail-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 2px solid var(--accent);
}

.service-detail-text ul li::after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: 7px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.7rem;
}

.service-detail-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-graphic svg {
    width: 100%;
    max-width: 440px;
    height: auto;
}

/* ===== SERVICE JOURNEY ===== */
.journey-block {
    max-width: 1000px;
    margin: 0 auto 8px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.journey-intro {
    text-align: center;
    margin-bottom: 44px;
}

.journey-intro .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.journey-intro h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.journey-intro p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.7;
}

.journey {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
}

.journey-step {
    flex: 1 1 0;
    max-width: 210px;
    text-align: center;
}

.journey-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journey-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

a.journey-icon:hover,
a.journey-icon:focus-visible {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.journey-num {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 6px;
}

.journey-step h3 {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.journey-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.journey-arrow {
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.5;
    margin-top: 18px;
}

.journey-arrow svg {
    width: 22px;
    height: 22px;
}

/* ===== PROFILE SECTION ===== */
.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 48px;
}

.profile-image {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.profile-text .profile-title {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

.profile-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.profile-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.profile-highlights span {
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image {
        width: 180px;
        height: 180px;
    }

    .profile-highlights {
        justify-content: center;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.contact-intro .section-label {
    text-align: left;
    margin-bottom: 14px;
}

.contact-intro h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.contact-intro > p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 440px;
}

.contact-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-steps .step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-steps h3 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-steps li p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Dark contact panel */
.contact-panel {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-panel::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 70%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-panel > * {
    position: relative;
}

.contact-panel h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(3px);
}

.contact-method-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
    stroke: #93c5fd;
}

.contact-method-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-method-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-method-value {
    font-size: 0.98rem;
    color: var(--white);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-panel-cta {
    width: 100%;
    justify-content: center;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    position: relative;
}

.page-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

/* Subtitle der skal stå på én linje (fx ydelser/services) */
.page-header p.subtitle-wide {
    max-width: none;
    white-space: nowrap;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer p {
    line-height: 1.75;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes dash-move {
    to { stroke-dashoffset: -20; }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

.float-anim-delay {
    animation: float 4s ease-in-out 1s infinite;
}

.pulse-anim {
    animation: pulse-soft 3s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
    }

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

/* Header navigation collapses to hamburger earlier, så den vandrette
   nav ikke bliver klemt på store tablets/små laptops (769-900px) */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 16px 20px;
        gap: 2px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
    }

    .lang-switch {
        margin-left: 0;
        margin-top: 8px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-graphic {
        max-width: 300px;
        margin: 0 auto;
    }

    .trust-bar {
        padding: 16px 0;
    }

    .trust-bar .container {
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: start;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px;
    }

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

    .intro-graphic {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .service-detail-text h2 {
        font-size: 1.4rem;
    }

    .service-detail-text h2 .h2-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        margin-right: 8px;
    }

    .service-detail-text ul li {
        font-size: 0.9rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-intro h2 {
        font-size: 1.6rem;
    }

    .contact-panel {
        padding: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px;
    }

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

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .page-header p.subtitle-wide {
        white-space: normal;
    }

    .journey {
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .journey-step {
        max-width: 340px;
    }

    .journey-arrow {
        margin-top: 4px;
        transform: rotate(90deg);
    }

    .journey-intro {
        margin-bottom: 32px;
    }

    .journey-intro h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .cta-section {
        padding: 48px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .about-content h2 {
        font-size: 1.4rem;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .contact-panel {
        padding: 22px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-text h2 {
        font-size: 1.3rem;
    }

    .profile-highlights span {
        font-size: 0.78rem;
        padding: 5px 10px;
    }
}
