:root {
    --s50-blue: #0153A3;
    --s50-blue-dark: #01396f;
    --s50-ink: #07111f;
    --s50-muted: #657287;
    --s50-soft: #f4f7fb;
    --s50-line: rgba(7, 17, 31, .12);
    --s50-radius: 28px;
}

body {
    margin: 0;
    color: var(--s50-ink);
    background: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

.site-nav {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: rgba(7, 17, 31, .72);
    backdrop-filter: blur(18px);
}

.navbar-brand img {
    width: 138px;
    height: auto;
}

.nav-link {
    color: rgba(255, 255, 255, .78) !important;
    font-weight: 650;
    font-size: .95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.btn-s50 {
    border: 0;
    border-radius: 999px;
    padding: .85rem 1.2rem;
    background: var(--s50-blue);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(1, 83, 163, .25);
}

.btn-s50:hover {
    background: var(--s50-blue-dark);
    color: #ffffff;
}

.btn-outline-s50 {
    border: 1px solid rgba(7,17,31,.18);
    border-radius: 999px;
    padding: .85rem 1.2rem;
    color: var(--s50-ink);
    font-weight: 800;
    background: #ffffff;
}

.btn-outline-s50:hover {
    border-color: var(--s50-blue);
    color: var(--s50-blue);
}

.hero {
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4.5rem;
    color: #ffffff;
    background:
            linear-gradient(100deg, rgba(7,17,31,.94) 0%, rgba(7,17,31,.84) 46%, rgba(7,17,31,.42) 78%, rgba(7,17,31,.2) 100%),
            url('https://www.share50.no/images/sd/fotball_training.jpg') center center / cover no-repeat;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.2rem;
    padding: .45rem .75rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.88);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: #65d2ff;
    box-shadow: 0 0 0 6px rgba(101,210,255,.16);
}

.hero h1 {
    max-width: 850px;
    margin: 0 0 1.35rem;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: .92;
    letter-spacing: -.065em;
    font-weight: 950;
}

.hero .lead {
    max-width: 720px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.12rem, 2vw, 1.38rem);
    line-height: 1.55;
}

.section {
    padding: 5.5rem 0;
}

.section-soft {
    background: var(--s50-soft);
}

.section-title {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-title .kicker {
    color: var(--s50-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 950;
    margin: .65rem 0 1rem;
}

.section-title p {
    color: var(--s50-muted);
    font-size: 1.12rem;
    line-height: 1.65;
}

.faq-shell {
    border: 1px solid var(--s50-line);
    border-radius: var(--s50-radius);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(7,17,31,.08);
}

.accordion-body {
    color: var(--s50-muted);
    line-height: 1.7;
    padding: .45rem 1.5rem 1.55rem;
    font-size: 1rem;
}

.accordion-item {
    border-color: var(--s50-line);
}

.accordion-button {
    padding: 1.35rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -.015em;
    color: var(--s50-ink);
}

.accordion-button:not(.collapsed) {
    color: var(--s50-blue);
    background: rgba(1,83,163,.06);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: rgba(1,83,163,.25);
    box-shadow: 0 0 0 .25rem rgba(1,83,163,.12);
}



.small-cta {
    border-radius: var(--s50-radius);
    background: var(--s50-ink);
    color: #ffffff;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    box-shadow: 0 28px 80px rgba(7,17,31,.16);
}

.small-cta h2 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 950;
    margin-bottom: .75rem;
}

.small-cta p {
    max-width: 680px;
    color: rgba(255,255,255,.76);
    line-height: 1.65;
    margin-bottom: 0;
}

.site-footer {
    padding: 3.5rem 0;
    color: rgba(255, 255, 255, .76);
    background: #07111f;
}

.site-footer-logo {
    width: 145px;
    height: auto;
}

.site-footer p {
    color: rgba(255, 255, 255, .76);
    line-height: 1.65;
    margin-bottom: 0;
}

.site-footer h3 {
    margin-bottom: 1rem;
}

.site-footer a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-weight: 700;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer hr {
    opacity: 1;
}

@media (max-width: 991px) {
    .site-nav {
        position: sticky;
    }

    .hero {
        min-height: auto;
        padding: 5rem 0 4rem;
        background:
                linear-gradient(100deg, rgba(7,17,31,.94) 0%, rgba(7,17,31,.84) 62%, rgba(7,17,31,.5) 100%),
                url('https://www.share50.no/images/sd/fotball_training.jpg') center center / cover no-repeat;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }
}