*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Source Sans 3',-apple-system,sans-serif;
    color: #2d3748;
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6, p, blockquote, ul, ol {
    margin: 0;
    padding: 0
}

/* === ADMIN === */
.admin-wrap {
    display: flex;
    min-height: 100vh;
    background: #f1f3f5
}

.admin-sidebar {
    width: 230px;
    background: #0f1923;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50
}

.admin-main {
    flex: 1;
    margin-left: 230px;
    padding: 28px 32px
}

.sb-brand {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,.06)
}

    .sb-brand a {
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none
    }

.sb-nav {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto
}

.sb-group {
    padding: 16px 20px 4px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.25)
}

.sb-link {
    display: block;
    padding: 8px 20px;
    font-size: .86rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all .15s
}

    .sb-link:hover {
        color: #fff;
        background: rgba(255,255,255,.04)
    }

    .sb-link.active {
        color: #fff;
        background: rgba(255,255,255,.06);
        border-left-color: #c8a84e
    }

.sb-foot {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,.06)
}

.sb-logout {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: rgba(255,255,255,.4);
    font-size: .84rem;
    padding: 8px 12px
}

    .sb-logout:hover {
        color: #fff
    }

.admin-header {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

    .admin-header h1 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1c1c28;
        margin: 0
    }

.card-admin {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px
}

.tbl {
    width: 100%;
    border-collapse: collapse
}

    .tbl th {
        text-align: left;
        padding: 10px 12px;
        font-size: .75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #6b7280;
        border-bottom: 2px solid #e5e7eb
    }

    .tbl td {
        padding: 10px 12px;
        font-size: .88rem;
        color: #374151;
        border-bottom: 1px solid #f3f4f6
    }

    .tbl tr:hover td {
        background: #f9fafb
    }

.badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600
}

.badge-g {
    background: #dcfce7;
    color: #166534
}

.badge-y {
    background: #fef9c3;
    color: #854d0e
}

.badge-r {
    background: #fee2e2;
    color: #991b1b
}

.btn-admin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none
}

.btn-admin-p {
    background: #1b3a5c;
    color: #fff
}

    .btn-admin-p:hover {
        background: #2a5580
    }

.btn-admin-s {
    background: #f3f4f6;
    color: #374151
}

    .btn-admin-s:hover {
        background: #e5e7eb
    }

.btn-admin-d {
    background: #fee2e2;
    color: #991b1b
}

    .btn-admin-d:hover {
        background: #fecaca
    }

.form-g {
    margin-bottom: 18px
}

    .form-g label {
        display: block;
        font-size: .82rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 5px
    }

    .form-g input, .form-g textarea, .form-g select {
        width: 100%;
        padding: 9px 12px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: .88rem;
        font-family: inherit;
        transition: border-color .15s
    }

        .form-g input:focus, .form-g textarea:focus, .form-g select:focus {
            outline: none;
            border-color: #1b3a5c;
            box-shadow: 0 0 0 3px rgba(27,58,92,.08)
        }

    .form-g textarea {
        resize: vertical;
        min-height: 100px
    }

.lang-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px
}

.lang-tab {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    cursor: pointer;
    transition: all .15s
}

    .lang-tab:hover {
        background: #f3f4f6
    }

    .lang-tab.active {
        background: #1b3a5c;
        color: #fff;
        border-color: #1b3a5c
    }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 16px;
    margin-bottom: 28px
}

.stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px
}

    .stat-card .label {
        font-size: .76rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #6b7280;
        margin-bottom: 4px
    }

    .stat-card .value {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1c1c28
    }

