/*
 * frisurf.net — Frequency Frisurf
 * Minimalistisk design med signal-vågor som visuellt motiv.
 * Röd primär från logon, midnattsblå djup, ljus sky-bakgrund.
 */

@font-face { font-family: 'Inter';  font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/frisurf-net/Inter-Regular.ttf') format('truetype'); }
@font-face { font-family: 'Inter';  font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/frisurf-net/Inter-Medium.ttf') format('truetype'); }
@font-face { font-family: 'Inter';  font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/frisurf-net/Inter-SemiBold.ttf') format('truetype'); }
@font-face { font-family: 'Inter';  font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/frisurf-net/Inter-Bold.ttf') format('truetype'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/frisurf-net/Outfit-Medium.ttf') format('truetype'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/frisurf-net/Outfit-SemiBold.ttf') format('truetype'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/frisurf-net/Outfit-Bold.ttf') format('truetype'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 800; font-display: swap; src: url('/fonts/frisurf-net/Outfit-ExtraBold.ttf') format('truetype'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 900; font-display: swap; src: url('/fonts/frisurf-net/Outfit-Black.ttf') format('truetype'); }

:root {
    /* Frisurf-paletten */
    --red:        #DC1432;
    --red-dark:   #B30E26;
    --red-soft:   #FBE6EA;
    --navy:       #0F1E3D;
    --navy-soft:  #1B2D52;
    --sky:        #EAF1F9;
    --sky-light:  #F4F8FC;
    --sky-edge:   #DCE6F1;
    --white:      #FFFFFF;
    --ink:        #161F36;
    --ink-soft:   #2A3450;
    --muted:      #6B7892;
    --muted-soft: #94A0B5;
    --accent:     #FFC842;
    --green:      #1FA672;

    /* Spacing skala */
    --gap-1: 4px;
    --gap-2: 8px;
    --gap-3: 12px;
    --gap-4: 16px;
    --gap-5: 24px;
    --gap-6: 32px;
    --gap-7: 48px;
    --gap-8: 64px;
    --gap-9: 96px;

    /* Radie */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Skugga */
    --shadow-1: 0 1px 2px rgba(15, 30, 61, 0.06), 0 2px 8px rgba(15, 30, 61, 0.04);
    --shadow-2: 0 4px 12px rgba(15, 30, 61, 0.08), 0 12px 32px rgba(15, 30, 61, 0.06);
    --shadow-red: 0 6px 18px rgba(220, 20, 50, 0.28);

    /* Container */
    --shell-max: 1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin: 0 0 var(--gap-5);
    line-height: 1.18;
}
h1 { font-weight: 800; font-size: clamp(34px, 5.2vw, 58px); letter-spacing: -0.025em; }
h2 { font-weight: 700; font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-weight: 700; font-size: clamp(20px, 2vw, 24px); }
h4 { font-weight: 600; font-size: 18px; }

p { margin: 0 0 var(--gap-5); }
p:last-child { margin-bottom: 0; }

a { color: var(--red); text-decoration: none; font-weight: 500; }
a:hover { color: var(--red-dark); text-decoration: underline; }

strong { color: var(--navy); font-weight: 700; }

img, picture { max-width: 100%; height: auto; display: block; }

/* Container */
.fs-shell {
    width: 100%;
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 0 var(--gap-5);
}
.fs-narrow { max-width: 780px; margin-left: auto; margin-right: auto; }

/* ===================== HEADER ===================== */
.fs-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--sky-edge);
    position: sticky;
    top: 0;
    z-index: 50;
}
.fs-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: var(--gap-5);
}
.fs-logo {
    display: flex;
    align-items: center;
    gap: var(--gap-3);
    text-decoration: none;
}
.fs-logo img {
    height: 38px;
    width: auto;
}
.fs-nav {
    display: flex;
    align-items: center;
    gap: var(--gap-2);
}
.fs-nav a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy-soft);
    padding: 10px 14px;
    border-radius: var(--r-sm);
    transition: background 120ms ease, color 120ms ease;
    text-decoration: none;
}
.fs-nav a:hover { background: var(--sky); color: var(--navy); text-decoration: none; }
.fs-nav a.active { color: var(--red); background: var(--red-soft); }

.fs-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--sky-edge);
    border-radius: var(--r-sm);
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.fs-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    position: relative;
}
.fs-menu-toggle span::before,
.fs-menu-toggle span::after {
    content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy);
}
.fs-menu-toggle span::before { top: -6px; }
.fs-menu-toggle span::after { top: 6px; }

