/*
Theme Name: Arbis Custom
Theme URI: https://arbis.com
Author: Arbis Team
Author URI: https://arbis.com
Description: Custom WordPress theme with locked homepage layout, translation-ready, and Classic Editor support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arbis-custom
Domain Path: /languages
*/

/* ===============================================
   Custom Fonts
   =============================================== */

/* Inter - for body text */
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Saira - for headings */
@font-face {
    font-family: 'Saira';
    src: url('assets/fonts/Saira-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saira';
    src: url('assets/fonts/Saira-Italic-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Default paragraph weight */
p {
    font-weight: 400;
}

/* Saira for all headings */
h1, h2, h3, h4, h5, h6,
.logo-name,
.hero-title,
.team-division-header h2,
.employee-name {
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ========== VARIABLES (sync with theme.json) ========== */
:root {
    --color-primary: #03CA03;
    --color-dark: #323A45;
    --color-bg: #f9fafb;
    --color-bg-highlight: #F9FAFA;
    --container: 1000px;
    --color-white: #fff;
    --color-purple: #8B5CF6;
    --color-grey: #818181;
    --radius: 1rem;
    --half-radius: 0.5rem;
}


/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.custom-logo {
    height: 40px;
    width: auto;
}

.custom-header-logo {
    display: block;
}

.custom-header-logo-mob {
    display: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-size: 0.5rem;
    color: #6b7280;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.language-switcher {
    background-color: var(--color-bg-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border-radius: var(--half-radius);
    padding: 0.3rem 0.6rem;
}

.language-switcher {}

/* Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 2rem;
}

.mobile-nav {
    display: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.desktop-nav .menu-item-has-children > a::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23323A45' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
    display: block;
}

.desktop-nav .menu-item-has-children > a:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2303CA03' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");

}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    flex-direction: column;
    gap: 0;
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    padding: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-dark);
}

.main-navigation .sub-menu a:hover {
    background: #f9fafb;
    color: #03CA03;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.language-switcher a {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.language-switcher .current-lang a,
.language-switcher a:hover {
    color: var(--color-dark);
}

.btn-outline {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid #03CA03;
    border-radius: 0.375rem;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #03CA03;
    color: #fff;
}

.btn-contact-header {
    text-align: center;
    padding: 0.3rem 0.5rem !important;
    border-color: var(--color-grey);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--half-radius);
    border: none;
}


/* Main content */
.site-main {
}

/* Footer */
.site-footer {
    background: #3e4a56;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Footer Logo */
.footer-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo .custom-logo {
    height: 40px;
    width: auto;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-logo .logo-tagline {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-column h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

/* Software Tools Grid */
.footer-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}

.footer-tools-grid .menu-item {
    list-style: none;
}

.footer-tools-grid a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: block;
}

.footer-tools-grid a:hover {
    color: #03CA03;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #03CA03;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #03CA03;
}

.footer-social svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Footer Copyright */
.footer-copyright {
    color: var(--color-white);
}

.footer-copyright p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Mobile Responsive */
@media (max-width: 900px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-tools-grid {
        gap: 0.75rem;
    }

    .footer-copyright {
        padding-top: 1.5rem;
    }
}

/* Editable content areas */
.editable-section {
    margin-bottom: 1.5rem;
}

.editable-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}

.editable-section .content {
    font-size: 1rem;
    line-height: 1.8;
}

/* Image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-dark);
    position: relative;
    z-index: 1001;
}

/* Mobile Navigation Overlay */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-bg-highlight);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.3s ease;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .mobile-nav.toggled {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 2rem 0 2rem;
        margin: 0;
    }

    .mobile-nav > ul > li {
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-nav a {
        display: block;
        padding: 1.25rem 1rem;
        font-size: 1.1rem;
        text-decoration: none;
        color: var(--color-dark);
        font-weight: 500;
        transition: color 0.3s;
    }

    .mobile-nav a:hover {
        color: #03CA03;
    }

    .mobile-nav .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-nav .menu-item-has-children > a::after {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23323A45' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.3s;
    }

    .mobile-nav .menu-item-has-children.open > a::after {
        transform: rotate(180deg);
    }

    .mobile-nav .sub-menu {
        list-style: none;
        display: none;
        flex-direction: column;
        position: static;
        padding: 0;
        margin: 0;
        background: white;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        transform: none;
        border-bottom: solid 1px var(--color-primary);
    }

    .mobile-nav .menu-item-has-children.open > .sub-menu {
        display: flex;
        padding: 0.5rem 0;
    }

    .mobile-nav .sub-menu li {
        border-bottom: solid 1px #e5e7eb;
        padding-left: 3rem;
    }

    .mobile-nav .sub-menu li:last-child {
        border-bottom: none;
    }

    .mobile-nav .sub-menu a {
        padding: 1rem 0;
        font-size: 1rem;
    }

}

/* ===============================================
   Contact Page Styles
   =============================================== */

/* Contact Hero Section */
.kontakt-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: #fff;
}

.kontakt-hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.kontakt-hero h1 strong {
    font-weight: 700;
}

.kontakt-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Contact Form Section */
.kontakt-form-section {
    padding: 3rem 0 4rem;
    background: #fff;
}

.kontakt-form-wrapper {
    max-width: var(--container);
    margin: 0 auto;
}

.kontakt-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    /* margin-bottom: 2rem; */
}

/* Contact Form 7 Styling */
.kontakt-form-wrapper .wpcf7-form {
    display: grid;
    gap: 1rem;
}

.kontakt-form-wrapper .wpcf7-form-control-wrap {
    display: block;
}

.kontakt-form-wrapper input[type="text"],
.kontakt-form-wrapper input[type="email"],
.kontakt-form-wrapper input[type="tel"],
.kontakt-form-wrapper textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f9fafb;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.kontakt-form-wrapper input[type="text"]:focus,
.kontakt-form-wrapper input[type="email"]:focus,
.kontakt-form-wrapper input[type="tel"]:focus,
.kontakt-form-wrapper textarea:focus {
    outline: none;
    border-color: #03CA03;
    box-shadow: 0 0 0 3px rgba(3, 202, 3, 0.05);
    background: #fff;
}

.kontakt-form-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.kontakt-form-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #6b7280;
    font-size: 0.875rem;
    /* display: flex; */
    /* align-items: center; */
}

.kontakt-form-wrapper .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.kontakt-form-wrapper .wpcf7-acceptance label {
    align-items: flex-start;
}

/* Form field grid for two columns */
.kontakt-form-wrapper .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Checkbox section heading */
.kontakt-form-wrapper .checkbox-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

/* Checkbox styling - multi-column grid */
.kontakt-form-wrapper .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.kontakt-form-wrapper .wpcf7-acceptance {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kontakt-form-wrapper .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.kontakt-form-wrapper input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    position: relative;
}

.kontakt-form-wrapper input[type="checkbox"]:checked {
    background-image: url('assets/img/square-check-green.png');
    background-size: 140%;
    background-position: center;
    background-repeat: no-repeat;
    border-color: transparent;
    background-color: transparent;
}

.kontakt-form-wrapper .wpcf7-list-item-label {
    cursor: pointer;
    color: var(--color-dark);
    font-size: 0.95rem;
}

/* Submit button */
.kontakt-form-wrapper input[type="submit"] {
    background: #03CA03;
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    justify-self: start;
}

.kontakt-form-wrapper input[type="submit"]:hover {
    background: #02b002;
}

.kontakt-form-wrapper input[type="submit"]:active {
    transform: translateY(1px);
}

/* Validation messages */
.kontakt-form-wrapper .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.kontakt-form-wrapper .wpcf7-validation-errors {
    background: #fee;
    border: 1px solid #fcc;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #c00;
    margin-top: 1rem;
}

.kontakt-form-wrapper .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #155724;
    margin-top: 1rem;
}

