@font-face {
    font-family: "Orbitron";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/orbitron-400.ttf") format("truetype");
}

@font-face {
    font-family: "Orbitron";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/orbitron-700.ttf") format("truetype");
}

@font-face {
    font-family: "Orbitron";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("fonts/orbitron-800.ttf") format("truetype");
}

@font-face {
    font-family: "Rubik";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("fonts/rubik-300.ttf") format("truetype");
}

@font-face {
    font-family: "Rubik";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/rubik-400.ttf") format("truetype");
}

@font-face {
    font-family: "Rubik";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("fonts/rubik-500.ttf") format("truetype");
}

@font-face {
    font-family: "Rubik";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/rubik-700.ttf") format("truetype");
}

:root {
    --task-orange: #ff6220;
    --task-ink: #111111;
    --task-charcoal: #1e1e1e;
    --task-paper: #f4f1ec;
    --task-muted: #7a7a7a;
    --task-line: rgba(255, 255, 255, .15);
    --task-header: 96px;
}

html {
    height: auto;
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--task-ink);
}

body {
    height: auto;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--task-paper);
    color: var(--task-ink);
    font-family: "Rubik", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-align: left;
}

html[dir="rtl"] body { text-align: right; }

body.is-loading {
    overflow: hidden;
}

a {
    color: inherit;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: #111;
    transition: opacity .45s ease, visibility .45s ease;
}

.site-loader.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.site-loader__mark {
    position: relative;
    display: grid;
    width: 190px;
    height: 190px;
    place-items: center;
}

.site-loader__mark img {
    position: relative;
    z-index: 2;
    width: 122px;
    height: auto;
    filter: brightness(0) invert(1);
}

.site-loader__spinner {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255,255,255,.12);
    border-top-color: var(--task-orange);
    border-right-color: var(--task-orange);
    border-radius: 50%;
    animation: task-spin 1s linear infinite;
}

@keyframes task-spin { to { transform: rotate(360deg); } }

.task-shell {
    min-height: 100vh;
    background:
        linear-gradient(90deg, transparent 49.95%, rgba(17,17,17,.045) 50%, transparent 50.05%),
        var(--task-paper);
}

.task-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    min-height: var(--task-header);
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    background: rgba(17,17,17,.97);
    backdrop-filter: blur(14px);
}

.task-brand {
    display: flex;
    min-width: 214px;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.task-brand img,
.task-footer__logo {
    width: 112px;
    height: auto;
    filter: brightness(0) invert(1);
}

.task-brand span {
    max-width: 82px;
    color: rgba(255,255,255,.55);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.35;
    text-transform: uppercase;
}

.task-header .nav-link {
    position: relative;
    padding: 38px 13px !important;
    color: rgba(255,255,255,.72);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.task-header .nav-link::after {
    position: absolute;
    right: 13px;
    bottom: 27px;
    left: 13px;
    height: 2px;
    background: var(--task-orange);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

[dir="rtl"] .task-header .nav-link::after {
    transform-origin: right;
}

.task-header .nav-link:hover,
.task-header .nav-link:focus,
.task-header .nav-link.active {
    color: #fff;
}

.task-header .nav-link:hover::after,
.task-header .nav-link:focus::after,
.task-header .nav-link.active::after {
    transform: scaleX(1);
}

.task-language-button,
.task-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: auto;
    min-height: 46px;
    padding: 11px 16px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 0;
    color: #fff;
    background: transparent;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .045em;
    overflow: visible;
}

.task-language-button > span,
.task-nav-toggle > span,
.task-btn > span,
.task-btn-outline > span {
    position: static;
    inset: auto;
    z-index: auto;
}

.task-language-button > span::before,
.task-nav-toggle > span::before,
.task-btn > span::before,
.task-btn-outline > span::before {
    display: none;
    content: none;
}

.task-language-button.dropdown-toggle::after {
    position: static;
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 0 0 2px;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    color: currentColor;
    content: "";
    font-family: inherit;
    transform: none;
    transition: none;
}

[dir="rtl"] .task-language-button.dropdown-toggle::after {
    margin: 0 2px 0 0;
}

.task-language-button:hover,
.task-language-button:focus,
.task-nav-toggle:hover,
.task-nav-toggle:focus {
    border-color: var(--task-orange);
    color: #fff;
}

.task-nav-toggle {
    width: 46px;
    padding: 0;
    font-size: 24px;
}

.language-menu {
    width: min(520px, calc(100vw - 30px));
    max-height: 70vh;
    overflow: hidden;
    padding: 0;
    border: 1px solid #333;
    border-radius: 0;
    background: #181818;
    box-shadow: 0 24px 60px rgba(0,0,0,.38);
}

.language-search-wrap {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: var(--task-orange);
    background: #181818;
}

.language-search-wrap .form-control {
    min-height: 42px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    border-radius: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.language-search-wrap .form-control:focus {
    border-color: var(--task-orange);
}

.language-search-wrap .form-control::placeholder {
    color: rgba(255,255,255,.5);
}

.language-list {
    display: grid;
    max-height: calc(70vh - 72px);
    overflow-y: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border: 0;
    color: rgba(255,255,255,.72);
    background: transparent;
    text-align: left;
}

[dir="rtl"] .language-option { text-align: right; }

.language-option:hover,
.language-option:focus,
.language-option.active {
    color: #fff;
    background: rgba(255,98,32,.14);
    outline: none;
}

.language-option__code {
    flex: 0 0 34px;
    color: var(--task-orange);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.language-option__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.language-empty {
    margin: 0;
    padding: 26px;
    color: rgba(255,255,255,.55);
    text-align: center;
}

.task-hero {
    position: relative;
    min-height: calc(100vh - var(--task-header));
    overflow: hidden;
    padding: 0;
    color: #fff;
    background: #111;
}

.task-hero::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.24) 100%),
        repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.07) 25%);
    content: "";
}

