:root {

    --navy: #10243e;

    --navy-2: #183653;

    --ink: #132033;

    --muted: #607087;

    --blue: #2778ed;

    --blue-dark: #155fc5;

    --sky: #eaf3ff;

    --line: #dce5ef;

    --surface: #ffffff;

    --soft: #f5f8fc;

    --green: #20a77b;

    --radius: 18px;

    --shadow: 0 16px 44px rgba(16, 36, 62, .12);

}



* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { margin: 0; background: var(--surface); color: var(--ink); font: 400 1rem/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }

a { color: inherit; }

button, input { font: inherit; }

.shell { width: min(100% - 32px, 1120px); margin-inline: auto; }

.narrow { max-width: 780px; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 99; background: #fff; padding: 12px 18px; border-radius: 10px; }

.skip-link:focus { top: 12px; }



.site-header { position: relative; z-index: 20; background: var(--navy); color: #fff; }

.header-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 1.3rem; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }

.brand > span:last-child > span { color: #77b3ff; }

.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--blue); color: #fff; font-size: 1.35rem; }

.menu-button { display: flex; align-items: center; gap: 10px; color: #fff; border: 0; background: transparent; padding: 10px 0; cursor: pointer; }

.menu-label { font-weight: 700; }

.menu-icon { display: grid; gap: 4px; width: 22px; }

.menu-icon i { display: block; height: 2px; background: currentColor; border-radius: 2px; }

.site-nav { display: none; position: absolute; left: 0; right: 0; top: 70px; padding: 10px 16px 20px; background: var(--navy); }

.site-nav.open { display: grid; }

.site-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #dce8f8; text-decoration: none; font-weight: 650; }

.site-nav a.active { color: #fff; }



.hero, .page-intro { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: 42px 0 54px; }

.hero::after, .page-intro::after { content: ""; position: absolute; width: 360px; height: 360px; right: -220px; top: -190px; border: 70px solid rgba(39,120,237,.25); border-radius: 50%; }

.hero-grid, .page-grid { position: relative; z-index: 1; display: grid; gap: 30px; }

.hero-copy { align-self: center; }

.eyebrow { margin: 0 0 8px; color: var(--blue); font-size: .8rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.hero .eyebrow, .page-intro .eyebrow { color: #8cc1ff; }

h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.035em; }

h1 { max-width: 720px; margin-bottom: 18px; font-size: clamp(2.25rem, 8vw, 4.75rem); }

h2 { margin-bottom: 16px; font-size: clamp(1.65rem, 4vw, 2.5rem); }

h3 { margin-bottom: 9px; font-size: 1.25rem; }

.hero-copy > p:last-child, .page-copy > p:last-child { max-width: 610px; margin: 0; color: #c5d3e5; font-size: 1.08rem; }



.calculator-card { overflow: hidden; align-self: start; background: #fff; color: var(--ink); border-radius: 22px; box-shadow: var(--shadow); }

.calculator-head { padding: 24px 22px 18px; border-bottom: 1px solid var(--line); }

.calculator-head h2 { margin-bottom: 8px; font-size: 1.45rem; }

.calculator-head > p:last-child { margin: 0; color: var(--muted); }

.calculator-body { padding: 22px; }

.field-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .72fr); gap: 12px; }

.field { min-width: 0; }

.field > span:first-child, .hour-choice legend { display: block; margin-bottom: 7px; font-size: .88rem; font-weight: 750; }

.input-unit { display: flex; align-items: center; min-width: 0; border: 1px solid #bccadd; border-radius: 12px; background: #fff; transition: .2s ease; }

.input-unit:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(39,120,237,.14); }

.input-unit input { width: 100%; min-width: 0; border: 0; outline: 0; padding: 13px 4px 13px 13px; background: transparent; color: var(--ink); font-weight: 750; }

.input-unit b { flex: 0 0 auto; padding-right: 11px; color: var(--muted); font-size: .8rem; white-space: nowrap; }

.result-box { margin-top: 16px; padding: 20px; border-radius: 15px; background: var(--sky); border: 1px solid #cce1fc; }

.result-box span, .result-box small, .result-secondary span { display: block; color: var(--muted); }

.result-box strong { display: block; margin: 3px 0; color: var(--navy); font-size: clamp(1.9rem, 8vw, 2.55rem); line-height: 1.15; letter-spacing: -.04em; }

.result-box small { font-size: .8rem; }

.hour-choice { display: grid; gap: 8px; margin: 18px 0 0; padding: 0; border: 0; }

.hour-choice label { display: grid; grid-template-columns: auto 1fr; column-gap: 8px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; font-weight: 650; }

.hour-choice input { margin-top: 5px; accent-color: var(--blue); }

.hour-choice small { grid-column: 2; color: var(--muted); font-weight: 400; }

.result-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 12px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--line); }

.result-secondary > div { padding: 13px; background: #fff; }

.result-secondary strong { font-size: 1.05rem; }

.consultant-fields { grid-template-columns: 1fr; }

.cost-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 12px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--line); }

.cost-breakdown > div { min-width: 0; padding: 13px; background: #fff; }

.cost-breakdown span { display: block; color: var(--muted); font-size: .78rem; }

.cost-breakdown strong { display: block; font-size: .95rem; line-height: 1.3; }

.calculator-note { margin: 12px 2px 0; color: var(--muted); font-size: .8rem; }



.ad-wrap { margin: 24px auto; }

.ad-label { display: block; margin-bottom: 5px; color: #8995a6; font-size: .68rem; letter-spacing: .08em; text-align: center; text-transform: uppercase; }

.ad-placeholder { min-height: 96px; border: 1px dashed #ccd5df; border-radius: 12px; background: #f8fafc; }

.section { padding: 64px 0; }

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

.lead { color: var(--muted); font-size: 1.08rem; }

.formula { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin: 28px 0; padding: 18px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; }

.formula span, .formula strong { padding: 4px 8px; }

.formula b { color: var(--blue); }

.formula-left { justify-content: flex-start; }

.text-link, .card-link { color: var(--blue-dark); font-weight: 800; text-decoration: none; }

.text-link:hover { text-decoration: underline; }

.section-heading { display: grid; gap: 10px; margin-bottom: 26px; }

.section-heading h2, .section-heading p { margin-bottom: 0; }

.section-heading > p { color: var(--muted); }

.tool-grid { display: grid; gap: 16px; }

.tool-card { display: block; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }

a.tool-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16,36,62,.09); }

.tool-card p { color: var(--muted); }

.tool-icon, .side-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 12px; background: var(--sky); color: var(--blue-dark); font-weight: 850; }

.coming { opacity: .68; }



.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #9fb3cb; font-size: .86rem; }

.breadcrumbs a { color: #cfe1f7; }

.page-intro h1 { font-size: clamp(2.15rem, 7vw, 4rem); }

.content-grid { display: grid; gap: 32px; }

.article h2 { margin-top: 42px; }

.article h2:first-child { margin-top: 0; }

.article p { color: #46566c; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }

table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }

th, td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: right; white-space: nowrap; }

th:first-child, td:first-child { text-align: left; font-weight: 750; }

th { background: var(--soft); color: var(--navy); font-size: .85rem; }

tr:last-child td { border-bottom: 0; }

.side-note { align-self: start; padding: 22px; border-radius: var(--radius); background: var(--navy); color: #fff; }

.side-note h2 { font-size: 1.3rem; }

.side-note p { margin-bottom: 0; color: #cbd8e8; }

.side-note a { color: #fff; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.side-icon { background: rgba(255,255,255,.12); color: #fff; }

.example-card { margin: 22px 0 34px; padding: 22px; border: 1px solid #cce1fc; border-radius: var(--radius); background: var(--sky); }

.example-card p:last-child { margin-bottom: 0; color: var(--ink); }

.example-title { margin-top: 0; color: var(--ink) !important; }

.check-list { display: grid; gap: 10px; padding: 0; list-style: none; }

.check-list li { position: relative; padding-left: 30px; }

.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }

.faq details { border-top: 1px solid var(--line); }

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary { padding: 18px 36px 18px 0; font-weight: 750; cursor: pointer; }

.faq details p { margin-top: -4px; padding: 0 0 18px; color: var(--muted); }



.site-footer { padding: 46px 0 24px; background: #0b1a2d; color: #fff; }

.brand-footer { margin-bottom: 16px; }

.footer-grid { display: grid; gap: 28px; }

.footer-grid p { max-width: 440px; margin-bottom: 0; color: #9fb0c5; }

.footer-grid nav { display: grid; align-content: start; gap: 10px; }

.footer-grid nav a { color: #d9e5f2; text-decoration: none; }

.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #8296ad; font-size: .82rem; }

.footer-bottom p { margin: 0; }



@media (min-width: 760px) {

    .shell { width: min(100% - 64px, 1120px); }

    .menu-button { display: none; }

    .site-nav { position: static; display: flex; align-items: center; gap: 30px; padding: 0; }

    .site-nav a { padding: 24px 0 21px; border: 0; border-bottom: 3px solid transparent; }

    .site-nav a.active { border-bottom-color: #69aaff; }

    .hero, .page-intro { padding: 72px 0 82px; }

    .hero-grid, .page-grid { grid-template-columns: minmax(0, 1.05fr) minmax(390px, .78fr); gap: 58px; }

    .hero-grid { align-items: center; }

    .page-grid { align-items: start; }

    .section { padding: 88px 0; }

    .section-heading { grid-template-columns: 1fr 1fr; align-items: end; }

    .tool-grid { grid-template-columns: repeat(2, 1fr); }

    .content-grid { grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; }

    .footer-grid { grid-template-columns: 1fr auto; }

    .footer-grid nav { min-width: 250px; }

    .consultant-fields { grid-template-columns: 1fr 1fr; }

}



@media (max-width: 400px) {

    .shell { width: min(100% - 24px, 1120px); }

    .field-grid { grid-template-columns: 1fr; }

    .calculator-head, .calculator-body { padding-inline: 18px; }

}



@media (prefers-reduced-motion: reduce) {

    html { scroll-behavior: auto; }

    *, *::before, *::after { transition-duration: .01ms !important; }

}

.field-with-help {

    display: block;

}



.field-help {

    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size: 0.78rem;

    line-height: 1.45;

}



.consultant-fields {

    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;

}



.cost-breakdown {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    margin-top: 12px;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 13px;

    background: var(--line);

}



.cost-breakdown > div {

    min-width: 0;

    padding: 13px;

    background: #fff;

}



.cost-breakdown span {

    display: block;

    color: var(--muted);

    font-size: 0.78rem;

    line-height: 1.35;

}



.cost-breakdown strong {

    display: block;

    margin-top: 3px;

    font-size: 0.95rem;

    line-height: 1.3;

}



.calculator-note {

    margin: 14px 2px 0;

    color: var(--muted);

    font-size: 0.8rem;

    line-height: 1.5;

}



@media (min-width: 760px) {

    .consultant-fields {

        grid-template-columns: 1fr 1fr;

    }

}

.site-header {

    position: relative;

    z-index: 20;

    background: #081522;

    color: #fff;

}



.brand {

    display: inline-flex;

    align-items: center;

    gap: 0px;

    color: #fff;

    text-decoration: none;

}



.brand-symbol {

    display: block;

    width: 44px;

    height: 44px;

    object-fit: contain;

}



.brand-name {

    color: #9E9E9E;

    font-size: 1.55rem;

    font-weight: 750;

    line-height: 1;

    letter-spacing: -0.055em;

    margin-left: -5px;

}



.brand-name > span {

    color: #1D76EE;

}



.site-nav {

    background: #081522;

}



@media (min-width: 760px) {

    .brand-symbol {

        width: 44px;

        height: 44px;

    }



    .brand-name {

        font-size: 1.7rem;

    }

}
/* ==================================================
   Städpriskalkylator
   ================================================== */

.cleaning-fields {
    grid-template-columns: 1fr;
}

.select-control {
    width: 100%;
    min-height: 50px;
    padding: 11px 38px 11px 13px;
    border: 1px solid #bccadd;
    border-radius: 12px;
    outline: 0;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
}

.select-control:focus {
    border-color: var(--blue);
    box-shadow:
        0 0 0 3px rgba(39, 120, 237, 0.14);
}

.switch-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--soft);
    cursor: pointer;
}

.switch-row input {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin: 3px 0 0;
    accent-color: var(--blue);
}

.switch-row span {
    display: block;
    font-weight: 750;
}

.switch-row small {
    display: block;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.45;
}

.cleaning-results {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.cleaning-results > div {
    min-width: 0;
}

.cleaning-results strong {
    display: block;
    line-height: 1.3;
}


/* ==================================================
   Prisblock
   ================================================== */

.price-cards {
    display: grid;
    gap: 14px;
    margin: 24px 0 34px;
}

.price-card {
    padding: 19px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.price-card h3 {
    margin-bottom: 5px;
}

.price-card p {
    margin: 0;
}

.price-card strong {
    color: var(--navy);
}


/* ==================================================
   Större skärmar
   ================================================== */

@media (min-width: 760px) {

    .cleaning-fields {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .price-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ==================================================
   Små mobiler
   ================================================== */

@media (max-width: 400px) {

    .cleaning-results {
        grid-template-columns: 1fr;
    }

}   
/* ==================================================
   Hantverkarkalkylator
   ================================================== */

.trades-fields {
    grid-template-columns: 1fr;
}

.trades-results {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.trades-results > div {
    min-width: 0;
}

.trades-results strong {
    display: block;
    line-height: 1.3;
}


/* ==================================================
   Pristabell och innehåll
   ================================================== */

.table-note {
    margin-top: 13px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.55;
}

.number-list {
    display: grid;
    gap: 10px;
    padding-left: 24px;
}

.number-list li {
    padding-left: 5px;
}


/* ==================================================
   Större skärmar
   ================================================== */

@media (min-width: 760px) {

    .trades-fields {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .trades-fields .field-wide {
        grid-column: 1 / -1;
    }

}


/* ==================================================
   Små mobiler
   ================================================== */

@media (max-width: 400px) {

    .trades-results {
        grid-template-columns: 1fr;
    }

}
/* ==================================================
   Annons i blå introduktion
   ================================================== */

.intro-ad {
    width: 100%;
    max-width: 610px;
    margin-top: 30px;
}

.intro-ad .ad-label {
    display: block;
    margin-bottom: 6px;
    color: #91a7c1;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.intro-ad-placeholder {
    width: 100%;
    min-height: 180px;
    border: 1px dashed rgba(
        255,
        255,
        255,
        0.25
    );
    border-radius: 14px;
    background: rgba(
        255,
        255,
        255,
        0.055
    );
}

.intro-adsbygoogle {
    display: block;
    width: 100%;
    min-height: 180px;
}


/* Desktop */

@media (min-width: 760px) {

    .intro-ad {
        margin-top: 36px;
    }

    .intro-ad-placeholder,
    .intro-adsbygoogle {
        min-height: 250px;
    }

}