/* Contact Info Section */
.kontakt-info-section {
    padding: 3rem 0 4rem;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.kontakt-info {
    max-width: var(--container);
    margin: 0 auto;
}

.kontakt-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.kontakt-company {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.kontakt-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
}

.kontakt-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.kontakt-detail svg {
    flex-shrink: 0;
    color: var(--color-dark);
    width: 18px;
    height: 18px;
}

.kontakt-detail a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.kontakt-detail a:hover {
    color: #03CA03;
}

/* ===============================================
   Team Page Styles
   =============================================== */

/* Team Hero Section */
.team-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: var(--color-bg-highlight);
}

.team-hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.team-hero h1 strong {
    font-weight: 700;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Team Divisions Section */
.team-divisions-section {
    padding: 3rem 0;
    background: #fff;
}

.team-division {
    margin-bottom: 4rem;
}

.team-division:last-child {
    margin-bottom: 0;
}

.team-division-header {
    margin-bottom: 2rem;
}

.team-division-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.team-division-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Team Employees Grid */
.team-employees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Employee Card */
.team-employee-card {
    overflow: hidden;
}

.employee-photo {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.employee-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.employee-info {
    padding: 1rem 0;
}

.employee-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
}

.employee-position {
    font-size: 0.95rem;
    color: var(--color-grey);
}

.employee-social-links {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0;
}

.employee-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    background: var(--color-dark);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.employee-social-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.employee-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.employee-expertise {
    font-size: 0.875rem;
    color: var(--color-dark);
}

.employee-expertise strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.employee-expertise li {
    position: relative;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

/* Team CTA Section */
.team-cta-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.team-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.team-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.team-cta p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
}

.team-cta .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #03CA03;
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.team-cta .btn-primary:hover {
    background: #02b002;
    transform: translateY(-2px);
}



/* ===============================================
   Products Page Styles
   =============================================== */

/* Products Hero Section */
.products-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: var(--color-bg-highlight);
}

