/* ===== PRODUCT SEITEN GENERELL ===== */
   
/* Product Seite - Hintergrund */

.product-section {
    width: var(--sectionWidth);
    margin: 0 auto;
}

.product-column {
    max-width: var(--columnWidth);
    box-sizing: border-box;
    margin: 30px auto;
    padding: 40px;
    background-color: var(--productBackground);
    border: 1px solid var(--productBorder);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadowDarkbox);
}


/**** PRODUCT INFOSEITEN ****/

.product-title {
    margin: 0 0 8px 0;
    color: var(--productTitle);
}

.product-text {
    margin: 0 0 24px 0;
    color: var(--productText);
}

.product-title h3.title-block-start {
    margin-top: 40px;
}

.product-text p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.product-text p.text-block-end {
    margin-bottom: 20px;
}

.accordion-content p.text-block-end {
    margin-bottom: 20px;
}

.grund-buttons .button-primary:hover {
    color: var(--buttonDark-Text);
}


/**** PREISE-TABLES ****/

.pricing-section {
    width: var(--sectionWidth);
    padding: 30px 40px;
    background: var(--indexBackground);
    box-sizing: border-box;
}

.pricing-intro {
    max-width: var(--columnWidth);
    margin: 0 auto 40px;
    text-align: center;
    color: var(--priceTitle);
}

/* Preisboxen */

.pricing-boxes {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-box {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--priceBoxBackground);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadowDarkbox);
}

/* Price Header */

.pricing-header {
    padding: 18px 20px 14px;
    text-align: center;
    color: var(--priceBackground);
}

.pricing-popular {
background: var(--pricePlus);
}

.pricing-box-basis .pricing-header {
    background: var(--priceBasis);
}

.pricing-box-plus .pricing-header {
    background: var(--pricePlus);
}

.pricing-box-premium .pricing-header {
    background: var(--pricePremium);
}

.pricing-title {
    font-size: 24px;
    line-height: 1.2;
}

.pricing-subtitle {
    margin-top: 6px;
    font-size: 13px;
}

/* Price Body */

.pricing-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    color: var(--priceBackground);
}

.pricing-price {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.pricing-period {
    margin: 8px 0 20px;
    text-align: center;
    font-size: 12px;
}

/* Orice Leistungen */

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-list-item {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.pricing-list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--icon-color);
    font-weight: 700;
}

/* Price Footer / Button */

.pricing-footer {
    margin-top: auto;
    padding: 14px 20px;
    background: var(--priceBackground);
    text-align: center;
}

.pricing-footer .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 36px;
    padding: 8px 18px;
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--button-WE-BG);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

/* Price Basis */

.button-basis {
    background: var(--priceBasis);
}

.button-basis:hover {
    background: transparent;
    color: var(--priceBasis);
    border-color: var(--priceBasis);
}

/* Price Plus */

.button-plus {
    background: var(--pricePlus);
}

.button-plus:hover {
    background: transparent;
    color: var(--pricePlus);
    border-color: var(--pricePlus);
}

/* Price Premium */

.button-premium {
    background: var(--pricePremium);
}

.button-premium:hover {
    background: transparent;
    color: var(--pricePremium);
    border-color: var(--pricePremium);
}

/* Plus etwas hervorheben */

.pricing-box-plus {
    transform: translateY(-12px);
}


/**** DOWNLOAD BEREICH ****/

.download-section {
    width: var(--sectionWidth);
    margin: 0 auto;
}

.download-column {
    max-width: var(--columnWidth);
    box-sizing: border-box;
    margin: 30px auto;
    padding: 40px;
    background-color: var(--productBackground);
    border: 1px solid var(--productBorder);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadowDarkbox);
}

.download-intro {
    max-width: 1200px;
    box-sizing: border-box;
    margin: 30px auto;
	margin-bottom: 60px;
    padding: 40px;
    background-color: var(--boxOrangeBackground);
    border: 1px solid var(--productBorder);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadowDarkbox);
}

/* 2 Download Boxen */

.download-boxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* einzelne Box */

.download-box {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 18px 20px;
    background: var(--downloadBox);
    border-radius: var(--borderRadius);
    box-shadow:
        3px 4px 8px rgba(0, 0, 0, 0.25),
        0 2px 0 var(--foundingColor);
}

/* Text der Boxen */

.download-box-content {
    flex: 1;
    min-width: 0;
}

.download-box-title {
    margin-bottom: 6px;
	text-align: center;
    color: var(--productTitle);
    font-weight: 600;
}

.download-box-text {
    line-height: 2.0;
    color: var(--productText);
    overflow-wrap: break-word;
}

.download-box-img img {
	display: block;
	margin: 0 auto;
	padding-bottom:40px;
    max-width: 80%;
}

/* Text Download Info */

.download-info-title {
	padding-top: 40px;
    padding-bottom: 20px;
    color: var(--downloadinfoTitle);
    font-weight: 600;
}

.download-info-text {
    line-height: 2.2;
    color: var(--downloadinfoTitle);
    overflow-wrap: break-word;
}

/* Text Downlaod Content */

.content-download {
    width:100%;
	margin-bottom: 60px;
}

.download-content {
	display: block;
	margin: 0 auto;
	padding: 40px;
	background-color: #FFFFFF;
}

.download-headline {
    padding-bottom: 40px;
    color: var(--downloadinfoTitle);
}

.download-content-title {
    margin-bottom: 6px;
    color: var(--productTitle);
    font-weight: 600;
}

.download-content-text {
    line-height: 1.5;
    color: var(--productText);
    overflow-wrap: break-word;
}

.download-content-title h5.title-block-start {
    margin-top: 40px;
}

.download-content-text p.text-block-end {
    margin-bottom: 20px;
}


/**** PRODUCT SYSTEM & INSTALLATION ****/

.product-install-section {
    width: var(--sectionWidth);
    margin: 0 auto;
}

.product-install-column {
    max-width: var(--columnWidth);
    box-sizing: border-box;
    margin: 30px auto;
    padding: 40px;
    background-color: var(--productBackground);
    border: 1px solid var(--productBorder);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadowDarkbox);
}

.product-install-headline {
        padding-bottom: 40px;
    color: var(--productTitle);
}

.product-install-headline-zwei {
		padding-top:40px;
    color: var(--productTitle);
}

.product-install-title {
    margin-bottom: 6px;
    color: var(--productTitle);
    font-weight: 600;
}

.product-install-text {
    line-height: 1.5;
    color: var(--productText);
    overflow-wrap: break-word;
}

.product-install-item a {
	color: var(--productTitle);
}

.product-install-item {
   position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.product-install-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--icon-color);
    font-weight: 700;
}

.product-install-title h4.title-block-start {
    margin-top: 40px;
}

.product-install-text .text-block-start {
    margin-top: 20px;
}

.product-install-text p.text-block-end {
    margin-bottom: 20px;
}


/**** PRODUCT FAQs ****/

.product-faq-section {
    width: var(--sectionWidth);
    margin: 0 auto;
}

.product-faq-column {
    max-width: var(--columnWidth);
    box-sizing: border-box;
    margin: 30px auto;
    padding: 40px;
    background-color: var(--productBackground);
    border: 1px solid var(--productBorder);
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadowDarkbox);
}