/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    overflow-x: hidden;
}

a,
a:visited {
    color: #0000EE;
}

@keyframes animateDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}


/* ==========================================================================
   Utilities
   ========================================================================== */

.m-10 {
    margin: 10px;
}

.m-20 {
    margin: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-n20 {
    margin-bottom: -20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.t-center {
    text-align: center;
}

.t-left {
    text-align: left;
}

.f-white {
    color: #ffffff;
}

.f-important {
    font-size: 1.5em;
    font-weight: bold;
}

.f-red {
    color: #ff0000;
}

.f-companyBlue {
    color: #0096FF;
}

.c-pointer {
    cursor: pointer;
}

.d-inlineblock {
    display: inline-block;
}

.reverse {
    flex-direction: row-reverse;
}

.required-label::after {
    content: " *";
    color: #c62828;
}

.required {
    color: #c62828;
    font-weight: 700;
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 8px;
    background: #005ca9;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease;
}

.btn-primary:hover {
    background: #004b8a;
}


/* ==========================================================================
   Forms
   ========================================================================== */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    background: #fff;
    color: #333;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #c62828;
    background: #fffafa;
}

.form-error {
    margin-top: 6px;
    color: #c62828;
    font-size: 13px;
}

.form-row {
    display: grid;
    gap: 20px;
}

.form-row-street {
    grid-template-columns: 1fr 150px;
}

.form-row-city {
    grid-template-columns: 150px 1fr;
}

.form-row-contact,
.form-row-dates {
    grid-template-columns: 1fr 1fr;
}

.form-field-small {
    max-width: 180px;
}

.form-hint {
    margin: 34px 0 22px;
    padding: 14px 18px;
    border-left: 4px solid #1d4f91;
    border-radius: 8px;
    background: #f3f7fc;
    color: #334155;
    font-size: 15px;
    line-height: 1.5;
}

.form-hint strong {
    color: #1d3557;
}

.form-footer {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.form-footer a {
    color: #1d4f91;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .form-row,
    .form-row-street,
    .form-row-city,
    .form-row-contact,
    .form-row-dates {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-field-small {
        max-width: none;
    }

    .btn-primary {
        width: 100%;
    }
}

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

details.faq summary::-webkit-details-marker,
details.defaultFaq summary::-webkit-details-marker {
    display: none;
}

details.faq summary::marker,
details.defaultFaq summary::marker {
    content: "";
}

details.faq,
details.defaultFaq {
    margin-top: 5px;
    background-color: #f0f0f0;
    padding: 0 20px;
    min-height: 60px;
    text-align: left;
}

details.faq summary,
details.defaultFaq summary {
    cursor: pointer;
    min-height: 60px;
    vertical-align: middle;
    display: inline-block;
    width: 100%;
    text-align: left;
}

details.faq summary h3,
details.defaultFaq summary h3 {
    display: inline-block;
    height: 100%;
    margin: 15px 0;
    max-width: calc(100% - 40px);
}

details.faq summary span,
details.defaultFaq summary span {
    float: right;
    height: 40px;
    width: 40px;
    margin-top: 10px;
    background-color: #fdfdfd;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

details.faq summary span.rotating,
details.defaultFaq summary span.rotating {
    background-color: transparent;
    color: #3F3F3F;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

details.faq[open] span.rotating,
details.defaultFaq[open] span.rotating {
    transform: rotate(45deg);
}

details.faq[open],
details.defaultFaq[open] {
    background-color: #5fc6aa;
    color: #ffffff;
}

details.faq[open] p,
details.faq[open] ul,
details.faq[open] ol,
details.defaultFaq[open] p,
details.defaultFaq[open] ol,
details.defaultFaq[open] ul {
    animation: animateDown 0.25s linear forwards;
}

details.defaultFaq > :not(summary):last-child {
    padding-bottom: 20px;
}


/* ==========================================================================
   Layout
   ========================================================================== */

.companyBgLightGrey {
    background-color: #f6f6f6;
}

.companyBgDarkBlue {
    background-color: #174e68;
}

.contentHeadline {
    padding-bottom: 20px;
}

.blogContainer {
    max-width: 1340px;
    margin: auto;
    padding: 0 15px;
}

.wrapper {
    width: 100%;
    padding: 20px 0;
}

.layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.col-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout .col {
    flex: 1 1 240px;
}

.layout .col ul,
.layout .col ol {
    padding: 10px 40px;
}

.layout .col h4 {
    margin-top: 10px;
}

.col-image {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.usp-image {
    align-items: center;
    margin: 0 auto 5px;
    display: block;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
}

.size-grid li {
    text-align: center;
}

.layout .col ul.listSquare {
    list-style-type: square;
    padding: 0 0 0 20px;
}

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

@media (max-width: 768px) {
    .layout .col {
        flex: 1 1 50%;
    }
}

@media (max-width: 600px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .layout .col {
        flex: 1 1 100%;
    }
}


/* ==========================================================================
   Product Bar
   ========================================================================== */

.product-bar {
    align-items: stretch;
    gap: 20px;
    text-align: center;
}

.product-bar .col > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-bar .col {
    display: flex;
}

.productWrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    margin: auto;
}

.productTop {
    flex: 1;
}

.alignBottom {
    margin-top: auto;
}

.priceBlock {
    min-height: 150px;
}

.t-line-trough {
    text-decoration: line-through
}

.productBarConfigureButton {
    width: 220px;
    height: 40px;
    line-height: 40px;
    margin: 10px auto;
}

.productBarImage {
    display: block;
    height: 140px;
    margin: 0 auto;
}

.productBarButton {
    display: inline-block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    background-color: #1088cc;
    color: #fff;
    cursor: pointer;
    margin: 5px 0;
}

.productBarImageOverlayImg {
    display: inline-block;
    transform: translateX(60px);
}

.warrantyBox {
    display: inline-block;
    border: 1px solid #1088cc;
    color: #1088cc;
    margin: 10px 0;
    padding: 5px 10px 5px 10px;
    text-transform: uppercase;
    border-radius: 10px;
}


/* ==========================================================================
   Lists
   ========================================================================== */

.listSquare li {
    font-size: 1em;
}

.listSquare li::marker {
    color: #00b900;
}

.arrowList {
    list-style: none;
    padding-left: 0;
}

.arrowList li {
    position: relative;
    padding-left: 20px;
}

.arrowList li::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #0B2C4D;
}


/* ==========================================================================
   Banners
   ========================================================================== */

.orangeTopBanner {
    padding: 7px 0 7px 0;
    background-color: #ff8a00;
    color: #fff;
    font-size: 19px;
    text-align: center;
}

.orangeTopBanner > .spacer {
    margin: 0 10px;
}


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

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 520px;
    background-image: url('../img/ueberUns/index/hero.jpg');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(5, 26, 39, 0.7);
}

.hero * {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;

    max-width: 900px;
    margin: 0 auto;
    color: #F3F4F6;
    text-align: center;
}

.hero-content > h1 {
    font-size: 50px;
}

.hero-content > p {
    max-width: 630px;
    margin: 0 auto 35px;

    line-height: 1.7;
    text-align: center;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;

    list-style: none;
    padding: 0;
    margin: 40px 0 0;

    color: #F3F4F6;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
}

.hero-features li::before {
    content: "";

    width: 18px;
    height: 18px;
    transform: scale(1.2);

    flex-shrink: 0;

    background-image: url('../../assets/img/icons/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 600px) {
    .hero {
        width: 100%;
        max-width: 100vw;
        height: 560px;
        padding: 0 24px;
        background-size: cover;
        background-position: center center;
        box-sizing: border-box;
    }

    .hero::before {
        background: rgba(5, 26, 39, 0.72);
    }

    .hero-content {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .hero-content > h1 {
        font-size: 46px;
        line-height: 1.1;
        margin-bottom: 22px;
    }

    .hero-content > p {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 28px;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;

        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: 320px;
    }

    .hero-features li {
        width: fit-content;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 15px;
        line-height: 1.3;
        text-align: center;
        white-space: normal;
    }

    .hero-features li::before {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
    }

    .hero-feature-long {
        display: grid;
        grid-template-columns: 18px 1fr;
        gap: 8px;
        text-align: left;
    }
}


/* ==========================================================================
   Values
   ========================================================================== */

.values {
    padding: 100px 20px;
    background: #F3F4F6;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3F3F3F;
}

.section-header p {
    font-size: 18px;
    color: #3F3F3F;
}

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

.value-card {
    text-align: center;
    transition: 0.3s;
}

.value-card h3 {
    margin: 30px 0 20px;
    font-size: 32px;
    color: #3F3F3F;
}

.value-card p {
    color: #3F3F3F;
    line-height: 1.8;
}

.icon-box {
    width: 80px;
    height: 80px;

    margin: 0 auto;

    border-radius: 20px;

    background: #D5E9F6;

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

.icon-box img {
    width: 32px;
    height: 32px;
}

.value-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    .values {
        padding: 80px 24px;
    }

    .section-header {
        margin-bottom: 55px;
    }

    .section-header h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 16px;
        line-height: 1.6;
        max-width: 360px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .value-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .value-card h3 {
        font-size: 24px;
        margin: 24px 0 16px;
    }

    .value-card p {
        font-size: 16px;
        line-height: 1.8;
    }

    .icon-box {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }
}


/* ==========================================================================
   About
   ========================================================================== */

.about {
    padding: 120px 20px;
    background: #fff;
}

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

.about-text h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #000000;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #3F3F3F;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }
}

@media (max-width: 600px) {
    .about {
        padding: 80px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 32px;
        line-height: 1.25;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.8;
    }
}


/* ==========================================================================
   History
   ========================================================================== */

.history {
    padding: 80px 20px;
    background: #1088CC;
    color: #E5F5FD;
}

.history-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 70px;
}

.history-intro span {
    font-size: 18px;
    font-weight: 700;
}

.history-intro h2 {
    margin-top: 20px;
    font-size: 52px;
    line-height: 1.15;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(255, 255, 255, .25);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
    padding: 0 0 65px 65px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dff3ff;
}

.timeline-title span {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
}

.timeline-title h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
}

.timeline-item p {
    margin: 12px 0 0;
    max-width: 420px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
}

@media (max-width: 900px) {
    .history-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-left: 45px;
    }

    .timeline::before {
        left: 0;
    }

    .history-intro h2 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .history {
        padding: 80px 24px;
    }

    .history-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .history-intro h2 {
        font-size: 42px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-left: 45px;
        padding-bottom: 55px;
    }

    .timeline-title h3 {
        font-size: 28px;
    }

    .timeline-item p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* ==========================================================================
   Facts
   ========================================================================== */

.facts {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.facts h2 {
    margin-bottom: 60px;
    font-size: 34px;
    color: #3F3F3F;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.fact-item strong {
    display: block;
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1;
    color: #1088CC;
}

.fact-item span {
    font-size: 16px;
    color: #3F3F3F;
}

@media (max-width: 600px) {
    .facts {
        padding: 80px 24px;
    }

    .facts h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .fact-item strong {
        font-size: 32px;
    }

    .fact-item span {
        font-size: 15px;
    }
}


/* ==========================================================================
   Team
   ========================================================================== */

.team {
    padding: 120px 20px;
    background: #F3F4F6;
}

.team-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;

    overflow: hidden;

    border-radius: 16px;
    background: #fff;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-content {
    padding: 50px 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

.team-role h3 {
    margin-bottom: 6px;

    font-size: 32px;
    color: #3F3F3F;
}

.team-role span {
    display: block;
    margin-bottom: 16px;

    color: #1088CC;
    font-size: 16px;
    font-weight: 500;
}

.team-role p {
    color: #3F3F3F;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .team {
        padding: 80px 24px;
    }

    .team-card {
        grid-template-columns: 1fr;
    }

    .team-image img {
        height: 300px;
    }

    .team-content {
        padding: 40px 28px;
        gap: 38px;
    }

    .team-role h3 {
        font-size: 24px;
    }

    .team-role p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* ==========================================================================
   Certificates
   ========================================================================== */

.certificates {
    padding: 120px 20px;
    background: #FFF;
}

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

.certificate-card {
    text-align: center;
}

.certificate-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

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

.certificate-logo {
    height: 80px;
    object-fit: contain;

    margin-bottom: 25px;
}

.certificate-card h3 {
    margin-bottom: 15px;
    font-size: 28px;
}

.certificate-card p {
    color: #3f3f3f;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .certificates {
        padding: 80px 24px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .certificate-card {
        max-width: 340px;
        margin: 0 auto;
    }

    .certificate-card h3 {
        font-size: 24px;
    }

    .certificate-card p {
        font-size: 15px;
    }
}


/* ==========================================================================
   Awards
   ========================================================================== */

.awards {
    padding: 120px 20px;
    background: #F3F4F6;
}

.awards-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.awards-container {
    overflow: hidden;
    flex: 1;
}

.awards-track {
    display: flex;
    gap: 50px;

    transition: transform .4s ease;
}

.award-card {
    flex: 0 0 480px;

    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    align-items: center;
}

.award-image {
    width: 180px;
    height: 240px;

    overflow: hidden;

    border-radius: 10px;
    background: #e9e9e9;
}

.award-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.award-content h3 {
    margin-bottom: 15px;

    font-size: 36px;
    line-height: 1.2;
    color: #3F3F3F;;
}

.award-content p {
    line-height: 1.8;
    color: #999;
}

.award-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid #999;
    background-color: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
}

.award-arrow img {
    width: 18px;
    height: 18px;
    display: block;
    opacity: 0.7;
}

.award-arrow:hover {
    background: #168dcc;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .awards {
        padding: 80px 24px;
    }

    .awards-slider-wrapper {
        position: relative;
        display: block;
    }

    .awards-container {
        overflow: hidden;
        width: 100%;
    }

    .award-arrow.prev {
        left: 0;
    }

    .award-arrow.next {
        right: 0;
    }

    .award-arrow {
        position: absolute;
        top: 110px;
        z-index: 5;

        width: 46px;
        height: 46px;
    }

    .award-card {
        flex: 0 0 100%;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        padding: 0 60px;
    }

    .award-image {
        width: 220px;
        height: 220px;
        margin-bottom: 28px;
    }

    .award-content h3 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .award-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .awards-track {
        gap: 0;
    }
}


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

.cta {
    padding: 80px 20px;
    background: #FFF;
}

.cta-box {
    background: #168dcc;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
}

.cta-content h2 {
    margin-bottom: 10px;
    font-size: 42px;
    color: #fff;
}

.cta-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 56px;
    padding: 0 30px;
    background: #fff;
    color: #168dcc;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

@media (max-width: 600px) {
    .cta {
        padding: 70px 24px;
    }

    .cta-box {
        padding: 36px 28px;
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

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

    .cta-button {
        width: 100%;
        min-width: 0;
    }
}


/* ==========================================================================
   Career / Jobs
   ========================================================================== */

.career-intro {
    padding: 100px 20px 80px;
    background: #fff;
}

.career-intro-grid {
    display: grid;
    grid-template-columns: 1fr 470px;
    gap: 80px;
    align-items: center;
}

.career-intro-content h1 {
    margin-bottom: 24px;
    font-size: 46px;
    line-height: 1.15;
    color: #111;
}

.career-intro-content p {
    max-width: 620px;
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.career-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
}

.career-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    font-size: 17px;
    color: #333;
}

.career-benefits li::before {
    content: "";

    width: 18px;
    height: 18px;

    flex-shrink: 0;

    background-image: url('../../assets/img/icons/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.career-button,
.job-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 30px;

    border-radius: 8px;

    background: #168dcc;
    color: #fff;

    font-weight: 600;
    text-decoration: none;

    transition: .25s;
}

.career-button:hover,
.job-button:hover {
    background: #f7941d;
    transform: translateY(-2px);
}

.career-intro-image img {
    width: 100%;
    height: 320px;

    object-fit: cover;
    display: block;

    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.jobs {
    padding: 90px 20px 120px;
    background: #f7f7f7;
}

.jobs-header {
    margin-bottom: 40px;
}

.jobs-header h2 {
    margin-bottom: 10px;
    font-size: 36px;
    color: #222;
}

.jobs-header p {
    color: #666;
    font-size: 17px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.job-card {
    overflow: hidden;

    background: #fff;
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    display: flex;
    flex-direction: column;

    transition: .25s;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

.job-card img {
    width: 100%;
    height: 180px;

    object-fit: cover;
    display: block;
}

.job-card-content {
    padding: 28px;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card-content h3 {
    margin-bottom: 10px;

    font-size: 22px;
    line-height: 1.3;
    color: #222;
}

.job-card-content span {
    display: block;

    margin-bottom: 26px;

    color: #168dcc;
    font-weight: 500;
}

.job-card-content p {
    margin-bottom: 30px;

    color: #555;
    line-height: 1.7;
}

.job-button {
    width: 100%;
    margin-top: auto;
    background: #168dcc;
}

@media (max-width: 1000px) {
    .career-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .career-intro-image img {
        height: 280px;
    }

    .jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .career-intro {
        padding: 80px 24px 60px;
    }

    .career-intro-content h1 {
        font-size: 36px;
    }

    .jobs {
        padding: 80px 24px;
    }

    .jobs-header h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .job-card {
        width: 100%;
        max-width: 360px;
        min-width: 0;
    }

    .job-card-content {
        padding: 28px;
    }
}

@media (max-width: 420px) {
    .job-card {
        max-width: 100%;
    }

    .job-card-content {
        padding: 24px;
    }
}


/* ==========================================================================
   FACTS / GROUNDING PAGE
   ========================================================================== */

.grounding-hero {
    padding: 50px 24px;
    background: #F3F4F6;
    color: #3F3F3F;
    text-align: center;
}

.grounding-hero h1 {
    margin: 0 0 20px;
    color: #3F3F3F;
    font-size: 54px;
    line-height: 1.1;
}

.grounding-lead {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
}

.grounding-meta {
    margin-top: 24px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.grounding-section {
    padding: 50px 20px;
    background: #fff;
}

.grounding-section:nth-of-type(even) {
    background: #F3F4F6;
}

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

.grounding-section h2 {
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 1.25;
    color: #3F3F3F;
}

.grounding-box {
    background: #F7F7F7;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 28px 32px;
}

.grounding-box p {
    margin: 0;
    color: #3F3F3F;
    line-height: 1.8;
}

.grounding-box p + p {
    margin-top: 20px;
}

/* Definition List / Kernfakten */

.grounding-definition-list {
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 18px 28px;
    margin: 0;
}

.grounding-definition-list dt {
    font-weight: 700;
    color: #000;
}

.grounding-definition-list dd {
    margin: 0;
    color: #3F3F3F;
    line-height: 1.7;
}

.grounding-definition-list a,
.grounding-link-list a,
.grounding-faq a,
.grounding-footer a {
    color: #1088CC;
    text-decoration: none;
}

.grounding-definition-list a:hover,
.grounding-link-list a:hover,
.grounding-faq a:hover,
.grounding-footer a:hover {
    text-decoration: underline;
}

/* Links / Referenzquellen */

.grounding-link-list {
    margin: 0;
    padding-left: 20px;
}

.grounding-link-list li + li {
    margin-top: 10px;
}

/* FAQ */

.grounding-faq-item + .grounding-faq-item {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #e2e2e2;
}

.grounding-faq-item h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #3F3F3F;
}

.grounding-faq-item p {
    margin: 0;
    color: #3F3F3F;
    line-height: 1.8;
}

/* Footer */

.grounding-footer {
    margin: 80px auto 50px;
    display: flex;
    gap: 24px;
}

.grounding-footer-item {
    flex: 1;
    min-width: 0;
    padding: 24px 28px;
    background: #fafafa;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
}

.grounding-footer-label {
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.grounding-footer-value {
    color: #3F3F3F;
    line-height: 1.6;
    word-break: break-word;
}

/* Responsive */

@media (max-width: 720px) {
    .grounding-definition-list {
        grid-template-columns: 1fr;
        gap: 6px 0;
    }

    .grounding-definition-list dd {
        margin-bottom: 14px;
    }

    .grounding-footer {
        flex-direction: column;
        margin-top: 50px;
    }
}

@media (max-width: 600px) {
    .grounding-hero h1 {
        font-size: 42px;
    }

    .grounding-lead {
        font-size: 16px;
    }

    .grounding-section {
        padding: 70px 24px;
    }

    .grounding-box {
        padding: 24px;
    }

    .grounding-section h2 {
        font-size: 26px;
    }
}


/* ==========================================================================
   LEGAL / WIDERRUFSFORMULAR
   ========================================================================== */

.widerruf {
    padding: 70px 20px;
    background: #f5f5f5;
}

.widerruf .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 36px;
    background: #fff;
    border-radius: 12px;
}

.widerruf h1 {
    margin: 0 0 16px;
    font-size: 35px;
}

.widerruf p {
    margin: 0 0 34px;
    color: #666;
    line-height: 1.7;
}

.success-box {
    padding: 30px;
    margin: 30px 0;
    background: #f0fff4;
    border: 1px solid #22c55e;
    border-radius: 8px;
}

.success-box h2 {
    margin-top: 0;
    color: #15803d;
}

@media (max-width: 700px) {
    .widerruf .container {
        padding: 26px 20px;
    }
}


/* ==========================================================================
   Debug
   ========================================================================== */

.debug-toast-wrapper {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.debug-toast-button {
    padding: 9px 14px;
    border: 0;
    border-radius: 999px;
    background: #212529;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.debug-toast-panel {
    display: none;
    position: absolute;
    right: 0;
    bottom: 48px;

    width: 620px;
    max-width: calc(100vw - 48px);
    max-height: 70vh;

    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .22);
    overflow: hidden;
}

.debug-toast-panel.is-open {
    display: block;
}

.debug-toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;

    padding: 12px 14px;

    background: #212529;
    color: #fff;
}

.debug-toast-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.debug-toast-content {
    padding: 14px;
    max-height: calc(70vh - 48px);
    overflow-y: auto;
    overflow-x: hidden;
}

.debug-toast-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-bottom: 14px;
}

.debug-toast-table th,
.debug-toast-table td {
    padding: 7px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.debug-toast-table th {
    background: #f8f9fa;
}

.debug-toast-subtitle {
    margin: 12px 0 10px;
}

.debug-toast-muted {
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}

.debug-query-card {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f8f9fa;
}

.debug-query-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.debug-query-card-head strong,
.debug-query-card-head span {
    word-break: break-word;
}

.debug-query-method {
    margin-bottom: 8px;
    font-size: 12px;
    color: #555;
    word-break: break-word;
}

.debug-query-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
}

.debug-query-meta span {
    padding: 3px 7px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    background: #fff;
    word-break: break-word;
}

.debug-toast-index-missing {
    color: #dc3545;
    font-weight: bold;
}

.debug-toast-index-used {
    color: #28a745;
    font-weight: bold;
}

.debug-query-sql-details {
    margin-top: 9px;
    font-size: 12px;
}

.debug-query-sql-details summary {
    display: inline-block;
    cursor: pointer;
    color: #168dcc;
    font-weight: bold;
}

.debug-query-sql-box {
    margin-top: 8px;
    padding: 12px;
    background: #212529;
    color: #fff;
    border-radius: 8px;
    font-family: Consolas, Monaco, monospace;
    font-size: 12px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.debug-query-extra {
    margin-top: 8px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    word-break: break-word;
}

.debug-toast-help {
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.debug-toast-help summary {
    cursor: pointer;
    font-weight: bold;
}

.debug-toast-help-content {
    font-size: 12px;
    line-height: 1.5;
}

.debug-toast-help-content h5 {
    margin: 14px 0 6px;
}

.debug-toast-help-content ul {
    padding-left: 18px;
}

.debug-toast-help-content code {
    padding: 1px 4px;
    border-radius: 4px;
    background: #f1f3f5;
}

@media (max-width: 700px) {
    .debug-toast-wrapper {
        right: 12px;
        bottom: 12px;
    }

    .debug-toast-panel {
        right: -4px;
        bottom: 46px;
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }
}


/* ==========================================================================
   TOAST
   ========================================================================== */

.app-toast {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;

    display: flex;
    align-items: center;

    min-height: 52px;
    padding: 0 32px;

    background: #eef8f0;
    border-top: 1px solid #d6eddc;
    color: #2f6b3d;

    font-size: 15px;
    font-weight: 600;

    box-shadow: 0 -2px 12px rgba(0, 0, 0, .05);

    opacity: 1;
    transition: opacity .2s ease;
}

.app-toast:hover {
    opacity: 1 !important;
}

.app-toast-success {
    background: #eef8f0;
    color: #2f6b3d;
    border-top-color: #cfe8d6;
}

.app-toast-error {
    background: #fff1f1;
    color: #b42318;
    border-top-color: #f3c7c7;
}

.app-toast-info {
    background: #eef6ff;
    color: #1f5da8;
    border-top-color: #cfe0ff;
}


/* ==========================================================================
   MANAGEMENT | OVERVIEW
   ========================================================================== */

.management-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    margin: 10px 0 20px;
}

.management-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    border-radius: 999px;

    background: #fff;

    border: 1px solid #dcdfe3;

    color: #333;
    text-decoration: none;
    font-weight: 600;

    transition: all .15s ease;
}

.management-nav-link:hover {
    background: #f8f9fa;
}

.management-nav-link.active {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.dashboard-wrapper {
    padding: 32px 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.dashboard {
    font-family: Arial, sans-serif;
}

.dashboard h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.year-comparison {
    margin-top: 16px;
    margin-bottom: 24px;
}

.year-comparison-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.year-comparison-label {
    width: 60px;
    font-weight: bold;
    line-height: 24px;
}

.year-label-previous {
    color: #dc2626;
}

.year-label-current {
    color: #22c55e;
}

.year-comparison-track {
    flex: 1;
    height: 24px;
    background: #ececec;
    border-radius: 999px;
    overflow: hidden;
}

.year-comparison-bar {
    height: 100%;
    border-radius: 999px;
}

.year-comparison-bar.previous {
    background: #dc2626;
}

.year-comparison-bar.current {
    background: #22c55e;
}

.year-comparison-value {
    min-width: 150px;
    text-align: right;
    font-weight: bold;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 26px 0 16px;
}

.section-header h2 {
    margin: 0;
}

.btn-cache-clear {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.btn-cache-clear:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* =========================
   MONTH SLIDER
========================= */

.stat-slider {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: 360px;
    gap: 18px 22px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 12px 8px 24px 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    align-items: flex-start;
}

.stat-slider::-webkit-scrollbar {
    height: 8px;
}

.stat-slider::-webkit-scrollbar-thumb {
    background: #cfd4da;
    border-radius: 999px;
}

.stat-slider::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 999px;
}

.stat-card {
    position: relative;
    min-width: 0;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: left top;
    transform: scale(.88);
    opacity: .65;
}

.stat-card.is-active {
    transform: scale(1);
    opacity: 1;
}

.stat-card.is-second {
    transform: scale(.96);
    opacity: .9;
}

.stat-card.is-third {
    transform: scale(.92);
    opacity: .8;
}

.stat-card.is-fourth {
    transform: scale(.88);
    opacity: .7;
}

.stat-card h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

.stat-card table {
    width: 100%;
    border-collapse: collapse;
}

.stat-card td {
    padding: 2px 0;
    line-height: 1.2;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
}

.month-badge {
    position: absolute;
    top: 12px;
    right: 12px;

    padding: 3px 8px;

    font-size: 11px;
    font-weight: bold;

    color: #666;
    background: #f3f4f6;

    border-radius: 999px;
}

/* =========================
   MANUFACTURER DROPDOWN
========================= */

.manufacturer-dropdown {
    margin-top: 8px;
}

.manufacturer-dropdown summary {
    cursor: pointer;
    list-style: none;
    text-align: center;
}

.manufacturer-dropdown summary::-webkit-details-marker {
    display: none;
}

.manufacturer-dropdown summary::after {
    content: " ▼";
    font-size: 11px;
    opacity: .7;
}

.manufacturer-dropdown[open] summary::after {
    content: " ▲";
}

.manufacturer-content {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.manufacturer-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.manufacturer-table th {
    padding: 6px 4px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.manufacturer-table td {
    padding: 6px 4px;

    border-bottom: 1px solid #f0f0f0;
}

.manufacturer-table td:nth-child(2),
.manufacturer-table td:nth-child(3),
.manufacturer-table td:nth-child(4) {
    text-align: right;
    white-space: nowrap;
}

.manufacturer-table tbody tr:hover {
    background: #f8f9fa;
}

/* =========================
   CHARTS
========================= */

.chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(700px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.chart-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 20px;
    margin-top: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* =========================
   HEATMAP
========================= */

.heatmap {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.heat-day {
    position: relative;
    overflow: hidden;
    height: 110px;
    border-radius: 10px;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .2s ease;
    min-width: 0;
    cursor: pointer;
}

.heat-day.is-better::after,
.heat-day.is-worse::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.heat-day.is-better::after {
    border-width: 0 32px 32px 0;
    border-color: transparent #00FF00 transparent transparent;
}

.heat-day.is-worse::after {
    border-width: 0 32px 32px 0;
    border-color: transparent #dc2626 transparent transparent;
}

.heat-day:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.orders-heatmap .heat-day {
    justify-content: center;
}

.heat-date {
    font-size: 12px;
    opacity: .8;
    margin-bottom: 6px;
}

.heat-value {
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.orders-heatmap .heat-value {
    font-size: 22px;
    margin-top: 18px;
}

.revenue-heatmap .heat-value {
    font-size: 15px;
    margin-top: 4px;
}

.heat-divider {
    width: 70%;
    margin: 8px auto;
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.heat-details {
    text-align: center;
    font-size: .65em;
    line-height: 1.4;
    opacity: .9;
}

.heat-details > table {
    display: inline-block;
}

.heat-day.is-previous-year.heat-1 {
    background: #e5e7eb;
    color: #222;
}

.heat-day.is-previous-year.heat-2 {
    background: #fecaca;
    color: #222;
}

.heat-day.is-previous-year.heat-3 {
    background: #f87171;
    color: #fff;
}

.heat-day.is-previous-year.heat-4 {
    background: #dc2626;
    color: #fff;
}

.heat-day.is-previous-year.heat-5 {
    background: #7f1d1d;
    color: #fff;
}

.cookie-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.cookie-day {
    min-height: 112px;
    border-radius: 10px;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;

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

.cookie-neutral {
    background: #f8f9fa;
}

.cookie-excellent {
    background: #a9ecb9;
}

.cookie-good {
    background: #e2f5e7;
}

.cookie-warning {
    background: #fff3cd;
}

.cookie-bad {
    background: #f8d7da;
}

.cookie-ratio {
    display: flex;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    margin: 8px 0;
    background: #e9ecef;
}

.cookie-ratio-accepted {
    background: #28a745;
}

.cookie-ratio-individual {
    background: #ffc107;
}

.cookie-ratio-declined {
    background: #dc3545;
}

.cookie-percent {
    font-size: 11px;
    color: #444;
    margin-bottom: 4px;
    white-space: nowrap;
}

.cookie-details {
    font-size: 11px;
    color: #555;
    white-space: nowrap;
}

/* =========================
   HEAT COLORS
========================= */

.heat-1 {
    background: #ebedf0;
}

.heat-2 {
    background: #9be9a8;
}

.heat-3 {
    background: #40c463;
    color: #fff;
}

.heat-4 {
    background: #30a14e;
    color: #fff;
}

.heat-5 {
    background: #216e39;
    color: #fff;
}

/* =========================
   EXPORT AREA
========================= */

.export-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 20px;
    margin-top: 24px;
}

.export-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.export-card h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #146c2e;
}

.export-card p {
    margin: 0 0 20px;
    color: #666;
}

.export-actions {
    display: grid;
    gap: 12px;
}

.btn-export,
.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-export {
    background: #fff;
    color: #1f7a3a;
    border: 1px solid #8fd19e;
}

.btn-export:hover {
    background: #f0fff4;
    transform: translateY(-1px);
}

.google-export-form {
    display: grid;
    gap: 14px;
}

.google-export-form label {
    font-weight: bold;
    color: #333;
}

.google-export-form input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #ccd3d9;
    border-radius: 8px;
    font-size: 15px;
}

.google-export-form input[type="text"]:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, .15);
}

.google-button-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.btn-google {
    position: relative;
    border: 0;
    background: #28a745;
    color: #fff;
    font-size: 14px;
}

.btn-google:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(40, 167, 69, .25);
}

.btn-google.is-loading {
    opacity: .75;
    cursor: wait;
    pointer-events: none;
}

.btn-google.is-loading::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 8px;

    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;

    display: inline-block;
    vertical-align: -2px;

    animation: googleButtonSpin .8s linear infinite;
}

.google-export-form.is-loading .btn-google:not(.is-loading) {
    opacity: .55;
    cursor: wait;
}

@keyframes googleButtonSpin {
    to {
        transform: rotate(360deg);
    }
}

.google-export-info {
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #d6eddc;
    border-radius: 8px;
    background: #f3fbf5;
    color: #2f6b3d;
    font-size: 14px;
    line-height: 1.45;
}

.google-append-option input {
    margin: 0;
}

.google-option-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 16px;

    border: 1px solid #d8dee3;
    border-radius: 10px;

    background: #fafafa;

    cursor: pointer;
    transition: all .2s ease;
}

.google-option-card:hover {
    border-color: #34c759;
    background: #f4fbf6;
}

.google-option-card input {
    display: none;
}

.google-option-check {
    width: 22px;
    height: 22px;

    border: 2px solid #b9c0c5;
    border-radius: 6px;

    background: #fff;

    flex-shrink: 0;

    position: relative;

    transition: all .2s ease;
}

.google-option-content {
    display: flex;
    flex-direction: column;
}

.google-option-content strong {
    color: #2f2f2f;
    font-size: 15px;
}

.google-option-content small {
    color: #6f7780;
    margin-top: 2px;
}

.google-option-card input:checked + .google-option-check {
    background: #34c759;
    border-color: #34c759;
}

.google-option-card input:checked + .google-option-check::after {
    content: '?';

    position: absolute;
    left: 50%;
    top: 50%;

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

    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.google-option-card:has(input:checked) {
    background: #eef8f0;
    border-color: #34c759;
}

@media (max-width: 900px) {
    .export-grid {
        grid-template-columns: 1fr;
    }

    .google-button-row {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 900px) {
    .stat-card {
        min-width: 260px;
    }
}

@media (max-width: 700px) {
    .dashboard-wrapper {
        padding: 16px;
    }

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

    .chart-card {
        overflow: hidden;
    }

    .heatmap {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 8px;
    }

    .heat-day {
        height: 96px;
        padding: 7px;
        min-width: 0;
    }

    .heat-date {
        font-size: 11px;
    }

    .orders-heatmap .heat-value {
        font-size: 22px;
        margin-top: 12px;
    }

    .revenue-heatmap .heat-value {
        font-size: 14px;
    }

    .heat-details {
        font-size: .6em;
    }

    .cookie-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}



/* ==========================================================================
   MANAGEMENT | SERVER
   ========================================================================== */

 .monitor-wrapper {
     padding: 32px 40px;
     max-width: 1600px;
     margin: 0 auto;
     font-family: Arial, sans-serif;
 }

.monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.monitor-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.monitor-row .monitor-section {
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .monitor-row {
        flex-direction: column;
    }
}

.monitor-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.monitor-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.monitor-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 6px;
}

.monitor-hint {
    font-size: 12px;
    color: #666;
}

.status-ok {
    border-left: 6px solid #28a745;
}

.status-warning {
    border-left: 6px solid #ffc107;
}

.status-disabled {
    border-left: 6px solid #6c757d;
}

.status-critical {
    border-left: 6px solid #dc3545;
}

.monitor-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.process-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 0 0 16px;
}

.process-summary-item {
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #f8f9fa;
}

.process-summary-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 24px;
}

.process-summary-item span {
    color: #666;
    font-size: 12px;
}

.process-row-warning {
    background: #fff8e1;
}

.process-row-critical {
    background: #fdecea;
}

.process-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: bold;
    background: #e9ecef;
    color: #333;
}

.process-badge-warning {
    background: #ffc107;
    color: #111;
}

.process-badge-critical {
    background: #dc3545;
    color: #fff;
}

.process-info-muted {
    color: #999;
}

.monitor-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.monitor-table th,
.monitor-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.monitor-table th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #f8f9fa;
}

.progress {
    width: 100%;
    height: 12px;
    background: #e9ecef;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    height: 12px;
    background: #28a745;
}

.info-tooltip {
    position: relative;
    display: inline-block;

    margin-left: 6px;

    width: 17px;
    height: 17px;

    line-height: 17px;
    text-align: center;

    border-radius: 50%;

    background: #e9ecef;
    color: #333;

    font-size: 11px;
    font-weight: bold;

    cursor: help;
}

.info-tooltip:hover::after {
    content: attr(data-tooltip);

    position: absolute;
    z-index: 9999;

    left: 50%;
    bottom: 130%;

    transform: translateX(-50%);

    width: 240px;

    padding: 10px 12px;

    background: #212529;
    color: #fff;

    border-radius: 8px;

    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
}

.info-tooltip:hover::before {
    content: "";

    position: absolute;
    z-index: 9999;

    left: 50%;
    bottom: 115%;

    transform: translateX(-50%);

    border-width: 6px;
    border-style: solid;
    border-color: #212529 transparent transparent transparent;
}

.action-tooltip {
    position: relative;
    display: inline-block;

    margin-left: 6px;

    width: 17px;
    height: 17px;

    line-height: 17px;
    text-align: center;

    border-radius: 50%;

    background: #ffc107;
    color: #111;

    font-size: 11px;
    font-weight: bold;

    cursor: help;
}

.action-tooltip:hover::after {
    content: attr(data-tooltip);

    position: absolute;
    z-index: 9999;

    left: 50%;
    bottom: 130%;

    transform: translateX(-50%);

    width: 280px;

    padding: 10px 12px;

    background: #212529;
    color: #fff;

    border-radius: 8px;

    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;

    box-shadow: 0 4px 12px rgba(0,0,0,.18);
}

.action-tooltip:hover::before {
    content: "";

    position: absolute;
    z-index: 9999;

    left: 50%;
    bottom: 115%;

    transform: translateX(-50%);

    border-width: 6px;
    border-style: solid;
    border-color: #212529 transparent transparent transparent;
}

.killButton {
    display:inline-block;
    padding:8px 14px;
    background:#dc3545;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:13px;
    font-weight:bold;
}

@media (max-width: 700px) {
    .monitor-wrapper {
        padding: 16px;
    }
}



/* ==========================================================================
   MANAGEMENT | DATABASE
   ========================================================================== */

 .diagnostics-wrapper {
     padding: 32px 40px;
     max-width: 1600px;
     margin: 0 auto;
     font-family: Arial, sans-serif;
 }

.diagnostics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.diagnostics-card,
.diagnostics-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.diagnostics-card strong {
    display: block;
    font-size: 26px;
    margin-bottom: 6px;
}

.diagnostics-card span {
    color: #666;
    font-size: 13px;
}

.diagnostics-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.diagnostics-table th,
.diagnostics-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.diagnostics-table th {
    background: #f8f9fa;
}

.diagnostics-warning {
    border-left: 6px solid #ffc107;
}

.diagnostics-critical {
    border-left: 6px solid #dc3545;
}

.diagnostics-ok {
    border-left: 6px solid #28a745;
}

.diagnostics-muted {
    color: #777;
}

@media (max-width: 700px) {
    .diagnostics-wrapper {
        padding: 16px;
    }
}
