
:root {
--bg: #18181B;
--card: #fcfcff;
--muted: #18181B;
--text: #fcfcff;
--line: #ffffffbb;
--primary: #4639E1;
--success: #32d583;
--radius: 18px;
--container: 1120px;
--gap: 28px;
}
* {
    box-sizing: border-box
}
html, body {
    height: 100%;
}
body {
    margin-top:70px;
    background: var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55
}
img {
    max-width: 100%;
    height: auto;
    display: block
}
a {
    color: var(--text);
    text-decoration: none
}
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding: 24px
}
.center {
    text-align: center
}
.muted {
    color: var(--muted)
}
.lead {
    font-size: clamp(16px, 2.2vw, 18px)
}
h1, h2, h3 {
    margin: 0 0 10px;
}
h1 {
    font-size: clamp(26px, 4.5vw, 36px);
    line-height: 1.2
}
h2 {
    font-size: clamp(22px, 4vw, 30px)
}
h3 {
    font-size: clamp(18px, 2.8vw, 22px)
}
.hero {
    padding: 56px 0 32px;
    text-align: center;
    position: relative
}
.device {
    width: min(480px, 90vw);
    aspect-ratio: 16/6;
    border-radius: 28px;
    margin: 12px auto 24px;
    position: relative;
    overflow: hidden;
}
.device img.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block
}
.overlay-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 120px;
    height: auto;
    opacity: 0.9
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 26px auto;
    max-width: 900px
}
.feat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}
.icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #222;
    display: grid;
    place-items: center;
    border: 1px solid #7366ff33
}
.icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}
.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px
}
.list li {
    display: flex;
    align-items: flex-start;
    gap: 8px
}
.list svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 3px;
    stroke: var(--success);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}
.text {
    color: var(--text)
}
.product-cards, .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px
}
.product, .card {
    background: var(--card);
    border: 1px solid #ffffff10;
    border-radius: 22px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 6px 30px rgba(0,0,0,.25)
}
/*
.price {
    color: #4639E1;
    font-weight: 700
} */
.mini {
    padding: 28px 24px;
}
.mini .wrap {
    display: grid;
    gap: 12px
}
.media-blank {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16/9;
    border-radius: 27px;
    display: grid;
    place-items: center
}
footer {
    border-top: 1px solid var(--line);
    margin-top: 56px;
    padding: 24px;
    color: var(--muted);
    text-align: center
}
/* Contact Button */
.contact-btn {
    display: inline-block;
    position: relative;
    margin: 30px auto 50px;
    background: var(--primary);
    color: #fff!important;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}
.contact-btn:hover {
    background: rgb(70 57 225 / 80%);
    transform: translateY(-2px);
}
.top-logo {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}
.top-logo img {
    width: 200px;          /* du kan ændre størrelsen f.eks. til 120px eller 200px */
    height: auto;
    display: inline-block;
}
