/**
 * NT DIVI Child — Theme Styles
 *
 * Bygger ovenpå nt-core.css (plugin) som leverer:
 *   - CSS custom properties (:root)
 *   - Card-styles (.nt-case-card, .nt-service-card, .nt-job-card)
 *   - Button-styles (.nt-btn)
 *   - Badge, filter, grid, opening hours
 *
 * Dette stylesheet tilføjer:
 *   - Univers-farvedifferentiering
 *   - Layout (header, footer, sider, sektioner)
 *   - Responsive design
 *   - Galleri/lightbox
 */

/* ═══════════════════════════════════════
   UNIVERS-FARVER
   ═══════════════════════════════════════ */

/* Fælles blå fra firmabilerne — Tømrer og Murer bruger samme accentfarve */
.nt-universe-toemrer {
    --nt-universe-accent: #164C91;
    --nt-universe-accent-hover: #134380;
}

.nt-universe-murer {
    --nt-universe-accent: #164C91;
    --nt-universe-accent-hover: #134380;
}

.nt-universe-global {
    --nt-universe-accent: #164C91;
    --nt-universe-accent-hover: #134380;
}

/* Nye afdelinger (multisite) — N.T.-blå som udgangspunkt.
   Egne accentfarver kan sættes her eller via NT Indstillinger → Design pr. site. */
.nt-universe-jordkloak,
.nt-universe-byggemester,
.nt-universe-pavillon,
.nt-universe-udlejning {
    --nt-universe-accent: #164C91;
    --nt-universe-accent-hover: #134380;
}

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════ */

.nt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nt-container--narrow {
    max-width: 800px;
}

.nt-container--wide {
    max-width: 1400px;
}

.nt-section {
    padding: 5rem 0;
}

.nt-section--light {
    background: var(--nt-bg-light);
}

.nt-section--dark {
    background: var(--nt-primary);
    color: #fff;
}

.nt-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.nt-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nt-primary);
    margin: 0 0 0.75rem;
}

.nt-section--dark .nt-section__title {
    color: #fff;
}

.nt-section__subtitle {
    font-size: 1.1rem;
    color: var(--nt-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.nt-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.nt-two-columns--content-sidebar {
    grid-template-columns: 2fr 1fr;
}

@media (max-width: 767px) {
    .nt-two-columns,
    .nt-two-columns--content-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   SITE HEADER
   ═══════════════════════════════════════ */

.nt-site-header {
    background: #fff;
    border-top: 4px solid var(--nt-universe-accent);
    box-shadow: 0 2px 8px rgba(28, 39, 68, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nt-site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.nt-site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Fast højde = alle universer/logoer fremstår eksakt lige store.
   max-width er kun et nødværn og skal være rigelig, så den aldrig
   klemmer logoet lavere end den faste højde. */
.nt-site-header__logo-img,
.nt-site-header__logo img {
    height: 50px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .nt-site-header__logo-img,
    .nt-site-header__logo img {
        height: 40px;
        max-width: 200px;
    }
}

/* Dual-logo header (fælles sider — viser begge afdelinger) */
.nt-site-header__dual-logos {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
}

.nt-site-header__dual-logos .nt-site-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.4rem 0.75rem;
    border-radius: var(--nt-radius, 8px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.nt-site-header__dual-logos .nt-site-header__logo:hover {
    background: var(--nt-bg-light, #F7F8FA);
    transform: translateY(-1px);
}

.nt-site-header__dual-logos .nt-site-header__logo-img,
.nt-site-header__dual-logos .nt-site-header__logo img {
    height: 38px !important;
    width: auto !important;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.nt-site-header__logo-divider {
    width: 1px;
    height: 28px;
    background: var(--nt-border, #E2E8F0);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .nt-site-header__dual-logos {
        gap: 0.5rem;
    }
    .nt-site-header__dual-logos .nt-site-header__logo {
        padding: 0.3rem 0.5rem;
    }
    .nt-site-header__dual-logos .nt-site-header__logo-img,
    .nt-site-header__dual-logos .nt-site-header__logo img {
        height: 30px !important;
        max-width: 130px;
    }
    .nt-site-header__logo-divider {
        height: 22px;
    }
}

@media (max-width: 480px) {
    .nt-site-header__dual-logos .nt-site-header__logo-img,
    .nt-site-header__dual-logos .nt-site-header__logo img {
        height: 26px !important;
        max-width: 110px;
    }
}

.nt-site-header__logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nt-primary);
    text-decoration: none;
}

.nt-site-header__logo-text span {
    color: var(--nt-universe-accent);
}

/* Navigation */
.nt-site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto; /* holder nav til højre, også når nøgleikonet står efter den */
}

.nt-site-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.nt-site-nav li a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: var(--nt-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap; /* tekst + dropdown-pil må aldrig ombrydes */
    border-radius: var(--nt-radius);
    transition: color 0.2s, background 0.2s;
}

.nt-site-nav li a:hover,
.nt-site-nav li.current-menu-item a {
    color: var(--nt-primary);
    background: var(--nt-bg-light);
}

.nt-site-nav__cta {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: var(--nt-universe-accent);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap; /* knappen må ikke knække over to linjer */
    flex-shrink: 0;
    border-radius: var(--nt-radius);
    text-decoration: none;
    transition: background 0.2s ease;
}

.nt-site-nav__cta:hover {
    background: var(--nt-universe-accent-hover);
}

/* Dropdown-undermenu (fx "Afdelinger") — åbner ved hover og tastaturfokus */
.nt-site-nav li {
    position: relative;
}

.nt-site-nav li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    margin-left: 0.45rem;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
}

.nt-site-nav .sub-menu {
    display: block;               /* overrule top-menuens flex-layout */
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    margin: 0.4rem 0 0;
    padding: 0.5rem;
    background: #fff;
    border-radius: var(--nt-radius);
    box-shadow: 0 10px 30px rgba(28, 39, 68, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
}

/* Usynlig "bro" så musen kan glide fra punktet ned i panelet uden at det lukker */
.nt-site-nav .sub-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.nt-site-nav li:hover > .sub-menu,
.nt-site-nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nt-site-nav .sub-menu li a {
    padding: 0.6rem 0.9rem;
    white-space: nowrap;
}

/* Mobil: undermenuen vises indrykket i hamburger-menuen (altid åben) */
@media (max-width: 991px) {
    .nt-site-nav .sub-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        min-width: 0;
        margin: 0;
        padding: 0 0 0 1rem;
    }

    .nt-site-nav .sub-menu::before {
        display: none;
    }

    .nt-site-nav li.menu-item-has-children > a::after {
        display: none;
    }
}

/* Hamburger */
.nt-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nt-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--nt-primary);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.nt-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nt-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nt-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
    .nt-hamburger {
        display: block;
    }

    .nt-site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 24px rgba(28, 39, 68, 0.1);
        gap: 1rem;
    }

    .nt-site-nav.active {
        display: flex;
    }

    .nt-site-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .nt-site-nav li a {
        padding: 0.75rem 1rem;
    }

    .nt-site-nav__cta {
        text-align: center;
        width: 100%;
    }
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.nt-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: var(--nt-primary);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.nt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 39, 68, 0.85) 0%, rgba(28, 39, 68, 0.6) 100%);
    z-index: 1;
}

/* Video background */
.nt-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.nt-hero__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 4rem 0;
}

.nt-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.15;
}

.nt-hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.nt-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nt-hero__cta {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    background: var(--nt-universe-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    border-radius: var(--nt-radius);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.nt-hero__cta:hover {
    background: var(--nt-universe-accent-hover);
    transform: translateY(-2px);
}

.nt-hero__cta--secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.nt-hero__cta--secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .nt-hero {
        min-height: 400px;
    }

    .nt-hero__title {
        font-size: 2rem;
    }

    .nt-hero__subtitle {
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */

.nt-breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--nt-text-light);
}

.nt-breadcrumbs a {
    color: var(--nt-text-light);
    text-decoration: none;
}

.nt-breadcrumbs a:hover {
    color: var(--nt-universe-accent);
}

.nt-breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--nt-border);
}

.nt-breadcrumbs .current {
    color: var(--nt-primary);
    font-weight: 500;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */

.nt-cta-section {
    background-color: var(--nt-primary);
    padding: 4rem 0;
    text-align: center;
}

.nt-cta-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
}

.nt-cta-section__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.nt-cta-section .nt-btn--primary {
    font-size: 0.95rem;
    padding: 0.65rem 1.75rem;
}