@media (max-width: 880px) {
    .fs-menu-toggle { display: inline-flex; }
    .fs-nav { display: none; }
    .fs-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--gap-3);
        border-bottom: 1px solid var(--sky-edge);
        box-shadow: var(--shadow-1);
        gap: 0;
    }
    .fs-nav.is-open a { width: 100%; padding: 14px 16px; }
    .fs-topbar { position: relative; }
}

/* ===================== BREADCRUMBS ===================== */
.fs-crumbs {
    padding: 14px 0 0;
    font-size: 14px;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.fs-crumbs a { color: var(--muted); font-weight: 500; }
.fs-crumbs a:hover { color: var(--red); text-decoration: none; }
.fs-crumbs .sep { color: var(--sky-edge); }
.fs-crumbs .cur { color: var(--navy); font-weight: 600; }

/* ===================== HERO ===================== */
.fs-hero {
    position: relative;
    padding: var(--gap-8) 0 var(--gap-7);
    background:
        radial-gradient(1200px 600px at 95% 10%, rgba(255, 200, 66, 0.10), transparent 60%),
        radial-gradient(900px 500px at 5% 90%, rgba(220, 20, 50, 0.06), transparent 60%),
        var(--sky-light);
    overflow: hidden;
}
.fs-hero::before {
    /* signal-wave bakgrund som rör sig diagonalt */
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            115deg,
            transparent 0 22px,
            rgba(15, 30, 61, 0.025) 22px 23px
        );
    pointer-events: none;
}
.fs-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--gap-8);
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 880px) {
    .fs-hero-grid { grid-template-columns: 1fr; gap: var(--gap-6); }
    .fs-hero { padding: var(--gap-7) 0; }
}
.fs-hero h1 strong { color: var(--red); font-weight: 800; }
.fs-hero-lead {
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--ink-soft);
    max-width: 56ch;
}
.fs-hero-cta { display: flex; flex-wrap: wrap; gap: var(--gap-3); margin-top: var(--gap-6); }

.fs-hero-figure {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    background: var(--sky);
    position: relative;
}
.fs-hero-figure img { width: 100%; height: auto; display: block; }

/* Eyebrow / pill */
.fs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    background: var(--red-soft);
    border-radius: 999px;
    margin-bottom: var(--gap-5);
}
.fs-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(220, 20, 50, 0.45);
    animation: fs-pulse 2s infinite;
}
@keyframes fs-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(220, 20, 50, 0.45); }
    70%  { box-shadow: 0 0 0 12px rgba(220, 20, 50, 0); }
    100% { box-shadow: 0 0 0 0   rgba(220, 20, 50, 0); }
}

/* ===================== CTA-knappar ===================== */
.fs-cta, .fs-cta-ghost, .fs-cta-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform 120ms ease, box-shadow 200ms ease, background 200ms ease;
    line-height: 1;
}
.fs-cta {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}
.fs-cta:hover { transform: translateY(-1px); background: var(--red-dark); color: var(--white); }
.fs-cta-ghost {
    background: var(--white);
    color: var(--navy);
    border-color: var(--sky-edge);
}
.fs-cta-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--sky); }
.fs-cta-sm { padding: 10px 18px; font-size: 14px; }

/* ===================== SECTIONS ===================== */
.fs-section { padding: var(--gap-9) 0; }
.fs-section--tight { padding: var(--gap-7) 0; }
.fs-section--sky { background: var(--sky-light); }
.fs-section--navy { background: var(--navy); color: var(--white); }
.fs-section--navy h2 { color: var(--white); }
.fs-section--navy p { color: rgba(255,255,255,0.85); }

@media (max-width: 880px) {
    .fs-section { padding: var(--gap-7) 0; }
}

.fs-section-head { margin-bottom: var(--gap-7); max-width: 720px; }
.fs-section-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }

.fs-meta {
    font-size: 14px;
    color: var(--muted);
    margin-top: var(--gap-3);
}
.fs-meta a, .fs-meta-link { color: var(--muted); text-decoration: underline; }
.fs-meta-link:hover { color: var(--red); }

.fs-snabbsvar {
    background: linear-gradient(135deg, var(--sky-light) 0%, #fff 100%);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: var(--gap-5) var(--gap-6);
    margin: var(--gap-5) 0 var(--gap-6);
    box-shadow: 0 1px 2px rgba(15,30,61,0.04);
}
.fs-snabbsvar-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    padding: 3px 9px;
    background: var(--accent);
    border-radius: 3px;
}
.fs-snabbsvar p {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 500;
}

