/* TaylorCom NovaFlow site system - 2026-07-19 */
:root {
    --nova-ink: #0b1224;
    --nova-ink-2: #10243a;
    --nova-blue: #086cf0;
    --nova-cyan: #08b9e8;
    --nova-green: #1bcf7a;
    --nova-text: #162033;
    --nova-muted: #607089;
    --nova-line: #dbe5f1;
    --nova-bg: #f4f7fb;
    --nova-panel: #ffffff;
    --nova-soft-blue: #eaf3ff;
    --nova-radius-sm: 12px;
    --nova-radius: 20px;
    --nova-radius-lg: 30px;
    --nova-shadow: 0 18px 50px rgba(19, 43, 74, 0.10);
    --nova-shadow-soft: 0 10px 30px rgba(19, 43, 74, 0.07);
}

html { scroll-behavior: smooth; }
body.nova-site {
    --blue: var(--nova-blue);
    --blue-dark: #055bcc;
    --green: var(--nova-green);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.nova-site:not(.nova-dashboard) {
    margin: 0 !important;
    padding-top: 88px !important;   /* !important noetig: tc-override.css setzt html,body{padding:0 !important} */
    background: var(--nova-bg) !important;
    color: var(--nova-text) !important;
}
body.nova-site *, body.nova-site *::before, body.nova-site *::after { box-sizing: border-box; }
body.nova-site img { max-width: 100%; }

/* Shared navigation */
.nova-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 10000;
    height: 88px;
    background: rgba(248, 251, 254, 0.96);
    border-top: 3px solid var(--nova-ink);
    border-bottom: 1px solid rgba(16, 36, 58, 0.10);
    box-shadow: 0 6px 24px rgba(15, 31, 52, 0.04);
    backdrop-filter: saturate(150%) blur(18px);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}
.nova-nav__inner {
    width: min(1440px, 100%);
    height: 85px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: minmax(205px, 1fr) auto minmax(205px, 1fr);
    align-items: center;
    gap: 24px;
}
.nova-brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0753c6 !important;
    text-decoration: none !important;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}
.nova-brand__logo {
    display: block;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    object-fit: contain;
}
.nova-nav__links {
    justify-self: center;
    display: grid;
    grid-template-columns: 68px 102px 118px 121px 88px 100px;
    align-items: center;
    gap: 3px;
    width: 630px;
    margin: 0;
    padding: 6px 8px;
    list-style: none;
    background: rgba(255,255,255,0.94);
    border: 1px solid #dfe7f1;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 31, 52, 0.05);
}
.nova-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 11px;
    color: #28364b !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nova-nav__link:hover { color: #075dcc !important; background: #f2f6fb; }
.nova-nav__link[aria-current="page"] {
    color: #075dcc !important;
    background: #edf4fd;
    box-shadow: inset 0 0 0 1px #d7e6f8;
    font-weight: 600;
}
.nova-shop {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 44px;
    padding: 0 20px;
    border-radius: 15px;
    color: #fff !important;
    background: linear-gradient(90deg, #086cf0, #08aee6);
    box-shadow: 0 9px 22px rgba(8, 108, 240, 0.28);
    text-decoration: none !important;
    font-size: 0.94rem;
    font-weight: 760;
    transition: transform .2s ease, box-shadow .2s ease;
}
.nova-shop:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(8,108,240,.34); }
.nova-shop[aria-current="page"] { box-shadow: 0 0 0 3px rgba(8,108,240,.18), 0 11px 25px rgba(8,108,240,.3); }
.nova-menu-button {
    justify-self: end;
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}
.nova-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--nova-ink);
    transition: transform .2s ease, opacity .2s ease;
}
.nova-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nova-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nova-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nova-mobile-menu {
    position: fixed;
    inset: 60px 0 0;
    z-index: 9999;
    display: none;
    overflow-y: auto;
    padding: 18px 24px 32px;
    background: rgba(248,251,254,.99);
    backdrop-filter: blur(20px);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}
