.elementor-163 .elementor-element.elementor-element-b1407bb{--display:flex;}.elementor-163 .elementor-element.elementor-element-cf81ff0{--display:flex;}.elementor-163 .elementor-element.elementor-element-0ff9822{--display:flex;}.elementor-163 .elementor-element.elementor-element-2bcf8e5{--display:flex;}.elementor-163 .elementor-element.elementor-element-fac8ad7{--display:flex;}/* Start custom CSS *//* =========================================================
   NORRFIX24 – GLOBAL STYLESHEET
   Version 1.0
   ========================================================= */


/* =========================================================
   1. DESIGNVARIABLER
   Ändra färger, bredd och rundningar här.
   ========================================================= */

:root {
    --nf24-green: #19a765;
    --nf24-green-dark: #128251;
    --nf24-green-light: #eaf8f1;

    --nf24-dark: #182129;
    --nf24-dark-soft: #222e37;
    --nf24-text: #1d2933;
    --nf24-text-light: #5f6d76;

    --nf24-white: #ffffff;
    --nf24-light: #f4f7f6;
    --nf24-border: #dce5e1;

    --nf24-warning: #f5a623;

    --nf24-max-width: 1200px;
    --nf24-content-width: 760px;

    --nf24-radius-small: 8px;
    --nf24-radius: 14px;
    --nf24-radius-large: 24px;

    --nf24-shadow-small: 0 6px 18px rgba(16, 35, 28, 0.08);
    --nf24-shadow: 0 18px 45px rgba(16, 35, 28, 0.12);

    --nf24-transition: 180ms ease;
}


/* =========================================================
   2. GRUNDSTIL
   ========================================================= */

.nf24-page,
.nf24-page *,
.nf24-section,
.nf24-section * {
    box-sizing: border-box;
}

.nf24-page,
.nf24-section {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--nf24-text);
}

.nf24-page {
    width: 100%;
    overflow: hidden;
    background: var(--nf24-white);
}

.nf24-section {
    position: relative;
    width: 100%;
    padding: 88px 24px;
}

.nf24-section--light {
    background: var(--nf24-light);
}

.nf24-section--white {
    background: var(--nf24-white);
}

.nf24-section--dark {
    background: var(--nf24-dark);
    color: var(--nf24-white);
}

.nf24-container {
    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
}

.nf24-content {
    width: 100%;
    max-width: var(--nf24-content-width);
    margin: 0 auto;
}

.nf24-center {
    text-align: center;
}

.nf24-hidden {
    display: none !important;
}


/* =========================================================
   3. TYPOGRAFI
   ========================================================= */

.nf24-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--nf24-green);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf24-heading {
    margin: 0;
    color: var(--nf24-text);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.nf24-heading--medium {
    font-size: clamp(30px, 4vw, 48px);
}

.nf24-heading--small {
    font-size: clamp(25px, 3vw, 36px);
}

.nf24-section--dark .nf24-heading {
    color: var(--nf24-white);
}

.nf24-lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--nf24-text-light);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 450;
    line-height: 1.55;
}

.nf24-center .nf24-lead {
    margin-left: auto;
    margin-right: auto;
}

.nf24-section--dark .nf24-lead {
    color: rgba(255, 255, 255, 0.78);
}

.nf24-text {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 17px;
    line-height: 1.7;
}

.nf24-section--dark .nf24-text {
    color: rgba(255, 255, 255, 0.76);
}

.nf24-highlight {
    color: var(--nf24-green);
}


/* =========================================================
   4. KNAPPAR
   ========================================================= */

.nf24-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.nf24-center .nf24-buttons {
    justify-content: center;
}

.nf24-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: var(--nf24-radius-small);

    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;

    cursor: pointer;
    transition:
        transform var(--nf24-transition),
        background-color var(--nf24-transition),
        border-color var(--nf24-transition),
        box-shadow var(--nf24-transition);
}

.nf24-button:hover {
    transform: translateY(-2px);
}

.nf24-button:focus-visible {
    outline: 3px solid rgba(25, 167, 101, 0.28);
    outline-offset: 3px;
}

.nf24-button--primary {
    background: var(--nf24-green);
    color: var(--nf24-white) !important;
    box-shadow: 0 10px 25px rgba(25, 167, 101, 0.25);
}

.nf24-button--primary:hover {
    background: var(--nf24-green-dark);
    color: var(--nf24-white) !important;
}

.nf24-button--secondary {
    border-color: var(--nf24-border);
    background: var(--nf24-white);
    color: var(--nf24-text) !important;
}

.nf24-button--secondary:hover {
    border-color: var(--nf24-green);
    color: var(--nf24-green-dark) !important;
}

.nf24-button--dark {
    background: var(--nf24-dark);
    color: var(--nf24-white) !important;
}

.nf24-button--dark:hover {
    background: var(--nf24-dark-soft);
}

.nf24-button--large {
    min-height: 62px;
    padding: 17px 30px;
    font-size: 19px;
}

.nf24-button--full {
    width: 100%;
}


/* =========================================================
   5. HEADER
   ========================================================= */

