* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  padding-top: 85px;
}

/* ==========================================
   Überschriften & Texte
========================================== */

h1 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 25px;
}

h2 {
    font-size: clamp(30px, 3.5vw, 42px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

h3 {
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 16px;
}

h4 {
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 14px;
}

h5 {
    font-size: clamp(18px, 1.8vw, 20px);
    line-height: 1.45;
    font-weight: 700;
    margin: 0 0 12px;
}

h1,
h2,
h3,
h4,
h5 {
    color: #101720;
    font-family: inherit;
}

.pow_dark h1,
.pow_dark h2,
.pow_dark h3,
.pow_dark h4,
.pow_dark h5 {
    color: #fff;
}

.pow_dark p {
    color: rgba(255,255,255,.82);
}

p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 20px;
}


/* =========================
   HEADER
========================= */

.pow_header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 85px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 0 40px;

    background: #101720;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.pow_logo {
    flex-shrink: 0;
}

.pow_logo img {
    display: block;
    height: 50px;
    width: auto;
}

/* =========================
   NAVIGATION
========================= */

.pow_navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 85px;
}

.pow_navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pow_navigation > ul,
.pow_navigation .mod-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 85px;
}

.pow_navigation li {
    position: relative;
}

/* Top-Level */

.pow_navigation > ul > li,
.pow_navigation .mod-menu > li {
    display: flex;
    align-items: center;
    height: 85px;
}

.pow_navigation > ul > li > a,
.pow_navigation .mod-menu > li > a,
.pow_navigation > ul > li > .nav-header,
.pow_navigation .mod-menu > li > .nav-header {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 85px;

    color: #ffffff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 500;
    line-height: 1;

    transition: color .2s ease;
}

.pow_navigation > ul > li > a:hover,
.pow_navigation .mod-menu > li > a:hover,
.pow_navigation > ul > li:hover > a,
.pow_navigation .mod-menu > li:hover > a {
    color: #1d89e4;
}

/* Dezente Linie unter Top-Level Text */

.pow_navigation > ul > li > a::after,
.pow_navigation .mod-menu > li > a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 26px;

    width: 0;
    height: 2px;

    background: #1d89e4;

    transition: width .22s ease;
}

.pow_navigation > ul > li > a:hover::after,
.pow_navigation .mod-menu > li > a:hover::after,
.pow_navigation > ul > li:hover > a::after,
.pow_navigation .mod-menu > li:hover > a::after {
    width: 100%;
}

/* Pfeil bei Punkten mit Untermenü */

.pow_navigation > ul > li.deeper > a::before,
.pow_navigation > ul > li.parent > a::before,
.pow_navigation .mod-menu > li.deeper > a::before,
.pow_navigation .mod-menu > li.parent > a::before {
    content: "›";
    margin-right: 8px;
    color: rgba(255,255,255,.45);
    font-size: 17px;
    line-height: 1;
}

/* =========================
   DROPDOWN LEVEL 2
========================= */

.pow_navigation ul ul {
    position: absolute;
    top: 85px;
    left: 50%;

    width: 290px;

    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    background: #09111d;

    border-top: none;
    border-left: 1px solid rgba(255,255,255,.08);
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);

    border-radius: 0 0 3px 3px;

    box-shadow: 0 22px 45px rgba(0,0,0,.36);

    opacity: 0;
    visibility: hidden;

    transform: translateX(-50%);

    z-index: 9999;
}

.pow_navigation li:hover > ul {
    opacity: 1;
    visibility: visible;
}

/* Dropdown-Menüpunkte */

.pow_navigation ul ul li {
    width: 100%;
}

.pow_navigation ul ul a {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 41px;

    padding: 0 20px;

    color: rgba(255,255,255,.88);
    background: transparent;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;

    text-decoration: none;

    transition: color .18s ease, background .18s ease;
}

.pow_navigation ul ul a:hover {
    color: #ffffff;
    background: rgba(29,137,228,.14);
}

/* Keine Top-Level Linie im Dropdown */

.pow_navigation ul ul a::after {
    display: none !important;
}