/* === PUBLIC SITE === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .3s
}

    .nav.on {
        box-shadow: 0 2px 20px rgba(0,0,0,.06)
    }

.nav-in {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%
}

.n-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    text-decoration: none
}

    .n-logo img {
        height: 50px;
        display: block
    }

.n-links {
    display: flex;
    align-items: center;
    gap: 28px
}

    .n-links a {
        font-size: .85rem;
        font-weight: 500;
        color: #64748b;
        text-decoration: none;
        transition: color .2s
    }

        .n-links a:hover {
            color: #1b3a5c
        }

.n-cta {
    background: #1b3a5c !important;
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all .2s !important
}

    .n-cta:hover {
        background: #2a5580 !important;
        transform: translateY(-1px)
    }

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: #1b3a5c
}

.hero {
    background: linear-gradient(135deg,#f0f4f8 0%,#e8edf4 40%,#f5f0e8 100%);
    color: #1c1c28;
    padding: 160px 28px 100px;
    position: relative;
    overflow: hidden
}

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(200,168,78,.08),transparent 70%)
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(27,58,92,.05),transparent 70%)
    }

.hero-in {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: end;
    position: relative;
    z-index: 1
}

.h-eyebrow {
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #b8942e;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px
}

    .h-eyebrow::before {
        content: '';
        width: 28px;
        height: 1.5px;
        background: #c8a84e
    }

.hero h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(2.2rem,4.5vw,3.4rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.025em;
    margin-bottom: 22px;
    color: #1b3a5c;
    border: none !important;
    outline: none !important;
    background: none !important;
    box-shadow: none !important
}

    .hero h1 em {
        font-weight: 500;
        font-style: italic;
        color: #0f2a44
    }

.h-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #5a6577;
    max-width: 480px;
    margin-bottom: 36px
}

.h-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-site {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s
}

.btn-p {
    background: #1b3a5c;
    color: #fff
}

    .btn-p:hover {
        background: #2a5580;
        box-shadow: 0 6px 20px rgba(27,58,92,.2);
        transform: translateY(-2px)
    }

.btn-o {
    background: transparent;
    color: #1b3a5c;
    border: 1.5px solid #c8d1dc
}

    .btn-o:hover {
        border-color: #1b3a5c;
        background: rgba(27,58,92,.03)
    }

.h-card-inner {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,.06)
}

.h-card-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #b8942e;
    margin-bottom: 24px
}

.h-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.h-stat-n {
    font-family: 'Playfair Display',serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #1b3a5c
}

.h-stat-t {
    font-size: .8rem;
    color: #8896a7;
    margin-top: 3px
}

.h-div {
    grid-column: 1/-1;
    height: 1px;
    background: #e2e8f0
}

.trust {
    border-bottom: 1px solid #e2e8f0;
    padding: 22px 28px;
    background: #fff
}

.trust-in {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap
}

.trust-i {
    font-size: .83rem;
    font-weight: 500;
    color: #64748b
}

.trust-d {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #cbd5e1
}

.s {
    padding: 88px 28px
}

.s-in {
    max-width: 1180px;
    margin: 0 auto
}

.s-hd {
    margin-bottom: 52px
}

.s-ey {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #1b3a5c;
    margin-bottom: 8px
}

.s-t {
    font-family: 'Playfair Display',serif;
    font-size: clamp(1.6rem,2.6vw,2.2rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -.02em;
    color: #1c1c28
}

.s-alt {
    background: #f8fafb
}

.s-brand {
    background: linear-gradient(135deg,#1b3a5c 0%,#0f2a44 100%);
    color: #fff
}

    .s-brand .s-ey {
        color: #c8a84e
    }

    .s-brand .s-t {
        color: #fff
    }

.svc-g {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden
}

.svc {
    background: #fff;
    padding: 34px 28px;
    transition: all .25s
}

    .svc:hover {
        background: #f8fafb;
        transform: translateY(-2px)
    }

.svc-n {
    font-family: 'Playfair Display',serif;
    font-size: .82rem;
    font-weight: 500;
    color: #b8942e;
    margin-bottom: 12px
}

.svc h3 {
    font-family: 'Playfair Display',serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1c1c28;
    margin-bottom: 8px
}

.svc p {
    font-size: .86rem;
    color: #64748b;
    line-height: 1.6
}

.tier-g {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.tier {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    transition: all .3s
}

    .tier:hover {
        background: rgba(255,255,255,.1);
        transform: translateY(-3px)
    }

    .tier.pop {
        border-color: #c8a84e;
        background: rgba(200,168,78,.08);
        position: relative
    }

        .tier.pop::before {
            content: 'Vinsælust';
            position: absolute;
            top: -10px;
            left: 24px;
            background: #c8a84e;
            color: #0f2a44;
            font-size: .68rem;
            font-weight: 700;
            padding: 3px 13px;
            border-radius: 100px
        }

.tier-l {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #c8a84e;
    margin-bottom: 10px
}

.tier h3 {
    font-family: 'Playfair Display',serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px
}

.tier > p {
    font-size: .84rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    margin-bottom: 24px
}

.tier-ls {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
    padding: 0
}

    .tier-ls li {
        padding: 9px 0;
        font-size: .84rem;
        color: rgba(255,255,255,.7);
        border-bottom: 1px solid rgba(255,255,255,.06)
    }

        .tier-ls li:last-child {
            border-bottom: none
        }

        .tier-ls li::before {
            content: '— ';
            color: rgba(255,255,255,.25)
        }

.tier-cta {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .84rem;
    text-decoration: none;
    transition: all .25s;
    margin-top: auto
}

.tier-cta-g {
    background: #c8a84e;
    color: #0f2a44
}

    .tier-cta-g:hover {
        background: #ddc476
    }

.tier-cta-o {
    border: 1.5px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75)
}

    .tier-cta-o:hover {
        border-color: rgba(255,255,255,.3);
        color: #fff
    }

.test-g {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.test {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    transition: all .3s
}

    .test:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,.06);
        transform: translateY(-3px)
    }

.test-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: #c8a84e
}

.test blockquote {
    font-family: 'Playfair Display',serif;
    font-size: .93rem;
    font-style: italic;
    color: #3a3a4a;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px
}

.test-a {
    padding-top: 14px;
    border-top: 1px solid #e2e8f0
}

.test-an {
    font-size: .86rem;
    font-weight: 600;
    color: #1c1c28
}

.test-ar {
    font-size: .76rem;
    color: #64748b
}

.cta-wrap {
    padding: 0 28px 88px
}

.cta-card {
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(135deg,#1b3a5c,#0f2a44);
    border-radius: 18px;
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden
}

    .cta-card::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(200,168,78,.1),transparent 70%)
    }

.btn-g {
    background: #c8a84e;
    color: #0f2a44;
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s
}

    .btn-g:hover {
        background: #ddc476;
        transform: translateY(-2px)
    }

.btn-bo {
    background: transparent;
    color: rgba(255,255,255,.75);
    border: 1.5px solid rgba(255,255,255,.18);
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s
}

    .btn-bo:hover {
        border-color: rgba(255,255,255,.4);
        color: #fff
    }

.ft {
    background: #0f1923;
    color: rgba(255,255,255,.5);
    padding: 56px 28px 24px
}

.ft-in {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px
}

.ft-brand > p {
    font-size: .84rem;
    line-height: 1.7;
    margin-bottom: 16px
}

.ft-ci {
    font-size: .82rem;
    margin-bottom: 5px
}

.ft h4 {
    font-family: 'Playfair Display',serif;
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px
}

.ft ul {
    list-style: none;
    padding: 0
}

    .ft ul li {
        margin-bottom: 9px
    }

    .ft ul a {
        font-size: .84rem;
        color: rgba(255,255,255,.45);
        text-decoration: none;
        transition: color .2s
    }

        .ft ul a:hover {
            color: #fff
        }

.ft-bot {
    max-width: 1180px;
    margin: 36px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .76rem;
    color: rgba(255,255,255,.25)
}

.ft-links {
    display: flex;
    gap: 18px
}

    .ft-links a {
        font-size: .76rem;
        color: rgba(255,255,255,.35);
        text-decoration: none
    }

        .ft-links a:hover {
            color: rgba(255,255,255,.7)
        }

@media(max-width:1024px) {
    .hero-in, .cta-card {
        grid-template-columns: 1fr
    }

    .ft-in {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .n-links {
        display: none
    }

    .burger {
        display: block
    }

    .hero {
        padding: 110px 20px 56px
    }

    .s {
        padding: 56px 20px
    }

    .svc-g, .tier-g, .test-g {
        grid-template-columns: 1fr
    }

    .cta-wrap {
        padding: 0 16px 56px
    }

    .cta-card {
        padding: 36px 24px;
        border-radius: 14px
    }

    .ft {
        padding: 40px 20px 20px
    }

    .ft-in {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .ft-bot {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }
}
