:root {
    --primary-color: #14283A;
    --secondary-color: #0D1B29;
    --accent-color: #08A9D1;
    --accent-soft: #31C4E8;
    --dark-color: #07111B;
    --light-color: #FFFFFF;
    --muted-color: #F4F7F9;
    --text-color: #273642;
    --text-soft: #667787;
    --border-color: #DDE5EA;
    --success-color: #25D366;
    --warning-color: #8a5a00;
    --shadow: 0 16px 38px rgba(13, 27, 41, .12);
    --radius: 8px;
    --container: 1180px;
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-y: scroll;
    overflow-x: clip;
    scrollbar-width: thin;
    scrollbar-color: #08a9d1 #eef3f6;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text-color);
    background: var(--light-color);
    line-height: 1.7;
    min-height: 100%;
    max-width: 100%;
    overflow-x: clip;
}

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: #eef3f6;
}

::-webkit-scrollbar-thumb {
    background: #08a9d1;
    border: 3px solid #eef3f6;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #087f9f;
}

@supports not (overflow-x: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

body.no-scroll,
body.menu-open,
body.modal-open,
body.lightbox-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font-family: var(--font-primary);
    font-weight: 500;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(8, 169, 209, .45);
    outline-offset: 3px;
}

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

.narrow {
    width: min(100% - 40px, 860px);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 4px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
}

.topbar {
    background: var(--secondary-color);
    color: #d8e6ee;
    font-size: 13px;
}

.topbar__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: flex-end;
}

.topbar__link {
    color: var(--light-color);
    font-weight: 600;
}

.header-main {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 210px;
    height: 58px;
}

.site-logo__img,
.footer-logo__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--accent-color);
}

.dropdown-toggle {
    display: none;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    display: block !important;
    padding: 10px !important;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    min-height: auto;
    padding: 9px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.dropdown a:hover {
    background: var(--muted-color);
}

.header-cta {
    flex: 0 0 auto;
}

.mobile-nav-head,
.mobile-menu-overlay {
    display: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background: var(--light-color);
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--accent-color);
    color: var(--light-color);
}

.btn--secondary {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn--light {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn--outline-light {
    color: var(--light-color);
    border-color: rgba(255, 255, 255, .65);
}

.btn--ghost {
    color: var(--primary-color);
    border-color: var(--border-color);
    background: var(--light-color);
}

.hero-slider {
    position: relative;
    min-height: 690px;
    background: var(--secondary-color);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide__image,
.hero-slide > .image-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide > .image-placeholder {
    background: linear-gradient(135deg, #0d1b29 0%, #14283a 58%, #17364a 100%);
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 27, .9), rgba(20, 40, 58, .65), rgba(20, 40, 58, .2));
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    min-height: 690px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--light-color);
    max-width: var(--container);
}

.hero-slide__content span,
.eyebrow,
.section-title span,
.cta-band span {
    display: inline-flex;
    color: var(--accent-soft);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
}

.hero-slide__content h1,
.hero-slide__content h2 {
    width: min(720px, 100%);
    margin: 14px 0 18px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-slide__content p {
    width: min(650px, 100%);
    margin: 0 0 28px;
    color: #e7f1f6;
    font-size: 18px;
}

.hero-actions,
.section-action,
.contact-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .12);
}

.slider-arrow::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-top: 2px solid var(--light-color);
    border-left: 2px solid var(--light-color);
    top: 15px;
}

.slider-arrow--prev {
    left: 24px;
}

.slider-arrow--prev::before {
    left: 18px;
    transform: rotate(-45deg);
}

.slider-arrow--next {
    right: 24px;
}

.slider-arrow--next::before {
    right: 18px;
    transform: rotate(135deg);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.slider-dots button {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .45);
}

.slider-dots button.is-active {
    background: var(--accent-soft);
}

.section {
    padding: 88px 0;
}

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