.nf24-header {
    position: relative;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(220, 229, 225, 0.9);
    background: rgba(255, 255, 255, 0.96);
}

.nf24-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
    padding: 14px 24px;
}

.nf24-logo {
    display: inline-flex;
    align-items: baseline;
    color: var(--nf24-dark) !important;
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
    text-decoration: none !important;
}

.nf24-logo__fix {
    color: var(--nf24-green);
}

.nf24-logo__24 {
    margin-left: 2px;
    color: var(--nf24-dark);
}

.nf24-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.nf24-header__status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.nf24-header__status-label {
    color: var(--nf24-text-light);
    font-size: 13px;
    font-weight: 650;
}

.nf24-header__phone {
    color: var(--nf24-dark) !important;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none !important;
}

.nf24-header__phone:hover {
    color: var(--nf24-green) !important;
}


/* =========================================================
   6. HERO
   ========================================================= */

.nf24-hero {
    position: relative;
    display: flex;
    min-height: 680px;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(24, 33, 41, 0.98) 0%,
            rgba(24, 33, 41, 0.93) 42%,
            rgba(24, 33, 41, 0.58) 68%,
            rgba(24, 33, 41, 0.25) 100%
        );
    color: var(--nf24-white);
}

.nf24-hero__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.nf24-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(25, 167, 101, 0.18),
            transparent 38%
        );
}

.nf24-hero__inner {
    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
    padding: 100px 24px;
}

.nf24-hero__content {
    width: 100%;
    max-width: 700px;
}

.nf24-hero .nf24-heading {
    color: var(--nf24-white);
}

.nf24-hero .nf24-lead {
    color: rgba(255, 255, 255, 0.84);
}

.nf24-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 30px;
}

.nf24-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 700;
}

.nf24-hero__trust-item::before {
    content: "✓";
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--nf24-green);
    color: var(--nf24-white);
    font-size: 14px;
    font-weight: 900;
}


/* =========================================================
   7. SNABBVAL / VANLIGA STOPP
   ========================================================= */

.nf24-problems {
    position: relative;
    z-index: 5;
    margin-top: -55px;
    padding: 0 24px 40px;
}

.nf24-problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
}

.nf24-problem-card {
    display: flex;
    min-height: 150px;
    align-items: center;
    gap: 18px;

    padding: 26px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow-small);

    color: var(--nf24-text) !important;
    text-decoration: none !important;

    transition:
        transform var(--nf24-transition),
        border-color var(--nf24-transition),
        box-shadow var(--nf24-transition);
}

.nf24-problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(25, 167, 101, 0.55);
    box-shadow: var(--nf24-shadow);
}

.nf24-problem-card__icon {
    display: inline-flex;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--nf24-green-light);
    color: var(--nf24-green-dark);

    font-size: 28px;
}

.nf24-problem-card__title {
    margin: 0 0 6px;
    color: var(--nf24-text);
    font-size: 21px;
    font-weight: 850;
    line-height: 1.2;
}

.nf24-problem-card__text {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   8. KORT OCH RUTNÄT
   ========================================================= */

.nf24-grid {
    display: grid;
    gap: 24px;
    margin-top: 46px;
}

.nf24-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nf24-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nf24-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nf24-card {
    padding: 30px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow-small);
}

.nf24-card__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--nf24-green-light);
    color: var(--nf24-green-dark);

    font-size: 25px;
    font-weight: 900;
}

.nf24-card__title {
    margin: 0 0 10px;
    color: var(--nf24-text);
    font-size: 22px;
    font-weight: 850;
    line-height: 1.3;
}

.nf24-card__text {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   9. SÅ GÅR DET TILL
   ========================================================= */

.nf24-process {
    counter-reset: nf24-step;
}

.nf24-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.nf24-process__step {
    position: relative;
    padding: 32px 28px;
    border-radius: var(--nf24-radius);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow-small);
}

.nf24-process__step::before {
    counter-increment: nf24-step;
    content: counter(nf24-step);

    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--nf24-green);
    color: var(--nf24-white);

    font-size: 18px;
    font-weight: 900;
}

.nf24-process__title {
    margin: 0 0 9px;
    font-size: 22px;
    font-weight: 850;
}

.nf24-process__text {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   10. PRISRUTA
   ========================================================= */

.nf24-price-box {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;

    margin-top: 46px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius-large);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow);
}

.nf24-price-box__content {
    padding: 46px;
}

.nf24-price-box__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 46px;
    background: var(--nf24-dark);
    color: var(--nf24-white);
}

.nf24-price-box__label {
    margin: 0 0 10px;
    color: var(--nf24-green);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf24-price-box__price {
    margin: 0;
    color: var(--nf24-white);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.nf24-price-box__note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   11. CHECKLISTOR
   ========================================================= */

.nf24-checklist {
    display: grid;
    gap: 13px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.nf24-checklist li {
    position: relative;
    padding-left: 32px;
    color: var(--nf24-text);
    font-size: 16px;
    line-height: 1.55;
}

.nf24-checklist li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;

    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--nf24-green-light);
    color: var(--nf24-green-dark);

    font-size: 14px;
    font-weight: 900;
}

.nf24-section--dark .nf24-checklist li {
    color: rgba(255, 255, 255, 0.86);
}


/* =========================================================
   12. FAQ
   ========================================================= */

.nf24-faq {
    width: 100%;
    max-width: 860px;
    margin: 44px auto 0;
}

.nf24-faq__item {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius-small);
    background: var(--nf24-white);
}