/* =========================
   DROPDOWN ÜBERSCHRIFTEN
========================= */

.pow_navigation ul ul .nav-header {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 44px;

    padding: 0 20px;

    color: #1d89e4;
    background: rgba(29,137,228,.10);

    border-left: 3px solid #1d89e4;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: .8px;
}

/* Abstand zwischen Gruppen nur vor späteren Überschriften */

.pow_navigation ul ul li:not(:first-child) > .nav-header {
    margin-top: 8px;
}

/* =========================
   DROPDOWN LEVEL 3
========================= */

.pow_navigation ul ul ul {
    top: 0;
    left: 100%;

    transform: none;

    border-top: 1px solid rgba(255,255,255,.08);
    border-radius: 0 0 3px 3px;
}

.pow_navigation ul ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}

/* Pfeile im Dropdown */

.pow_navigation ul ul li.deeper > a::before,
.pow_navigation ul ul li.parent > a::before {
    content: "›";
    margin-right: 8px;
    color: rgba(255,255,255,.42);
    font-size: 16px;
}

/* Extra Item im Dropdown */

.pow_navigation .nav-extra-item {
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
  justify-content: right;
}

/* =========================
   CTA BUTTON
========================= */

.pow_cta_section .pow_cta a {
    min-width: 196px;
}

.pow_cta {
    flex-shrink: 0;
}

.pow_cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    padding: 0 28px;

    background: #1d89e4;
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 3px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    transition: background .18s ease, box-shadow .18s ease;
}

.pow_cta a:hover {
    background: #1577cb;
    box-shadow: 0 10px 22px rgba(29,137,228,.25);
}

/* =========================
   DIVIDER
========================= */

.pow_divider {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: 2px;
    margin: 80px auto;
    border: 0;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(16,23,32,.18) 15%,
        rgba(16,23,32,.85) 50%,
        rgba(16,23,32,.18) 85%,
        transparent 100%
    );
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

.pow_divider::after {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;

    width: 12px;
    height: 12px;

    background: #101720;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 0 6px rgba(16,23,32,.08),
        0 0 18px rgba(16,23,32,.25);
}

/* =========================
   FOOTER
========================= */

.pow_footer {
    margin-top: 80px;

    background: #101720;
    color: rgba(255,255,255,.78);

    border-top: 1px solid rgba(255,255,255,.08);
}

.pow_footer_inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px 45px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
}

.pow_footer_col h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.pow_footer_col p {
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 1.7;
}

.pow_footer_col ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.pow_footer_col li {
    margin-bottom: 12px;
}

.pow_footer a {
    color: rgba(255,255,255,.78);
    text-decoration: none;

    font-size: 15px;

    transition: color .18s ease;
}

.pow_footer a:hover {
    color: #1d89e4;
}

.pow_footer_bottom {
    padding: 20px 40px;

    border-top: 1px solid rgba(255,255,255,.08);

    text-align: center;

    color: rgba(255,255,255,.48);

    font-size: 14px;
}

.pow_intro {
    width: 100%;
    height: calc(100vh - 85px);

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(16,23,32,.35),
            rgba(16,23,32,.35)
        ),
        url("/images/startseite/poweron-connect-telefonservice-welcome.webp");

    background-repeat: no-repeat;
    background-size: cover;
}

.pow_intro_textarea {
  background: rgba(16, 23, 32, 0.60);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
}

.pow_intro_inbound {
    width: 100%;
    height: 500px;

    display: flex;
    align-items: flex-end;

    background:
        linear-gradient(
            rgba(16,23,32,.35),
            rgba(16,23,32,.35)
        ),
        url("/images/inbound-outbound/poweron-connect-telefonservice-inbound-hero.webp");

    background-repeat: no-repeat;
    background-size: cover;
}

.pow_intro_inbound_textarea {
  margin-bottom: 24px;
}

