body {
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 24%),
        radial-gradient(circle at bottom left, rgba(120, 113, 108, 0.25), transparent 30%),
        linear-gradient(180deg, #0c0a09 0%, #1c1917 100%);
}

.site-shell {
    min-height: 100vh;
}

.site-logo {
    display: block;
    width: auto;
    max-width: min(100%, 220px);
    max-height: 3.5rem;
    object-fit: contain;
}

.language-dropdown {
    position: relative;
    width: 100%;
    min-width: 0;
}

.language-dropdown.is-open {
    z-index: 50;
}

.language-dropdown__trigger {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(28, 25, 23, 0.88);
    color: rgb(231 229 228);
    cursor: pointer;
    list-style: none;
    padding: 0.75rem 1rem;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.language-dropdown__trigger:hover,
.language-dropdown__trigger:focus-visible,
.language-dropdown.is-open .language-dropdown__trigger {
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(41, 37, 36, 0.92);
    outline: none;
}

.language-dropdown__flag {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
}

.language-dropdown__label {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-dropdown__code,
.language-dropdown__option-code {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgb(251 191 36 / 0.88);
}

.language-dropdown__chevron {
    flex-shrink: 0;
    color: rgb(168 162 158);
    transition: transform 160ms ease;
}

.language-dropdown.is-open .language-dropdown__chevron {
    transform: rotate(180deg);
}

.language-dropdown__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.6rem);
    width: min(18rem, 100vw - 3rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
    background: rgba(17, 24, 39, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    padding: 0.35rem 0;
}

.language-dropdown__option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    color: rgb(231 229 228);
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease;
}

.language-dropdown__option:hover,
.language-dropdown__option:focus-visible {
    background: rgba(251, 191, 36, 0.12);
    color: white;
    outline: none;
}

.language-dropdown__option.is-active {
    background: rgba(251, 191, 36, 0.16);
}

.language-dropdown__option-name {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.92rem;
}

.language-dropdown__menu[hidden] {
    display: none;
}

@media (max-width: 767px) {
    .site-logo {
        max-width: 180px;
        max-height: 3rem;
    }

    .language-dropdown {
        width: 100%;
    }

    .language-dropdown__trigger {
        padding: 0.75rem 0.95rem;
    }

    .language-dropdown__menu {
        left: 0;
        right: 0;
        width: 100%;
    }

    .workshop-gallery-lightbox {
        padding: 0.85rem;
    }

    .workshop-gallery-lightbox__dialog {
        width: 100%;
        max-height: calc(100vh - 1.7rem);
        padding: 0.85rem;
        border-radius: 1.2rem;
    }

    .workshop-gallery-lightbox__image {
        max-height: min(68vh, 78svh);
    }
}

@media (min-width: 768px) {
    .language-dropdown {
        width: auto;
        min-width: 12.5rem;
    }
}

.hero-section {
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.08), transparent 45%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 55%);
}

.hero-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(255, 255, 255, 0.01));
}

.hero-card {
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.workshop-gallery__trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.workshop-gallery__trigger:focus-visible {
    outline: 3px solid rgba(251, 191, 36, 0.55);
    outline-offset: -3px;
}

.workshop-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(12, 10, 9, 0.9);
    backdrop-filter: blur(10px);
}

.workshop-gallery-lightbox.is-open {
    display: flex;
}

.workshop-gallery-lightbox[hidden] {
    display: none;
}

.workshop-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
}

.workshop-gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.9rem;
    width: min(100%, 1080px);
    max-height: calc(100vh - 2.5rem);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background: rgba(28, 25, 23, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.workshop-gallery-lightbox__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.workshop-gallery-lightbox__button,
.workshop-gallery-lightbox__nav {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgb(245 245 244);
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease;
}

.workshop-gallery-lightbox__button {
    min-width: 2.85rem;
    min-height: 2.85rem;
    padding: 0 0.9rem;
    font-size: 1.35rem;
}

.workshop-gallery-lightbox__nav {
    min-width: 2.85rem;
    min-height: 2.85rem;
    font-size: 1.15rem;
}

.workshop-gallery-lightbox__button:hover,
.workshop-gallery-lightbox__button:focus-visible,
.workshop-gallery-lightbox__nav:hover,
.workshop-gallery-lightbox__nav:focus-visible {
    background: rgba(251, 191, 36, 0.18);
    border-color: rgba(251, 191, 36, 0.36);
    outline: none;
}

.workshop-gallery-lightbox__stage {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    min-height: 0;
    overflow: hidden;
}

.workshop-gallery-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: min(72vh, 920px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 1rem;
}

.workshop-gallery-lightbox__meta {
    display: grid;
    gap: 0.35rem;
}

.workshop-gallery-lightbox__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(250 250 249);
}

.workshop-gallery-lightbox__text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: rgb(214 211 209 / 0.82);
}

.workshop-gallery-lightbox__count {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgb(214 211 209 / 0.7);
}

.section-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgb(251 191 36 / 0.82);
}

.zentivo-features-section__header {
    margin-inline: auto;
    text-align: center;
}

.zentivo-features-grid {
    display: grid;
    gap: 1.25rem;
}

.zentivo-feature-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.75rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
        linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.zentivo-feature-card__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgb(250 250 249);
}

.zentivo-feature-card__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgb(214 211 209 / 0.8);
}

.zentivo-pricing-grid {
    display: grid;
    gap: 1.5rem;
}

.zentivo-pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(39, 39, 42, 0.9), rgba(24, 24, 27, 0.94)),
        linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(255, 255, 255, 0.01));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.zentivo-pricing-card__body {
    display: grid;
    gap: 1rem;
    padding: 2rem;
}

.zentivo-pricing-card__title {
    margin: 0;
    font-size: clamp(1.5rem, 1.15rem + 1vw, 2rem);
    font-weight: 600;
    color: rgb(250 250 249);
}

.zentivo-pricing-card__description {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgb(214 211 209 / 0.82);
}

.zentivo-pricing-card__price {
    font-size: clamp(2.35rem, 1.8rem + 1.6vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    color: rgb(251 191 36);
}

.zentivo-pricing-card__note {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgb(168 162 158);
}

.zentivo-pricing-card__features {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zentivo-pricing-card__features li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    font-size: 0.96rem;
    line-height: 1.65;
    color: rgb(245 245 244);
}

.zentivo-pricing-card__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.18rem;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.12);
    color: rgb(251 191 36);
    font-size: 0.78rem;
    font-weight: 700;
}

.zentivo-pricing-card__feature-text {
    min-width: 0;
}

.zentivo-pricing-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem 2rem;
    padding: 0.95rem 1.3rem;
    border-radius: 999px;
    background: rgb(251 191 36);
    color: rgb(24 24 27);
    font-weight: 600;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.zentivo-pricing-card__cta:hover,
.zentivo-pricing-card__cta:focus-visible {
    background: rgb(252 211 77);
    box-shadow: 0 16px 30px rgba(251, 191, 36, 0.18);
    outline: none;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .zentivo-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zentivo-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }
}