.nf24-faq__question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 21px 24px;
    border: 0;
    background: transparent;
    color: var(--nf24-text);

    font-family: inherit;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;

    cursor: pointer;
}

.nf24-faq__question:hover {
    color: var(--nf24-green-dark);
}

.nf24-faq__answer {
    padding: 0 24px 22px;
    color: var(--nf24-text-light);
    font-size: 16px;
    line-height: 1.7;
}

.nf24-faq details summary {
    list-style: none;
}

.nf24-faq details summary::-webkit-details-marker {
    display: none;
}

.nf24-faq details summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--nf24-green);
    font-size: 26px;
    font-weight: 500;
}

.nf24-faq details[open] summary::after {
    content: "−";
}


/* =========================================================
   13. KONTAKT / CTA
   ========================================================= */

.nf24-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--nf24-radius-large);
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(25, 167, 101, 0.28),
            transparent 35%
        ),
        var(--nf24-dark);
    color: var(--nf24-white);
}

.nf24-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 52px;
}

.nf24-cta .nf24-heading {
    color: var(--nf24-white);
}

.nf24-cta .nf24-text {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   14. FORMULÄR
   ========================================================= */

.nf24-form {
    display: grid;
    gap: 18px;
}

.nf24-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nf24-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--nf24-text);
    font-size: 14px;
    font-weight: 750;
}

.nf24-form input,
.nf24-form textarea,
.nf24-form select {
    width: 100%;
    min-height: 52px;

    padding: 13px 15px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius-small);
    background: var(--nf24-white);
    color: var(--nf24-text);

    font-family: inherit;
    font-size: 16px;

    transition:
        border-color var(--nf24-transition),
        box-shadow var(--nf24-transition);
}

.nf24-form textarea {
    min-height: 130px;
    resize: vertical;
}

.nf24-form input:focus,
.nf24-form textarea:focus,
.nf24-form select:focus {
    border-color: var(--nf24-green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(25, 167, 101, 0.12);
}


/* =========================================================
   15. FOOTER
   ========================================================= */

.nf24-footer {
    padding: 34px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #111820;
    color: rgba(255, 255, 255, 0.72);
}

.nf24-footer__inner {
    display: flex;
    width: 100%;
    max-width: var(--nf24-max-width);
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin: 0 auto;
}

.nf24-footer__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.nf24-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.nf24-footer__links a {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 14px;
    text-decoration: none !important;
}

.nf24-footer__links a:hover {
    color: var(--nf24-green) !important;
}


/* =========================================================
   16. MOBIL RINGKNAPP
   Visas endast på mindre skärmar.
   ========================================================= */

.nf24-mobile-call {
    position: fixed;
    z-index: 999;
    right: 14px;
    bottom: 14px;
    left: 14px;

    display: none;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 20px;
    border-radius: 12px;
    background: var(--nf24-green);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);

    color: var(--nf24-white) !important;
    font-size: 18px;
    font-weight: 850;
    text-decoration: none !important;
}


/* =========================================================
   17. ELEMENTOR-JUSTERINGAR
   ========================================================= */

/* Tar bort oönskat mellanrum runt HTML-widgetar. */
.elementor-widget-html .elementor-widget-container {
    width: 100%;
}

/* Gör HTML-sektionerna fullbredd när sidlayouten tillåter det. */
.nf24-full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Minskar risken för horisontell scroll. */
body {
    overflow-x: hidden;
}


/* =========================================================
   18. SURFPLATTA
   ========================================================= */

@media (max-width: 1024px) {

    .nf24-section {
        padding: 72px 22px;
    }

    .nf24-header__inner {
        padding-right: 22px;
        padding-left: 22px;
    }

    .nf24-hero {
        min-height: 620px;
    }

    .nf24-hero__inner {
        padding: 84px 22px;
    }

    .nf24-problems {
        padding-right: 22px;
        padding-left: 22px;
    }

    .nf24-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nf24-price-box {
        grid-template-columns: 1fr;
    }

    .nf24-price-box__aside {
        align-items: flex-start;
    }
}


/* =========================================================
   19. MOBIL
   ========================================================= */