.task-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .76;
    filter: saturate(.75) contrast(1.08);
}

.task-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: calc(100vh - var(--task-header));
    align-items: center;
    padding-top: 84px;
    padding-bottom: 84px;
}

.task-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--task-orange);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.task-kicker::before {
    width: 42px;
    height: 2px;
    background: var(--task-orange);
    content: "";
}

.task-hero h1,
.task-page-hero h1 {
    max-width: 990px;
    margin: 0;
    color: #fff;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(2.5rem, 7vw, 7rem);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: .95;
    text-transform: uppercase;
}

.task-hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.84);
}

.task-hero__intro {
    max-width: 720px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.76);
    font-size: clamp(1rem, 1.7vw, 1.3rem);
    white-space: pre-line;
}

.task-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.task-btn,
.task-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: auto;
    min-height: 56px;
    padding: 16px 24px;
    border: 1px solid var(--task-orange);
    border-radius: 0;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .045em;
    text-transform: uppercase;
    overflow: visible;
}

.task-btn::after,
.task-btn-outline::after,
.task-nav-toggle::after {
    display: none;
    content: none;
}

.task-btn .bi,
.task-btn-outline .bi,
.task-language-button .bi,
.task-nav-toggle .bi {
    flex: 0 0 auto;
    font-size: 1.08em;
    line-height: 1;
}

.task-btn {
    color: #111;
    background: var(--task-orange);
}

.task-btn:hover,
.task-btn:focus {
    border-color: #fff;
    color: #111;
    background: #fff;
}

.task-btn-outline {
    color: #fff;
    background: transparent;
}

.task-btn-outline:hover,
.task-btn-outline:focus {
    color: #111;
    background: #fff;
    border-color: #fff;
}

.task-section {
    position: relative;
    padding: 110px 0;
}

.task-section--dark {
    color: #fff;
    background: #171717;
}

.task-section__number {
    position: absolute;
    top: 30px;
    right: 4vw;
    color: rgba(17,17,17,.06);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

[dir="rtl"] .task-section__number { right: auto; left: 4vw; }

.task-section--dark .task-section__number { color: rgba(255,255,255,.04); }

.task-section__title {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin-bottom: 48px;
}

.task-section__title h2 {
    margin: 0;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(2rem, 4.5vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.05;
    text-transform: uppercase;
}

.task-section__title p {
    margin: 18px 0 0;
    color: var(--task-muted);
    font-size: 1.08rem;
    white-space: pre-line;
}

.task-section--dark .task-section__title p { color: rgba(255,255,255,.62); }

.task-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(17,17,17,.14);
}

.task-card {
    position: relative;
    min-width: 0;
    min-height: 460px;
    overflow: hidden;
    background: #111;
}

.task-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .44;
    filter: grayscale(.25);
    transition: transform .65s ease, opacity .35s ease;
}

.task-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 18%, rgba(0,0,0,.92) 100%);
    content: "";
}

.task-card:hover .task-card__image {
    transform: scale(1.055);
    opacity: .62;
}

.task-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 30px;
    color: #fff;
}

.task-card__index {
    color: var(--task-orange);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.task-card h2,
.task-card h3 {
    margin: 12px 0 0;
    color: #fff;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.15;
}

.task-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 14px 0 0;
    color: rgba(255,255,255,.65);
    font-size: .94rem;
    white-space: pre-line;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.task-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--task-orange);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.task-page-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    padding: 0;
    color: #fff;
    background: #111;
}

