@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; }

body {
    min-height: 100vh;
    background: url("/Img/baggrund.jpg") no-repeat center / cover fixed;
    color: #fff;
    padding: 40px 5%;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.3);
    pointer-events: none;
    z-index: 0;
}

.back-btn {
    position: fixed;
    top: 28px; left: 36px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 999px;
    transition: .2s;
}

.back-btn:hover { background: rgba(255,255,255,.2); }

.page {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 52px;
    padding-bottom: 80px;
}

.label {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 10px;
}

.divider { height: 1px; background: rgba(255,255,255,.1); }

/* Hero */
.hero { display: flex; flex-direction: column; gap: 16px; max-width: 680px; }

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.1; }
h1 span { opacity: .5; }

.intro { font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,.6); }

/* Section */
.section { display: flex; flex-direction: column; gap: 28px; }
.section h2 { font-size: 1.6rem; font-weight: 700; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.service-card {
    background: rgba(10,20,35,.55);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color .25s, background .25s;
}

.service-card:hover { border-color: rgba(255,255,255,.25); background: rgba(10,20,35,.7); }

.service-icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.service-card h3 { font-size: 1.1rem; font-weight: 600; }

.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.service-card ul li {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    padding-left: 16px;
    position: relative;
}

.service-card ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,.3);
}

/* Proces */
.process {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 160px;
    background: rgba(10,20,35,.55);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255,255,255,.15);
    line-height: 1;
}

.step-content h4 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.step-content p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }

.process-arrow {
    color: rgba(255,255,255,.2);
    font-size: 20px;
    padding-top: 28px;
    flex-shrink: 0;
}

/* Hvorfor mig */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10,20,35,.55);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    padding: 16px 18px;
    font-size: .9rem;
    font-weight: 500;
    transition: border-color .2s;
}

.why-item:hover { border-color: rgba(255,255,255,.25); }
.why-item i { font-size: 20px; color: rgba(255,255,255,.5); flex-shrink: 0; }

/* CTA */
.cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 52px 40px;
    background: rgba(10,20,35,.55);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.cta h2 { font-size: 2rem; font-weight: 700; }
.cta p { font-size: .95rem; color: rgba(255,255,255,.55); }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 13px 32px;
    background: rgba(255,255,255,.9);
    border-radius: 999px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background .2s;
}

.cta-btn:hover { background: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .process-arrow { display: none; }
    .process-step { min-width: 100%; }
}

@media (max-width: 480px) {
    body { padding: 20px 4%; }
    .page { margin-top: 70px; }
    h1 { font-size: 1.8rem; }
    .why-grid { grid-template-columns: 1fr; }
    .cta { padding: 36px 24px; }
    .cta h2 { font-size: 1.5rem; }
}

/* Skills */
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.skill-group {
    background: rgba(10,20,35,.55);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.skill-category { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }

.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    color: rgba(255,255,255,.8);
}

.tag i { font-size: 14px; }

@media (max-width: 480px) {
    .skills-grid { grid-template-columns: 1fr; }
}