.pow_intro_outbound {
    width: 100%;
    height: 500px;

    display: flex;
    align-items: flex-end;

    background:
        linear-gradient(
            rgba(16,23,32,.35),
            rgba(16,23,32,.35)
        ),
        url("/images/inbound-outbound/poweron-connect-telefonservice-outbound-hero.webp");

    background-repeat: no-repeat;
    background-size: cover;
}

.pow_intro_outbound_textarea {
  margin-bottom: 24px;
}

.pow_workflow_textarea .rspbld-horizontal-icon-box {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 18px 0 !important;
}

.pow_workflow_textarea .rspbld-icon {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
    font-size: 26px !important;
    color: #fff;
    background: #1d89e4;

    float: none !important;
}

.pow_workflow_textarea .rspbld-content-container {
    flex: 1;
}

.pow_workflow_textarea .rspbld-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: #222;
    font-weight: 500;
}


@media (max-width: 1128px) {
  .pow_navigation {display: none; visibility: hidden;}
  .pow_footer_inner {grid-template-columns: 1fr 1fr;}
  .pow_footer_inner > :first-child {grid-column: 1 / -1;}
  }

@media (max-width: 512px) {
  .pow_header {justify-content: center;}
  .pow_header .pow_cta {display: none; visibility: hidden;}
  .pow_footer_inner {grid-template-columns: 1fr; gap: 40px;}
  .pow_footer_inner > * {grid-column: auto;}
  }


@media (max-width: 768px) {

    .pow_intro_textarea {
        padding: 30px 25px;
    }

    .pow_intro_textarea h1 {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .pow_intro_textarea p {
        font-size: 18px;
        line-height: 1.6;
    }

}

@media (max-width: 512px) {

    .pow_intro_textarea {
        padding: 25px 20px;
    }

    .pow_intro_textarea h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .pow_intro_textarea p {
        font-size: 16px;
        line-height: 1.6;
    }

}

@media (max-width: 768px) {

    .pow_workflow_textarea .rspbld-horizontal-icon-box {
        gap: 16px;
    }

    .pow_workflow_textarea .rspbld-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        border-radius: 14px;
        font-size: 22px !important;
    }

    .pow_workflow_textarea .rspbld-content p {
        font-size: 16px;
    }

}

/* ==========================================================
   Layout-Helfer & Telefonservice-Komponenten
========================================================== */

.pOn_col_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pOn_inline {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.pOn_telefonservice_inline {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pOn_telefonservice_inline div {
  width: 180px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 3px;
}

.pOn_telefonservice_leistungen {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
  gap: 24px;
}

.pOn_telefonservice_leistung {
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1c2530;
  text-align: center;
  border-radius: 3px;
  padding: 12px;
  color: #fff;
}

.pOn_telefonservice_leistung p:first-child {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 0 0 6px;
}

.pOn_telefonservice_leistung p {
  font-weight: 400;
  margin: 0;
}

.pOn_telefonservice_zielgruppen {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.pOn_tags_dark {
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.pOn_tags_dark_alt {
  padding: 13px 22px;
  border-radius: 3px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}


/* ==========================================================
   Preise
========================================================== */

.pOn_price_group {
  display: flex;
  gap: 22px;
  align-items: stretch;

  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 14px;
}

.pOn_price_item {
  flex: 0 0 300px;
  scroll-snap-align: start;

  border: 1px solid #1c2530;
  padding: 22px;
  background: #fff;
  color: #1c2530;
}

.pOn_price_item_featured {
  background: #1c2530;
  color: #fff;
}

.pOn_price_item h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.pOn_price {
  margin-bottom: 10px;
  color: #1c2530;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.pOn_price strong {
  font-size: 36px;
  font-weight: 700;
}

.pOn_price_item_featured .pOn_price {
  color: #fff;
}

.pOn_subline {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.45;
  opacity: .85;
}

.pOn_price_cta {
  margin-bottom: 20px;
}

.pOn_price_cta a {
  width: 100%;
  height: 40px;
  font-size: 13px;
}

.pOn_price_item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pOn_price_item li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.pOn_price_item li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1d89e4;
  font-weight: 700;
}

.pOn_price_item_featured li::before {
  color: #8fd0ff;
}

.pOn_price_group::-webkit-scrollbar {
  height: 8px;
}

.pOn_price_group::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .pOn_price_group {
    gap: 16px;
    padding-bottom: 12px;
  }

  .pOn_price_item {
    flex: 0 0 275px;
    padding: 18px;
  }

  .pOn_price_item h3 {
    font-size: 22px;
  }

  .pOn_price {
    font-size: 15px;
  }

  .pOn_price strong {
    font-size: 30px;
  }

  .pOn_subline {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.35;
  }

  .pOn_price_cta {
    margin-bottom: 16px;
  }

  .pOn_price_item li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.35;
  }
}

/* ==========================================================
   PowerOn Connect - Smartnavigation
========================================================== */

/* Button unten rechts */
.pow_smartbutton{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99990;
}

.pow_smartbutton a{
    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 22px;

    background:#101720;
    color:#fff;

    border-radius:50px;

    text-decoration:none;
    font-size:15px;
    font-weight:600;
    line-height:1;

    box-shadow:0 12px 30px rgba(0,0,0,.28);

    transition:.25s ease;
}

.pow_smartbutton a:hover{
    background:#1c2530;
    transform:translateY(-2px);
}

.pow_smartbutton span{
    font-size:22px;
    line-height:1;
}


/* Overlay */
#pow_smartnavigation{
    position:fixed;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(16,23,32,.76);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:.25s ease;

    z-index:99999;
}