.task-page-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.42)),
        var(--page-image, url('/assets/img/cyberbook/bg-13.jpg')) center/cover no-repeat;
    content: "";
}

.task-page-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 560px;
    align-items: flex-end;
    padding-top: 90px;
    padding-bottom: 72px;
}

.task-page-hero h1 { font-size: clamp(2.6rem, 6vw, 6.4rem); }

.task-page-hero p {
    max-width: 800px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    white-space: pre-line;
}

.task-portfolio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.task-portfolio-grid .task-card { min-height: 330px; }
.task-portfolio-grid .task-card p { display: none; }

.task-project {
    padding: 96px 0 120px;
    background: var(--task-paper);
}

.task-project__back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: #333;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.task-project__back:hover,
.task-project__back:focus {
    color: var(--task-orange);
}

.task-project__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    background: #171717;
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.task-project__media {
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    background: #0c0c0c;
}

.task-project__media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.task-project__content {
    align-self: center;
    padding: clamp(38px, 5vw, 78px);
    color: #fff;
}

.task-project__content h2 {
    margin: 20px 0 34px;
    color: #fff;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1;
}

.task-project__details {
    margin: 0;
}

.task-project__details > div {
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.14);
}

.task-project__details dt {
    margin-bottom: 9px;
    color: var(--task-orange);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.task-project__details dd {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    line-height: 1.65;
    white-space: pre-line;
}

.task-project__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.task-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    background: #111;
}

.task-contact-panel__content {
    padding: clamp(38px, 7vw, 94px);
    color: #fff;
}

.task-contact-panel__content h2 {
    margin: 0 0 28px;
    color: #fff;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
}

.task-contact-list {
    display: grid;
    gap: 16px;
}

.task-contact-list a,
.task-contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255,255,255,.78);
    font-size: 1.06rem;
    text-decoration: none;
}

.task-contact-list i { color: var(--task-orange); }

.task-contact-panel__image {
    min-height: 480px;
    background: linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.25)), url('/assets/img/cyberbook/bg-19.jpg') center/cover;
}

.task-contact-form-section {
    padding: 110px 0;
    color: #fff;
    background: var(--task-charcoal);
}

.task-contact-form-layout {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    gap: clamp(44px, 8vw, 120px);
    align-items: start;
}

.task-contact-form-intro {
    position: sticky;
    top: calc(var(--task-header) + 32px);
}

.task-contact-form-intro h2 {
    margin: 16px 0 22px;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.04;
    text-transform: uppercase;
}

.task-contact-form-intro p {
    max-width: 520px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 1.05rem;
    line-height: 1.7;
}

.task-contact-form {
    position: relative;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(255,255,255,.15);
    background: #111;
}

.task-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.task-contact-form__field--wide { grid-column: 1 / -1; }

.task-contact-form .form-label {
    margin-bottom: 9px;
    color: rgba(255,255,255,.86);
    font-family: "Orbitron", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.task-contact-form .form-control {
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 0;
    color: #fff;
    background: rgba(255,255,255,.035);
    box-shadow: none;
}

.task-contact-form textarea.form-control {
    min-height: 164px;
    resize: vertical;
}

.task-contact-form .form-control::placeholder { color: rgba(255,255,255,.38); }

.task-contact-form .form-control:focus {
    border-color: var(--task-orange);
    color: #fff;
    background: rgba(255,255,255,.055);
    box-shadow: 0 0 0 3px rgba(255,98,32,.16);
}

.task-contact-form__privacy {
    margin-top: 24px;
    padding-inline-start: 1.8rem;
    color: rgba(255,255,255,.68);
}

.task-contact-form__privacy .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
    margin-inline-start: -1.8rem;
    border-radius: 0;
}

.task-contact-form__privacy .form-check-input:checked {
    border-color: var(--task-orange);
    background-color: var(--task-orange);
}

.task-contact-form__privacy a { color: var(--task-orange); }

.task-contact-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 30px;
}

.task-contact-form__status {
    flex: 1 1 240px;
    min-height: 24px;
    color: rgba(255,255,255,.72);
}

.task-contact-form__status.is-success { color: #7fdc9a; }
.task-contact-form__status.is-error { color: #ff9670; }

.task-contact-form__trap {
    position: fixed !important;
    inset-inline-start: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.task-legal {
    padding: 88px 0 120px;
}

.task-legal__toc {
    position: sticky;
    top: calc(var(--task-header) + 26px);
    padding: 24px;
    border-left: 3px solid var(--task-orange);
    background: #fff;
}

[dir="rtl"] .task-legal__toc { border-right: 3px solid var(--task-orange); border-left: 0; }

.task-legal__toc a {
    display: block;
    padding: 7px 0;
    color: #555;
    text-decoration: none;
}

.task-legal__section {
    padding: 34px 0;
    border-bottom: 1px solid rgba(17,17,17,.12);
}

.task-legal__section:first-child { padding-top: 0; }

.task-legal__section h2 {
    margin: 0 0 16px;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    line-height: 1.25;
}

.task-legal__section p,
.task-legal__section li {
    color: #4f4f4f;
    white-space: pre-line;
}

.task-source-note {
    padding: 20px 24px;
    border: 1px solid rgba(17,17,17,.12);
    border-left: 4px solid var(--task-orange);
    background: #fff;
}

.task-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,.66);
    background: #111;
}

.task-footer__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 4px;
    background: var(--task-orange);
}