/* ═══════════════════════════════════════
   CONTACT CARD
   ═══════════════════════════════════════ */

.nt-contact-card {
    background: #fff;
    border-radius: var(--nt-radius);
    box-shadow: var(--nt-shadow);
    padding: 2rem;
}

.nt-contact-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nt-primary);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--nt-universe-accent);
}

.nt-contact-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--nt-text);
}

.nt-contact-card__icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: var(--nt-universe-accent);
    font-weight: 700;
    margin-top: 2px;
}

.nt-contact-card__item a {
    color: var(--nt-text);
    text-decoration: none;
}

.nt-contact-card__item a:hover {
    color: var(--nt-universe-accent);
}

/* ═══════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════ */

.nt-site-footer {
    background: var(--nt-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
}

.nt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.nt-site-footer h3,
.nt-site-footer h4 {
    color: #fff;
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nt-site-footer h3 {
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 0;
}

.nt-site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.nt-site-footer a:hover {
    color: var(--nt-universe-accent);
}

.nt-site-footer p {
    margin: 0 0 0.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.nt-footer__bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

.nt-footer__bottom ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Cookie-links i footerens bundlinje (vises kun når Complianz er aktivt).
   Knappen skal ligne et almindeligt footer-link — også mod Complianz' egen
   button-styling, derfor !important. */
.nt-footer__cookies {
    margin-top: 0.5rem;
    opacity: 0.8;
}

.nt-footer__cookies a,
.nt-footer__bottom .nt-footer__cookie-btn {
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0;
    font: inherit !important;
    color: inherit !important;
    text-decoration: underline;
    cursor: pointer;
}

.nt-footer__cookies a:hover,
.nt-footer__bottom .nt-footer__cookie-btn:hover {
    opacity: 0.7;
}

/* Footer åbningstider override */
.nt-site-footer .nt-opening-hours td {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    padding: 0.35rem 0;
}

.nt-site-footer .nt-opening-hours__day {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer garanti-links */
.nt-footer__garanti ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nt-footer__garanti li {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
}

.nt-footer__garanti a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nt-footer__garanti a:hover {
    color: var(--nt-universe-accent);
    opacity: 0.9;
}

.nt-footer__garanti-logo {
    max-width: 80px;
    height: auto;
    display: block;
}

.nt-footer__garanti-suffix {
    font-size: 0.85rem;
}

.nt-footer__garanti li {
    margin-bottom: 1rem;
}

.nt-footer__garanti-area {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.3rem;
}

.nt-footer__garanti-label {
    display: inline-block;
    font-size: 0.9rem;
}

/* Sociale medier — pr. afdeling på fælles sider */
.nt-footer__social-group {
    margin-bottom: 1.25rem;
}

.nt-footer__social-group:last-child {
    margin-bottom: 0;
}

.nt-footer__social-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .nt-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .nt-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   SOCIAL ICONS
   ═══════════════════════════════════════ */

.nt-social-icons {
    display: flex;
    gap: 0.75rem;
}

.nt-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}

.nt-social-icon:hover {
    background: #fff;
    color: var(--nt-primary) !important;
}

.nt-social-icon:hover svg {
    fill: var(--nt-primary);
    color: var(--nt-primary);
}

/* SoMe-ikoner i headeren — lys baggrund kræver mørk variant */
.nt-site-nav__social {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nt-site-nav__social .nt-social-icons {
    gap: 0.5rem;
}

.nt-site-nav__social .nt-social-icon {
    width: 34px;
    height: 34px;
    background: var(--nt-bg-light, #F7F8FA);
    color: var(--nt-primary, #1C2744);
}

.nt-site-nav__social .nt-social-icon:hover {
    background: var(--nt-universe-accent, #164C91);
    color: #fff !important;
}

.nt-site-nav__social .nt-social-icon:hover svg {
    fill: #fff;
    color: #fff;
}

/* Intranet-link (nøgle-ikon) — står i selve headerbjælken (uden for nav),
   så det er synligt på ALLE skærmstørrelser, også mobil.
   Vises kun når nt_intranet_url er udfyldt på sitet. */
.nt-intranet-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--nt-bg-light, #F7F8FA);
    color: var(--nt-primary, #1C2744);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.nt-intranet-link:hover {
    background: var(--nt-universe-accent, #164C91);
    color: #fff;
}

.nt-intranet-link svg {
    width: 16px;
    height: 16px;
}

/* Desktop: nøglen til højre for navigationens SoMe-klynge */
.nt-site-header__inner > .nt-intranet-link {
    margin-left: 0.9rem;
}

@media (max-width: 991px) {
    /* Mobil: nøglen bliver i topbjælken mellem logo og burger — altid synlig */
    .nt-site-header__inner > .nt-intranet-link {
        order: 2;
        margin-left: auto; /* skubber nøgle + burger helt til højre */
        margin-right: 0.25rem;
        width: 40px;
        height: 40px;
    }

    .nt-site-header__inner > .nt-intranet-link svg {
        width: 18px;
        height: 18px;
    }

    .nt-hamburger {
        order: 3;
    }

    /* SoMe-rækken i den udfoldede mobilmenu */
    .nt-site-nav .nt-site-nav__social {
        width: 100%;
        justify-content: center;
        padding-top: 0.75rem;
        border-top: 1px solid #ECEFF3;
    }
}

/* ═══════════════════════════════════════
   SINGLE PAGE LAYOUTS
   ═══════════════════════════════════════ */

/* Single/Archive bottom spacing */
.nt-single,
.nt-archive,
.nt-page {
    padding-bottom: 4rem;
}

/* Single Case */
.nt-single-case__header {
    padding: 2rem 0 1rem;
}

.nt-single-case__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--nt-primary);
    margin: 0 0 1rem;
}

.nt-single-case__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.nt-single-case__hero-image {
    border-radius: var(--nt-radius);
    overflow: hidden;
    margin-bottom: 2rem;
}

.nt-single-case__hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nt-single-case__body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.nt-single-case__content {
    line-height: 1.8;
    color: var(--nt-text);
    font-size: 1.05rem;
}

.nt-single-case__content h2 {
    color: var(--nt-primary);
    margin-top: 2rem;
}

.nt-single-case__sidebar {
    position: sticky;
    top: 100px;
}

.nt-meta-box {
    background: var(--nt-bg-light);
    border-radius: var(--nt-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.nt-meta-box__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nt-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.35rem;
}

.nt-meta-box__value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--nt-primary);
    margin: 0;
}

@media (max-width: 767px) {
    .nt-single-case__body {
        grid-template-columns: 1fr;
    }

    .nt-single-case__sidebar {
        position: static;
    }
}

/* Single Job */
.nt-single-job__header {
    padding: 2rem 0 1rem;
}

.nt-single-job__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nt-primary);
    margin: 0 0 0.75rem;
}

.nt-single-job__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.nt-single-job__body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.nt-single-job__content {
    line-height: 1.8;
    color: var(--nt-text);
}

.nt-single-job__sidebar {
    position: sticky;
    top: 100px;
}

.nt-sidebar-card {
    background: #fff;
    border-radius: var(--nt-radius);
    box-shadow: var(--nt-shadow);
    padding: 2rem;
}

.nt-sidebar-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nt-primary);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--nt-universe-accent);
}

.nt-sidebar-card__item {
    margin-bottom: 1.25rem;
}

.nt-sidebar-card__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nt-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.nt-sidebar-card__value {
    font-size: 1rem;
    color: var(--nt-primary);
    font-weight: 500;
}

.nt-sidebar-card__value a {
    color: var(--nt-universe-accent);
    text-decoration: none;
}

.nt-sidebar-card__value a:hover {
    text-decoration: underline;
}

.nt-deadline-urgent {
    color: #E53E3E;
    font-weight: 700;
}

@media (max-width: 767px) {
    .nt-single-job__body {
        grid-template-columns: 1fr;
    }
}

/* Single Service */
.nt-single-service__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0 1rem;
}

.nt-single-service__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nt-single-service__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nt-primary);
    margin: 0;
}

.nt-single-service__short-desc {
    font-size: 1.15rem;
    color: var(--nt-text);
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--nt-border);
}

.nt-single-service__content {
    line-height: 1.8;
    color: var(--nt-text);
    margin-bottom: 3rem;
}

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */

.nt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.nt-gallery-item {
    position: relative;
    border-radius: var(--nt-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.nt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.nt-gallery-item:hover img {
    transform: scale(1.05);
}

.nt-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 0.85rem;
}

@media (max-width: 767px) {
    .nt-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════ */

.nt-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nt-lightbox-overlay.active {
    display: flex;
}

.nt-lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--nt-radius);
}

