:root {
    --novahosting-navy: #1f2f52;
    --novahosting-navy-deep: #043b43;
    --novahosting-orange: #fbb03b;
    --novahosting-orange-dark: #e39a22;
    --novahosting-white: #ffffff;
    --novahosting-text: #1e2a42;
    --novahosting-muted: #788296;
    --novahosting-line: #e7ebf1;
}

/* Modern compact header */
#header.header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 8px 28px rgba(31,47,82,.055);
}

#header .topbar {
    min-height: 28px;
    background: var(--novahosting-orange-dark);
    color: #fff;
}

#header .topbar .container { min-height: 28px; }
#header .topbar .btn,
#header .topbar .input-group-text,
#header .topbar a {
    min-height: 28px;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #fff !important;
    font-size: 11px;
}
#header .topbar .btn:hover,
#header .topbar .btn:focus { background: rgba(255,255,255,.12); }

#header .novahosting-main-header {
    min-height: 86px;
    padding: 0;
    background: #fff;
    border-bottom: 2px solid #fbb03b !important;
}

#header .novahosting-main-header > .container {
    min-height: 86px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

#header .navbar-brand {
    flex: 0 0 auto;
    margin: 0 42px 0 0;
    padding: 0;
}
#header .navbar-brand .logo-img {
    width: auto;
    max-width: 195px;
    max-height: 58px;
}

#header #mainNavbar { min-width: 0; }
#header .novahosting-primary-nav { align-items: center; gap: 2px; }
#header .novahosting-primary-nav > li > a,
#header .novahosting-account-nav > li > a {
    position: relative;
    padding: 31px 12px 29px;
    color: var(--novahosting-text);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    background: transparent !important;
}
#header .novahosting-primary-nav > li > a::after {
    content: '';
    position: absolute;
    right: 12px;
    bottom: 20px;
    left: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--novahosting-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}
#header .novahosting-primary-nav > li > a:hover,
#header .novahosting-primary-nav > li.active > a,
#header .novahosting-primary-nav > li.show > a,
#header .novahosting-account-nav > li > a:hover { color: var(--novahosting-orange-dark); }
#header .novahosting-primary-nav > li > a:hover::after,
#header .novahosting-primary-nav > li.active > a::after,
#header .novahosting-primary-nav > li.show > a::after { transform: scaleX(1); }

#header .novahosting-account-nav {
    margin-left: 8px !important;
    padding-left: 12px;
    border-left: 1px solid var(--novahosting-line);
}
#header .novahosting-account-nav > li > a { padding-left: 10px; padding-right: 10px; }

#header .novahosting-header-tools {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 14px;
}
#header .novahosting-header-search {
    width: 235px;
    height: 42px;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid var(--novahosting-line);
    border-radius: 12px;
    background: #f8fafc;
}
#header .novahosting-header-search i { color: #9aa2b1; font-size: 13px; }
#header .novahosting-header-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--novahosting-text);
    font-size: 12px;
}
#header .novahosting-tool-button,
#header .novahosting-menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--novahosting-line);
    border-radius: 12px;
    background: #fff;
    color: var(--novahosting-navy);
}
#header .novahosting-tool-button:hover,
#header .novahosting-menu-toggle:hover {
    border-color: var(--novahosting-orange);
    background: #fff5f2;
    color: var(--novahosting-orange-dark);
    text-decoration: none;
}
#header .novahosting-tool-button .badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 3px 6px;
    background: var(--novahosting-navy) !important;
    color: #fff;
}
#header .novahosting-menu-toggle { display: none; margin-left: auto; }
#header .novahosting-mobile-search { display: none; }

#header .dropdown-menu {
    min-width: 225px;
    padding: 9px;
    margin-top: 0;
    border: 1px solid var(--novahosting-line);
    border-radius: 14px;
    box-shadow: 0 20px 55px rgba(31,47,82,.15);
}
#header .dropdown-item {
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--novahosting-text);
    font-size: 13px;
}
#header .dropdown-item:hover,
#header .dropdown-item:focus {
    background: #fff3ef;
    color: var(--novahosting-orange-dark);
}

.master-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #f1f2f5;
}
.master-breadcrumb .breadcrumb {
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 12px;
}

/* Footer CTA */
.novahosting-footer-cta {
    margin-top: 90px;
    padding: 52px 0;
    background: #fff;
    border-top: 1px solid var(--novahosting-line);
}