#pow_smartnavigation.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}


/* Fenster */
.pow_smartnavigation_content{
    width:min(92vw,430px);
    max-height:90vh;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    background:#101720;

    border-radius:22px;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

    transform:translateY(20px) scale(.96);
    transition:.25s ease;
}

#pow_smartnavigation.active .pow_smartnavigation_content{
    transform:translateY(0) scale(1);
}


/* Header */
.pow_smartnavigation_header{
    padding:32px 28px 26px;

    text-align:center;

    border-bottom:1px solid rgba(255,255,255,.10);

    flex-shrink:0;
}

.pow_smartnavigation_header img{
    width:230px;
    max-width:100%;
    height:auto;
}


/* Scrollbereich */
.pow_smartnavigation_main{
    flex:1;

    padding:14px;

    overflow-y:auto;
    overflow-x:hidden;
}


/* Joomla Menü komplett resetten */
#pow_smartnavigation .pow_smartnavigation_main ul,
#pow_smartnavigation .pow_smartnavigation_main ol{
    display:block;
    position:static;

    width:100%;

    margin:0;
    padding:0;

    list-style:none;

    opacity:1;
    visibility:visible;

    transform:none;
}

#pow_smartnavigation .pow_smartnavigation_main li{
    display:block;
    position:static;

    float:none;
    clear:both;

    width:100%;

    margin:0;
    padding:0;

    opacity:1;
    visibility:visible;

    transform:none;
}

#pow_smartnavigation .pow_smartnavigation_main a,
#pow_smartnavigation .pow_smartnavigation_main span.separator{
    display:block;

    width:100%;
    box-sizing:border-box;

    padding:15px 16px;

    color:#fff;

    text-decoration:none;

    font-size:17px;
    font-weight:500;
    line-height:1.35;

    border-radius:12px;

    transition:.2s ease;
}

#pow_smartnavigation .pow_smartnavigation_main a:hover,
#pow_smartnavigation .pow_smartnavigation_main span.separator:hover{
    background:rgba(255,255,255,.08);
}


/* Aktiver Menüpunkt */
#pow_smartnavigation .pow_smartnavigation_main li.current > a,
#pow_smartnavigation .pow_smartnavigation_main li.active > a{
    background:rgba(255,255,255,.12);
}


/* Zweite Menüebene */