.section-title {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-title h2,
.split-content h2,
.contact-info h2,
.form-panel h2,
.detail-main h2 {
    margin: 8px 0 12px;
    color: var(--primary-color);
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.section-title p,
.split-content p,
.contact-info p,
.detail-main p {
    color: var(--text-soft);
}

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

.media-frame {
    min-height: 430px;
    border: 1px solid var(--border-color);
    background: var(--light-color);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-radius: var(--radius);
}

.media-frame img,
.media-frame .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(135deg, #edf3f6, #dce8ee);
    color: var(--primary-color);
    border: 1px solid rgba(221, 229, 234, .85);
    text-align: center;
}

.image-placeholder span {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid rgba(8, 169, 209, .35);
    background: rgba(255, 255, 255, .78);
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 10px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(-45deg);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(13, 27, 41, .07);
    transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-card__media {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: var(--muted-color);
}

.service-card__media img,
.service-card__media .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.service-card:hover img {
    transform: scale(1.04);
}

.service-card__brands {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.service-card__brands .service-card__brand-img {
    display: block;
    width: auto;
    height: 34px;
    max-width: 82px;
    object-fit: contain;
}

.service-card:hover .service-card__brand-img {
    transform: none;
}

.service-card__body {
    padding: 20px;
}

.service-card h3,
.why-card h3,
.info-card h2,
.process-grid h3 {
    margin: 0 0 9px;
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1.25;
}

.service-card p,
.why-card p,
.info-card p {
    margin: 0;
    color: var(--text-soft);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--accent-color);
    font-weight: 700;
}

.section-action {
    justify-content: center;
    margin-top: 34px;
}

.cta-band {
    padding: 58px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--light-color);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-band h2 {
    margin: 8px 0 10px;
    font-size: 34px;
    line-height: 1.18;
}

.cta-band p {
    max-width: 700px;
    margin: 0;
    color: #d9e8ef;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

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

.why-card,
.info-card,
.side-panel,
.form-panel {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 8px 22px rgba(13, 27, 41, .06);
}

.why-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent-color);
    background: rgba(49, 196, 232, .1);
    border: 1px solid rgba(8, 169, 209, .28);
    border-radius: 6px;
}

.why-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    padding: 0;
    text-align: left;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(13, 27, 41, .06);
}

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

.gallery-card__media {
    display: block;
    height: 210px;
}

.gallery-card__media img,
.gallery-card__media .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.brand-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 190px;
    padding: 26px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 8px 22px rgba(13, 27, 41, .06);
}

.brand-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    padding: 16px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.brand-card__logo img,
.brand-card__logo .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-card__content {
    min-width: 0;
}

