:root{
    --bg:#012f60;
    --card:#ffffff;
    --text:#1c2430;
    --muted:#4e5966;
    --accent:#ff7b29;
    --accent2:#4fd1a5;
    --bglink: #cbd1d7;
    --line:#e6eaf2;
    --radius:18px;
    --shadow:0 12px 28px rgba(0,0,0,0.08);
    --shadow2:0 18px 40px rgba(58,124,255,0.18);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color:var(--text);
    line-height:1.5;
    background: var(--bg);
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width:1120px; margin:0 auto; padding:28px 18px 72px; }

header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:26px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:800;
    letter-spacing:.2px;
    margin-top: 12px;
}
.logo{
    width:200px; height:100px;
    border-radius:12px;
    background-image: url('/images/logo.png');
    background-size: cover;      /* fyll rutan */
    background-position: center; /* centrera */
    background-repeat: no-repeat;
    /*box-shadow: 0 10px 24px rgba(58,124,255,.18);*/
}
.brand small{
    display:block;
    font-weight:650;
    color:var(--muted);
    letter-spacing:0;
    margin-top:2px;
    font-size:12px;
}

nav{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
    align-items:center;
}
nav a{
    color:var(--bglink);
    padding:8px 10px;
    border-radius:999px;
}
nav a:hover{ background: rgba(0,0,0,.04); color:var(--accent); }

.panel{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero{
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap:16px;
    align-items:stretch;
}

.heroMain{
    padding:30px;
    position:relative;
    overflow:hidden;
}

h1{
    margin:0 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    line-height:1.12;
    letter-spacing:-0.6px;
    position:relative;
}
.lead{
    margin:0 0 18px;
    color:var(--muted);
    font-size: clamp(16px, 1.6vw, 18px);
    position:relative;
    max-width: 62ch;
}

.badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:16px 0 18px;
    position:relative;
}
.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background: var(--accent);
    border: 1px solid #e3eaff;
    font-size:14px;
    font-weight:600;
}
.badge .dot{
    width:9px; height:9px;
    border-radius:50%;
    background: var(--accent2);
    box-shadow: 0 0 0 4px rgba(79,209,165,.16);
}

.ctaRow{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
    margin-top: 8px;
    position:relative;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background:#f5f7fb;
    color:var(--text);
    font-weight:750;
    cursor:pointer;
    transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
    user-select:none;
    white-space:nowrap;
}
.btn:hover{
    transform: translateY(-1px);
    background: var(--accent);
}

.btnPrimary{
    border:none;
    color:white;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: var(--shadow2);
}
.btnPrimary:hover{
    transform: translateY(-1px);
    box-shadow: 0 22px 52px rgba(58,124,255,0.22);
    filter: brightness(1.01);
}

.fineprint{
    margin:12px 0 0;
    color: rgba(95,107,122,.95);
    font-size:13px;
    position:relative;
}

.heroSide{
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:14px;
}
.miniCard{
    padding:16px;
    border-radius: 16px;
    border:1px solid var(--line);
    background: #fbfcff;
}
.miniTitle{ margin:0 0 6px; font-weight:800; }
.miniText{ margin:0; color:var(--muted); font-size:14px; }

/* Illustration card */
.illus{
    border-radius: 16px;
    border:1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #f7faff);
    padding:14px;
    overflow:hidden;
    position:relative;
}
.illusHeader{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:10px;
}
.illusHeader strong{ font-size:14px; }
.pill{
    font-size:12px;
    font-weight:750;
    color: #2a4f9a;
    background:#e9f0ff;
    border:1px solid #dbe6ff;
    padding:6px 10px;
    border-radius:999px;
    white-space:nowrap;
}

.section{
    margin-top:18px;
    padding:26px;
}
.section h2{
    margin:0 0 10px;
    font-size:20px;
    letter-spacing:-0.2px;
}
.section .sectionLead{
    margin:0 0 16px;
    color:var(--muted);
    max-width: 75ch;
}

.grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
    margin-top: 10px;
}
.feature{
    padding:18px;
    border-radius: 18px;
    border:1px solid var(--line);
    background: #ffffff;
}
.feature h3{ margin:0 0 8px; font-size:16px; }
.feature p{ margin:0; color:var(--muted); font-size:14px; }

