@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-foreground: #ffffff;
    --color-background: #0b0b12;
    --color-secondary-background: #15151c;
    --color-primary: #ff792d;
    --color-body: #a9abb4;
    --color-black: #000000;
    --shadow-dark: 0 18px 45px rgba(0, 0, 0, 0.26);
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-background);
    color: var(--color-foreground);
    font-family: "Poppins", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

p,
h1,
h2,
h3 {
    margin-top: 0;
}

p {
    color: var(--color-body);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.section--secondary {
    background: var(--color-secondary-background);
}

.section--light {
    background: #f7f7f7;
    color: var(--color-background);
}

.section--light p {
    color: #4a4c54;
}

.topbar {
    background: #111119;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-foreground);
    padding: 9px 0;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.topbar__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    align-items: center;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.topbar__item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(59%) sepia(58%) saturate(1831%) hue-rotate(337deg) brightness(105%) contrast(101%);
}

.topbar__tools {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
    align-items: center;
}

.topbar__tools a {
    min-width: 38px;
    padding: 6px 11px;
    border: 1px solid rgba(255, 121, 45, 0.42);
    color: var(--color-foreground);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.topbar__tools .login-link {
    min-width: 92px;
    border-color: rgba(255, 121, 45, 0.7);
}

.user-menu {
    position: relative;
}

.user-menu__toggle {
    min-width: 118px;
    border: 1px solid rgba(255, 121, 45, 0.7);
    background: transparent;
    color: var(--color-foreground);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    padding: 6px 11px;
}

.user-menu__toggle::after {
    content: "▾";
    display: inline-block;
    margin-inline-start: 8px;
    color: var(--color-primary);
}

.user-menu__dropdown {
    position: absolute;
    inset-inline-end: 0;
    top: calc(100% + 8px);
    z-index: 30;
    display: none;
    min-width: 170px;
    background: #15151c;
    border: 1px solid rgba(255, 121, 45, 0.35);
    box-shadow: var(--shadow-dark);
    padding: 6px;
}

.user-menu:hover .user-menu__dropdown,
.user-menu:focus-within .user-menu__dropdown {
    display: grid;
    gap: 4px;
}

.topbar__tools .user-menu__dropdown a {
    display: block;
    min-width: 0;
    border: 0;
    color: var(--color-foreground);
    text-align: inherit;
}

.topbar__tools .user-menu__dropdown a:hover {
    background: rgba(255, 121, 45, 0.14);
    color: var(--color-primary);
}

.topbar__tools a:hover,
.topbar__tools a.is-active {
    background: var(--color-primary);
    color: var(--color-black);
}

.brandbar {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        var(--color-background);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(21, 21, 28, 0.54);
}

.brand__name {
    color: var(--color-foreground);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
}

.brand__logo {
    width: 86px;
    height: auto;
    flex: 0 0 auto;
}

.hero {
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 280px 0 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 560px) 1fr;
}

.hero-card {
    background: var(--color-secondary-background);
    border-bottom: 2px solid var(--color-primary);
    padding: 45px;
    box-shadow: var(--shadow-dark);
}

.hero-card h1 {
    color: var(--color-foreground);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.19;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.hero-card p {
    font-size: 15px;
    margin-bottom: 26px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 35px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-black);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
    background: var(--color-background);
    border-color: var(--color-background);
    color: var(--color-foreground);
    transform: translateY(-1px);
}

.button--outline {
    background: transparent;
    color: var(--color-foreground);
}

.button--outline:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-black);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-card {
    background: var(--color-primary);
    padding-bottom: 2px;
    box-shadow: var(--shadow-dark);
}

.quick-card__body {
    min-height: 100%;
    background: var(--color-background);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.quick-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 4px;
    filter: brightness(0) saturate(100%) invert(59%) sepia(58%) saturate(1831%) hue-rotate(337deg) brightness(105%) contrast(101%);
}

.quick-card h2 {
    width: 100%;
    color: var(--color-foreground);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0;
}

.quick-card p {
    font-size: 15px;
    margin-bottom: 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 45px;
    align-items: center;
}

.about-media {
    position: relative;
    min-height: 674px;
    overflow: hidden;
    border-radius: 21px;
    background: var(--color-secondary-background);
}

.about-media img {
    width: 100%;
    height: 100%;
    min-height: 674px;
    object-fit: cover;
    object-position: 60% 45%;
}

.about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(21, 21, 28, 0.18);
}

.about-media strong {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground);
    font-size: 32px;
    text-align: center;
    padding: 24px;
}

.about-copy {
    padding: 40px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-foreground);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section--light .section-label {
    color: var(--color-background);
}

.section-label span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.about-copy h2,
.services__heading h2 {
    color: var(--color-foreground);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
}

.services__heading h2 {
    color: var(--color-background);
    margin-bottom: 0;
    text-transform: capitalize;
}

.about-copy p {
    margin-bottom: 18px;
}

.about-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 52px;
    margin-top: 24px;
}

.about-lists ul {
    margin: 0;
    padding-left: 22px;
    color: var(--color-foreground);
    line-height: 2;
}

.about-lists li::marker {
    color: var(--color-primary);
}