.products-hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.products-hero-description {
    max-width: var(--container);
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
}

/* Products List Section */
.products-list {
    padding: 2rem 0;
    background: #fff;
}

.products-list > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-item {
    margin-bottom: 3rem;
    max-width: var(--container);
}

.product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.product-header {
    margin-bottom: 1.25rem;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.product-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 1rem;
}

.product-description p:last-child {
    margin-bottom: 0;
}

.product-body {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

/* Alternate layout for even items */
.product-item:nth-child(even) .product-body {
    flex-direction: row-reverse;
}

.product-features {
    flex: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: self-start;
}

.product-key-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.product-key-points li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-key-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('assets/img/square-check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.product-key-points li:last-child {
    margin-bottom: 0;
}

.key-point-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.key-point-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
}

.product-cta {
    display: inline-block;
}

.product-image {
    width: 40%;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

/* Products CTA Section */
.products-cta {
    padding: 4rem 0;
    background: var(--color-bg-highlight);
}

.products-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.products-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.products-cta-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .site-header {
        padding: 1rem 0.5rem;
    }

    .site-header > .container{
        padding-inline: 0.5rem;
    }

    .kontakt-hero {
        padding: 2.5rem 0 2rem;
    }

    .kontakt-hero h1 {
        font-size: 1.75rem;
    }

    .kontakt-form-section {
        padding: 2rem 0 3rem;
    }

    .kontakt-form-wrapper .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .kontakt-form-wrapper .wpcf7-checkbox {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .kontakt-info-section {
        padding: 2rem 0 3rem;
    }

    .kontakt-info h2 {
        font-size: 1.25rem;
    }

    .kontakt-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .custom-header-logo-mob {
        display: block;
        width: 8rem;
        height: auto;
    }
    .custom-header-logo {
        display: none;
    }

    /* Team Page Mobile */
    .team-hero {
        padding: 2.5rem 0 2rem;
    }

    .team-hero h1 {
        font-size: 1.75rem;
        padding-inline: 1rem;
    }

    .team-divisions-section {
        padding: 2rem 0;
    }

    .team-division {
        margin-bottom: 3rem;
    }

    .team-division-header h2 {
        font-size: 1.25rem;
    }

    .team-employees-grid {
        gap: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 1rem;
    }

    .team-cta-section {
        padding: 3rem 0;
    }

    .team-cta h2 {
        font-size: 1.5rem;
    }

    .team-employee-card {
        width: 100%;
    }

    /* Products Page Mobile */
    .products-hero {
        padding: 2.5rem 0 2rem;
    }

    .products-hero-title {
        font-size: 1.75rem;
    }

    .product-item {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .product-header {
        margin-bottom: 2rem;
    }


    .product-body {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .product-item:nth-child(even) .product-body {
        flex-direction: column;
    }

    .products-cta {
        padding: 3rem 0;
    }

    .products-cta-title {
        font-size: 1.5rem;
    }

    .product-features > .btn.btn-primary {
        flex: 1;
        text-align: center;
    }

    .product-features {
        display: flex;
        flex-direction: column;
    }

    .product-image {
        flex: 1;
        width: 90%;
        margin: auto;
    }
}

/* ===============================================
   Download Center Page
   =============================================== */

/* Hero Section */
.download-center-hero {
    padding: 4rem 0 3rem;
    background: #F8F9FA;
    text-align: center;
}

.download-center-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.download-center-hero-description {
    max-width: 800px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Download Items Section */
.download-items-section {
    padding: 4rem 0;
    background: #fff;
}

.download-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.download-item-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-grey);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap:  1rem;
    justify-content: space-between;
}

.download-item-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.download-item-card.coming-soon {
}

.download-item-header {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.download-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    background: var(--color-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 1rem 0;
    letter-spacing: 0.5px;
}

.download-badge.coming-soon-badge {
}

.download-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.download-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.download-content {display: flex;gap:  1rem;flex-direction: column;align-content: start;}

.download-title {
    font-size: 1.1rem;
    color: var(--color-dark);
    line-height: 1.3;
    font-weight: normal;
    margin: 0;
}

.download-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    height: 100%;
    width: 100%;
}

.download-coming-soon-message {

}

.download-blurry-text {filter: blur(0.4rem);}

.download-description p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.download-cta {
    width: 100%;
    border: none;
}

.download-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Bottom CTA Section */
.download-center-bottom-cta {
    padding: 4rem 0;
    background: #F8F9FA;
    text-align: center;
}

.bottom-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.download-center-bottom-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.bottom-cta-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Download Email Modal */
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.download-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.download-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.download-modal-close {
    position: absolute;
    top: 0.2rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.download-modal-close:hover {
    background: #f3f4f6;
    color: var(--color-dark);
}

.download-modal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.download-modal-content > p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: center;
}

.download-email-form .form-group {
    display: flex;
    gap:  1rem;
}

.download-email-form label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.download-email-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.download-email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.download-email-form .form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.download-email-form .form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.download-email-form .form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .download-center-hero {
        padding: 2.5rem 0 2rem;
    }

    .download-center-hero h1 {
        font-size: 1.8rem;
    }

    .download-center-hero-description {
        font-size: 1rem;
    }

    .download-items-section {
        padding: 3rem 0;
    }

    .download-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-center-bottom-cta {
        padding: 3rem 0;
    }

    .download-center-bottom-cta h2 {
        font-size: 1.5rem;
    }

    .bottom-cta-description {
        font-size: 1rem;
    }

    .download-modal-content {
        padding: 2rem;
        margin: 1rem;
    }

    .download-modal-content h2 {
        font-size: 1.5rem;
    }
}

/* ===============================================
   Product Detail Sections
   =============================================== */

/* Common Section Styles */
.product-detail-page section {
    position: relative;
}

.product-detail-page .section-title {
    font-size: 2rem;
    font-weight: 700;
}

/* Product Detail Hero Section */
.product-detail-hero {
    padding: 2rem 0 3rem;
    background: #F8F9FA;
}

.product-detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 4rem;
    align-items: center;
}


