/*
Theme Name: Konzept17
Author: Konzept17
Version: 1.0
*/


/* =====================================================
   1. GLOBAL / RESET
===================================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    margin: 0;
    color: #1d1d1f;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* =====================================================
   SECTION SPACING
===================================================== */

section{
    padding:0;
}

/* =====================================================
   2. HEADER
===================================================== */

.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e9e9ec;
}

.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 24px;
    position: relative;
}

.site-branding{
    flex: 0 0 auto;
}

.logo{
    display: inline-block;
    color: #eb6700;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.main-navigation{
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.main-navigation ul{
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li{
    margin: 0;
    padding: 0;
}

.main-navigation a{
    color: #1d1d1f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color .2s ease;
}

.main-navigation a:hover{
    color: #eb6700;
}

.header-cta{
    flex: 0 0 auto;
}

.header-button{
    display: inline-block;
    background: #eb6700;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.header-button:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(235, 103, 0, 0.18);
    opacity: 0.96;
}

/* =====================================================
   MOBILE MENU TOGGLE
===================================================== */

.menu-toggle{
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
}

.menu-toggle span{
    display: block;
    width: 22px;
    height: 2px;
    background: #1d1d1f;
    margin: 5px auto;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}


/* =====================================================
   4. SERVICES / LEISTUNGEN
===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card{
    background:#f5f5f7;
    padding:30px;
    border-radius:12px;
    transition:all .2s ease;
    cursor:pointer;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card h3{
    color:#1d1d1f;
}

.service-card:hover h3{
    color:#eb6700;
}



/* =====================================================
   5. FOOTER
===================================================== */

.site-footer {
    border-top: 1px solid #eee;
    text-align: center;
    padding: 30px 0;
    color: #6e6e73;
}

/* =====================================================
   5. TRUST / VERTRAUEN
===================================================== */

.trust{
    background:#ffffff;
}

.trust-intro{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}

.section-eyebrow{
    display:inline-block;
    margin-bottom:12px;
    font-size:14px;
    font-weight:700;
    letter-spacing:0.04em;
    text-transform:uppercase;
    color:#eb6700;
}

.trust-intro h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.15;
    color:#1d1d1f;
}

.trust-intro p{
    margin:0;
    font-size:20px;
    line-height:1.5;
    color:#6e6e73;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    margin-top:20px;
}

.trust-card{
    background:#f5f5f7;
    border-radius:18px;
    padding:32px 24px;
    text-align:center;
    transition:transform .2s ease, box-shadow .2s ease;
}

.trust-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.trust-card h3{
    margin:0 0 14px;
    font-size:34px;
    line-height:1.15;
    color:#1d1d1f;
}

.trust-card p{
    margin:0;
    font-size:18px;
    line-height:1.45;
    color:#6e6e73;
}

/* =====================================================
   6. CALL TO ACTION
===================================================== */

.cta {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    color: #6e6e73;
    margin-bottom: 30px;
}

.cta-button {
    background: #eb6700;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.cta-button:hover {
    opacity: 0.9;
}
/* =====================================================
   HERO LAYOUT
===================================================== */

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-visual img{
    width:100%;
    border-radius:12px;
}

/* =====================================================
   7. GUTENBERG / K17 BLOCKS
===================================================== */

.site-main{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.alignwide{
    max-width: 1400px;
}

.alignfull{
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* =====================================================
   7. K17 HERO BLOCK
===================================================== */

.k17-hero-block{
    padding-top: 40px;
    padding-bottom: 24px;
}

.k17-hero-inner{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.k17-eyebrow{
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #eb6700;
}

.k17-hero-title{
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 24px;
    color: #1d1d1f;
}

.k17-hero-textline{
    font-size: 20px;
    line-height: 1.45;
    color: #6e6e73;
    max-width: 620px;
    margin: 0 0 28px;
}

.k17-button{
    display: inline-block;
    background: #eb6700;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.k17-button:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(235, 103, 0, 0.18);
    opacity: 0.96;
}

.k17-hero-placeholder{
    min-height: 360px;
    background: #f5f5f7;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

/* --- K17 SERVICES BLOCK --- */

.k17-services-block{
    padding: 24px 0 0px;
}

.k17-services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.k17-service-card{
    background: #f5f5f7;
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.k17-service-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.k17-service-card h3{
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.k17-service-card p{
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #6e6e73;
}

/* =====================================================
   K17 TRUST BLOCK
===================================================== */

.k17-trust-block{
    padding: 24px 0;
}

.k17-trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.k17-trust-item{
    text-align:center;
}

.k17-trust-number{
    font-size:36px;
    font-weight:700;
    color:#1d1d1f;
    margin-bottom:6px;
}

.k17-trust-text{
    font-size:16px;
    color:#6e6e73;
}

/* =====================================================
   K17 SECTION BLOCK
===================================================== */

.k17-section-block{
    padding: 24px 0;
}

.k17-section-inner{
    max-width: 820px;
}

.k17-section-eyebrow{
    display: inline-block;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #eb6700;
}

.k17-section-title{
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}

.k17-section-title.is-default{
    color:#1d1d1f;
}

.k17-section-title.is-orange{
    color:#eb6700;
}

.k17-section-title.is-muted{
    color:#6e6e73;
}

.k17-section-text{
    font-size: 18px;
    line-height: 1.6;
    color: #6e6e73;
    margin: 0 0 28px;
}

.k17-section-actions{
    margin-top: 20px;
}

/* =====================================================
   K17 FEATURES 4 BLOCK
===================================================== */

.k17-features-4-block{
    padding: 24px 0;
}

.k17-features-4-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.k17-feature-4-card{
    background: #f5f5f7;
    border-radius: 18px;
    padding: 28px 24px;
    box-sizing: border-box;
    min-height: 260px;
    display:flex;
    flex-direction:column;
}

.k17-feature-4-title{
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #eb6700;
}

.k17-feature-4-intro{
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: #1d1d1f;
}

.k17-feature-4-text{
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #6e6e73;
}

.k17-feature-4-link{
    display:inline-block;
    margin-top:auto;
    padding-top:16px;
    font-weight:600;
    color:#eb6700;
    text-decoration:none;
}

.k17-feature-4-link:hover{
    text-decoration:underline;
}

.k17-feature-4-link::after{
    content:" →";
}
/* =====================================================
   K17 CTA BLOCK
===================================================== */

.k17-cta-block{
    padding: 24px 0;
}

.k17-cta-box{
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.k17-cta-title{
    font-size: 36px;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.k17-cta-text{
    font-size: 18px;
    line-height: 1.5;
    color: #6e6e73;
    margin-bottom: 28px;
}

/* =====================================================
   K17 FAQ BLOCK
===================================================== */

.k17-faq-block{
    padding: 24px 0;
}

.k17-faq-list{
    max-width: 900px;
}

.k17-faq-item{
    padding: 24px 0;
    border-bottom: 1px solid #e9e9ec;
}

.k17-faq-question{
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.25;
    color: #eb6700;
}

.k17-faq-answer{
    font-size: 18px;
    line-height: 1.6;
    color: #6e6e73;
}

/* =====================================================
   FAQ ACCORDION
===================================================== */

.k17-faq-item{
    border-bottom:1px solid #e9e9ec;
}

.k17-faq-question{
    margin:0;
    padding:20px 0;
    font-size:22px;
    cursor:pointer;
    position:relative;
}

.k17-faq-question::after{
    content:"+";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    font-size:24px;
    color:#eb6700;
}

.k17-faq-item.is-open .k17-faq-question::after{
    content:"–";
}

.k17-faq-answer{
    padding-bottom:20px;
    font-size:18px;
    line-height:1.6;
    color:#6e6e73;
}

.k17-faq-block:not(.is-editor) .k17-faq-answer{
    display:none;
}

.k17-faq-block:not(.is-editor) .k17-faq-item.is-open .k17-faq-answer{
    display:block;
}

/* =====================================================
   RESPONSIVE LAYOUT
===================================================== */


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px){

    /* HERO */

    .k17-hero-inner{
        grid-template-columns: 1fr;
        gap:40px;
    }

    .k17-hero-title{
        font-size:48px;
    }

    /* FEATURES 4 */

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

    /* TRUST */

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


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

    /* HERO */

    .k17-hero-title{
        font-size:36px;
        line-height:1.15;
    }

    .k17-hero-textline{
        font-size:18px;
    }

    /* SECTION */

    .k17-section-title{
        font-size:30px;
    }

    /* FEATURES */

    .k17-features-4-grid{
        grid-template-columns:1fr;
    }

    /* TRUST */

    .k17-trust-grid{
        grid-template-columns:1fr;
    }

    /* CTA */

    .k17-cta-title{
        font-size:28px;
    }

    /* HEADER / MOBILE MENU */

    .menu-toggle{
        display:block !important;
        order:3;
    }

    .header-cta{
        display:none;
    }

    .main-navigation{
        display:none;
        position:absolute;
        top:100%;
        left:20px;
        right:20px;
        background:#ffffff;
        border:1px solid #e9e9ec;
        border-radius:16px;
        box-shadow:0 20px 40px rgba(0,0,0,.08);
        padding:16px 20px;
    }

    .main-navigation.is-open{
        display:block;
    }

    .main-navigation ul{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .main-navigation a{
        display:block;
        width:100%;
        font-size:17px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:480px){

    .k17-hero-title{
        font-size:30px;
    }

    .k17-section-title{
        font-size:26px;
    }

    .k17-card{
        padding:24px 20px;
    }
}

/* =====================================================
   GLOBAL BLOCK SPACING SYSTEM
===================================================== */

.site-main > * + *{
    margin-top: 48px;
}

.k17-hero-block + *{
    margin-top: 32px;
}

.k17-trust-block + *,
.k17-cards-block + *,
.k17-features-4-block + *{
    margin-top: 40px;
}

.k17-faq-block + *{
    margin-top: 56px;
}

.k17-cta-block{
    margin-top: 8px;
}

/* =====================================================
   K17 CARDS BLOCK
===================================================== */

.k17-cards-block{
    padding:24px 0;
}

.k17-cards-headline{
    margin:0 0 32px;
    font-size:36px;
    line-height:1.2;
    letter-spacing:-0.02em;
}

.k17-cards-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
    align-items:stretch;
}

.k17-card{
    background:#f5f5f7;
    border-radius:18px;
    padding:32px 28px;
    transition:transform .2s ease, box-shadow .2s ease;
    box-sizing:border-box;
    min-height:300px;
    display:flex;
    flex-direction:column;
}

.k17-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.k17-card-title{
    margin:0 0 16px;
    font-size:22px;
    line-height:1.2;
    letter-spacing:-0.02em;
    color:#eb6700;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:auto;
}

.k17-card-text{
    margin:0;
    font-size:18px;
    line-height:1.5;
    color:#6e6e73;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:1024px){

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

}

@media (max-width:768px){

    .k17-cards-grid{
        grid-template-columns:1fr;
    }

}
/* =====================================================
   K17 NIS2 CHECK BLOCK
===================================================== */

.k17-nis2-block{
    padding:24px 0;
}

.k17-nis2-headline{
    margin:0 0 18px;
    font-size:36px;
    line-height:1.2;
    letter-spacing:-0.02em;
    color:#1d1d1f;
}

.k17-nis2-intro{
    margin:0 0 32px;
    max-width:860px;
    font-size:18px;
    line-height:1.6;
    color:#6e6e73;
}

.k17-nis2-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
    align-items:stretch;
}

.k17-nis2-card{
    background:#f5f5f7;
    border-radius:18px;
    padding:28px 24px;
    box-sizing:border-box;
    min-height:320px;
    display:flex;
    flex-direction:column;
    transition:transform .2s ease, box-shadow .2s ease;
}

.k17-nis2-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.k17-nis2-card-title{
    margin:0 0 18px;
    font-size:28px;
    line-height:1.15;
    letter-spacing:-0.02em;
    color:#eb6700;
}

.k17-nis2-card-text{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:0 0 24px;
    font-size:17px;
    line-height:1.45;
    color:#6e6e73;
}

.k17-nis2-card .k17-nis2-button{
    margin-top:auto;
    align-self:center;
    min-width:220px;
    text-align:center;
}

.k17-nis2-panel{
    background:#f5f5f7;
    border-radius:22px;
    padding:32px 28px;
}

.k17-nis2-question{
    margin:0 0 12px;
    font-size:30px;
    line-height:1.18;
    letter-spacing:-0.02em;
    color:#1d1d1f;
}

.k17-nis2-help{
    margin:0 0 24px;
    max-width:900px;
    font-size:17px;
    line-height:1.6;
    color:#6e6e73;
}

.k17-nis2-path{
    margin:0 0 22px;
    padding:14px 16px;
    background:#ffffff;
    border:1px solid #e9e9ec;
    border-radius:12px;
    font-size:15px;
    line-height:1.5;
    color:#6e6e73;
}

.k17-nis2-options{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
}

.k17-nis2-option{
    width:100%;
    text-align:left;
    background:#ffffff;
    border:1px solid #e9e9ec;
    border-radius:16px;
    padding:18px 18px;
    cursor:pointer;
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    box-sizing:border-box;
}

.k17-nis2-option:hover{
    border-color:#eb6700;
    box-shadow:0 10px 24px rgba(0,0,0,.05);
    transform:translateY(-2px);
}

.k17-nis2-option-label{
    display:block;
    font-size:17px;
    line-height:1.45;
    font-weight:600;
    color:#1d1d1f;
}

.k17-nis2-option-hint{
    display:block;
    margin-top:6px;
    font-size:14px;
    line-height:1.45;
    color:#6e6e73;
}

.k17-nis2-option-legal a {
    color: #eb6700;
    text-decoration: underline;
}

.k17-nis2-actions{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:24px;
    flex-wrap:wrap;
}

.k17-nis2-actions.is-split{
    margin-top:12px;
}

.k17-nis2-button{
    border:0;
    cursor:pointer;
}

.k17-nis2-secondary{
    display:inline-block;
    background:#ffffff;
    color:#1d1d1f;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    padding:14px 22px;
    border-radius:10px;
    border:1px solid #d9d9de;
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.k17-nis2-secondary:hover{
    transform:translateY(-1px);
    border-color:#eb6700;
    box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.k17-nis2-back{
    margin-top:20px;
    padding:0;
    background:transparent;
    border:0;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    color:#eb6700;
}

.k17-nis2-back:hover{
    text-decoration:underline;
}

.k17-nis2-result{
    border-radius:22px;
    padding:32px 28px;
    box-sizing:border-box;
}

.k17-nis2-result.is-affected{
    background:#fff4ec;
    border:1px solid rgba(235,103,0,.18);
}

.k17-nis2-result.is-not-affected{
    background:#f5f5f7;
    border:1px solid #e9e9ec;
}

.k17-nis2-result-title{
    margin:0 0 14px;
    font-size:32px;
    line-height:1.15;
    letter-spacing:-0.02em;
    color:#1d1d1f;
}

.k17-nis2-result-text{
    margin:0 0 18px;
    font-size:18px;
    line-height:1.6;
    color:#6e6e73;
}

.k17-nis2-result-list{
    margin:0 0 22px 18px;
    padding:0;
    color:#1d1d1f;
}

.k17-nis2-result-list li{
    margin:0 0 10px;
    font-size:16px;
    line-height:1.55;
}

.k17-nis2-disclaimer{
    padding:16px 18px;
    background:#ffffff;
    border:1px solid #e9e9ec;
    border-radius:14px;
    font-size:15px;
    line-height:1.55;
    color:#6e6e73;
}

.k17-nis2-block.is-editor .k17-nis2-app{
    pointer-events:none;
}

.k17-nis2-block.is-editor .k17-nis2-back,
.k17-nis2-block.is-editor .k17-nis2-button,
.k17-nis2-block.is-editor .k17-nis2-secondary,
.k17-nis2-block.is-editor .k17-nis2-option{
    cursor:default;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:1024px){

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

    .k17-nis2-options{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){

    .k17-nis2-headline{
        font-size:30px;
    }

    .k17-nis2-grid{
        grid-template-columns:1fr;
    }

    .k17-nis2-card{
        min-height:auto;
    }

    .k17-nis2-panel,
    .k17-nis2-result{
        padding:26px 22px;
    }

    .k17-nis2-question{
        font-size:24px;
    }

    .k17-nis2-result-title{
        font-size:28px;
    }
}

@media (max-width:480px){

    .k17-nis2-headline{
        font-size:26px;
    }

    .k17-nis2-intro{
        font-size:17px;
    }

    .k17-nis2-card,
    .k17-nis2-panel,
    .k17-nis2-result{
        padding:22px 20px;
    }

    .k17-nis2-card-title{
        font-size:22px;
    }

    .k17-nis2-question{
        font-size:22px;
    }
}
.k17-nis2-card-text{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.k17-nis2-text-line{
    font-size:17px;
    line-height:1.45;
    color:#6e6e73;
}

.k17-nis2-divider{
    font-size:15px;
    line-height:1.2;
    font-weight:700;
    color:#eb6700;
    text-align:center;
    margin:2px 0;
    letter-spacing:0.03em;
}

/* =====================================================
   K17 NIS2 – HARTE RESET/OVERRIDES GEGEN THEME/ELEMENTOR
===================================================== */

.k17-nis2-block,
.k17-nis2-block * {
    box-sizing: border-box;
}

.k17-nis2-block button {
    font: inherit;
    letter-spacing: normal;
    text-transform: none;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    box-shadow: none;
    background-image: none;
}

/* Startkarten / Auswahlkarten dürfen NICHT wie Theme-Buttons aussehen */
.k17-nis2-option {
    display: block;
    width: 100%;
    text-align: left;
    background: #ffffff !important;
    color: #1d1d1f !important;
    border: 1px solid #e9e9ec !important;
    border-radius: 16px !important;
    padding: 18px 18px !important;
    min-height: 0 !important;
    line-height: normal !important;
    box-shadow: none !important;
}

.k17-nis2-option:hover,
.k17-nis2-option:focus {
    background: #ffffff !important;
    color: #1d1d1f !important;
    border-color: #eb6700 !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.05) !important;
    transform: translateY(-2px);
}

.k17-nis2-option-label {
    display: block !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    margin: 0 !important;
}

.k17-nis2-option-hint {
    display: block !important;
    margin-top: 6px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
    color: #6e6e73 !important;
}

/* Primärbutton */
.k17-button.k17-nis2-button,
.k17-nis2-button {
    display: inline-block !important;
    background: #eb6700 !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 10px !important;
    padding: 14px 22px !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
}

.k17-button.k17-nis2-button:hover,
.k17-nis2-button:hover,
.k17-button.k17-nis2-button:focus,
.k17-nis2-button:focus {
    background: #eb6700 !important;
    color: #ffffff !important;
    border: 0 !important;
    box-shadow: 0 10px 24px rgba(235, 103, 0, 0.18) !important;
    transform: translateY(-1px);
}

/* Sekundärbutton */
.k17-nis2-secondary {
    display: inline-block !important;
    background: #ffffff !important;
    color: #1d1d1f !important;
    border: 1px solid #d9d9de !important;
    border-radius: 10px !important;
    padding: 14px 22px !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
}

.k17-nis2-secondary:hover,
.k17-nis2-secondary:focus {
    background: #ffffff !important;
    color: #1d1d1f !important;
    border-color: #eb6700 !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.05) !important;
    transform: translateY(-1px);
}

/* Zurück-Button darf nicht wie Theme-Button aussehen */
.k17-nis2-back {
    display: inline-block !important;
    margin-top: 20px !important;
    padding: 0 !important;
    background: transparent !important;
    color: #eb6700 !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
}

.k17-nis2-back:hover,
.k17-nis2-back:focus {
    background: transparent !important;
    color: #eb6700 !important;
    text-decoration: underline;
    box-shadow: none !important;
}

/* Panels sauber halten */
.k17-nis2-panel,
.k17-nis2-result {
    background: #f5f5f7;
}

.k17-nis2-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.k17-nis2-actions.is-split {
    display: flex;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

/* Falls Elementor Buttons global width/justify setzt */
.k17-nis2-actions .k17-nis2-button,
.k17-nis2-actions .k17-nis2-secondary,
.k17-nis2-actions .k17-nis2-option {
    align-self: flex-start;
}

/* Mobile */
@media (max-width: 768px) {
    .k17-nis2-actions.is-split {
        flex-direction: column;
    }

    .k17-nis2-actions.is-split .k17-nis2-button,
    .k17-nis2-actions.is-split .k17-nis2-secondary {
        width: 100%;
    }
}
/* =====================================================
   K17 NIS2 – KARTENLAYOUT / TEXTUMBRUCH FIX
===================================================== */

.k17-nis2-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.k17-nis2-option {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    white-space: normal !important;
}

.k17-nis2-option-label,
.k17-nis2-option-hint,
.k17-nis2-option-legal,
.k17-nis2-option-note {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: auto !important;
}

.k17-nis2-option-label {
    margin-bottom: 8px !important;
}

.k17-nis2-option-hint {
    margin-top: 6px !important;
}

.k17-nis2-option-legal,
.k17-nis2-option-note {
    margin-top: 10px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #6e6e73 !important;
}

.k17-nis2-path {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: auto !important;
}

/* Sicherheitsnetz gegen Elementor/Flex-Eigenheiten */
.k17-nis2-panel {
    overflow: hidden !important;
}

@media (max-width: 1024px) {
    .k17-nis2-options {
        grid-template-columns: 1fr !important;
    }
}