/* @scope (.grafikserviceanleitungVCMS) { */


    /* ==========================================================================
       Grafikservice – Stylesheet
       ========================================================================== */

    :root {
        --green: #7cb342;
        --green-dark: #5d8a2e;
        --green-light: #eef6e4;
        --green-border: #a9d18e;
        --orange: #ec9a2e;
        --orange-dark: #d6851d;
        --text: #222222;
        --text-muted: #555555;
        --white: #ffffff;
        --radius: 10px;
        --max-width: 1200px;
        --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        --transition: 0.25s ease;
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        font-family: "Signikalight", Helvetica, Arial, sans-serif;
        color: var(--text);
        line-height: 1.5;
        background: var(--white);
    }

    h1, h2, h3, h4, h5 {
        font-family: inherit;
        margin: 0 0 0.5em;
        line-height: 1.25;
    }

    h5 {
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 400;
        margin: 10px 0 0 0;
    }

    p {
        margin: 0 0 10px 0;
        text-align: justify;
    }

    ul {
        margin: 0 0 1em;
        padding-left: 1.2em;
    }

    a {
        color: inherit;
        text-decoration: none;
    }


    .section {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 50px 24px;
    }

    .section-title {
        color: var(--green);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .section-intro {
        max-width: 100%;
        margin-bottom: 2em;
    }

    /* ==========================================================================
       Header / Hero
       ========================================================================== */

    .hero {
        position: relative;
        min-height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        color: var(--white);
        text-align: center;
    }

    .hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .hero-content {
        position: relative;
        z-index: 1;
        padding: 24px;
        max-width: 720px;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(35, 35, 35, 0.75);
        padding: 14px 32px;
        border-radius: 15px;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 0.6em;
    }

    /* ==========================================================================
       Pill Navigation
       ========================================================================== */

    .pill-nav {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 28px 24px 0;
    }

    .pill-nav ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 0;
        padding: 0;
    }

    .pill {
        display: inline-block;
        background: var(--green-light);
        color: var(--green-dark);
        padding: 10px 22px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 1.25rem;
        transition: 'background' var(--transition), color var(--transition), transform var(--transition);
        white-space: nowrap;
    }

    .pill:hover,
    .pill:focus-visible {
        background: var(--green);
        color: var(--white);
        transform: translateY(-2px);
    }

    /* ==========================================================================
       Anleitung (Steps)
       ========================================================================== */

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

    .step {
        position: relative;
        text-align: center;
        padding-top: 10px;
    }

    .step-icon-wrap {
        width: 130px;
        height: 150px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .step-num {
        position: absolute;
        top: 53%;
        left: 38%;
        transform: translateX(-55px);
        font-size: 3.25rem;
        font-weight: 800;
        color: var(--green);
    }

    .step h3 {
        font-size: 1rem;
        font-weight: 700;
    }

    /* ==========================================================================
       Pakete (Pricing Cards)
       ========================================================================== */

    .package-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(10, auto);
        gap: 32px;
        margin-top: 45px;
    }

    .package-card {
        position: relative;
        border: 1px solid var(--green-border);
        border-radius: var(--radius);
        padding: 32px 28px;
        display: grid;
        grid-row: 1 / -1;
        grid-template-rows: subgrid;
        gap: 12px;
    }

    .package-title {
        position: absolute;
        top: -25px;
        left: 12px;
        margin: 0;
        padding: 0 14px;
        background: #fff;
        color: var(--orange);
        font-size: 2.5rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .package-price {
        text-transform: none;
        font-size: 0.6em;
        margin-left: 0.5em;
        color: inherit;
        vertical-align: middle;
        position: relative;
        top: 0.15em;
    }

    .preis-stern {
        font-size: 0.6em;
        vertical-align: text-top;
        font-weight: 400;
        color: #222222;
    }

    .preis-hinweis {
        margin-top: 15px;
    }

    .paket-beschreibung {
        line-height: normal;
    }


    .linie {
        border: none; /* Standardlinie entfernen */
        border-top: 1px solid #76B82A; /* Strichstärke und Farbe definieren */
        margin: 12px 0 0 0; /* Abstand nach oben und unten */
    }


    .grafikserviceanleitungVCMS .btn {
        display: inline-block;
        align-self: flex-start;
        margin-top: 24px;
        padding: 12px 28px;
        border-radius: 999px;
        font-weight: 700;
        transition: 'background' var(--transition), color var(--transition), 'border-color' var(--transition);
    }

    .btn-outline {
        border: 2px solid var(--green);
        color: var(--green-dark);
    }

    .btn-outline:hover {
        background: var(--green);
        color: var(--white);
    }

    .btn-solid {
        background: var(--orange);
        color: var(--white);
        border: 2px solid var(--orange);
    }

    .btn-solid:hover {
        background: var(--orange-dark);
        border-color: var(--orange-dark);
    }

    /* ==========================================================================
       Vergleich (Comparison Table)
       ========================================================================== */

    .compare-table {
        display: flex;
        flex-direction: column;
        margin-top: 24px;
    }

    .compare-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        align-items: center;
        border-bottom: 1px solid #e5e5e5;
    }

    .compare-head {
        border-bottom: none;
    }

    .compare-head .compare-cell {
        color: var(--orange);
        font-weight: 700;
        text-align: center;
        font-size: 1.05rem;
        text-transform: uppercase;
        padding-bottom: 12px;
    }

    .compare-cell {
        padding: 16px 12px;
        text-align: center;
    }

    .compare-cell.label {
        text-align: left;
        font-size:14px;
        font-weight: 600;
        color: black;
    }

    .compare-head .compare-cell.label {
        text-align: left;
    }

    .compare-cell.check {
        color: var(--green);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .compare-cell.dash {
        color: #bbbbbb;
    }

    /* ==========================================================================
       Verfügbare Produkte
       ========================================================================== */

    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-top: 28px;
    }

    .product-card {
        display: block;
    }

    .product-img-wrap {
        background: #f2f2f2;
        border-radius: var(--radius);
        overflow: hidden;
        aspect-ratio: 3.5 / 3;
        margin-bottom: 12px;
    }

    .product-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition);
    }

    .product-card:hover .product-img-wrap img,
    .product-card:focus-visible .product-img-wrap img {
        transform: scale(1.08);
    }

    .product-card:hover .product-name,
    .product-card:focus-visible .product-name {
        color: var(--green);
    }

    .product-name {
        display: block;
        text-align: center;
        font-weight: 400;
        transition: color var(--transition);
    }

    /* ==========================================================================
       Vorteile (Text + Image)
       ========================================================================== */

    .vorteile-grid {
        display: grid;
        grid-template-columns: 0.8fr 0.9fr;
        gap: 32px;
        align-items: start;
    }

    .vorteile-lead {
        font-weight: 700;
        font-size: 1.05rem;
    }

    .vorteile-text h4 {
        margin-top: 1.2em;
    }


    .vorteile-text-unten {
        max-width: 100%;
        margin-top: 20px;
    }

    .vorteile-img {
        margin-top: 1.2rem;
    }

    .vorteile-img img {
        width: 100%;
        aspect-ratio: 3.8 / 3; /* height: 100% → aspect-ratio */
        object-fit: cover;
        border-radius: var(--radius);
    }
    /* ==========================================================================
       FAQ (Accordion)
       ========================================================================== */

    .faq-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 24px;
        align-items: start;
    }

    .faq-item {
        background: var(--green-light);
        border-radius: var(--radius);
        padding: 4px 24px;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 0;
        font-size: 14px;
        font-weight: 700;
        color: var(--green-dark);
        text-align: left;
        font-family: inherit;
        transition: color var(--transition);
    }

    .faq-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        transition: transform var(--transition);
    }

    .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        overflow: hidden;
        transition: grid-template-rows var(--transition);
    }

    .faq-answer p {
        overflow: hidden;
        min-height: 0;
        margin: 0;
        padding-bottom: 0;
        color: var(--text-muted);
    }

    /* open state */
    .faq-item.open .faq-question {
        color: var(--orange);
    }

    .faq-item.open .faq-icon {
        transform: rotate(180deg);
        color: var(--orange);
    }

    .faq-item.open .faq-answer {
        grid-template-rows: 1fr;
    }

    .faq-item.open .faq-answer p {
        padding-bottom: 20px;
    }

    /* ==========================================================================
       Responsive
       ========================================================================== */

    @media (max-width: 900px) {
        .steps {
            grid-template-columns: repeat(2, 1fr);
        }

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

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

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

        .vorteile-img {
            order: -1;
        }

        .faq-list {
            grid-template-columns: 1fr;
        }

        .compare-row {
            grid-template-columns: 1.4fr 1fr 1fr;
        }
    }

    @media (max-width: 560px) {
        .hero-badge {
            font-size: 1.4rem;
            padding: 10px 22px;
        }

        .hero-content h1 {
            font-size: 1.25rem;
        }

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

        .product-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .section {
            padding: 44px 18px;
        }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        * {
            transition: none !important;
            scroll-behavior: auto !important;
        }
    }

/* } */