@media (max-width: 767px) {

    .nf24-section {
        padding: 58px 18px;
    }

    .nf24-header__inner {
        min-height: 68px;
        padding: 11px 18px;
    }

    .nf24-logo {
        font-size: 24px;
    }

    .nf24-header__status {
        display: none;
    }

    .nf24-header__right .nf24-button {
        min-height: 44px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .nf24-hero {
        min-height: auto;
        background:
            linear-gradient(
                180deg,
                rgba(24, 33, 41, 0.94) 0%,
                rgba(24, 33, 41, 0.88) 100%
            );
    }

    .nf24-hero__background {
        object-position: 65% center;
    }

    .nf24-hero__inner {
        padding: 82px 18px 100px;
    }

    .nf24-heading {
        font-size: clamp(36px, 12vw, 49px);
        letter-spacing: -0.05em;
    }

    .nf24-heading--medium {
        font-size: 34px;
    }

    .nf24-heading--small {
        font-size: 28px;
    }

    .nf24-lead {
        margin-top: 18px;
        font-size: 18px;
        line-height: 1.55;
    }

    .nf24-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .nf24-buttons .nf24-button {
        width: 100%;
    }

    .nf24-hero__trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .nf24-problems {
        margin-top: -44px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .nf24-problems__grid,
    .nf24-grid--2,
    .nf24-grid--3,
    .nf24-grid--4,
    .nf24-process__grid,
    .nf24-price-box,
    .nf24-cta__inner,
    .nf24-form__row {
        grid-template-columns: 1fr;
    }

    .nf24-problems__grid {
        gap: 12px;
    }

    .nf24-problem-card {
        min-height: 112px;
        padding: 20px;
    }

    .nf24-problem-card__icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

    .nf24-card,
    .nf24-process__step {
        padding: 25px 22px;
    }

    .nf24-price-box__content,
    .nf24-price-box__aside {
        padding: 32px 24px;
    }

    .nf24-cta__inner {
        padding: 36px 25px;
    }

    .nf24-footer {
        padding-bottom: 92px;
    }

    .nf24-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nf24-mobile-call {
        display: flex;
    }
}


/* =========================================================
   20. MYCKET SMÅ MOBILER
   ========================================================= */

@media (max-width: 380px) {

    .nf24-header__right .nf24-button {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 13px;
    }

    .nf24-logo {
        font-size: 22px;
    }

    .nf24-heading {
        font-size: 34px;
    }
}


/* =========================================================
   21. MINSKAD RÖRELSE FÖR TILLGÄNGLIGHET
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nf24-button,
    .nf24-problem-card,
    .nf24-form input,
    .nf24-form textarea,
    .nf24-form select {
        transition: none;
    }

    .nf24-button:hover,
    .nf24-problem-card:hover {
        transform: none;
    }
}

/* =========================================================
   HEADER – BILDLOGOTYP
   ========================================================= */

.nf24-header__logo-link {
    display: inline-flex;
    flex: 0 1 360px;
    align-items: center;
    text-decoration: none !important;
}

.nf24-header__logo-image {
    display: block;
    width: 100%;
    max-width: 360px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
}

.nf24-header__call {
    white-space: nowrap;
}

.nf24-call-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .nf24-header__logo-link {
        flex-basis: 300px;
    }

    .nf24-header__logo-image {
        max-width: 300px;
        height: 56px;
    }
}

@media (max-width: 767px) {
    .nf24-header__inner {
        gap: 12px;
    }

    .nf24-header__logo-link {
        flex: 1 1 auto;
        min-width: 0;
    }

    .nf24-header__logo-image {
        width: auto;
        max-width: 205px;
        height: 48px;
    }

    .nf24-header__call {
        flex: 0 0 auto;
    }

    .nf24-header__call .nf24-call-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 430px) {
    .nf24-header__logo-image {
        max-width: 170px;
        height: 42px;
    }

    .nf24-header__call {
        min-height: 42px;
        padding: 9px 12px;
        font-size: 14px;
    }
}

/* =========================================================
   HERO MED BAKGRUNDSBILD
   ========================================================= */

.nf24-hero {
    position: relative;
    display: flex;
    min-height: 680px;
    align-items: center;
    overflow: hidden;
    background: var(--nf24-dark);
    color: var(--nf24-white);
}

.nf24-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.nf24-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(12, 22, 29, 0.98) 0%,
            rgba(12, 22, 29, 0.94) 27%,
            rgba(12, 22, 29, 0.79) 47%,
            rgba(12, 22, 29, 0.35) 68%,
            rgba(12, 22, 29, 0.08) 100%
        );
}

.nf24-hero__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
    padding: 100px 24px;
}

.nf24-hero__content {
    width: 100%;
    max-width: 700px;
}

.nf24-hero .nf24-heading {
    color: var(--nf24-white);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.22);
}

.nf24-hero .nf24-lead {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nf24-hero .nf24-eyebrow {
    color: var(--nf24-green);
}

.nf24-call-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: currentColor;
}


/* =========================================================
   HERO – SURFPLATTA
   ========================================================= */

@media (max-width: 1024px) {

    .nf24-hero {
        min-height: 620px;
    }

    .nf24-hero__background {
        object-position: 58% center;
    }

    .nf24-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(12, 22, 29, 0.97) 0%,
                rgba(12, 22, 29, 0.9) 42%,
                rgba(12, 22, 29, 0.52) 72%,
                rgba(12, 22, 29, 0.18) 100%
            );
    }

    .nf24-hero__inner {
        padding: 84px 22px;
    }

    .nf24-hero__content {
        max-width: 620px;
    }
}


/* =========================================================
   HERO – MOBIL
   ========================================================= */