html[dir="rtl"] .hero__inner {
    grid-template-columns: 1fr minmax(0, 560px);
}

html[dir="rtl"] .hero-card {
    grid-column: 2;
    text-align: right;
}

html[dir="rtl"] .quick-card__body {
    align-items: stretch;
}

html[dir="rtl"] .service-card,
html[dir="rtl"] .about-copy {
    text-align: right;
}

html[dir="rtl"] .about-lists ul {
    padding-right: 22px;
    padding-left: 0;
}

.statement {
    min-height: 689px;
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0;
}

.statement__inner {
    max-width: 1000px;
    text-align: center;
}

.statement p {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.statement h2 {
    color: var(--color-foreground);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 0;
}

.services__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 30px;
}

.service-card {
    padding: 40px;
    border-bottom: 2px solid var(--color-primary);
    box-shadow: var(--shadow-dark);
}

.service-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 14px;
    text-transform: capitalize;
}

.service-card p {
    margin-bottom: 0;
}

.service-card--primary {
    background: var(--color-primary);
    color: var(--color-black);
}

.service-card--primary p {
    color: var(--color-black);
}

.service-card--primary img {
    filter: brightness(0);
}

.service-card--dark {
    background: var(--color-secondary-background);
    color: var(--color-foreground);
}

.service-card--dark img {
    filter: brightness(0) saturate(100%) invert(59%) sepia(58%) saturate(1831%) hue-rotate(337deg) brightness(105%) contrast(101%);
}