.nt-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.nt-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: var(--nt-radius);
}

.nt-lightbox-prev { left: 1rem; }
.nt-lightbox-next { right: 1rem; }

/* ═══════════════════════════════════════
   ARCHIVE PAGES
   ═══════════════════════════════════════ */

.nt-archive__header {
    padding: 3rem 0 2rem;
}

.nt-archive__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--nt-primary);
    margin: 0 0 0.5rem;
}

.nt-archive__description {
    font-size: 1.05rem;
    color: var(--nt-text);
    max-width: 600px;
}

/* Sekundær filter-bar (fx tag-filter under område-filter) */
.nt-filter-bar--secondary {
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.nt-filter-bar--secondary .nt-filter-btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
}

/* Jobs filter */
.nt-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-end;
}

.nt-filter-select {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.nt-filter-select label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nt-text-light);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nt-filter-select select {
    padding: 0.6rem 1rem;
    border: 2px solid var(--nt-border);
    border-radius: var(--nt-radius);
    background: #fff;
    font-size: 0.9rem;
    color: var(--nt-text);
    cursor: pointer;
    min-width: 180px;
}

.nt-filter-select select:focus {
    border-color: var(--nt-universe-accent);
    outline: none;
}

/* ═══════════════════════════════════════
   FORMS (kontakt, bestil-tilbud)
   ═══════════════════════════════════════ */

.nt-form-placeholder {
    background: var(--nt-bg-light);
    border: 2px dashed var(--nt-border);
    border-radius: var(--nt-radius);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--nt-text-light);
}

.nt-form-placeholder p {
    margin: 0;
    font-size: 0.95rem;
}

/* Basic form styling for native WP forms */
.nt-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--nt-primary);
}

.nt-form input[type="text"],
.nt-form input[type="email"],
.nt-form input[type="tel"],
.nt-form textarea,
.nt-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--nt-border);
    border-radius: var(--nt-radius);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    margin-bottom: 1.25rem;
}

.nt-form input:focus,
.nt-form textarea:focus,
.nt-form select:focus {
    border-color: var(--nt-universe-accent);
    outline: none;
}

.nt-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* ═══════════════════════════════════════
   PAGE-SPECIFIC
   ═══════════════════════════════════════ */

/* Kontakt page */
.nt-kontakt-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 767px) {
    .nt-kontakt-grid {
        grid-template-columns: 1fr;
    }
}

.nt-map-placeholder {
    background: var(--nt-bg-light);
    border-radius: var(--nt-radius);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nt-text-light);
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* Full-width Google Maps i bunden af kontakt-side */
.nt-page--kontakt {
    padding-bottom: 0 !important;
}

.nt-kontakt-map {
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 0;
    line-height: 0;
}

.nt-kontakt-map .nt-map-embed {
    width: 100%;
    padding-bottom: 0 !important;
    height: 450px;
}

.nt-kontakt-map .nt-map-embed iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

@media (max-width: 767px) {
    .nt-kontakt-map .nt-map-embed {
        height: 350px;
    }
}

/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */

.nt-pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 0;
}

.nt-pagination a,
.nt-pagination span,
.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: var(--nt-radius);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-links a {
    background: #fff;
    color: var(--nt-text);
    border: 1px solid var(--nt-border);
}

.nav-links a:hover {
    background: var(--nt-universe-accent);
    color: #fff;
    border-color: var(--nt-universe-accent);
}

.nav-links .current {
    background: var(--nt-primary);
    color: #fff;
    border: 1px solid var(--nt-primary);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */

.nt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(var(--nt-columns, 3), 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .nt-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .nt-testimonials-grid { grid-template-columns: 1fr; }
}

.nt-testimonial-card {
    background: #fff;
    border-radius: var(--nt-radius);
    box-shadow: var(--nt-shadow);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.nt-testimonial-card__rating {
    color: var(--nt-cta);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.nt-testimonial-card__rating .nt-star-empty {
    color: var(--nt-border);
}

.nt-testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--nt-text);
    margin: 0 0 1.5rem;
    font-style: italic;
    flex: 1;
    quotes: "\201C""\201D""\2018""\2019";
}

.nt-testimonial-card__quote::before {
    content: open-quote;
    font-size: 3rem;
    color: var(--nt-universe-accent);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 0.2em;
}

.nt-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nt-testimonial-card__avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nt-testimonial-card__meta strong {
    display: block;
    color: var(--nt-primary);
    font-size: 0.95rem;
}

.nt-testimonial-card__meta span {
    font-size: 0.85rem;
    color: var(--nt-text-light);
}

/* ═══════════════════════════════════════
   TEAM
   ═══════════════════════════════════════ */

.nt-team-grid {
    display: grid;
    grid-template-columns: repeat(var(--nt-columns, 4), 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .nt-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .nt-team-grid { grid-template-columns: 1fr; }
}

.nt-team-card {
    background: #fff;
    border-radius: var(--nt-radius);
    overflow: hidden;
    box-shadow: var(--nt-shadow);
    text-align: center;
    transition: transform 0.2s;
}

.nt-team-card:hover {
    transform: translateY(-4px);
}

.nt-team-card__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.nt-team-card__content {
    padding: 1.5rem;
}

.nt-team-card__name {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    color: var(--nt-primary);
}

.nt-team-card__role {
    font-size: 0.9rem;
    color: var(--nt-universe-accent);
    margin: 0 0 1rem;
    font-weight: 600;
}

.nt-team-card__contact {
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.nt-team-card__contact a {
    color: var(--nt-text);
    text-decoration: none;
}

.nt-team-card__contact a:hover {
    color: var(--nt-universe-accent);
}

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */

.nt-form {
    background: #fff;
    border-radius: var(--nt-radius);
    padding: 2rem;
    box-shadow: var(--nt-shadow);
}

.nt-form__title {
    margin: 0 0 1.5rem;
    color: var(--nt-primary);
}

.nt-form__row {
    margin-bottom: 1.25rem;
}

.nt-form__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 575px) {
    .nt-form__row--two { grid-template-columns: 1fr; }
}

.nt-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nt-primary);
}

.nt-form input[type="text"],
.nt-form input[type="email"],
.nt-form input[type="tel"],
.nt-form input[type="url"],
.nt-form textarea,
.nt-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--nt-border);
    border-radius: var(--nt-radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
    box-sizing: border-box;
}

.nt-form input:focus,
.nt-form textarea:focus,
.nt-form select:focus {
    border-color: var(--nt-universe-accent);
    outline: none;
}

.nt-form textarea {
    min-height: 120px;
    resize: vertical;
}

.nt-form__message {
    padding: 1rem;
    border-radius: var(--nt-radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.nt-form__message--success {
    background: #E6FFFA;
    color: #065F46;
    border-left: 4px solid #10B981;
}

.nt-form__message--error {
    background: #FEF2F2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
}

.nt-form__disclaimer {
    font-size: 0.8rem;
    color: var(--nt-text-light);
    margin-top: 1rem;
}

/* ═══════════════════════════════════════
   ANDRE AFDELINGER (footer + header strip)
   ═══════════════════════════════════════ */

.nt-other-departments__heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.65);
}