#pow_smartnavigation .mod-menu__toggle-sub {display: none; visibility: hidden;}
#pow_smartnavigation .pow_smartnavigation_main ul ul,
#pow_smartnavigation .pow_smartnavigation_main .mod-menu__sub,
#pow_smartnavigation .pow_smartnavigation_main .nav-child{
    display:block;
    position:static;

    height:auto;
    max-height:none;

    margin:4px 0 10px 0;
    padding:6px 0 6px 14px;

    overflow:visible;

    opacity:1;
    visibility:visible;

    background:rgba(255,255,255,.045);

    border-left:2px solid rgba(255,255,255,.16);
    border-radius:12px;

    transform:none;
    pointer-events:auto;
}

#pow_smartnavigation .pow_smartnavigation_main ul ul a,
#pow_smartnavigation .pow_smartnavigation_main .mod-menu__sub a,
#pow_smartnavigation .pow_smartnavigation_main .nav-child a{
    padding:12px 14px;

    color:rgba(255,255,255,.82);

    font-size:15px;
    font-weight:400;
}

#pow_smartnavigation .pow_smartnavigation_main ul ul a:hover,
#pow_smartnavigation .pow_smartnavigation_main .mod-menu__sub a:hover,
#pow_smartnavigation .pow_smartnavigation_main .nav-child a:hover{
    color:#fff;
    background:rgba(255,255,255,.08);
}


/* Dritte Menüebene */
#pow_smartnavigation .pow_smartnavigation_main ul ul ul{
    margin-top:4px;
    padding-left:12px;

    background:rgba(255,255,255,.035);
}

#pow_smartnavigation .pow_smartnavigation_main ul ul ul a{
    font-size:14px;
}


/* Footer */
.pow_smartnavigation_footer{
    padding:22px 24px 26px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.10);

    flex-shrink:0;
}

.pow_smartnavigation_footer a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:150px;

    padding:13px 28px;

    background:#fff;
    color:#101720;

    border-radius:50px;

    text-decoration:none;
    font-size:15px;
    font-weight:600;

    transition:.25s ease;
}

.pow_smartnavigation_footer a:hover{
    background:#f1f3f5;
    transform:translateY(-1px);
}


/* Kleine Geräte */
@media (max-width: 512px) {

    .pow_smartbutton{
        right:16px;
        bottom:16px;
    }

    .pow_smartbutton a{
        padding:13px 18px;
        font-size:14px;
    }

    .pow_smartnavigation_content{
        width:calc(100vw - 28px);
        max-height:88vh;
        border-radius:20px;
    }

    .pow_smartnavigation_header{
        padding:28px 22px 22px;
    }

    .pow_smartnavigation_header img{
        width:210px;
    }

}

/* ==========================================================
   FIX: unsichtbare Joomla-Dropdowns dürfen nicht klickbar sein
========================================================== */

/* Smartnavigation geschlossen: komplett unklickbar */
#pow_smartnavigation{
    pointer-events:none !important;
}

/* Nur wenn geöffnet, wieder klickbar */
#pow_smartnavigation.active{
    pointer-events:auto !important;
}

/* Inhalt nur im geöffneten Zustand klickbar */
#pow_smartnavigation:not(.active) .pow_smartnavigation_content,
#pow_smartnavigation:not(.active) .pow_smartnavigation_content *{
    pointer-events:none !important;
}

/* Joomla-Dropdowns in der Smartnavigation neutralisieren */
#pow_smartnavigation .pow_smartnavigation_main ul,
#pow_smartnavigation .pow_smartnavigation_main li,
#pow_smartnavigation .pow_smartnavigation_main ul ul,
#pow_smartnavigation .pow_smartnavigation_main .mod-menu__sub,
#pow_smartnavigation .pow_smartnavigation_main .nav-child{
    position:static !important;
    left:auto !important;
    top:auto !important;
    right:auto !important;
    bottom:auto !important;

    display:block !important;

    width:100% !important;
    height:auto !important;
    max-height:none !important;

    opacity:1 !important;
    visibility:visible !important;

    overflow:visible !important;

    transform:none !important;
}

/* Falls Desktop-Menü absolute Dropdowns außerhalb erzeugt */
.pow_navigation ul ul,
.pow_navigation .mod-menu__sub,
.pow_navigation .nav-child{
    pointer-events:none;
}