@media (max-width: 767px) {

    .nf24-hero {
        min-height: 670px;
        align-items: flex-end;
    }

    .nf24-hero__background {
        object-position: 66% center;
    }

    .nf24-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(12, 22, 29, 0.28) 0%,
                rgba(12, 22, 29, 0.62) 35%,
                rgba(12, 22, 29, 0.94) 66%,
                rgba(12, 22, 29, 0.99) 100%
            );
    }

    .nf24-hero__inner {
        padding: 210px 18px 96px;
    }

    .nf24-hero__content {
        max-width: 100%;
    }
}

/* =========================================================
   PRISBAROMETER
   ========================================================= */

.nf24-price-header {
    margin-bottom: 42px;
}

.nf24-price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
    align-items: stretch;
}

.nf24-price-main {
    padding: 28px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow-small);
}

.nf24-price-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--nf24-text);
    font-size: 19px;
    line-height: 1.3;
}

.nf24-price-title__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--nf24-green-light);
    color: var(--nf24-green-dark);
    font-size: 25px;
}

.nf24-price-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.nf24-price-card {
    padding: 26px 22px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius);
    text-align: center;
}

.nf24-price-card--day {
    border-color: rgba(25, 167, 101, 0.3);
    background: linear-gradient(180deg, #f5fcf8 0%, #ffffff 100%);
    color: #187b4e;
}

.nf24-price-card--evening {
    border-color: rgba(222, 163, 30, 0.32);
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    color: #b47800;
}

.nf24-price-card--jour {
    border-color: rgba(217, 67, 54, 0.28);
    background: linear-gradient(180deg, #fff5f3 0%, #ffffff 100%);
    color: #c83227;
}

.nf24-price-card__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: currentColor;
    color: var(--nf24-white);
    font-size: 27px;
}

.nf24-price-card__title {
    margin: 0;
    color: currentColor;
    font-size: 22px;
    font-weight: 850;
}

.nf24-price-card__time {
    min-height: 44px;
    margin: 8px 0 20px;
    color: var(--nf24-text);
    font-size: 15px;
    line-height: 1.45;
}

.nf24-price-card__amount {
    margin: 0;
    color: currentColor;
    font-size: clamp(26px, 2.4vw, 37px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.nf24-price-card__rot {
    margin: 7px 0 20px;
    color: var(--nf24-text-light);
    font-size: 14px;
}

.nf24-price-card__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--nf24-border);
    list-style: none;
    text-align: left;
}

.nf24-price-card__list li {
    position: relative;
    padding-left: 25px;
    color: var(--nf24-text);
    font-size: 15px;
}

.nf24-price-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: currentColor;
    font-weight: 900;
}

.nf24-price-assurance {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(25, 167, 101, 0.28);
    border-radius: var(--nf24-radius-small);
    background: var(--nf24-green-light);
}

.nf24-price-assurance__icon {
    display: inline-flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--nf24-green-dark);
    color: var(--nf24-white);
    font-weight: 900;
}

.nf24-price-assurance strong {
    display: block;
    margin-bottom: 4px;
    color: var(--nf24-text);
    font-size: 17px;
}

.nf24-price-assurance p {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   KAMERATILLÄGG
   ========================================================= */

.nf24-camera-addon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 26px;
    border: 1px solid #cfdaf0;
    border-radius: var(--nf24-radius);
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
    text-align: center;
    box-shadow: var(--nf24-shadow-small);
}

.nf24-camera-addon__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #eaf1ff;
    color: #164a9c;
    font-size: 28px;
}

.nf24-camera-addon__label {
    margin-bottom: 20px;
    color: #164a9c;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf24-camera-addon h3 {
    margin: 0 0 15px;
    color: var(--nf24-text);
    font-size: 23px;
    line-height: 1.25;
}

.nf24-camera-addon p {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 15px;
    line-height: 1.65;
}

.nf24-camera-addon__price {
    width: 100%;
    margin-top: 26px;
    padding: 20px;
    border-radius: var(--nf24-radius-small);
    background: #eaf1ff;
    color: #164a9c;
}

.nf24-camera-addon__price strong {
    display: block;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.nf24-camera-addon__price span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
}


/* =========================================================
   AVLOPPSDIAGNOS
   ========================================================= */

.nf24-diagnosis {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 36px;
    align-items: stretch;
    overflow: hidden;
    padding: 42px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius-large);
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(22, 74, 156, 0.08),
            transparent 34%
        ),
        var(--nf24-white);
    box-shadow: var(--nf24-shadow-small);
}

.nf24-diagnosis__content {
    align-self: center;
}

.nf24-diagnosis__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.nf24-diagnosis__list li {
    position: relative;
    padding-left: 30px;
    color: var(--nf24-text);
    font-size: 16px;
    line-height: 1.5;
}

.nf24-diagnosis__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #164a9c;
    font-size: 18px;
    font-weight: 900;
}

.nf24-diagnosis__disclaimer {
    margin: 26px 0 0;
    padding: 16px 18px;
    border-left: 4px solid #164a9c;
    background: #f5f8fd;
    color: var(--nf24-text-light);
    font-size: 14px;
    line-height: 1.6;
}

.nf24-diagnosis__price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 28px;
    border: 1px solid #cfdaf0;
    border-radius: var(--nf24-radius);
    background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%);
    text-align: center;
}