.download-row {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.site-footer {
    padding: 70px 0 0;
    background:
        linear-gradient(180deg, #111119 0%, var(--color-background) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.8fr) minmax(200px, 0.6fr);
    gap: 38px;
    align-items: start;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--color-foreground);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 18px;
}

.site-footer__logo img {
    width: 72px;
}

.site-footer__brand p {
    max-width: 420px;
}

.site-footer p {
    margin-bottom: 0;
}

.site-footer__col h2 {
    color: var(--color-foreground);
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 16px;
}

.footer-contact {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li,
.footer-links a {
    color: var(--color-body);
    font-size: 14px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contact img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(59%) sepia(58%) saturate(1831%) hue-rotate(337deg) brightness(105%) contrast(101%);
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover,
.footer-contact a:hover,
.powered-link:hover {
    color: var(--color-primary);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 54px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p,
.powered-link {
    color: var(--color-body);
    font-size: 13px;
}

.powered-link {
    font-weight: 700;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.site-nav a {
    border: 1px solid rgba(255, 121, 45, 0.34);
    color: var(--color-foreground);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 13px;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover {
    background: var(--color-primary);
    color: var(--color-black);
}

.page-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 90px 0;
}

.page-hero__inner {
    max-width: 850px;
}

.page-hero p {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero h1 {
    color: var(--color-foreground);
    font-size: 54px;
    line-height: 1.16;
    margin-bottom: 18px;
}

.page-hero span {
    display: block;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.page-section {
    background: #f7f7f7;
    color: var(--color-background);
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    gap: 34px;
    align-items: start;
}

.page-copy,
.page-aside,
.mini-service,
.contact-page-card {
    background: #ffffff;
    border: 1px solid #e3e5eb;
    box-shadow: 0 18px 45px rgba(11, 11, 18, 0.08);
}

.page-copy {
    padding: 34px;
}

.page-copy p {
    color: #4a4c54;
    font-size: 17px;
}

.page-aside {
    padding: 26px;
}

.page-aside h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.page-aside ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-aside li {
    border-bottom: 1px solid #eceef3;
    color: #333842;
    padding-bottom: 10px;
}

.page-aside li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-inline-end: 9px;
    background: var(--color-primary);
}

.page-download {
    width: 100%;
    margin-top: 24px;
}

.mini-service-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.mini-service,
.contact-page-card {
    padding: 22px;
}

.mini-service img,
.contact-page-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) saturate(100%) invert(59%) sepia(58%) saturate(1831%) hue-rotate(337deg) brightness(105%) contrast(101%);
}

.mini-service h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.mini-service p {
    font-size: 14px;
    margin-bottom: 0;
}

.contact-page-card a,
.contact-page-card span {
    color: var(--color-background);
    font-weight: 700;
    word-break: break-word;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button,
    .reveal {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .grid--three,
    .split,
    .page-layout,
    .mini-service-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        min-height: 680px;
        padding-top: 180px;
    }

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

    .about-media,
    .about-media img {
        min-height: 520px;
    }

    .statement h2 {
        font-size: 44px;
    }

    .page-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 64px 0;
    }

    .topbar__inner,
    .brandbar__inner {
        justify-content: center;
        flex-direction: column;
    }

    .topbar__contacts {
        justify-content: center;
        gap: 10px 20px;
    }

    .topbar__tools {
        justify-content: center;
    }

    .topbar__item {
        font-size: 13px;
    }

    .brand {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .site-nav {
        width: 100%;
    }

    .brand__name {
        font-size: 22px;
    }

    .hero {
        min-height: 610px;
        padding-top: 120px;
    }

    .hero-card {
        padding: 30px;
    }

    .hero-card h1 {
        font-size: 30px;
    }

    html[dir="rtl"] .hero__inner {
        grid-template-columns: 1fr;
    }

    html[dir="rtl"] .hero-card {
        grid-column: auto;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .about-copy h2,
    .services__heading h2 {
        font-size: 32px;
    }

    .about-media,
    .about-media img {
        min-height: 390px;
    }

    .about-media strong {
        font-size: 24px;
    }

    .about-lists {
        gap: 12px;
    }

    .statement {
        min-height: 520px;
    }

    .statement h2 {
        font-size: 34px;
    }

    .page-hero {
        min-height: 340px;
        padding: 70px 0;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .page-copy,
    .page-aside {
        padding: 24px;
    }

    .service-card,
    .quick-card__body {
        padding: 28px;
    }

    .site-footer {
        padding-top: 54px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .site-footer__logo,
    .footer-contact li,
    .site-footer__bottom {
        justify-content: center;
    }

    .site-footer__brand p {
        max-width: none;
    }

    .site-footer__bottom {
        flex-direction: column;
        margin-top: 34px;
        text-align: center;
    }
}

@supports (content-visibility: auto) {
    .quick-services,
    .about,
    .statement,
    .services,
    .page-section,
    .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: 720px;
    }
}

/* Polished header and footer */
.site-header {
    background: #0b0b12;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    position: relative;
    z-index: 20;
}

.topbar {
    background: #08080d;
}

.topbar__inner {
    min-height: 42px;
}

.brandbar {
    padding: 18px 0 20px;
    background:
        linear-gradient(180deg, rgba(255, 121, 45, 0.06), rgba(255, 255, 255, 0)),
        #101017;
}

.brandbar__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    justify-content: flex-start;
    border-color: rgba(255, 121, 45, 0.18);
    background: rgba(255, 255, 255, 0.03);
    min-width: min(100%, 420px);
}

.brand__logo {
    width: 74px;
}

.brand__name {
    font-size: 22px;
    text-align: start;
}

.site-nav {
    justify-content: flex-end;
    margin-top: 0;
    max-width: 720px;
}

.site-nav a {
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.025);
    min-height: 42px;
    display: inline-flex;
    align-items: center;
}

.site-footer {
    background:
        linear-gradient(135deg, rgba(255, 121, 45, 0.1), transparent 34%),
        linear-gradient(180deg, #111119 0%, #07070b 100%);
}

.site-footer__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(260px, 0.8fr);
}

.site-footer__brand,
.site-footer__col {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    padding: 24px;
}

.site-footer__logo {
    margin-bottom: 20px;
}

.site-footer__logo img {
    width: 64px;
}

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

.footer-links a {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 10px;
}

.footer-links a:hover {
    border-color: rgba(255, 121, 45, 0.45);
}

.site-footer__bottom {
    background: rgba(255, 255, 255, 0.025);
    padding-inline: 16px;
}

@media (max-width: 1024px) {
    .brandbar__inner {
        flex-direction: column;
    }

    .site-nav {
        justify-content: center;
        max-width: none;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .brand {
        min-width: 0;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Final public header organization */
.brandbar__inner {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.brand {
    min-width: 0;
    width: min(100%, 560px);
    justify-content: center;
}

.brand__name {
    text-align: center;
}

.site-nav {
    justify-content: center;
    max-width: 100%;
}

/* Clean header and footer frames */
.site-header {
    box-shadow: none;
}

.topbar,
.brandbar {
    border-bottom: 0;
}

.brand {
    border: 0;
    background: transparent;
    padding-inline: 0;
}

.topbar__tools a,
.user-menu__toggle,
.site-nav a {
    border-color: transparent;
}

.site-nav a {
    background: transparent;
}

.user-menu__dropdown {
    border: 0;
}

.site-footer {
    border-top: 0;
}

.site-footer__brand,
.site-footer__col {
    border: 0;
    background: transparent;
}

.footer-links a {
    border: 0;
    background: transparent;
}

.site-footer__bottom {
    border-top: 0;
    background: transparent;
    padding-inline: 0;
}

/* UX and interaction polish */
.skip-link {
    position: fixed;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    z-index: 100;
    transform: translateY(-160%);
    background: var(--color-primary);
    color: var(--color-black);
    font-weight: 800;
    padding: 10px 14px;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
.user-menu__toggle:focus-visible {
    outline: 3px solid rgba(255, 121, 45, 0.72);
    outline-offset: 3px;
}

.site-nav a.is-current {
    color: var(--color-primary);
    background: rgba(255, 121, 45, 0.1);
}

.topbar__tools a,
.site-nav a,
.footer-links a,
.button,
.powered-link {
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .site-nav a:hover,
    .footer-links a:hover,
    .powered-link:hover,
    .topbar__item:hover {
        text-decoration: none;
    }
}

@media (max-width: 720px) {
    .site-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 0 6px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav a {
        flex: 0 0 auto;
        min-height: 44px;
    }

    .topbar__contacts {
        justify-content: flex-start;
        overflow-x: auto;
        width: 100%;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .topbar__tools a,
    .user-menu__toggle {
        min-height: 38px;
    }
}