/* Desktop-Dropdowns nur am Desktop bei Hover klickbar */
@media (min-width: 1129px) {
    .pow_navigation li:hover > ul,
    .pow_navigation li:hover > .mod-menu__sub,
    .pow_navigation li:hover > .nav-child{
        pointer-events:auto;
    }
}

/* ==========================================================
   Standardformulare
========================================================== */
.poc-form-card {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 42px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.poc-form-header {
    margin-bottom: 30px;
}

.poc-form-header h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
}

.poc-form-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}

.poc-form {
    width: 100%;
}

.poc-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

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

.poc-field {
    margin-bottom: 20px;
}

.poc-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #0f172a;
}

.poc-field input,
.poc-field textarea,
.poc-field select {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.4;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #dbe3ec;
    border-radius: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.poc-field textarea {
    min-height: 150px;
    resize: vertical;
}

.poc-field input:focus,
.poc-field textarea:focus,
.poc-field select:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.poc-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 26px;
}

.poc-check {
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
}

.poc-check label {
    cursor: pointer;
}

.poc-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    accent-color: #2563eb;
}

.poc-submit {
    margin-top: 8px;
}

.poc-submit button,
.poc-submit input[type="submit"] {
    width: 100%;
    min-height: 56px;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: #2563eb;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.poc-submit button:hover,
.poc-submit input[type="submit"]:hover {
    background: #1d4ed8;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}


@media (max-width: 768px) {
    .poc-form-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .poc-grid-2 {
        grid-template-columns: 1fr;
    }

    .poc-form-header h3 {
        font-size: 24px;
    }
}


/* ============================================================
   Rückruf anfordern
============================================================ */

.pow_callback_form {
    width: 100%;
    color: #ffffff;
}

.pow_callback_inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 54px 40px;

    display: grid;
    grid-template-columns: 0.8fr 1.6fr;
    gap: 50px;
    align-items: center;
}

.pow_callback_text span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(29, 137, 228, 0.16);
    color: #4da3ff;
    font-size: 13px;
    font-weight: 800;
}

.pow_callback_text h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
}

.pow_callback_text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.pow_callback_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.pow_callback_field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.pow_callback_field input {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.pow_callback_field input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #1d89e4;
    box-shadow: 0 0 0 4px rgba(29, 137, 228, 0.18);
}

.pow_callback_bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
}

.pow_callback_check {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.pow_callback_check label {
    cursor: pointer;
}

.pow_callback_check input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-right: 8px;
    vertical-align: middle;
    accent-color: #1d89e4;
}