.fs-disclosure-box {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-3);
    background: var(--sky-light);
    border: 1px solid var(--sky-edge);
    border-radius: var(--r-md);
    padding: var(--gap-4) var(--gap-5);
    margin: var(--gap-5) 0;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
}
.fs-disclosure-box p { margin: 0; }
.fs-disclosure-icon {
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    font-style: italic;
}

.fs-sticky-cta {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--sky-edge);
    z-index: 40;
    box-shadow: 0 -2px 10px rgba(15,30,61,0.05);
}
.fs-sticky-cta .fs-cta { width: 100%; }
@media (max-width: 720px) {
    body.has-sticky-cta { padding-bottom: 72px; }
    body.has-sticky-cta .fs-sticky-cta { display: block; }
}

/* ===================== DEAL CARDS ===================== */
.fs-deals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-5);
}
.fs-deal {
    position: relative;
    background: var(--white);
    border: 1px solid var(--sky-edge);
    border-radius: var(--r-lg);
    padding: var(--gap-6);
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 200ms ease;
    overflow: hidden;
}
.fs-deal::before {
    /* tunn signal-stapel högst upp */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--accent) 100%);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 220ms ease;
}
.fs-deal:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2);
}
.fs-deal:hover::before { transform: scaleX(1); }
.fs-deal-rank {
    position: absolute;
    top: var(--gap-5);
    right: var(--gap-5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.fs-deal-top {
    display: flex;
    align-items: center;
    gap: var(--gap-4);
    margin-bottom: var(--gap-5);
    padding-right: 48px;
}
.fs-deal-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: var(--r-sm);
    background: var(--sky-light);
    padding: 6px;
}
.fs-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
}
.fs-bars span {
    width: 5px;
    background: var(--sky-edge);
    border-radius: 1px;
}
.fs-bars span.on { background: var(--red); }
.fs-bars span:nth-child(1) { height: 30%; }
.fs-bars span:nth-child(2) { height: 50%; }
.fs-bars span:nth-child(3) { height: 70%; }
.fs-bars span:nth-child(4) { height: 90%; }
.fs-bars span:nth-child(5) { height: 100%; }
/* fs-bars-label removed — bars alone communicate the rating */
.fs-deal-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--navy);
    margin: 0 0 var(--gap-3);
    line-height: 1.3;
}
.fs-deal-tagline {
    color: var(--ink-soft);
    font-size: 15px;
    margin: 0 0 var(--gap-4);
    min-height: 44px;
}
.fs-deal-facts {
    list-style: none;
    margin: 0 0 var(--gap-5);
    padding: 0;
    display: grid;
    gap: 8px;
}
.fs-deal-facts li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.fs-deal-facts li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--accent));
    border-radius: 2px;
}
.fs-deal-fact { display: inline; }
.fs-price {
    margin-bottom: var(--gap-5);
}
.fs-price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--navy);
    white-space: nowrap;
    line-height: 1;
}
.fs-price-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4.5vw, 32px);
    letter-spacing: -0.025em;
}
.fs-price-per {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--muted);
}
.fs-price-sub {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 10px;
}
.fs-price-tag {
    display: inline-flex;
    align-items: center;
    background: var(--red-soft);
    color: var(--red);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.fs-price-then {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}
.fs-deal .fs-cta { width: 100%; }

/* Topp-badge */
.fs-badge-top {
    position: absolute;
    top: 16px;
    left: -8px;
    background: var(--accent);
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px 6px 16px;
    border-radius: 0 4px 4px 0;
    z-index: 2;
}
.fs-badge-top::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    border: 4px solid transparent;
    border-top-color: #c9a235;
    border-right-color: #c9a235;
}

/* ===================== INFO-RUTOR ===================== */
.fs-info {
    background: var(--sky-light);
    border-left: 4px solid var(--red);
    padding: var(--gap-5) var(--gap-6);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin: var(--gap-5) 0;
}
.fs-info-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.fs-info--navy { background: var(--navy); color: var(--white); border-left-color: var(--accent); }
.fs-info--navy .fs-info-label { color: var(--accent); }

/* ===================== ARTIKEL ===================== */
.fs-article { max-width: 760px; margin: 0 auto; }
.fs-article h2 { margin-top: var(--gap-8); }
.fs-article h2:first-child { margin-top: 0; }
.fs-article h3 { margin-top: var(--gap-6); }
.fs-article ul, .fs-article ol { padding-left: 24px; margin: 0 0 var(--gap-5); }
.fs-article li { margin-bottom: 6px; }
.fs-article figure { margin: var(--gap-6) 0; }
.fs-article figure img { border-radius: var(--r-md); }
.fs-article figcaption {
    font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; font-style: italic;
}