.brand-card__badge {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 9px;
    background: rgba(49, 196, 232, .18);
    color: var(--primary-color);
    border: 1px solid rgba(8, 169, 209, .25);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.brand-card h3 {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.brand-card p {
    margin: 0;
    color: var(--text-soft);
}

.gallery-card__body {
    display: grid;
    gap: 2px;
    padding: 16px;
}

.gallery-card small {
    color: var(--accent-color);
    font-weight: 700;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.filter-bar button {
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 700;
}

.filter-bar button.is-active {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-group + .faq-group {
    margin-top: 36px;
}

.faq-group h2 {
    color: var(--primary-color);
}

.faq-item {
    border: 1px solid var(--border-color);
    background: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 60px;
    padding: 17px 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
}

.faq-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--accent-color);
}

.faq-icon::before {
    width: 18px;
    height: 2px;
    top: 8px;
}

.faq-icon::after {
    width: 2px;
    height: 18px;
    left: 8px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    display: none;
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--text-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.contact-grid--wide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 14px;
}

.info-list li {
    display: grid;
    gap: 3px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.info-list strong {
    color: var(--primary-color);
}

.info-list a {
    color: var(--accent-color);
    font-weight: 800;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    background: var(--light-color);
}

.contact-form textarea {
    resize: vertical;
}

.check-label {
    grid-template-columns: 18px 1fr;
    align-items: start;
    font-weight: 600 !important;
    color: var(--text-color) !important;
}

.check-label input {
    min-height: 18px;
    margin-top: 3px;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.form-alert {
    padding: 12px 14px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--muted-color);
    font-weight: 700;
}

.form-alert--error {
    color: #7d1e1e;
    border-color: #f0b8b8;
    background: #fff0f0;
}

.form-alert--warning {
    color: var(--warning-color);
    border-color: #efd39a;
    background: #fff8e8;
}

.page-hero {
    padding: 78px 0;
    color: var(--light-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.page-hero h1 {
    max-width: 760px;
    margin: 18px 0 12px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #d9e8ef;
    font-size: 18px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #d9e8ef;
    font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: var(--accent-soft);
}

.breadcrumb a {
    color: var(--light-color);
}

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

.detail-media {
    margin-bottom: 28px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 18px 0 30px;
}

.process-grid article {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--muted-color);
}

.process-grid strong {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 50%;
}

.detail-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 132px;
}

.side-panel {
    display: grid;
    gap: 12px;
}

.side-panel h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 22px;
}

.side-panel p {
    margin: 0;
    color: var(--text-soft);
}

.side-links {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.side-links a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 700;
}

.not-found {
    min-height: 58vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--muted-color);
}

.not-found__inner {
    text-align: center;
}

.not-found span {
    color: var(--accent-color);
    font-size: 76px;
    line-height: 1;
    font-weight: 900;
}

.not-found h1 {
    margin: 10px 0;
    color: var(--primary-color);
}

.not-found p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: var(--text-soft);
}

.not-found .hero-actions {
    justify-content: center;
}

.site-footer {
    background: var(--secondary-color);
    color: #d8e6ee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr 1fr 1fr;
    gap: 34px;
    padding: 56px 0;
}

.footer-logo {
    display: inline-flex;
    width: 220px;
    height: 70px;
    margin-bottom: 18px;
}

.footer-brand p {
    margin: 0;
    max-width: 360px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--light-color);
    font-size: 18px;
}

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

.footer-links a,
.footer-contact a {
    color: #d8e6ee;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-soft);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0;
}

.footer-bottom p {
    margin: 0;
}

.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 850;
    display: grid;
    gap: 10px;
}

.fixed-contact__item {
    position: relative;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-color);
    box-shadow: var(--shadow);
}

.fixed-contact__item svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.fixed-contact__item span {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 7px 9px;
    background: var(--secondary-color);
    color: var(--light-color);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease;
    font-size: 13px;
    font-weight: 800;
}

.fixed-contact__item:hover span,
.fixed-contact__item:focus-visible span {
    opacity: 1;
    visibility: visible;
}

.fixed-contact__item--whatsapp {
    background: var(--success-color);
}

.fixed-contact__item--phone {
    background: var(--accent-color);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(7, 17, 27, .88);
}

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

.lightbox__content {
    width: min(900px, 88vw);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
}

.lightbox__content img,
.lightbox__content .image-placeholder {
    max-height: 78vh;
    width: 100%;
    object-fit: contain;
}

.lightbox__content .image-placeholder {
    min-height: 420px;
    background: linear-gradient(135deg, #0d1b29, #22394c);
    color: var(--light-color);
}

.lightbox__caption {
    margin: 0;
    color: var(--light-color);
    font-weight: 600;
    text-align: center;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .1);
    color: var(--light-color);
    border-radius: 50%;
}

.lightbox__close {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
}

.lightbox__close::before,
.lightbox__close::after {
    display: none;
}

.lightbox__close::before {
    transform: rotate(45deg);
}

.lightbox__close::after {
    transform: rotate(-45deg);
}

.lightbox__nav {
    top: 50%;
    width: 48px;
    height: 48px;
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

.lightbox__nav::before {
    display: none;
}

.lightbox__nav--prev::before {
    left: 19px;
    transform: rotate(-45deg);
}

.lightbox__nav--next::before {
    right: 19px;
    transform: rotate(135deg);
}

.lightbox button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

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