.pow_callback_submit input[type="submit"],
.pow_callback_submit button {
    min-height: 52px;
    padding: 14px 26px;
    border: 0;
    border-radius: 13px;
    background: #1d89e4;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.pow_callback_submit input[type="submit"]:hover,
.pow_callback_submit button:hover {
    background: #2d98f0;
    box-shadow: 0 12px 26px rgba(29, 137, 228, 0.28);
}


@media (max-width: 980px) {
    .pow_callback_inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pow_callback_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pow_callback_inner {
        padding: 42px 22px;
    }

    .pow_callback_text h2 {
        font-size: 28px;
    }

    .pow_callback_bottom {
        grid-template-columns: 1fr;
    }

    .pow_callback_submit input[type="submit"],
    .pow_callback_submit button {
        width: 100%;
    }
}


/* ============================================================
   PowerOn-Connect Bedarfsanalyse / Wizard
============================================================ */

.pow_wizard {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(16, 23, 32, 0.08);
    box-shadow: 0 26px 80px rgba(16, 23, 32, 0.14);
}

.pow_wizard_header {
    position: relative;
    padding: 48px 52px;
    background:
        radial-gradient(circle at 85% 15%, rgba(29,137,228,.28), transparent 32%),
        linear-gradient(135deg, #101720 0%, #162334 55%, #1b2d42 100%);
    color: #ffffff;
}

.pow_wizard_badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(29, 137, 228, 0.18);
    color: #66b4ff;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.pow_wizard_header h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.pow_wizard_header p {
    max-width: 700px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.pow_wizard_body {
    padding: 48px 52px 52px;
}

.pow_wizard_page {
    width: 100%;
}

.pow_wizard_step {
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.pow_wizard_step > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1d89e4;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.pow_wizard_step h3 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    font-weight: 800;
    color: #101720;
    letter-spacing: -0.02em;
}

.pow_wizard_step p {
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #64748b;
}

.pow_wizard_grid {
    display: grid;
    gap: 22px;
    margin-bottom: 24px;
}

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

.pow_wizard_field,
.pow_wizard_choices,
.pow_wizard_ai_box {
    margin-bottom: 26px;
}

.pow_wizard_field label,
.pow_wizard_label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    color: #101720;
}

.pow_wizard_field input,
.pow_wizard_field select,
.pow_wizard_field textarea {
    width: 100%;
    min-height: 56px;
    padding: 15px 17px;
    font-size: 16px;
    line-height: 1.4;
    color: #101720;
    background: #f8fafc;
    border: 1px solid #dbe3ec;
    border-radius: 16px;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.pow_wizard_field textarea {
    min-height: 160px;
    resize: vertical;
}

.pow_wizard_field input:focus,
.pow_wizard_field select:focus,
.pow_wizard_field textarea:focus {
    background: #ffffff;
    border-color: #1d89e4;
    box-shadow: 0 0 0 4px rgba(29, 137, 228, 0.14);
}

/* Auswahlfelder als moderne Cards */
.pow_wizard_choices .formBody,
.pow_wizard_choices > div:not(.formValidation),
.pow_wizard_choices fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 0;
    padding: 0;
    border: 0;
}

.pow_wizard_choices_single .formBody,
.pow_wizard_choices_single > div:not(.formValidation) {
    display: block;
}

.pow_wizard_choices label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 15px 17px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    font-size: 15px;
    line-height: 1.45;
    color: #334155;
    cursor: pointer;
    box-sizing: border-box;
    transition: 0.2s ease;
}

.pow_wizard_choices label:hover {
    background: #ffffff;
    border-color: #bfd0e3;
    box-shadow: 0 10px 26px rgba(16, 23, 32, 0.07);
    transform: translateY(-1px);
}

.pow_wizard_choices input[type="checkbox"],
.pow_wizard_choices input[type="radio"] {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    accent-color: #1d89e4;
}

/* KI Box */
.pow_wizard_ai_box {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(29,137,228,.10), rgba(16,23,32,.04));
    border: 1px solid rgba(29,137,228,.18);
}

.pow_wizard_ai_icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #101720, #1d89e4);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .03em;
    box-shadow: 0 14px 28px rgba(29,137,228,.24);
}

.pow_wizard_ai_content .formBody,
.pow_wizard_ai_content > div:not(.formValidation) {
    display: block;
}

.pow_wizard_ai_content label {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(29,137,228,.20);
    color: #101720;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.pow_wizard_ai_content input[type="checkbox"] {
    width: 19px;
    height: 19px;
    accent-color: #1d89e4;
}

/* Datenschutz / Newsletter */
.pow_wizard_checks {
    display: grid;
    gap: 13px;
    margin-top: 12px;
}

.pow_wizard_checks .pow_wizard_choices {
    margin-bottom: 0;
}

.pow_wizard_checks label {
    min-height: auto;
}