.novahosting-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.novahosting-footer-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--novahosting-orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.novahosting-footer-cta h2 {
    margin: 0;
    max-width: 530px;
    color: var(--novahosting-navy);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(29px, 3vw, 45px);
    line-height: 1.08;
}

.novahosting-footer-cta-meta {
    display: flex;
    align-items: center;
    gap: 34px;
}

.novahosting-footer-cta-meta span {
    display: block;
    color: var(--novahosting-muted);
    font-size: 12px;
}

.novahosting-footer-cta-meta > div > a {
    color: var(--novahosting-navy);
    font-size: 21px;
    font-weight: 700;
}

.novahosting-footer-contact-btn,
.novahosting-footer-contact-btn:hover,
.novahosting-footer-contact-btn:focus {
    padding: 13px 20px;
    border-radius: 8px;
    background: var(--novahosting-orange) !important;
    border-color: var(--novahosting-orange) !important;
    color: #fff !important;
    font-weight: 700;
}

/* Footer */
.novahosting-footer {
    padding: 64px 0 24px;
    background: var(--novahosting-navy) !important;
    border-top: 0 !important;
    color: rgba(255,255,255,.72);
}

.novahosting-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr 1fr;
    gap: 48px;
}

.novahosting-footer-logo img {
    max-width: 180px;
    max-height: 58px;
}

.novahosting-footer-brand p {
    margin: 20px 0;
    line-height: 1.75;
}

.novahosting-footer h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.novahosting-footer-links a,
.novahosting-footer-contact-lines a {
    display: block;
    margin-bottom: 11px;
    color: rgba(255,255,255,.72);
}

.novahosting-footer a:hover {
    color: #fff;
    text-decoration: none;
}

.novahosting-footer-contact-lines i {
    width: 20px;
    color: var(--novahosting-orange);
}

.novahosting-footer-login-btn,
.novahosting-footer-login-btn:hover,
.novahosting-footer-login-btn:focus {
    padding: 12px 16px;
    background: var(--novahosting-orange) !important;
    border-color: var(--novahosting-orange) !important;
    color: #fff !important;
    border-radius: 7px;
    font-weight: 700;
}

.novahosting-footer-phone {
    display: block;
    margin-top: 15px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 9px;
    background: rgba(255,255,255,.04);
}

.novahosting-footer-phone span,
.novahosting-footer-phone strong {
    display: block;
}

.novahosting-footer-phone span { font-size: 11px; color: rgba(255,255,255,.55); }
.novahosting-footer-phone strong { margin-top: 3px; color: #fff; font-size: 18px; }

.novahosting-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 12px;
}

.novahosting-footer-tools .btn {
    border-color: rgba(255,255,255,.55);
}

.novahosting-footer-legal {
    display: flex;
    gap: 16px;
}

.novahosting-footer-legal a { color: rgba(255,255,255,.58); }

@media (max-width: 1399px) {
    #header .novahosting-header-search { display: none !important; }
    #header .navbar-brand { margin-right: 26px; }
    #header .novahosting-primary-nav > li > a,
    #header .novahosting-account-nav > li > a { padding-left: 9px; padding-right: 9px; font-size: 13px; }
}

@media (max-width: 1199px) {
    #header .novahosting-main-header > .container { flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
    #header .novahosting-main-header { min-height: 74px; }
    #header .navbar-brand .logo-img { max-width: 170px; max-height: 52px; }
    #header .novahosting-menu-toggle { display: inline-flex; }
    #header .novahosting-header-tools { margin-left: 10px; }
    #header #mainNavbar { flex-basis: 100%; order: 5; }
    #header #mainNavbar.show,
    #header #mainNavbar.collapsing { margin-top: 14px; padding: 14px; border: 1px solid var(--novahosting-line); border-radius: 14px; background: #fff; box-shadow: 0 18px 45px rgba(31,47,82,.1); }
    #header .novahosting-primary-nav,
    #header .novahosting-account-nav { align-items: stretch; }
    #header .novahosting-account-nav { margin-left: 0 !important; padding-left: 0; border-left: 0; border-top: 1px solid var(--novahosting-line); }
    #header .novahosting-primary-nav > li > a,
    #header .novahosting-account-nav > li > a { padding: 11px 10px; border-radius: 8px; }
    #header .novahosting-primary-nav > li > a::after { display: none; }
    #header .novahosting-primary-nav > li > a:hover,
    #header .novahosting-account-nav > li > a:hover { background: #fff3ef !important; }
    #header .novahosting-mobile-search { display: block; order: 6; margin-top: 10px; }
    #header .novahosting-mobile-search .form-control,
    #header .novahosting-mobile-search .btn { height: 42px; border-color: var(--novahosting-line); }
    #header .novahosting-mobile-search .btn { background: var(--novahosting-orange); color: #fff; }
    .novahosting-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 34px; }
}