[dir="rtl"] .task-footer__accent { right: 0; left: auto; }

.task-footer a,
.task-footer span {
    display: block;
    color: rgba(255,255,255,.66);
    text-decoration: none;
}

.task-footer a:hover,
.task-footer button:hover { color: var(--task-orange); }

.task-footer__label {
    margin: 0 0 12px;
    color: #fff;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.task-footer__links {
    display: grid;
    gap: 8px;
}

.task-footer__links button {
    width: max-content;
    padding: 0;
    border: 0;
    color: rgba(255,255,255,.66);
    background: transparent;
}

.task-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--task-line);
    font-size: .82rem;
}

.task-footer__bottom span { display: inline; }

.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1090;
    display: grid;
    width: min(760px, calc(100vw - 48px));
    grid-template-columns: auto 1fr;
    gap: 16px 20px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    background: #181818;
    box-shadow: 0 28px 90px rgba(0,0,0,.48);
}

[dir="rtl"] .cookie-banner { right: auto; left: 24px; }

.cookie-banner__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #111;
    background: var(--task-orange);
    font-size: 22px;
}

.cookie-banner h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 1.12rem;
}

.cookie-banner p {
    margin: 0 0 5px;
    color: rgba(255,255,255,.68);
}

.cookie-banner a { color: var(--task-orange); }

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    grid-column: 2;
    gap: 10px;
}

.cookie-banner__actions .btn {
    flex: 1 1 190px;
    font-size: .78rem;
}

.noscript-message {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20000;
    padding: 16px;
    color: #fff;
    background: #a02d00;
    text-align: center;
}

.task-error {
    display: grid;
    min-height: 60vh;
    place-items: center;
    padding: 40px;
    color: #fff;
    background: #111;
    text-align: center;
}

@media (max-width: 1199.98px) {
    :root { --task-header: 78px; }
    .task-header { min-height: var(--task-header); padding: 14px 0; }
    .task-header .navbar-collapse { padding-top: 14px; }
    .task-header .nav-link { padding: 12px 0 !important; }
    .task-header .nav-link::after { right: 0; bottom: 4px; left: 0; }
}

@media (max-width: 991.98px) {
    .task-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .task-portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .task-contact-panel { grid-template-columns: 1fr; }
    .task-contact-form-layout { grid-template-columns: 1fr; }
    .task-contact-form-intro { position: static; }
    .task-project__layout { grid-template-columns: 1fr; }
    .task-project__media,
    .task-project__media img { min-height: 440px; }
    .task-contact-panel__image { min-height: 340px; }
    .task-legal__toc { position: static; margin-bottom: 38px; }
}

@media (max-width: 767.98px) {
    .task-brand { min-width: 0; }
    .task-brand span { display: none; }
    .task-brand img { width: 92px; }
    .task-language-button { width: 46px; padding: 0; }
    .task-language-button span,
    .task-language-button::after { display: none; }
    .language-list { grid-template-columns: 1fr; }
    .task-hero__content { align-items: flex-end; }
    .task-hero h1 { font-size: clamp(2.35rem, 13vw, 4.6rem); }
    .task-section { padding: 78px 0; }
    .task-grid,
    .task-portfolio-grid { grid-template-columns: 1fr; }
    .task-card { min-height: 400px; }
    .task-contact-form-section { padding: 78px 0; }
    .task-contact-form__grid { grid-template-columns: 1fr; }
    .task-contact-form__field--wide { grid-column: auto; }
    .task-contact-form__actions .task-btn { width: 100%; }
    .task-portfolio-grid .task-card { min-height: 310px; }
    .task-footer__bottom { flex-direction: column; }
    .task-project { padding: 70px 0 82px; }
    .task-project__media,
    .task-project__media img { min-height: 300px; }
    .cookie-banner { right: 12px; bottom: 12px; width: calc(100vw - 24px); grid-template-columns: 1fr; padding: 20px; }
    [dir="rtl"] .cookie-banner { right: 12px; left: auto; }
    .cookie-banner__icon { display: none; }
    .cookie-banner__actions { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