.how{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
    margin-top: 10px;
}
.step{
    padding:18px;
    border-radius: 18px;
    border:1px dashed #d9deea;
    background: #fbfcff;
}
.stepNum{
    width:30px; height:30px;
    border-radius: 10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background: #e8f0ff;
    border:1px solid #d7e3ff;
    margin-bottom:10px;
    font-weight:900;
    color:#1f3f84;
}
.step p{ margin:0; color:var(--muted); font-size:14px; }

/* Demo table */
.demoWrap{
    display:grid;
    grid-template-columns: 1fr;
    gap:14px;
}
.demoTop{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    padding:14px 14px 0 14px;
}
.demoTitle{
    margin:0;
    font-weight:900;
    letter-spacing:-0.2px;
}
.demoNote{
    margin:2px 0 0;
    color:var(--muted);
    font-size:13px;
}
.tableCard{
    border:1px solid var(--line);
    border-radius: 18px;
    overflow:hidden;
    background:#ffffff;
}
table{
    width:100%;
    border-collapse: collapse;
    font-size:14px;
}
thead th{
    text-align:left;
    padding:12px 14px;
    background:#f3f6ff;
    border-bottom:1px solid var(--line);
    color:#2b3850;
    font-size:13px;
    letter-spacing:.2px;
}
tbody td{
    padding:12px 14px;
    border-bottom:1px solid var(--line);
    vertical-align:top;
}
tbody tr:last-child td{ border-bottom:none; }
.status{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:750;
}
.status i{
    width:9px; height:9px; border-radius:50%;
    display:inline-block;
    background:#c7cedb;
}
.status.ok i{ background: #4fd1a5; box-shadow:0 0 0 4px rgba(79,209,165,.14); }
.status.miss i{ background: #ffb020; box-shadow:0 0 0 4px rgba(255,176,32,.14); }
.who{ color:var(--muted); font-size:13px; margin-top:2px; }

/* FAQ */
.faq{
    margin-top: 8px;
    border-top:1px solid var(--line);
}
details{
    padding:14px 0;
    border-bottom:1px solid var(--line);
}
summary{
    cursor:pointer;
    font-weight:800;
}
details p{
    margin:8px 0 0;
    color:var(--muted);
    font-size:14px;
    max-width: 85ch;
}

.hero-points{

list-style:none;
padding:0;
margin:20px 20px 0;

}

.hero-points li{

position:relative;

padding-left:28px;
margin-bottom:8px;

font-weight:500;

}

.hero-points li:before{

content:"✔";

position:absolute;
left:0;
top:0;

color:var(--accent);

font-weight:700;

}

.hero-points-grid{

    display:grid;
    grid-template-columns:repeat(2, auto);
    gap:6px 30px;
}

footer{
    margin-top:28px;
    padding-top:18px;
    border-top:1px solid var(--line);
    color: var(--bglink);
    font-size:13px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    justify-content:space-between;
}
footer a{ color:var(--bglink); }
footer a:hover{ color:var(--accent); }

@media (max-width: 940px){
    .hero{ grid-template-columns: 1fr; }
    .grid{ grid-template-columns: 1fr; }
    .how{ grid-template-columns: 1fr; }
    nav{ justify-content:flex-start; }
    .heroMain{ padding:24px; }
}










.slot-row {
    display: flex;
    align-items: stretch;   /* viktigt */
    margin-bottom: 0.75rem;
}

.slot-text {
    flex: 1;
}

.slot-icon {
    display: flex;
    align-items: center;    /* centrerar symbolen vertikalt */
    justify-content: center;
    width: 2.5rem;

    /* valfritt för synlighet */
    font-size: 1.4rem;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 12px 20px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: #111827;
}

.login-link {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f3f4f6;
    transition: background 0.2s ease;
}

.login-link:hover {
    background: #e5e7eb;
}

/* Optional custom styling */
.user-dropdown {
    cursor: pointer;
}

.user-name {
    margin-left: 8px;
    font-weight: 500;
}