@media (max-width: 767px) {
    #header .topbar .input-group-prepend { display: none !important; }
    #header .navbar-brand .logo-img { max-width: 150px; max-height: 46px; }
    #header .novahosting-header-tools { margin-left: 8px; }
    #header .novahosting-tool-button,
    #header .novahosting-menu-toggle { width: 39px; height: 39px; border-radius: 10px; }
    .novahosting-footer-cta { margin-top: 55px; padding: 38px 0; }
    .novahosting-footer-cta-inner,
    .novahosting-footer-cta-meta { align-items: flex-start; flex-direction: column; }
    .novahosting-footer-cta-meta { gap: 18px; }
    .novahosting-footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .novahosting-footer-bottom { grid-template-columns: 1fr; text-align: center; }
    .novahosting-footer-tools,
    .novahosting-footer-legal { justify-content: center; }
}


/* v1.2.0: kompakter Seitenabschluss ohne leeren Zwischenraum */
#main-body {
    min-height: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
#main-body > .container,
#main-body > div {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.novahosting-footer-cta {
    margin-top: 0 !important;
}

/* In das Benutzermenü verschobene Einträge */
#header .novahosting-relocated-account-link {
    display: block;
}

/* Footer-Logo immer über die gewünschte feste Bildquelle */
.novahosting-footer-logo img {
    width: auto;
    max-width: 180px;
    max-height: 58px;
    object-fit: contain;
}


/* v1.3.0: Sticky Header, unverändertes Footer-Logo und Back-to-top */
#header.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.novahosting-footer-logo img {
    filter: none !important;
    opacity: 1 !important;
}

#header .novahosting-account-nav .dropdown-menu > .novahosting-relocated-account-link:first-child {
    margin-top: 0;
}

.novahosting-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--novahosting-orange);
    color: #fff;
    box-shadow: 0 12px 30px rgba(31,47,82,.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
    cursor: pointer;
}

.novahosting-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.novahosting-back-to-top:hover,
.novahosting-back-to-top:focus {
    background: var(--novahosting-orange-dark);
    color: #fff;
    outline: none;
}

@media (max-width: 767px) {
    .novahosting-back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

/* Nova Hosting targeted CI fix v1.0.6 */
:root {
    --novahosting-orange: #fbb03b;
    --novahosting-orange-dark: #e39a22;
}

#header {
    border-bottom: 2px solid #fbb03b !important;
    box-shadow: none !important;
}

#header::before,
#header::after {
    display: none !important;
    content: none !important;
    height: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

#header .navbar-nav > li > a:hover,
#header .navbar-nav > li > a:focus,
#header .navbar-nav > li.active > a,
#header .navbar-nav > li.active > a:hover,
#header .navbar-nav > li.active > a:focus,
#header .nav > li > a:hover,
#header .nav > li > a:focus,
#header .nav > li.active > a,
#header .nav > li.active > a:hover,
#header .nav > li.active > a:focus,
#header a.active,
#header a[aria-current="page"] {
    color: #fbb03b !important;
    border-bottom-color: #fbb03b !important;
}

#header .navbar-nav > li > a::after,
#header .nav > li > a::after,
#header a.active::after,
#header a[aria-current="page"]::after {
    background-color: #fbb03b !important;
    border-color: #fbb03b !important;
}

.novahosting-cta .btn,
.novahosting-cta a,
.novahosting-consultation .btn,
.pre-footer-cta .btn,
.footer-cta .btn,
.btn-primary {
    background: #fbb03b !important;
    background-color: #fbb03b !important;
    border-color: #fbb03b !important;
    color: #fff !important;
}

.novahosting-cta .btn:hover,
.novahosting-cta a:hover,
.novahosting-consultation .btn:hover,
.pre-footer-cta .btn:hover,
.footer-cta .btn:hover,
.btn-primary:hover,
.btn-primary:focus {
    background: #e39a22 !important;
    background-color: #e39a22 !important;
    border-color: #e39a22 !important;
    color: #fff !important;
}
/* ===== Header Shadow ===== */

#header,
header,
.main-header,
.navbar {
    border-bottom: 3px solid #fbb03b !important;
    box-shadow: 0 2px 4px rgba(0,0,0,.08) !important;
}