.nf24-diagnosis__price-label {
    color: #164a9c;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.nf24-diagnosis__visit {
    margin-top: 7px;
    color: var(--nf24-text-light);
    font-size: 14px;
    font-weight: 700;
}

.nf24-diagnosis__price {
    margin-top: 28px;
    color: #164a9c;
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.nf24-diagnosis__fixed {
    margin: 10px 0 28px;
    color: #164a9c;
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
}


/* =========================================================
   KORRIGERADE PRISIKONER
   ========================================================= */

.nf24-price-card__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    color: var(--nf24-white);
}

.nf24-price-card--day .nf24-price-card__icon {
    background: #198754;
}

.nf24-price-card--evening .nf24-price-card__icon {
    background: #e7a600;
}

.nf24-price-card--jour .nf24-price-card__icon {
    background: #dc392f;
}

.nf24-price-card__icon svg,
.nf24-camera-addon__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nf24-camera-addon__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #eaf1ff;
    color: #164a9c;
}

/* =========================================================
   INGA DOLDA AVGIFTER
   ========================================================= */

.nf24-no-fees {
    padding: 0 24px 72px;
    background: var(--nf24-light);
}

.nf24-no-fees__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: center;

    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
    padding: 28px 32px;

    border: 1px solid rgba(25, 167, 101, 0.3);
    border-radius: var(--nf24-radius);
    background:
        linear-gradient(
            135deg,
            rgba(234, 248, 241, 0.95),
            rgba(255, 255, 255, 0.98)
        );
    box-shadow: var(--nf24-shadow-small);
}

.nf24-no-fees__icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--nf24-green);
    color: var(--nf24-white);
}

.nf24-no-fees__icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nf24-no-fees__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--nf24-green-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nf24-no-fees__content h3 {
    margin: 0;
    color: var(--nf24-text);
    font-size: 25px;
    font-weight: 900;
    line-height: 1.2;
}

.nf24-no-fees__content p {
    max-width: 650px;
    margin: 8px 0 0;
    color: var(--nf24-text-light);
    font-size: 15px;
    line-height: 1.6;
}

.nf24-no-fees__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nf24-no-fees__list li {
    position: relative;
    padding-left: 26px;
    color: var(--nf24-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.nf24-no-fees__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--nf24-green);
    font-size: 17px;
    font-weight: 900;
}

@media (max-width: 1024px) {
    .nf24-no-fees__inner {
        grid-template-columns: auto 1fr;
    }

    .nf24-no-fees__list {
        grid-column: 1 / -1;
        padding-left: 82px;
    }
}

@media (max-width: 767px) {
    .nf24-no-fees {
        padding: 0 18px 58px;
    }

    .nf24-no-fees__inner {
        grid-template-columns: 1fr;
        padding: 25px 22px;
    }

    .nf24-no-fees__list {
        grid-column: auto;
        grid-template-columns: 1fr;
        padding-left: 0;
    }
}

/* =========================================================
   OM STOPPET INTE KAN AVHJÄLPAS
   ========================================================= */

.nf24-diagnostic-policy {
    padding: 0 24px 72px;
    background: var(--nf24-light);
}

.nf24-diagnostic-policy__inner {
    display: flex;
    align-items: center;
    gap: 22px;

    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
    padding: 25px 30px;

    border: 1px solid rgba(22, 74, 156, 0.24);
    border-radius: var(--nf24-radius);
    background: linear-gradient(135deg, #f2f6fd 0%, #ffffff 100%);
    box-shadow: var(--nf24-shadow-small);
}

.nf24-diagnostic-policy__icon {
    display: inline-flex;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #164a9c;
    color: #ffffff;
}

.nf24-diagnostic-policy__icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nf24-diagnostic-policy__label {
    display: block;
    margin-bottom: 5px;
    color: #164a9c;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nf24-diagnostic-policy__content h3 {
    margin: 0;
    color: var(--nf24-text);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
}

.nf24-diagnostic-policy__content p {
    max-width: 900px;
    margin: 8px 0 0;
    color: var(--nf24-text-light);
    font-size: 15px;
    line-height: 1.65;
}

.nf24-diagnostic-policy__content strong {
    color: var(--nf24-text);
    font-weight: 850;
}

@media (max-width: 767px) {
    .nf24-diagnostic-policy {
        padding: 0 18px 58px;
    }

    .nf24-diagnostic-policy__inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px 22px;
    }
}

/* =========================================================
   AKUT MOBILFIX – PRISSEKTION
   ========================================================= */

@media (max-width: 767px) {

    #priser .nf24-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    #priser .nf24-price-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px !important;
    }

    #priser .nf24-price-main {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 18px !important;
    }

    #priser .nf24-price-cards {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 14px !important;
    }

    #priser .nf24-price-card {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
    }

    #priser .nf24-camera-addon {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        min-height: auto !important;
        padding: 28px 22px !important;
        margin: 0 !important;
    }

    #priser .nf24-camera-addon__price {
        width: 100% !important;
        max-width: none !important;
    }

    #priser .nf24-price-title {
        width: 100% !important;
        font-size: 17px !important;
    }

    #priser .nf24-price-header {
        margin-bottom: 28px !important;
    }

    #priser .nf24-heading {
        font-size: 42px !important;
        line-height: 1.08 !important;
    }

    #priser .nf24-lead {
        font-size: 20px !important;
        line-height: 1.5 !important;
    }
}