.product-hero-content .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

.product-hero-content .hero-subtitle {
    font-size: 1.8rem;
    font-weight: normal;
}

.product-hero-content .hero-description {
    line-height: 1.8;
    margin-top: 1rem;
}

.product-detail-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.product-detail-hero-bullets li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.product-detail-hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('assets/img/square-check.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-logos-wrapper {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-logos-wrapper .logos-title {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

.hero-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-logos img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* What is Product Section */
.product-detail-what-is-product {
    padding: 2rem 0;
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.what-is-grid.image-left {
    direction: rtl;
}

.what-is-grid.image-left > * {
    direction: ltr;
}

.what-is-description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.what-is-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.what-is-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.what-is-features li strong {
    font-weight: 700;
    color: var(--color-dark);
}

.what-is-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('assets/img/square-check-green.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.what-is-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 1;
    object-fit: contain;
}

/* Market Analysis Section */
.product-detail-market-analysis {
    padding: 2rem 0;
}

.market-challenge,
.market-solution {
    margin-top: 1rem;
}

.market-solution-box {
    background-color:  rgba(3, 202, 3, 0.03);
    border-left: 3px solid var(--color-primary);
    padding: 1.25rem 1.5rem
}

.market-subsection-heading {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.market-subheading {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.market-intro-text-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.market-intro-warning-img-wrapper {
    height: 5rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.market-intro-warning-img-wrapper img {
    height: 100%;
}

.market-intro-text,
.market-solution-text {
    line-height: 1.8;
}

.market-bullets {
    margin: 1.5rem 0;
}

.market-bullets li {
    position: relative;
    margin-left: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.market-bullets li::before {
    /* content: ''; */
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.25rem;
    height: 1.25rem;
    background-size: contain;
    background-repeat: no-repeat;
}

.market-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
    margin-top: 2rem;
}

.market-icon-item {
}

.market-icon-header {
    display: flex;
    gap:  1rem;
}

.market-icon img {
    width: 1.7rem;
    height: 1.7rem;
    display: block;
}

.market-icon-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.market-icon-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Measurable Section */
.product-detail-measurable {
    padding: 2rem 0;
    background: #fff;
}

.measurable-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.measurable-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    padding-inline: 2rem;
}

.measurable-image-item {
    text-align: center;
}

.measurable-image {
    margin-bottom: 1rem;
}

.measurable-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: inherit;
}

.measurable-image-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.measurable-checkbox-box {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 1rem;
    margin: 2.5rem 0;
}

.measurable-box-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.measurable-checkbox-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.measurable-checkbox-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    line-height: 1.7;
    max-width: 49%;
}

.measurable-checkbox-list li:last-child {
    margin-bottom: 0;
}

.measurable-checkbox-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('assets/img/square-check-green.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.measurable-checkbox-list li strong {
    font-weight: 700;
    color: var(--color-dark);
}

.measurable-info-section {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-radius: 4px;
    margin-top: 2rem;
}

.measurable-info-section .info-icon {
    flex-shrink: 0;
    padding-top: 0.125rem;
}

.measurable-info-section .info-icon svg {
    display: block;
}

.measurable-info-section .info-text {
    flex: 1;
    color: var(--color-dark);
    line-height: 1.7;
}

.measurable-info-section .info-text p {
    margin: 0;
}

.measurable-info-section .info-text p + p {
    margin-top: 0.75rem;
}

/* Central Functions Section */
.product-detail-central-functions {
    padding: 2rem 0;
}

.functions-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.functions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.function-item {
    background: #fff;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: solid 1px var(--color-grey);
    border-radius: 0.5rem;
}

.function-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.function-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.function-header img {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
}

.function-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.function-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Vertrauen (Trust) Section */
.product-detail-vertrauen {
    padding: 2rem 0;
    background: #fff;
}

.section-title.vertrauen {
    text-align: center;
}

.vertrauen-description {
    color: #6b7280;
    line-height: 1.8;
    text-align: center;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.vertrauen-logos-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:  1rem;
    margin-top: 1rem;
}

.logos-subtitle {
    font-size: 1rem;
    color: var(--color-dark);
    font-weight: 600;
}

.vertrauen-logos,
.vertrauen-tech-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.vertrauen-logos img,
.vertrauen-tech-logos img {
    height: 2rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.vertrauen-logos img:hover,
.vertrauen-tech-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* FAQ Section */
.product-detail-faq {
    padding: 2rem 0;
}

.product-detail-faq-title {
    max-width: var(--container);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.product-detail-faq-title img {
    width: 2rem;
}
.product-detail-faq-title .section-title {
    margin: 0;
}
.faq-intro {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.product-faq-list {
    max-width: var(--container);
    margin: 2rem auto 0;
}

.product-faq-item {
    border: 1px solid #e5e7eb;
    border-inline: none;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-dark);
    position: relative;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #F8F9FA;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_2198_1819)%22%3E%0A%3Cpath%20d%3D%22M12%2021C16.9706%2021%2021%2016.9706%2021%2012C21%207.02944%2016.9706%203%2012%203C7.02944%203%203%207.02944%203%2012C3%2016.9706%207.02944%2021%2012%2021Z%22%20stroke%3D%22%2303CA03%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M9%2012H15%22%20stroke%3D%22%2303CA03%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M12%209V15%22%20stroke%3D%22%2303CA03%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_2198_1819%22%3E%0A%3Crect%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.product-faq-item.active .faq-question {
    background: var(--color-bg);
}

.product-faq-item.active .faq-question::after {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0_2198_1808)%22%3E%0A%3Cpath%20d%3D%22M12%2021C16.9706%2021%2021%2016.9706%2021%2012C21%207.02944%2016.9706%203%2012%203C7.02944%203%203%207.02944%203%2012C3%2016.9706%207.02944%2021%2012%2021Z%22%20stroke%3D%22%23323A45%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3Cpath%20d%3D%22M9%2012H15%22%20stroke%3D%22%23323A45%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0_2198_1808%22%3E%0A%3Crect%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22white%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.product-faq-item.active .faq-answer {
    max-height: 1000px;
    background: var(--color-bg);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.product-detail-cta {
    padding: 4rem 0;
    text-align: center;
}

.product-detail-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.product-detail-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.cta-description {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-description p:last-child {
    margin-bottom: 0;
}


.mob-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 900px) {
    .product-detail-hero-grid,
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .what-is-grid .what-is-content {
        order: 2;
    }

    .what-is-grid.image-left {
        direction: ltr;
    }

    .product-hero-content .hero-title {
        font-size: 2rem;
    }

    .product-hero-content .hero-subtitle {
        font-size: 1.125rem;
    }

    .market-icon-grid,
    .functions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .function-header {
        gap: 1rem;
    }

    .function-header img{
        width: 2.25rem;
        height: 2.25rem;
    }

    .measurable-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding-inline: 1rem;
    }

    .measurable-checkbox-box {
        padding: 1.5rem;
    }

    .measurable-checkbox-list {
        display: block;
    }

    .measurable-checkbox-list li {
        max-width: 100%;
    }

    .measurable-info-section {
        gap: 0.75rem;
    }

    .measurable-info-section .info-icon {
    }

    .product-detail-hero,
    .product-detail-what-is-product,
    .product-detail-market-analysis,
    .product-detail-measurable,
    .product-detail-central-functions,
    .product-detail-vertrauen,
    .product-detail-faq,
    .product-detail-cta {
        padding: 1rem 0;
    }

    .product-detail-page .section-title {
        font-size: 1.75rem;
    }

    .product-detail-cta h2 {
        font-size: 1.75rem;
    }

    .product-hero-content .hero-description {
        margin-bottom: 2rem;
    }

    .product-hero-content .btn-primary {
        width: 100%;
        text-align: center;
    }

    .mob-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .vertrauen-logos-wrapper{
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: row;
    }
}