.fs-toc {
    background: var(--sky-light);
    border-radius: var(--r-md);
    padding: var(--gap-5) var(--gap-6);
    margin: var(--gap-6) 0;
}
.fs-toc-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--gap-3);
}
.fs-toc ol { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: var(--gap-6); }
.fs-toc li { margin-bottom: 8px; break-inside: avoid; }
.fs-toc a { color: var(--navy); font-weight: 500; }
.fs-toc a:hover { color: var(--red); }
@media (max-width: 600px) { .fs-toc ol { columns: 1; } }

/* ===================== FAQ ===================== */
.fs-faq { display: grid; gap: var(--gap-3); }
.fs-faq-item {
    background: var(--white);
    border: 1px solid var(--sky-edge);
    border-radius: var(--r-md);
    overflow: hidden;
}
.fs-faq-item details { padding: 0; }
.fs-faq-item summary {
    cursor: pointer;
    padding: var(--gap-5) var(--gap-6);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--navy);
    list-style: none;
    position: relative;
    transition: background 120ms ease;
}
.fs-faq-item summary::-webkit-details-marker { display: none; }
.fs-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: var(--red);
    transition: transform 200ms ease;
}
.fs-faq-item[open] summary { background: var(--sky-light); }
.fs-faq-item[open] summary::after { content: '−'; }
.fs-faq-item summary + * { padding: 0 var(--gap-6) var(--gap-5); }

/* ===================== TOPICAL GRID ===================== */
.fs-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--gap-4);
}
.fs-topic {
    background: var(--white);
    border: 1px solid var(--sky-edge);
    border-radius: var(--r-md);
    padding: var(--gap-5);
    text-decoration: none !important;
    color: var(--navy);
    transition: border-color 120ms ease, transform 120ms ease;
    display: block;
}
.fs-topic:hover { border-color: var(--red); transform: translateY(-2px); }
.fs-topic-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.fs-topic h3 { font-size: 17px; margin: 0 0 6px; }
.fs-topic p { font-size: 14px; color: var(--muted); margin: 0; }

/* ===================== TABELL ===================== */
.fs-table-wrap { overflow-x: auto; border: 1px solid var(--sky-edge); border-radius: var(--r-md); }
.fs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.fs-table th, .fs-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--sky-edge);
}
.fs-table th {
    background: var(--sky-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    white-space: nowrap;
}
.fs-table tr:last-child td { border-bottom: none; }
.fs-table tbody tr:hover { background: var(--sky-light); }
.fs-table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ===================== FOOTER ===================== */
.fs-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.78);
    padding: var(--gap-8) 0 var(--gap-5);
    font-size: 15px;
}
.fs-footer h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--gap-4);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.fs-footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--gap-6);
    margin-bottom: var(--gap-6);
}
.fs-footer ul { list-style: none; padding: 0; margin: 0; }
.fs-footer li { margin-bottom: 8px; }
.fs-footer a { color: rgba(255,255,255,0.78); font-weight: 400; text-decoration: none; }
.fs-footer a:hover { color: var(--white); text-decoration: underline; }
.fs-footer-bottom {
    padding-top: var(--gap-5);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--gap-4);
}
.fs-footer-bottom a { color: rgba(255,255,255,0.6); }

/* ===================== CALLOUT CTA ===================== */
.fs-cta-band {
    background:
        linear-gradient(135deg, var(--red) 0%, #B30E26 100%);
    color: var(--white);
    padding: var(--gap-7) var(--gap-6);
    border-radius: var(--r-lg);
    text-align: center;
    margin: var(--gap-7) 0;
    position: relative;
    overflow: hidden;
}
.fs-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        115deg, transparent 0 22px, rgba(255,255,255,0.06) 22px 23px
    );
    pointer-events: none;
}
.fs-cta-band h3 { color: var(--white); font-size: 26px; margin-bottom: var(--gap-3); position: relative; }
.fs-cta-band p { color: rgba(255,255,255,0.9); max-width: 540px; margin: 0 auto var(--gap-5); position: relative; }
.fs-cta-band .fs-cta {
    background: var(--white); color: var(--red); position: relative; box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.fs-cta-band .fs-cta:hover { background: var(--sky-light); color: var(--red-dark); }

/* ===================== HJÄLPARE ===================== */
.fs-mt-0 { margin-top: 0 !important; }
.fs-mb-0 { margin-bottom: 0 !important; }
.fs-center { text-align: center; }
.fs-disclosure {
    font-size: 13px;
    color: var(--muted);
    background: var(--sky-light);
    padding: var(--gap-3) var(--gap-4);
    border-radius: var(--r-sm);
    margin: var(--gap-4) 0;
}