/* =========================================================
   MOBILFIX – AVLOPPSDIAGNOS
   ========================================================= */

@media (max-width: 767px) {

    #avloppsdiagnos .nf24-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    #avloppsdiagnos .nf24-diagnosis {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        min-width: 0 !important;
        gap: 24px !important;
        padding: 26px 22px !important;
    }

    #avloppsdiagnos .nf24-diagnosis__content {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    #avloppsdiagnos .nf24-diagnosis__price-box {
        display: flex !important;
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 28px 22px !important;
        transform: none !important;
    }

    #avloppsdiagnos .nf24-diagnosis__list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    #avloppsdiagnos .nf24-heading {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 36px !important;
        line-height: 1.08 !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    #avloppsdiagnos .nf24-lead,
    #avloppsdiagnos .nf24-diagnosis__disclaimer {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* =========================================================
   CALLBACK POPUP
   ========================================================= */

body.nf24-modal-open {
    overflow: hidden;
}

.nf24-callback-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 180ms ease,
        visibility 180ms ease;
}

.nf24-callback-modal--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nf24-callback-modal__backdrop {
    position: absolute;
    inset: 0;

    background: rgba(7, 15, 20, 0.78);
    backdrop-filter: blur(5px);
}

.nf24-callback-modal__dialog {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;

    padding: 38px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;

    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0,0,0,.32);

    transform: translateY(15px) scale(.98);
    transition: transform 180ms ease;
}

.nf24-callback-modal--open .nf24-callback-modal__dialog {
    transform: translateY(0) scale(1);
}

.nf24-callback-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;

    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f1f4f3;
    color: var(--nf24-text);

    font-size: 28px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;
}

.nf24-callback-modal__close:hover {
    background: #e5ebe8;
}

.nf24-callback-modal__icon {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;
    background: var(--nf24-green);
    color: #ffffff;
}