.nt-other-departments__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.nt-other-department {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: var(--nt-radius, 8px);
    text-decoration: none;
    color: var(--nt-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 68px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    padding: 0;
}

/* Kort med logo: alle logoer får præcis samme ramme (fuld indre bredde × fast
   højde) og skaleres ind i den uden forvrængning — visuelt lige store */
.nt-other-department--has-logo {
    padding: 8px 16px;
}

.nt-other-department__logo {
    width: 100%;
    height: 42px;
    object-fit: contain;
    display: block;
}

.nt-other-department:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.nt-other-department--has-logo {
    transition: box-shadow 0.25s ease, transform 0.25s ease !important;
}

.nt-other-department__name {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    color: var(--nt-primary);
    padding: 0.5rem 1rem;
}

/* Skjult tekst til skærmlæsere */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Footer-variant */
.nt-other-departments--footer {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Footer: alle afdelingskort tvinges til eksakt samme størrelse,
   og rækken må ikke bryde på desktop */
.nt-other-departments--footer .nt-other-departments__list {
    flex-wrap: nowrap;
}

.nt-other-departments--footer .nt-other-department {
    width: 220px;
    height: 68px;
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .nt-other-departments--footer .nt-other-departments__list {
        flex-wrap: wrap;
    }
    .nt-other-departments--footer .nt-other-department {
        width: 170px;
        height: 58px;
    }
    .nt-other-department__logo {
        height: 36px;
    }
}

/* Header-strip variant (tynd strip over main header) */
.nt-other-departments--strip {
    background: var(--nt-primary);
    padding: 0.5rem 1.5rem;
}

.nt-other-departments--strip .nt-other-departments__heading {
    display: inline-block;
    margin: 0 1rem 0 0;
    vertical-align: middle;
    font-size: 0.75rem;
}

.nt-other-departments--strip .nt-other-departments__list {
    display: inline-flex;
    vertical-align: middle;
    gap: 0.35rem;
}

.nt-other-departments--strip .nt-other-department {
    background: transparent;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.25rem 0.75rem;
    min-height: 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.nt-other-departments--strip .nt-other-department:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    color: #fff;
    transform: none;
}

.nt-other-departments--strip {
    text-align: center;
}

@media (max-width: 767px) {
    .nt-other-departments--strip {
        padding: 0.5rem 0.75rem;
    }
    .nt-other-departments--strip .nt-other-departments__heading {
        display: block;
        margin-bottom: 0.25rem;
    }
}

/* ═══════════════════════════════════════
   GATEWAY — Forsideskabelon (uden header/footer)
   ═══════════════════════════════════════ */

.nt-gateway-page {
    margin: 0;
    overflow-x: hidden;
}

/* Skjul header/footer helt hvis DIVI alligevel injicerer dem */
.nt-gateway-page #main-header,
.nt-gateway-page #wrapper > header,
.nt-gateway-page .main-header,
.nt-gateway-page #footer,
.nt-gateway-page #main-footer,
.nt-gateway-page .footer-widgets {
    display: none !important;
}

.nt-gateway {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    overflow: hidden;
}

/* Ken Burns — langsom kamerabevægelse på baggrundsbillede */
.nt-gateway--kenburns {
    background-size: 115%;
    animation: nt-kenburns 30s ease-in-out infinite alternate;
}

@keyframes nt-kenburns {
    0%   { background-position: 30% 30%; }
    100% { background-position: 70% 70%; }
}

@media (prefers-reduced-motion: reduce) {
    .nt-gateway--kenburns { animation: none; }
}

.nt-gateway__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.nt-gateway__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.nt-gateway__content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.nt-gateway__logo {
    margin-bottom: 1rem;
    opacity: 0;
    animation: nt-fadein-up 0.6s ease-out 0.1s forwards;
}

.nt-gateway__logo-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.nt-gateway__tagline {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 0 3rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
    opacity: 0;
    animation: nt-fadein-up 0.6s ease-out 0.25s forwards;
}

@keyframes nt-fadein-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nt-gateway__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .nt-gateway__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .nt-gateway__tagline { font-size: 1rem; margin-bottom: 2rem; }
    .nt-gateway__logo-img { max-width: 160px; }
}

@media (max-width: 480px) {
    .nt-gateway__grid {
        grid-template-columns: 1fr;
    }
}

.nt-gateway__card {
    position: relative;
    background: #fff;
    border-radius: var(--nt-radius, 8px);
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    text-decoration: none;
    color: var(--nt-primary, #1C2744);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: nt-fadein-up 0.55s ease-out forwards;
}

/* Staggered fade-in — cards */
.nt-gateway__card:nth-child(1) { animation-delay: 0.40s; }
.nt-gateway__card:nth-child(2) { animation-delay: 0.48s; }
.nt-gateway__card:nth-child(3) { animation-delay: 0.56s; }
.nt-gateway__card:nth-child(4) { animation-delay: 0.64s; }
.nt-gateway__card:nth-child(5) { animation-delay: 0.72s; }
.nt-gateway__card:nth-child(6) { animation-delay: 0.80s; }
.nt-gateway__card:nth-child(7) { animation-delay: 0.88s; }
.nt-gateway__card:nth-child(8) { animation-delay: 0.96s; }

.nt-gateway__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Alle logoer får samme rektangulære "canvas" — uden strækning */
.nt-gateway__card-img {
    width: 100%;
    height: 100%;
    max-width: 220px;
    max-height: 60px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

/* Logo scale på hover */
.nt-gateway__card:hover .nt-gateway__card-img {
    transform: scale(1.06);
}

/* Pil-ikon i øverste højre hjørne */
.nt-gateway__card-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nt-universe-accent, #164C91);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nt-gateway__card:hover .nt-gateway__card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .nt-gateway__card,
    .nt-gateway__logo,
    .nt-gateway__tagline {
        opacity: 1;
        animation: none;
    }
    .nt-gateway__card:hover .nt-gateway__card-img { transform: none; }
    .nt-gateway__card-arrow { opacity: 1; transform: none; }
}

.nt-gateway__card-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
}

@media (max-width: 767px) {
    .nt-gateway__card {
        height: 90px;
        padding: 1rem;
    }
    .nt-gateway__card-img {
        max-height: 50px;
    }
}

.nt-gateway__extra {
    margin-top: 3rem;
    color: #fff;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   DIVI BUILDER CONTENT — default 1200px bredde
   ═══════════════════════════════════════ */

/* Globalt: alle DIVI sektioner i NT-univers har max 1200px */
body[class*="nt-universe-"] .et_pb_section {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box;
}

body[class*="nt-universe-"] .et_pb_row {
    max-width: 1200px !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* Brugere kan eksplicit opt-out med en .et_pb_section_fullwidth eller .nt-fullwidth klasse */
body[class*="nt-universe-"] .et_pb_section.et_pb_fullwidth_section,
body[class*="nt-universe-"] .et_pb_section.nt-fullwidth {
    max-width: none !important;
}

/* Hvis DIVI-content er wrappet i .nt-divi-content (forsider) — fjern dobbelt padding */
.nt-divi-content > .nt-container {
    padding-left: 0;
    padding-right: 0;
}

.nt-divi-content .et_pb_section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ═══════════════════════════════════════
   YDELSE TEMPLATE (Pages)
   ═══════════════════════════════════════ */

.nt-page--ydelse .nt-ydelse-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 991px) {
    .nt-page--ydelse .nt-ydelse-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.nt-ydelse-content__title {
    font-size: 2.25rem;
    color: var(--nt-primary);
    margin: 0 0 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.nt-ydelse-content__body {
    color: var(--nt-text);
    font-size: 1rem;
    line-height: 1.75;
}

.nt-ydelse-content__body h2 {
    color: var(--nt-primary);
    font-size: 1.55rem;
    margin: 2.25rem 0 1rem;
    font-weight: 700;
}

.nt-ydelse-content__body h3 {
    color: var(--nt-primary);
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
    font-weight: 700;
}

.nt-ydelse-content__body p {
    margin: 0 0 1.25rem;
}

.nt-ydelse-content__body ul,
.nt-ydelse-content__body ol {
    margin: 0 0 1.5rem 1.25rem;
    padding: 0;
}

.nt-ydelse-content__body li {
    margin-bottom: 0.5rem;
}

.nt-ydelse-content__cta {
    background: var(--nt-bg-light);
    border-left: 4px solid var(--nt-universe-accent, var(--nt-accent));
    padding: 1.75rem 2rem;
    border-radius: var(--nt-radius);
    margin-top: 2.5rem;
}

.nt-ydelse-content__cta h3 {
    margin: 0 0 0.5rem;
    color: var(--nt-primary);
    font-size: 1.2rem;
}

.nt-ydelse-content__cta p {
    margin: 0 0 1.25rem;
    color: var(--nt-text);
}

.nt-ydelse-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 991px) {
    .nt-ydelse-sidebar {
        position: static;
    }
}

.nt-ydelse-sidebar .nt-opening-hours {
    margin-top: 1.5rem;
    background: #fff;
    border-radius: var(--nt-radius);
    padding: 1.5rem;
    box-shadow: var(--nt-shadow);
}

/* ═══════════════════════════════════════
   GARANTI LANDING PAGE
   ═══════════════════════════════════════ */

.nt-garanti-section {
    padding: 4rem 0;
}

.nt-garanti-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4%;
    align-items: start;
}

@media (max-width: 991px) {
    .nt-garanti-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.nt-garanti-content {
    padding: 1rem 2rem 1rem 0;
}

.nt-garanti-content__title {
    font-size: 2.125rem;
    line-height: 1.2;
    color: var(--nt-primary);
    margin: 0 0 0.5rem;
    font-weight: 800;
}

.nt-garanti-content__subtitle {
    font-size: 1.75rem;
    line-height: 1.3;
    color: var(--nt-primary);
    margin: 0 0 1.5rem;
    font-weight: 700;
}

.nt-garanti-content__body {
    color: var(--nt-text);
    font-size: 1rem;
    line-height: 1.7;
}

.nt-garanti-content__body p {
    margin: 0 0 1.25rem;
}

.nt-garanti-content__body a {
    color: var(--nt-universe-accent);
    text-decoration: underline;
}

/* Sidebar */
.nt-garanti-sidebar {
    background: #f5f5f5;
    padding: 3rem;
    border-radius: var(--nt-radius);
    text-align: center;
}

.nt-garanti-sidebar__logo {
    margin-bottom: 0.5rem;
}

.nt-garanti-sidebar__logo img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.nt-garanti-sidebar__legal-name {
    font-size: 1rem;
    color: var(--nt-text);
    margin: 0;
    font-weight: 500;
}

.nt-garanti-sidebar__cert {
    margin: 0.5rem 0;
}

.nt-garanti-sidebar__cert-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    transition: opacity 0.2s;
}

.nt-garanti-sidebar__cert a:hover .nt-garanti-sidebar__cert-img {
    opacity: 0.8;
}

.nt-garanti-sidebar__separator {
    border: none;
    border-top: 1px solid #eae8e8;
    margin: 1.5rem 0;
}

.nt-garanti-sidebar__separator:last-child {
    display: none;
}

/* ═══════════════════════════════════════
   CAMPAIGN BAR
   ═══════════════════════════════════════ */

.nt-campaign-bar {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 0;
}

.nt-campaign-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nt-campaign-bar__btn {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

.nt-campaign-bar__btn:hover {
    opacity: 0.85;
}

/* ═══════════════════════════════════════
   CERTIFICATES
   ═══════════════════════════════════════ */

.nt-footer__certs {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.nt-certificates {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nt-certificate img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.nt-certificate:hover img {
    opacity: 1;
}

/* ═══════════════════════════════════════
   SERVICE AREA
   ═══════════════════════════════════════ */

.nt-service-area__intro {
    color: var(--nt-primary);
    font-weight: 600;
    margin: 0 0 1rem;
}

.nt-service-area__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nt-service-area__list li {
    background: var(--nt-bg-light);
    color: var(--nt-primary);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ═══════════════════════════════════════
   BEFORE/AFTER SLIDER
   ═══════════════════════════════════════ */

.nt-before-after {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    border-radius: var(--nt-radius);
    user-select: none;
    cursor: ew-resize;
}

.nt-before-after__after,
.nt-before-after__before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.nt-before-after__after {
    object-fit: cover;
}

.nt-before-after__before {
    background-size: cover;
    background-position: center;
    clip-path: inset(0 50% 0 0);
}

.nt-before-after__label {
    position: absolute;
    top: 1rem;
    background: rgba(28, 39, 68, 0.85);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.nt-before-after__label--before { left: 1rem; }
.nt-before-after__label--after  { right: 1rem; }

.nt-before-after__slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
}

.nt-before-after__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--nt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════
   SEARCH
   ═══════════════════════════════════════ */

.nt-search-form {
    display: flex;
    gap: 0.5rem;
}

.nt-search-form__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--nt-border);
    border-radius: var(--nt-radius);
    font-size: 0.95rem;
}

.nt-search-form__submit {
    padding: 0.75rem 1rem;
    background: var(--nt-primary);
    color: #fff;
    border: none;
    border-radius: var(--nt-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nt-search-form__submit:hover {
    background: var(--nt-universe-accent);
}

.nt-search-result {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--nt-border);
}

.nt-search-result h2 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
}

.nt-search-result h2 a {
    color: var(--nt-primary);
    text-decoration: none;
}

.nt-search-result h2 a:hover {
    color: var(--nt-universe-accent);
}

/* ═══════════════════════════════════════
   PRICE on service cards
   ═══════════════════════════════════════ */

.nt-service-card__price {
    font-size: 0.9rem;
    color: var(--nt-universe-accent);
    font-weight: 700;
    margin: 0.5rem 0;
}

/* ═══════════════════════════════════════
   DIVI CONTACT FORM — NT-styling
   ═══════════════════════════════════════ */

.et_pb_contact_form_container {
    background: #fff;
    border-radius: var(--nt-radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--nt-shadow);
}

.et_pb_contact_main_title,
.et_pb_contact_form_container h1.et_pb_contact_main_title {
    color: var(--nt-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}

/* Felt-wrapper: ensartet spacing */
.et_pb_contact_field {
    margin-bottom: 1.1rem !important;
    padding: 0 !important;
    width: 100% !important;
}

/* To-kolonne layout (når DIVI har half-width felter) */
.et_pb_contact_field.et_pb_contact_field_last,
.et_pb_contact_field.et_pb_contact_field_half {
    width: calc(50% - 0.5rem) !important;
    display: inline-block !important;
    vertical-align: top;
}

.et_pb_contact_field.et_pb_contact_field_half:not(.et_pb_contact_field_last) {
    margin-right: 1rem !important;
}

@media (max-width: 575px) {
    .et_pb_contact_field.et_pb_contact_field_last,
    .et_pb_contact_field.et_pb_contact_field_half {
        width: 100% !important;
        margin-right: 0 !important;
    }
}

/* Labels — skjul visuelt men behold for skærmlæsere (accessibility) */
.et_pb_contact_form .et_pb_contact_field_label,
.et_pb_contact_form_container label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Inputs, textareas, selects */
.et_pb_contact_form input[type="text"],
.et_pb_contact_form input[type="email"],
.et_pb_contact_form input[type="tel"],
.et_pb_contact_form input[type="url"],
.et_pb_contact_form input[type="number"],
.et_pb_contact_form textarea,
.et_pb_contact_form select,
.et_pb_contact_form .input,
.et_pb_contact_field input.input,
.et_pb_contact_field textarea.et_pb_contact_message {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 2px solid var(--nt-border) !important;
    border-radius: var(--nt-radius) !important;
    background: #fff !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    color: var(--nt-text) !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none !important;
}

.et_pb_contact_form input:focus,
.et_pb_contact_form textarea:focus,
.et_pb_contact_form select:focus,
.et_pb_contact_form .input:focus {
    border-color: var(--nt-universe-accent) !important;
    box-shadow: 0 0 0 3px rgba(71, 162, 196, 0.12) !important;
    outline: none !important;
}

.nt-universe-murer .et_pb_contact_form input:focus,
.nt-universe-murer .et_pb_contact_form textarea:focus,
.nt-universe-murer .et_pb_contact_form select:focus {
    box-shadow: 0 0 0 3px rgba(242, 169, 1, 0.15) !important;
}

/* Placeholder */
.et_pb_contact_form input::placeholder,
.et_pb_contact_form textarea::placeholder {
    color: var(--nt-text-light) !important;
    opacity: 1;
}

/* Textarea større */
.et_pb_contact_form textarea,
.et_pb_contact_field textarea.et_pb_contact_message {
    min-height: 140px !important;
    resize: vertical !important;
}

/* Radio + checkbox */
.et_pb_contact_field_radio_label,
.et_pb_contact_field_checkbox_label {
    color: var(--nt-text);
    font-size: 0.95rem;
    margin-right: 1.25rem;
    cursor: pointer;
}

.et_pb_contact_field_radio_label input[type="radio"],
.et_pb_contact_field_checkbox_label input[type="checkbox"] {
    margin-right: 0.4rem;
    accent-color: var(--nt-universe-accent);
}

/* Captcha */
.et_pb_contact_captcha_question {
    color: var(--nt-text);
    font-weight: 600;
    margin-right: 0.5rem;
}

.et_pb_contact_captcha {
    width: 80px !important;
    text-align: center;
}


/* Submit-knap — max specificity for at overrule DIVI's eget CSS */
body button.et_pb_button.et_pb_contact_submit,
body button.et_builder_submit_button,
body .et_pb_button.et_pb_contact_submit,
html body div .et_pb_button.et_pb_contact_submit,
html body button.et_builder_submit_button {
    display: inline-block !important;
    padding: 7px 20px !important;
    background: var(--nt-universe-accent) !important;
    background-color: var(--nt-universe-accent) !important;
    color: #fff !important;
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    height: auto !important;
    min-height: 0 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(28, 39, 68, 0.08) !important;
}

/* Fjern pile-ikon */
body button.et_pb_button.et_pb_contact_submit::after,
body button.et_builder_submit_button::after,
html body button.et_builder_submit_button::after,
html body .et_pb_button.et_pb_contact_submit::after {
    display: none !important;
    content: '' !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
}

body button.et_pb_button.et_pb_contact_submit:hover,
body button.et_builder_submit_button:hover,
html body button.et_builder_submit_button:hover,
html body .et_pb_button.et_pb_contact_submit:hover {
    background: var(--nt-primary) !important;
    background-color: var(--nt-primary) !important;
    color: #fff !important;
    border: 0 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 14px rgba(28, 39, 68, 0.15) !important;
    padding: 7px 20px !important;
}

/* Fjern DIVI's default border-color override på hover */
.et_pb_contact_form .et_pb_button:hover {
    border: none !important;
}

/* Skjul tomme beskeder (DIVI renderer ofte tom container) */
.et-pb-contact-message:empty,
.et_pb_contact_form_container .et-pb-contact-message:empty {
    display: none !important;
}

/* Beskeder (success / fejl) — neutral styling i sitets stil */
.et-pb-contact-message,
.et_pb_contact_form_container .et-pb-contact-message {
    background: var(--nt-bg-light);
    color: var(--nt-text);
    border-left: 3px solid var(--nt-universe-accent);
    padding: 0.85rem 1.1rem;
    border-radius: var(--nt-radius);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.et-pb-contact-message ul {
    margin: 0;
    padding-left: 1.25rem;
}

/* Required-stjerne */
.et_pb_contact_field_required {
    color: #EF4444;
    font-weight: 700;
    margin-left: 0.2rem;
}

/* ═══════════════════════════════════════
   PRINT
   ═══════════════════════════════════════ */

@media print {
    .nt-site-header,
    .nt-site-footer,
    .nt-cta-section,
    .nt-filter-bar,
    .nt-lightbox-overlay {
        display: none !important;
    }
}

/* ═══════ Load More button (referencer) ═══════ */
.nt-load-more-wrap {
    text-align: center;
    margin: 3rem 0 1rem;
}
.nt-load-more {
    display: inline-block;
    background: var(--nt-universe-accent, #164C91);
    color: #fff;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.nt-load-more:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-2px);
}
.nt-load-more:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* CTA på referencer-side + enkelt-reference: lyseblå (skiller sig fra footer) */
.post-type-archive-nt_case .nt-cta-section,
.nt-page-referencer .nt-cta-section,
.single-nt_case .nt-cta-section {
    background: #164C91;
}

/* ═══════════════════════════════════════
   YDELSE V2 — Designløft
   ═══════════════════════════════════════ */

.nt-page--ydelse-v2 .nt-ydelse-section { padding: 4.5rem 0 3rem; }
.nt-page--ydelse-v2 .nt-ydelse-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 3.5rem;
    align-items: start;
}
@media (max-width: 991px) {
    .nt-page--ydelse-v2 .nt-ydelse-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .nt-page--ydelse-v2 .nt-ydelse-section { padding: 2.5rem 0 2rem; }
}

/* DIVI-indhold inde i content-kolonnen */
.nt-page--ydelse-v2 .nt-ydelse-content .et_pb_section { padding: 0 !important; background: transparent !important; }
.nt-page--ydelse-v2 .nt-ydelse-content .et_pb_row { padding: 0 !important; margin: 0 !important; width: 100% !important; max-width: 100% !important; }
.nt-page--ydelse-v2 .nt-ydelse-content .et_pb_column { padding: 0 !important; margin: 0 !important; width: 100% !important; }

.nt-page--ydelse-v2 .nt-ydelse-content__lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--nt-primary);
    font-weight: 500;
    margin: 0 0 2rem;
    padding: 0 0 1.75rem;
    border-bottom: 2px solid var(--nt-universe-accent, var(--nt-accent));
    max-width: 720px;
}

.nt-page--ydelse-v2 .nt-ydelse-content__body { font-size: 1.05rem; line-height: 1.8; color: var(--nt-text); }
.nt-page--ydelse-v2 .nt-ydelse-content__body > *:first-child { margin-top: 0; }
.nt-page--ydelse-v2 .nt-ydelse-content__body h2 {
    font-size: 1.6rem; margin: 2.75rem 0 1rem; color: var(--nt-primary);
    font-weight: 700; position: relative; padding-left: 1rem;
}
.nt-page--ydelse-v2 .nt-ydelse-content__body h2::before {
    content: ""; position: absolute; left: 0; top: 0.4em; bottom: 0.3em;
    width: 4px; background: var(--nt-universe-accent, var(--nt-accent)); border-radius: 2px;
}
.nt-page--ydelse-v2 .nt-ydelse-content__body h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--nt-primary); font-weight: 700; }
.nt-page--ydelse-v2 .nt-ydelse-content__body ul li::marker { color: var(--nt-universe-accent, var(--nt-accent)); }

.nt-page--ydelse-v2 .nt-ydelse-gallery { margin-top: 3rem; }
.nt-page--ydelse-v2 .nt-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.nt-page--ydelse-v2 .nt-gallery-item { display: block; overflow: hidden; border-radius: 8px; aspect-ratio: 4 / 3; }
.nt-page--ydelse-v2 .nt-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nt-page--ydelse-v2 .nt-gallery-item:hover img { transform: scale(1.05); }

.nt-ydelse-section-title { font-size: 1.75rem; color: var(--nt-primary); margin: 0 0 0.5rem; font-weight: 700; }
.nt-ydelse-section-title--center { text-align: center; margin-bottom: 0.5rem; }
.nt-ydelse-section-sub { text-align: center; color: var(--nt-text-muted, #6c7680); margin: 0 0 2.5rem; font-size: 1.05rem; }

/* Sticky kontakt-kort */
.nt-page--ydelse-v2 .nt-ydelse-sidebar { position: sticky; top: 110px; }
@media (max-width: 991px) { .nt-page--ydelse-v2 .nt-ydelse-sidebar { position: static; } }

/* Inline CTA-blok — solid farve (ingen gradient/color-mix) */
.nt-page--ydelse-v2 .nt-ydelse-content__cta {
    margin-top: 3rem;
    background-color: var(--nt-universe-accent, var(--nt-accent));
    color: #fff;
    border-left: none;
    border-radius: 12px;
    padding: 2rem 2.25rem;
}
.nt-page--ydelse-v2 .nt-ydelse-content__cta h3 { color: #fff; font-size: 1.35rem; margin: 0 0 0.5rem; }
.nt-page--ydelse-v2 .nt-ydelse-content__cta p { color: rgba(255, 255, 255, 0.92); margin: 0 0 1.25rem; }
.nt-page--ydelse-v2 .nt-ydelse-content__cta .nt-btn--primary { background: #fff; color: var(--nt-primary); }
.nt-page--ydelse-v2 .nt-ydelse-content__cta .nt-btn--primary:hover { background: var(--nt-primary); color: #fff; }

/* Relaterede referencer */
.nt-ydelse-related { background: var(--nt-bg-light, #f6f8fb); padding: 4rem 0 4.5rem; margin-top: 0; }
@media (max-width: 600px) { .nt-ydelse-related { padding: 2.5rem 0 3rem; } }

/* CTA i bund — lyseblå (ydelse) */
.single-nt_service .nt-cta-section { background: #164C91; }

/* Widget sidebar wrapper */
.nt-ydelse-sidebar__widgets .widget { padding: 1.5rem; }
.nt-ydelse-sidebar__widgets .widget + .widget { border-top: 1px solid rgba(0, 0, 0, 0.06); }
.nt-ydelse-sidebar__widgets .widget-title { font-size: 1.15rem; margin: 0 0 0.85rem; color: var(--nt-primary); font-weight: 700; }
.nt-ydelse-sidebar__widgets img { width: 100%; height: auto; display: block; border-radius: 6px; }

/* ─── CTA sidebar widget (klar HTML) ─── */
.nt-cta-widget { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); position: relative; }
.nt-cta-widget__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.nt-cta-widget__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.2,.8,.2,1); }
.nt-cta-widget:hover .nt-cta-widget__image img { transform: scale(1.05); }
.nt-cta-widget__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%); pointer-events: none; }
.nt-cta-widget__badge { position: absolute; top: 1rem; left: 1rem; background: var(--nt-accent-color, var(--nt-universe-accent, #164C91)); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.4rem 0.85rem; border-radius: 20px; z-index: 2; }
.nt-cta-widget__body { padding: 1.75rem 1.5rem 1.5rem; }
.nt-cta-widget__title { font-size: 1.35rem; font-weight: 700; color: var(--nt-primary, #1c2744); margin: 0 0 0.65rem; line-height: 1.3; }
.nt-cta-widget__text { color: var(--nt-text, #44546a); font-size: 0.95rem; line-height: 1.6; margin: 0 0 1.25rem; }
.nt-cta-widget__list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.nt-cta-widget__list li { position: relative; padding: 0.4rem 0 0.4rem 1.75rem; font-size: 0.92rem; color: var(--nt-text, #44546a); line-height: 1.45; }
.nt-cta-widget__list li::before {
    content: ""; position: absolute; left: 0; top: 0.55rem; width: 18px; height: 18px;
    background: var(--nt-accent-color, var(--nt-universe-accent, #164C91));
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.nt-cta-widget__contact { display: flex; flex-direction: column; gap: 0.5rem; margin: 0 0 1.25rem; padding: 1rem 0; border-top: 1px solid rgba(0, 0, 0, 0.08); border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.nt-cta-widget__contact a { display: flex; align-items: center; gap: 0.6rem; color: var(--nt-primary, #1c2744); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.nt-cta-widget__contact a:hover { color: var(--nt-accent-color, var(--nt-universe-accent, #164C91)); }
.nt-cta-widget__contact svg { color: var(--nt-accent-color, var(--nt-universe-accent, #164C91)); flex-shrink: 0; }
.nt-cta-widget__btn {
    display: block; width: 100%; padding: 0.95rem 1.25rem; text-align: center;
    background-color: var(--nt-accent-color, var(--nt-universe-accent, #164C91));
    color: #fff !important; font-weight: 600; font-size: 1rem; border-radius: 6px; text-decoration: none;
}
.nt-cta-widget__footnote { text-align: center; color: var(--nt-text-light, #6c7680); font-size: 0.8rem; margin: 0.85rem 0 0; }
.nt-cta-widget--toemrer { --nt-accent-color: #164C91; }
.nt-cta-widget--murer   { --nt-accent-color: #F2A901; }
.nt-cta-widget--global  { --nt-accent-color: #1c2744; }
.nt-ydelse-sidebar__widgets .widget:has(.nt-cta-widget) { padding: 0; border: none !important; }


/* ═══════════════════════════════════════
   GLOBAL FIX — scroll-flash fra GPU compositing
   ═══════════════════════════════════════ */

/* Tving body/wrappere til solid hvid bg så GPU aldrig viser noget mørkt igennem */
html, body, #page-container, #et-main-area, .et-l, .et-l--post {
    background-color: #fff !important;
}

/* Knapper må ikke have transform-transitions (fjerner GPU layer-promotion).
   Brug opacity/box-shadow/filter til hover-effekter i stedet. */
.nt-btn,
.nt-site-nav__cta,
.nt-cta-widget__btn,
.nt-hero__cta {
    will-change: auto !important;
    transform: none !important;
    backface-visibility: visible !important;
}
.nt-btn:hover,
.nt-site-nav__cta:hover,
.nt-cta-widget__btn:hover,
.nt-hero__cta:hover {
    transform: none !important;
    filter: brightness(1.05);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Afdelingsknapper i footeren — blødt løft ved hover */
.nt-other-department {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.nt-other-department:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

/* Mørkeblå sektioner: tving solid baggrund uden compositing */
.nt-cta-section,
.nt-site-footer,
.nt-other-departments--strip {
    transform: none !important;
    will-change: auto !important;
    isolation: auto !important;
}


/* ═══════════════════════════════════════
   GRAVITY FORMS — matcher DIVI kontaktformularen på /kontakt/
   ═══════════════════════════════════════ */

/* Wrapper-kort (samme look som .et_pb_contact_form_container) */
.gform_wrapper {
    background: #fff;
    border-radius: var(--nt-radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--nt-shadow);
    font-family: inherit;
    color: var(--nt-text);
    max-width: none;
}

/* Titel */
.gform_wrapper .gform_title {
    color: var(--nt-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}
.gform_wrapper .gform_description {
    color: var(--nt-text);
    margin: 0 0 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Felt-grid */
.gform_wrapper .gform_fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

/* Labels — synlige, pænt formaterede */
.gform_wrapper .gfield_label,
.gform_wrapper .gform-field-label,
.gform_wrapper legend.gfield_label {
    display: block;
    font-weight: 600;
    color: var(--nt-primary);
    font-size: 0.92rem;
    margin: 0 0 0.4rem;
    line-height: 1.35;
}
.gform_wrapper .gfield_required {
    color: var(--nt-universe-accent);
    margin-left: 0.2rem;
    font-weight: 700;
}
.gform_wrapper .gfield_required_text {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--nt-text-light);
    margin-left: 0.2rem;
}
/* Sub-labels (fx First/Last, postnr/by under "Adresse") */
.gform_wrapper .ginput_complex label,
.gform_wrapper .ginput_complex .gform-field-label {
    font-size: 0.78rem;
    color: var(--nt-text-light);
    font-weight: 500;
    margin-top: 0.3rem;
    display: block;
}

/* Half-width felter (postnr+by, eller GF's egen layout) — side-by-side */
.gform_wrapper .gform_fields {
    grid-template-columns: repeat(12, 1fr);
}
.gform_wrapper .gfield {
    grid-column: 1 / -1;
}
.gform_wrapper .gfield--width-half,
.gform_wrapper .gf_left_half,
.gform_wrapper .gf_right_half { grid-column: span 6; }
.gform_wrapper .gfield--width-third,
.gform_wrapper .gf_left_third,
.gform_wrapper .gf_middle_third,
.gform_wrapper .gf_right_third { grid-column: span 4; }
.gform_wrapper .gfield--width-quarter { grid-column: span 3; }
.gform_wrapper .gfield--width-three-quarter { grid-column: span 9; }
.gform_wrapper .gfield--width-two-thirds { grid-column: span 8; }
@media (max-width: 600px) {
    .gform_wrapper .gfield--width-half,
    .gform_wrapper .gf_left_half,
    .gform_wrapper .gf_right_half,
    .gform_wrapper .gfield--width-third,
    .gform_wrapper .gf_left_third,
    .gform_wrapper .gf_middle_third,
    .gform_wrapper .gf_right_third,
    .gform_wrapper .gfield--width-quarter,
    .gform_wrapper .gfield--width-three-quarter,
    .gform_wrapper .gfield--width-two-thirds { grid-column: 1 / -1; }
}

/* Address-felter inde i samme felt (Postnr + By på samme række) */
.gform_wrapper .ginput_complex.ginput_container_address {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.75rem 0.75rem;
}
.gform_wrapper .ginput_complex.ginput_container_address .address_line_1,
.gform_wrapper .ginput_complex.ginput_container_address .address_line_2 {
    grid-column: 1 / -1;
}
/* Postnr + By halv/halv (samlet bredde som adresselinjen) */
.gform_wrapper .ginput_complex.ginput_container_address {
    grid-template-columns: 1fr 1fr;
}
.gform_wrapper .ginput_complex.ginput_container_address .address_zip,
.gform_wrapper .ginput_complex.ginput_container_address .address_city,
.gform_wrapper .ginput_complex.ginput_container_address .ginput_left,
.gform_wrapper .ginput_complex.ginput_container_address .ginput_right { grid-column: span 1; }
.gform_wrapper .ginput_complex.ginput_container_address .address_state,
.gform_wrapper .ginput_complex.ginput_container_address .address_country { grid-column: 1 / -1; }
/* Tving inputs til 100% af deres grid-celle (overrul GF's 48% default) */
.gform_wrapper .ginput_complex.ginput_container_address > span,
.gform_wrapper .ginput_complex.ginput_container_address > span > input,
.gform_wrapper .ginput_complex.ginput_container_address > span > select {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
@media (max-width: 600px) {
    .gform_wrapper .ginput_complex.ginput_container_address {
        grid-template-columns: 1fr;
    }
    .gform_wrapper .ginput_complex.ginput_container_address .address_zip,
    .gform_wrapper .ginput_complex.ginput_container_address .address_city {
        grid-column: 1 / -1;
    }
}

/* Submit-knap til højre — overstyr alle GF-defaults */
.gform_wrapper .gform_footer,
.gform_wrapper .gform_footer.top_label,
.gform_wrapper form .gform_footer {
    display: flex !important;
    justify-content: flex-end !important;
    text-align: right !important;
    margin-top: 1.5rem !important;
}

/* Inputs — samme look som DIVI-formen */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="date"],
.gform_wrapper select,
.gform_wrapper textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--nt-border);
    border-radius: var(--nt-radius);
    background: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--nt-text);
    line-height: 1.5;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
}

.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
    outline: none;
    border-color: var(--nt-universe-accent);
    box-shadow: 0 0 0 3px rgba(71, 162, 196, 0.12);
}
.nt-universe-murer .gform_wrapper input:focus,
.nt-universe-murer .gform_wrapper select:focus,
.nt-universe-murer .gform_wrapper textarea:focus {
    box-shadow: 0 0 0 3px rgba(242, 169, 1, 0.15);
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
    color: var(--nt-text-light);
    opacity: 1;
}

.gform_wrapper textarea {
    min-height: 140px;
    resize: vertical;
}

/* Komplekse felter (Adresse/Navn) */
.gform_wrapper .ginput_complex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.gform_wrapper .ginput_complex .ginput_full,
.gform_wrapper .ginput_complex .address_line_1,
.gform_wrapper .ginput_complex .address_line_2 {
    grid-column: 1 / -1;
}
@media (max-width: 600px) {
    .gform_wrapper .ginput_complex { grid-template-columns: 1fr; }
}

/* Checkboxes/radio */
.gform_wrapper .gchoice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: var(--nt-text);
    font-size: 0.95rem;
}
.gform_wrapper input[type="checkbox"],
.gform_wrapper input[type="radio"] {
    accent-color: var(--nt-universe-accent);
    width: 18px;
    height: 18px;
    margin: 0;
}

/* Hjælpebeskrivelser */
.gform_wrapper .gfield_description {
    font-size: 0.85rem;
    color: var(--nt-text-light);
    margin-top: 0.4rem;
    line-height: 1.5;
}

/* Validation */
.gform_wrapper .gfield_validation_message,
.gform_wrapper .gform_validation_errors {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: var(--nt-radius);
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select {
    border-color: #b91c1c;
}

/* Submit-knap — kompakt, matcher DIVI submit på /kontakt/ */
.gform_wrapper .gform_footer {
    margin-top: 1.5rem;
    padding-top: 0;
    text-align: right;
}
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
    display: inline-block !important;
    padding: 7px 20px !important;
    background-color: var(--nt-universe-accent) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    height: auto !important;
    min-height: 0 !important;
    cursor: pointer !important;
    box-shadow: 0 2px 6px rgba(28, 39, 68, 0.08) !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
    font-family: inherit !important;
}
.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
    background-color: var(--nt-primary) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 14px rgba(28, 39, 68, 0.15) !important;
}

/* Confirmation efter submit */
.gform_confirmation_wrapper,
.gform_confirmation_message {
    background: #f0f9ff;
    border-left: 4px solid var(--nt-universe-accent);
    padding: 1.25rem 1.5rem;
    border-radius: var(--nt-radius);
    color: var(--nt-primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Honeypot/anti-spam — skjul */
.gform_validation_container,
.gform_wrapper .gfield_html_block label.gfield_label { display: none !important; }

/* ═══════════════════════════════════════
   TRUST BAR — under hero
   ═══════════════════════════════════════ */
.nt-trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--nt-border);
    padding: 1.5rem 0;
}
.nt-trust-bar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}
.nt-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}
.nt-trust-bar__icon {
    color: var(--nt-universe-accent);
    flex-shrink: 0;
    display: inline-flex;
}
.nt-trust-bar__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.nt-trust-bar__text strong {
    color: var(--nt-primary);
    font-weight: 700;
    font-size: 1rem;
}
.nt-trust-bar__text span {
    color: var(--nt-text-light);
    font-size: 0.85rem;
}
@media (max-width: 767px) {
    .nt-trust-bar__list { grid-template-columns: 1fr; gap: 1rem; }
    .nt-trust-bar__item { justify-content: flex-start; }
}

/* ═══════════════════════════════════════
   PROCES-SEKTION — Sådan arbejder vi sammen
   ═══════════════════════════════════════ */
.nt-process-section {
    background: var(--nt-bg-light);
    padding: 4rem 0;
}
.nt-process-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: process;
}
.nt-process-step {
    background: #fff;
    border-radius: var(--nt-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nt-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.nt-process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--nt-universe-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.nt-process-step__title {
    color: var(--nt-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.nt-process-step__text {
    color: var(--nt-text);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 991px) {
    .nt-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .nt-process-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   MOBILE STICKY CTA-BAR
   ═══════════════════════════════════════ */
.nt-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    padding: 0.6rem;
    gap: 0.5rem;
    border-top: 1px solid var(--nt-border);
}
.nt-mobile-cta__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}
.nt-mobile-cta__btn--phone {
    background: var(--nt-bg-light);
    color: var(--nt-primary);
    border: 1px solid var(--nt-border);
}
.nt-mobile-cta__btn--quote {
    background: var(--nt-universe-accent);
    color: #fff;
}
@media (max-width: 767px) {
    .nt-mobile-cta { display: flex; }
    /* Lav plads i bunden så indhold ikke gemmes bag baren */
    body { padding-bottom: 70px; }
}

/* ═══════════════════════════════════════
   BREADCRUMBS — opgraderet
   ═══════════════════════════════════════ */
.nt-breadcrumbs {
    padding: 0.75rem 0;
    background: var(--nt-bg-light);
    border-bottom: 1px solid var(--nt-border);
    font-size: 0.85rem;
}
.nt-breadcrumbs .nt-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.nt-breadcrumbs a,
.nt-breadcrumbs .current {
    color: var(--nt-text-light);
    text-decoration: none;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
}
.nt-breadcrumbs a:hover {
    color: var(--nt-universe-accent);
}
.nt-breadcrumbs .current {
    color: var(--nt-universe-accent);
    font-weight: 600;
}
.nt-breadcrumbs__home svg { display: block; }
.nt-breadcrumbs__sep {
    color: var(--nt-border);
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

/* ═══════════════════════════════════════
   HERO OVERLAY — vignette i stedet for flad gradient
   ═══════════════════════════════════════ */
.nt-hero::before {
    background:
        radial-gradient(ellipse at center, rgba(28, 39, 68, 0.35) 0%, rgba(28, 39, 68, 0.75) 100%),
        linear-gradient(135deg, rgba(28, 39, 68, 0.55) 0%, rgba(28, 39, 68, 0.35) 100%) !important;
}

/* ═══════════════════════════════════════
   CASE CARD HOVER — billede zoom
   ═══════════════════════════════════════ */
.nt-case-card__image {
    overflow: hidden;
}
.nt-case-card__image img {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}
.nt-case-card:hover .nt-case-card__image img {
    transform: scale(1.06);
}

/* ═══════════════════════════════════════
   JOBS — KRYDSLINKS TIL ANDRE VIRKSOMHEDER
   ═══════════════════════════════════════ */

.nt-jobs-other {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #E5E9F0;
    text-align: center;
}

.nt-jobs-other__title {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: var(--nt-primary, #1C2744);
}

.nt-jobs-other__text {
    margin: 0 0 1.5rem;
    color: var(--nt-text, #4A5568);
}

.nt-jobs-other__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ═══════════════════════════════════════
   404 — BYGGEPLADS
   ═══════════════════════════════════════ */

.nt-404 {
    padding: 4.5rem 1.5rem 5rem;
    text-align: center;
    background: var(--nt-bg, #F7F8FA);
}

.nt-404__code {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.06em;
    font-size: clamp(5.5rem, 15vw, 9rem);
    font-weight: 800;
    line-height: 1;
    color: var(--nt-primary, #1C2744);
}

.nt-404__code svg {
    height: 0.92em;
    width: auto;
    margin: 0 0.03em;
}

.nt-404__tape {
    height: 12px;
    max-width: 300px;
    margin: 2rem auto 2.25rem;
    border-radius: 4px;
    background: repeating-linear-gradient(
        -45deg,
        #F2A901 0 14px,
        var(--nt-primary, #1C2744) 14px 28px
    );
}

.nt-404__headline {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    color: var(--nt-primary, #1C2744);
}

.nt-404__text {
    max-width: 540px;
    margin: 0 auto 2.25rem;
    color: var(--nt-text, #4A5568);
    line-height: 1.7;
}

.nt-404__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nt-404__phone {
    margin-top: 2.5rem;
    color: var(--nt-text, #4A5568);
}

.nt-404__phone a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.35rem;
    font-weight: 700;
    color: var(--nt-universe-accent, #164C91);
    text-decoration: none;
    white-space: nowrap;
}

.nt-404__phone a:hover {
    text-decoration: underline;
}

.nt-404__phone svg {
    width: 18px;
    height: 18px;
}