.nova-mobile-menu.is-open { display: block; }
.nova-mobile-menu a:not(.nova-mobile-shop) {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid var(--nova-line);
    color: var(--nova-text) !important;
    text-decoration: none !important;
    font-size: 1.08rem;
    font-weight: 600;
}
.nova-mobile-menu a[aria-current="page"] { color: var(--nova-blue) !important; }
.nova-mobile-shop { margin-top: 24px; }
.nova-mobile-menu .nova-mobile-shop[aria-current="page"] { color: #fff !important; }
.nova-menu-button:focus-visible, .nova-nav a:focus-visible {
    outline: 3px solid rgba(8,108,240,.35);
    outline-offset: 3px;
}

/* Shared marketing surface */
body.nova-site:not(.nova-dashboard) :where(main, #imContent) { color: var(--nova-text); }
body.nova-site:not(.nova-dashboard) :where(h1,h2,h3,h4) {
    color: var(--nova-text);
    font-family: inherit !important;
    text-wrap: balance;
}
body.nova-site:not(.nova-dashboard) h1 {
    font-size: clamp(1.125rem, 2.5vw, 2.325rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.045em !important;
    font-weight: 790 !important;
}
body.nova-site:not(.nova-dashboard) h2 {
    font-size: clamp(1.75rem, 3.1vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    font-weight: 760 !important;
}
body.nova-site:not(.nova-dashboard) h3 {
    line-height: 1.25 !important;
    letter-spacing: -0.018em;
}
body.nova-site:not(.nova-dashboard) :where(p,li) { line-height: 1.72; }
body.nova-site:not(.nova-dashboard) :where(p,.subtitle,.lead,.hero-subtitle) { color: var(--nova-muted); }
body.nova-site:not(.nova-dashboard) :where(a) { text-underline-offset: 3px; }

body.nova-site:not(.nova-dashboard) .hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100% !important;
    min-height: 0;
    margin: 0 !important;
    padding: clamp(44px, 4.4vw, 66px) max(24px, calc((100vw - 1220px) / 2)) !important;
    border-radius: 0 0 var(--nova-radius-lg) var(--nova-radius-lg);
    background: linear-gradient(132deg, #0a1224 0%, #0b2038 58%, #073c5c 100%) !important;
    color: #fff !important;
    text-align: left;
}
body.nova-site:not(.nova-dashboard) .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -35% -10% auto auto;
    width: min(660px, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19,171,231,.22), rgba(8,108,240,.07) 48%, transparent 70%);
    pointer-events: none;
}
body.nova-site:not(.nova-dashboard) .hero > * { position: relative; z-index: 1; }
body.nova-site:not(.nova-dashboard) .hero h1,
body.nova-site:not(.nova-dashboard) .hero h2,
body.nova-site:not(.nova-dashboard) .hero h3 { color: #f5f9ff !important; }
body.nova-site:not(.nova-dashboard) .hero h1 { max-width: 1080px; margin-left: auto !important; margin-right: auto !important; }
body.nova-site:not(.nova-dashboard) .hero h1 span,
body.nova-site:not(.nova-dashboard) .hero .gradient-text {
    color: #26c3f0 !important;
    background: linear-gradient(90deg, #4d9dff, #25d2e6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.nova-site:not(.nova-dashboard) .hero :where(p,.subtitle,.hero-subtitle) {
    max-width: 800px;
    color: #b9c9dc !important;
    font-size: clamp(1rem, 1.7vw, 1.2rem) !important;
}
body.nova-site:not(.nova-dashboard) .hero :where(strong,b) { color: #ffffff !important; }
body.nova-site:not(.nova-dashboard) .hero .hero-price { color: #c2d2e4 !important; text-align: center !important; }
body.nova-site:not(.nova-dashboard) :where(.hero-label,.section-label,.kicker) {
    color: #2cbff1 !important;
    font-size: .75rem !important;
    font-weight: 760 !important;
    letter-spacing: .11em !important;
    text-transform: uppercase;
}

body.nova-site:not(.nova-dashboard) :where(main > section:not(.hero), body > section:not(.hero), #imContent > section) {
    padding-top: clamp(28px, 3vw, 48px);
    padding-bottom: clamp(28px, 3vw, 48px);
}
body.nova-site:not(.nova-dashboard) :where(.content-section,.intro-section,.features,.detail-section,.benefits,.hardware-section,.faq-section,.pricing-section,.addon-section,.compare-section,.customer-reviews,.branchen-section,.feature-links,.praxis-section,.use-cases,.gallery-section,.usp-section,.testimonials-section,.offer-section,.section) {
    border-color: var(--nova-line) !important;
}
body.nova-site:not(.nova-dashboard) :where(.alt,.kp-branchen) { background: var(--nova-soft-blue) !important; }
body.nova-site:not(.nova-dashboard) :where(.dark,.cta-section) {
    background: linear-gradient(132deg, #0a1224 0%, #0b2038 100%) !important;
    color: #d9e7f7 !important;
}
body.nova-site:not(.nova-dashboard) :where(.dark,.cta-section) :where(h2,h3,h4) { color: #fff !important; }
body.nova-site:not(.nova-dashboard) :where(.dark,.cta-section) p { color: #b8c8dc !important; }

body.nova-site:not(.nova-dashboard) :where(.card,.feature-card,.feature-item,.benefit-card,.usp-card,.testimonial-card,.review-card,.pricing-card,.price-card,.product-card,.faq-item,.fact,.info-card,.download-card,.hardware-card,.branch-card) {
    border: 1px solid var(--nova-line) !important;
    border-radius: var(--nova-radius) !important;
    background: var(--nova-panel) !important;
    box-shadow: var(--nova-shadow-soft) !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}
body.nova-site:not(.nova-dashboard) :where(.card,.feature-card,.feature-item,.benefit-card,.usp-card,.testimonial-card,.review-card,.pricing-card,.price-card,.product-card,.faq-item,.fact,.info-card,.download-card,.hardware-card,.branch-card):hover {
    transform: translateY(-4px);
    border-color: #b8d3f1 !important;
    box-shadow: var(--nova-shadow) !important;
}
body.nova-site:not(.nova-dashboard) :where(.feature-icon,.icon,.step-icon) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--nova-blue);
    background: #e8f3ff;
}

body.nova-site:not(.nova-dashboard) :where(.btn,.button,.cta-button,.primary-btn,.btn-primary,.primary,.add-to-cart,.buy-button,.download-button,.shop-button) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 14px !important;
    color: #fff !important;
    background: linear-gradient(90deg, #086cf0, #08aee6) !important;
    box-shadow: 0 10px 24px rgba(8,108,240,.24) !important;
    text-decoration: none !important;
    font-family: inherit !important;
    font-weight: 720 !important;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease !important;
}
body.nova-site:not(.nova-dashboard) :where(.btn,.button,.cta-button,.primary-btn,.btn-primary,.primary,.add-to-cart,.buy-button,.download-button,.shop-button):hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(8,108,240,.3) !important;
}
body.nova-site:not(.nova-dashboard) :where(.btn.secondary,.secondary,.btn-secondary,.btn-outline) {
    color: #075dcc !important;
    background: #fff !important;
    border: 1px solid #c9ddf3 !important;
    box-shadow: none !important;
}
body.nova-site:not(.nova-dashboard) :where(button,input,select,textarea) { font: inherit; }
body.nova-site:not(.nova-dashboard) :where(input:not([type="checkbox"]):not([type="radio"]),select,textarea) {
    border: 1px solid #cad7e6 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--nova-text) !important;
    outline: 0;
}
body.nova-site:not(.nova-dashboard) :where(input,select,textarea):focus {
    border-color: var(--nova-blue) !important;
    box-shadow: 0 0 0 4px rgba(8,108,240,.12) !important;
}
body.nova-site:not(.nova-dashboard) table {
    overflow: hidden;
    border: 1px solid var(--nova-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--nova-shadow-soft);
}
body.nova-site:not(.nova-dashboard) :where(th) { background: #edf4fd !important; color: #263a55 !important; }
body.nova-site:not(.nova-dashboard) :where(td,th) { border-color: var(--nova-line) !important; }

body.nova-site:not(.nova-dashboard) :where(footer,#imFooter,.footer) {
    border: 0 !important;
    background: #060a14 !important;
    color: #8ea3c0 !important;
}
body.nova-site:not(.nova-dashboard) :where(footer,#imFooter,.footer) :where(h2,h3,h4) { color: #edf5ff !important; }
body.nova-site:not(.nova-dashboard) :where(footer,#imFooter,.footer) a { color: #afc2db !important; }
body.nova-site:not(.nova-dashboard) :where(footer,#imFooter,.footer) a:hover { color: #fff !important; }
body.nova-site:not(.nova-dashboard) :where(#imPage,#imContent,.imPage) { background-color: transparent !important; }
body.nova-site:not(.nova-dashboard) .kp-skip-link:focus { z-index: 10001; }

/* Legacy Website-X5 pages */
body.nova-site > header.tc-header { display: none !important; }
body.nova-legacy-page #imPageExtContainer,
body.nova-legacy-page #imPageIntContainer,
body.nova-legacy-page #imPage {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}
body.nova-legacy-page #imContentGraphics,
body.nova-legacy-page #imHeaderObjects,
body.nova-legacy-page #imStickyBarContainer,
body.nova-legacy-page #imSideBar { display: none !important; }
body.nova-legacy-page #imHeader {
    position: relative !important;
    inset: auto !important;
    left: 0 !important;
    right: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    isolation: isolate;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 360px !important;
    margin: 0 !important;
    padding: clamp(64px,7vw,104px) max(24px,calc((100vw - 1220px)/2)) !important;
    overflow: hidden;
    border-radius: 0 0 var(--nova-radius-lg) var(--nova-radius-lg);
    background: linear-gradient(132deg,#0a1224 0%,#0b2038 58%,#073c5c 100%) !important;
    color: #fff !important;
    text-align: center;
}
body.nova-legacy-page #imHeader::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -60% -10% auto auto;
    width: min(660px,70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(19,171,231,.22),rgba(8,108,240,.07) 48%,transparent 70%);
}
body.nova-legacy-page #imHeader :where(h1,h2,h3) { color: #fff !important; }
body.nova-legacy-page #imHeader h1 { max-width: 1040px; margin: 0 auto 20px !important; }
body.nova-legacy-page #imHeader h2 { max-width: 800px !important; margin: 0 auto 34px !important; color: #b9c9dc !important; }
body.nova-legacy-page #imHeader .tc-hero-image-panel { max-width: 1050px; margin: 30px auto 0; }
body.nova-legacy-page #imContent {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    background: var(--nova-bg) !important;
}
body.nova-legacy-page #imContent .text-inner {
    width: min(1120px,calc(100% - 40px));
    margin: 42px auto !important;
    padding: clamp(28px,5vw,64px) !important;
    border: 1px solid var(--nova-line);
    border-radius: var(--nova-radius);
    background: #fff;
    box-shadow: var(--nova-shadow-soft);
    color: var(--nova-text) !important;
    text-align: left !important;
}
body.nova-legacy-page #imContent .imTACenter { text-align: left !important; }
body.nova-legacy-page #imContent :where(.fs12lh1-5,.fs11lh1-5,.fs10lh1-5) {
    color: var(--nova-muted) !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
}
body.nova-legacy-page #imContent :where(.fs14lh1-5,.fs16lh1-5,strong) {
    color: var(--nova-text) !important;
    font-family: inherit !important;
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
}
body.nova-legacy-page #imContent .text-inner img {
    display: block;
    height: auto;
    margin: 28px auto;
    border-radius: 18px;
    box-shadow: var(--nova-shadow-soft);
}

@media (max-width: 1160px) {
    body.nova-site:not(.nova-dashboard) { padding-top: 60px !important; }
    .nova-nav { height: 60px; }
    .nova-nav__inner {
        height: 57px;
        padding: 0 14px;
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }
    .nova-brand { font-size: 1.05rem; gap: 9px; }
    .nova-brand__logo { width: 34px; height: 34px; }
    .nova-nav__links { display: none; }
    .nova-shop { min-width: 70px; height: 38px; padding: 0 14px; border-radius: 13px; font-size: .86rem; }
    .nova-menu-button { display: block; }
    body.nova-site:not(.nova-dashboard) .hero { border-radius: 0 0 24px 24px; }
}
@media (max-width: 680px) {
    body.nova-site:not(.nova-dashboard) h1 { font-size: clamp(1rem, 5.5vw, 1.5rem) !important; }
    body.nova-site:not(.nova-dashboard) h2 { font-size: clamp(1.55rem, 7vw, 2.1rem) !important; }
    body.nova-site:not(.nova-dashboard) .hero {
        min-height: 0;
        padding: 36px 20px 42px !important;
    }
    body.nova-site:not(.nova-dashboard) :where(main > section:not(.hero), body > section:not(.hero), #imContent > section) {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    body.nova-site:not(.nova-dashboard) :where(.grid,.features-grid,.benefits-grid,.pricing-grid,.product-grid,.cards-grid) {
        grid-template-columns: minmax(0,1fr) !important;
    }
    body.nova-site:not(.nova-dashboard) table { display: block; max-width: 100%; overflow-x: auto; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    body.nova-site *, body.nova-site *::before, body.nova-site *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