.nf24-callback-modal__icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.nf24-callback-modal__eyebrow {
    display: block;

    margin-bottom: 8px;

    color: var(--nf24-green-dark);

    font-size: 13px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.nf24-callback-modal h2 {
    margin: 0;

    color: var(--nf24-text);

    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.nf24-callback-modal__intro {
    margin: 14px 0 20px;

    color: var(--nf24-text-light);

    font-size: 17px;
    line-height: 1.6;
}

.nf24-callback-modal__urgent {
    margin-bottom: 24px;
    padding: 16px 18px;

    border-left: 4px solid var(--nf24-green);
    border-radius: 8px;

    background: var(--nf24-green-light);
    color: var(--nf24-text);

    font-size: 15px;
    line-height: 1.55;
}

.nf24-callback-modal__urgent strong {
    display: block;
    margin-bottom: 3px;
}

.nf24-callback-modal__urgent a {
    color: var(--nf24-green-dark) !important;
    font-weight: 850;
    text-decoration: none !important;
}

.nf24-callback-form-placeholder {
    padding: 22px;

    border: 2px dashed var(--nf24-border);
    border-radius: 12px;

    background: var(--nf24-light);
    color: var(--nf24-text-light);

    font-size: 15px;
    line-height: 1.8;
}


/* MOBIL */

@media (max-width: 767px) {

    .nf24-callback-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .nf24-callback-modal__dialog {
        max-height: calc(100vh - 24px);
        padding: 30px 22px 25px;
        border-radius: 20px;
    }

    .nf24-callback-modal h2 {
        font-size: 30px;
    }

}

/* =========================================================
   NORRFIX24 – ELEMENTOR POPUP FORM
   ========================================================= */

.elementor-popup-modal .dialog-widget-content {
    border-radius: 22px !important;
    overflow: hidden !important;
    box-shadow: 0 30px 90px rgba(0,0,0,.32) !important;
}

.elementor-popup-modal .dialog-message {
    padding: 36px 38px !important;
}

.elementor-popup-modal .elementor-form {
    display: grid;
    gap: 14px;
}

.elementor-popup-modal .elementor-field-group {
    margin-bottom: 0 !important;
}

.elementor-popup-modal .elementor-field-label {
    margin-bottom: 6px !important;
    color: #1d2933 !important;
    font-size: 14px !important;
    font-weight: 750 !important;
}

.elementor-popup-modal .elementor-field {
    min-height: 52px !important;
    padding: 13px 15px !important;

    border: 1px solid #dce5e1 !important;
    border-radius: 9px !important;

    background: #ffffff !important;
    color: #1d2933 !important;

    font-size: 16px !important;

    box-shadow: none !important;
}

.elementor-popup-modal textarea.elementor-field {
    min-height: 110px !important;
    resize: vertical;
}

.elementor-popup-modal .elementor-field:focus {
    border-color: #19a765 !important;
    box-shadow: 0 0 0 4px rgba(25,167,101,.12) !important;
    outline: none !important;
}

.elementor-popup-modal .elementor-button {
    min-height: 54px !important;
    width: 100% !important;

    border-radius: 9px !important;

    background: #19a765 !important;
    color: #ffffff !important;

    font-size: 17px !important;
    font-weight: 850 !important;

    box-shadow: 0 10px 25px rgba(25,167,101,.22) !important;
}

.elementor-popup-modal .elementor-button:hover {
    background: #128251 !important;
}

.elementor-popup-modal .dialog-close-button {
    top: 16px !important;
    right: 16px !important;

    width: 40px !important;
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: #f1f4f3 !important;
    color: #182129 !important;
}

@media (max-width: 767px) {

    .elementor-popup-modal .dialog-widget-content {
        width: calc(100vw - 24px) !important;
        max-width: 520px !important;
    }

    .elementor-popup-modal .dialog-message {
        padding: 28px 22px !important;
    }

}

/* =========================================================
   POPUP INTRO
   ========================================================= */

.nf24-popup-intro {
    margin-bottom: 24px;
}

.nf24-popup-intro__icon {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;
    background: var(--nf24-green);
    color: #ffffff;
}

.nf24-popup-intro__icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.nf24-popup-intro__eyebrow {
    display: block;
    margin-bottom: 7px;

    color: var(--nf24-green-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.nf24-popup-intro h2 {
    margin: 0;

    color: var(--nf24-text);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.nf24-popup-intro__text {
    margin: 14px 0 20px;

    color: var(--nf24-text-light);
    font-size: 17px;
    line-height: 1.6;
}

.nf24-popup-intro__urgent {
    padding: 16px 18px;

    border-left: 4px solid var(--nf24-green);
    border-radius: 8px;

    background: var(--nf24-green-light);
    color: var(--nf24-text);

    font-size: 15px;
    line-height: 1.55;
}

.nf24-popup-intro__urgent strong {
    display: block;
    margin-bottom: 3px;
    font-weight: 850;
}

.nf24-popup-intro__urgent a {
    color: var(--nf24-green-dark) !important;
    font-weight: 850;
    text-decoration: none !important;
}

@media (max-width: 767px) {

    .nf24-popup-intro h2 {
        font-size: 30px;
    }

    .nf24-popup-intro__text {
        font-size: 16px;
    }

}

/* =========================================================
   POPUP – HÖJD + SCROLL + KOMPAKTARE MOBIL
   ========================================================= */

.elementor-popup-modal .dialog-widget-content {
    max-height: calc(100vh - 30px) !important;
    overflow: hidden !important;
}

.elementor-popup-modal .dialog-message {
    max-height: calc(100vh - 30px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* Lite kompaktare intro */
.nf24-popup-intro {
    margin-bottom: 18px;
}

.nf24-popup-intro__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
}

.nf24-popup-intro__icon svg {
    width: 23px;
    height: 23px;
}

.nf24-popup-intro h2 {
    font-size: 31px;
}

.nf24-popup-intro__text {
    margin: 10px 0 15px;
    font-size: 16px;
    line-height: 1.5;
}

.nf24-popup-intro__urgent {
    padding: 13px 16px;
    margin-bottom: 0;
}

/* Kompaktare formulär */
.elementor-popup-modal .elementor-form {
    gap: 9px !important;
}

.elementor-popup-modal .elementor-field-label {
    margin-bottom: 4px !important;
}

.elementor-popup-modal .elementor-field {
    min-height: 46px !important;
    padding: 10px 13px !important;
}

.elementor-popup-modal textarea.elementor-field {
    min-height: 85px !important;
}

.elementor-popup-modal .elementor-button {
    min-height: 48px !important;
}


/* MOBIL */
@media (max-width: 767px) {

    .elementor-popup-modal {
        padding: 10px !important;
    }

    .elementor-popup-modal .dialog-widget-content {
        width: calc(100vw - 20px) !important;
        max-height: calc(100dvh - 20px) !important;
        border-radius: 18px !important;
    }

    .elementor-popup-modal .dialog-message {
        max-height: calc(100dvh - 20px) !important;
        padding: 22px 18px 18px !important;
        overflow-y: auto !important;
    }

    .nf24-popup-intro__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 11px;
    }

    .nf24-popup-intro h2 {
        font-size: 27px;
    }

    .nf24-popup-intro__text {
        font-size: 15px;
    }

    .nf24-popup-intro__urgent {
        padding: 11px 13px;
        font-size: 14px;
    }

    .elementor-popup-modal textarea.elementor-field {
        min-height: 72px !important;
    }

}
/* ===== NorrFix24 huvudmeny ===== */

.nf24-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 40px;
    white-space: nowrap;
}

.nf24-header__nav a {
    color: #172027;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nf24-header__nav a:hover {
    color: #12a866;
}

/* Mobil */
@media (max-width: 767px) {
    .nf24-header__nav {
        width: 100%;
        justify-content: center;
        gap: 24px;
        margin: 10px 0 4px;
        order: 2;
    }

    .nf24-header__nav a {
        font-size: 15px;
    }
}/* End custom CSS */