/* Navigation */
.pow_wizard_nav {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

.pow_wizard_nav .formBody,
.pow_wizard_nav > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

/* Buttons */
.pow_wizard button,
.pow_wizard input[type="button"],
.pow_wizard input[type="submit"] {
    min-height: 56px;
    padding: 15px 30px;
    border: 0;
    border-radius: 16px;
    background: #1d89e4;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.pow_wizard button:hover,
.pow_wizard input[type="button"]:hover,
.pow_wizard input[type="submit"]:hover {
    background: #2d98f0;
    box-shadow: 0 14px 30px rgba(29, 137, 228, 0.28);
    transform: translateY(-1px);
}

/* Zurück-Button */
.pow_wizard_nav input[type="button"]:first-child {
    background: #eef3f8;
    color: #101720;
}

.pow_wizard_nav input[type="button"]:first-child:hover {
    background: #e2e8f0;
    box-shadow: none;
}

/* Absenden */
.pow_wizard_submit {
    margin-top: 30px;
}

.pow_wizard_submit input[type="submit"],
.pow_wizard_submit button {
    width: 100%;
    min-height: 60px;
    font-size: 16px;
    background: #101720;
}

.pow_wizard_submit input[type="submit"]:hover,
.pow_wizard_submit button:hover {
    background: #1d89e4;
}

/* Validierung */
.pow_wizard .formValidation {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.4;
    color: #dc2626;
    background: transparent !important;
}

.pow_wizard .formDescription {
    margin: 7px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
}

.pow_wizard .rsform-error input,
.pow_wizard .rsform-error select,
.pow_wizard .rsform-error textarea {
    border-color: #dc2626 !important;
    background: #fff7f7 !important;
}

/* RSFormPro Altlasten neutralisieren */
.pow_wizard .formRow,
.pow_wizard .formSpan4,
.pow_wizard .formSpan6,
.pow_wizard .formSpan12,
.pow_wizard .formControls,
.pow_wizard .formBody {
    width: auto !important;
    float: none !important;
    margin: 0;
}

.pow_wizard .formRow::before,
.pow_wizard .formRow::after {
    content: none !important;
    display: none !important;
}

/* Mobile */
@media (max-width: 768px) {

    .pow_wizard {
        border-radius: 22px;
    }

    .pow_wizard_header,
    .pow_wizard_body {
        padding: 34px 24px;
    }

    .pow_wizard_grid_2,
    .pow_wizard_choices .formBody,
    .pow_wizard_choices > div:not(.formValidation),
    .pow_wizard_choices fieldset {
        grid-template-columns: 1fr;
    }

    .pow_wizard_ai_box {
        grid-template-columns: 1fr;
    }

    .pow_wizard_nav .formBody,
    .pow_wizard_nav > div {
        flex-direction: column;
    }

    .pow_wizard button,
    .pow_wizard input[type="button"],
    .pow_wizard input[type="submit"] {
        width: 100%;
    }
}

/* ============================================================
   Gemeinsame RSForm-Pro-Resets & Ergänzungen
============================================================ */

.poc-form-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #1d89e4;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.poc-form-card .formRow,
.poc-form-card .formSpan4,
.poc-form-card .formSpan6,
.poc-form-card .formSpan12,
.poc-form-card .formControls,
.poc-form-card .formBody,
.pow_callback_form .formRow,
.pow_callback_form .formSpan4,
.pow_callback_form .formSpan6,
.pow_callback_form .formSpan12,
.pow_callback_form .formControls,
.pow_callback_form .formBody {
    width: auto !important;
    float: none !important;
    margin: 0;
}

.poc-form-card .formRow::before,
.poc-form-card .formRow::after,
.pow_callback_form .formRow::before,
.pow_callback_form .formRow::after {
    content: none !important;
    display: none !important;
}

.poc-form-card .formValidation {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.4;
    color: #dc2626;
}

.poc-form-card .rsform-error input,
.poc-form-card .rsform-error textarea,
.poc-form-card .rsform-error select {
    border-color: #dc2626 !important;
    background: #fff7f7 !important;
}

.poc-antispam {
    margin-top: 4px;
}

.pow_wizard_antispam {
    margin-top: 18px;
    margin-bottom: 0;
}

.pow_callback_antispam {
    margin-top: 14px;
}

.pow_callback_antispam label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.pow_callback_antispam input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.pow_callback_form .formValidation {
    display: block;
    margin-top: 6px;
    color: #ff7b7b;
    font-size: 13px;
}

.pow_callback_form .rsform-error input {
    border-color: #ff7b7b !important;
    background: rgba(255, 123, 123, 0.10) !important;
}

.formRequired {
    color: inherit;
    margin-left: 3px;
}
