@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #189eb8;
    --color-primary-hover: rgba(24, 158, 184, 0.7);
    --color-primary-light: rgba(24, 158, 184, 0.1);
    --color-primary-alt: rgba(24, 158, 184, 0.7);
    --color-primary-dark: #05282F;
    
    --color-secondary: #79991f;
    --color-secondary-hover: rgba(121, 153, 31, 0.7);
    --color-secondary-dark: #5b7719;
    --color-secondary-medium: #4c6616;
    --color-secondary-light: rgba(121, 153, 31, 0.1);
    
    --color-neutral-100: #ffffff;
    --color-neutral-200: #f3f3f3;
    --color-neutral-250: #f5f6f8;
    --color-neutral-300: #d9d9d9;
    --color-neutral-400: #bdbdbd;
    --color-neutral-500: #a9a6a6;
    --color-neutral-600: #787878;
    --color-neutral-650: #787878;
    --color-neutral-700: #555555;
    --color-neutral-800: #333333;
    --color-neutral-900: #000000;
    
    --color-white: var(--color-neutral-100);
    --color-text: var(--color-neutral-800);
    --color-text-muted: var(--color-neutral-700);
    --color-text-light: #999999;
    --color-bg-light: var(--color-neutral-250);
    --color-dark: var(--color-primary-dark);
    
    --font-family-base: 'Instrument Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --font-size-xs: calc(14 / 1920 * 100vw);
    --font-size-sm: calc(16 / 1920 * 100vw);
    --font-size-base: calc(20 / 1920 * 100vw);
    --font-size-lg: calc(24 / 1920 * 100vw);
    --font-size-xl: calc(32 / 1920 * 100vw);
    --font-size-2xl: calc(48 / 1920 * 100vw);
    --font-size-3xl: calc(80 / 1920 * 100vw);
    --font-size-4xl: calc(100 / 1920 * 100vw);
    --font-size-5xl: calc(116 / 1920 * 100vw);
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --line-height-none: 1;
    --line-height-tight: 1.1;
    --line-height-snug: 1.2;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.5;
    
    --space-xs: calc(8 / 1920 * 100vw);
    --space-sm: calc(12 / 1920 * 100vw);
    --space-md: calc(20 / 1920 * 100vw);
    --space-lg: calc(26 / 1920 * 100vw);
    --space-xl: calc(40 / 1920 * 100vw);
    --space-2xl: calc(60 / 1920 * 100vw);
    --space-3xl: calc(100 / 1920 * 100vw);
    
    --radius-xs: calc(5 / 1920 * 100vw);
    --radius-sm: calc(8 / 1920 * 100vw);
    --radius-md: calc(20 / 1920 * 100vw);
    --radius-lg: calc(40 / 1920 * 100vw);
    --radius-full: calc(100 / 1920 * 100vw);
    --radius-round: 50%;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 0 20px 0 rgba(241, 241, 241, 1);
    --shadow-drawer: -4px 0 20px rgba(0, 0, 0, 0.1);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    
    --hero-card-bg: rgba(255, 255, 255, 0.04);
    --hero-card-border: rgba(150, 150, 150, 0.24);
    --hero-title-accent: #189eb8;
    --hero-accent-bg: #189eb8;
}

html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    font-size: var(--font-size-sm);
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-white);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: calc(32 / 1920 * 100vw); }
h2 { font-size: calc(28 / 1920 * 100vw); }
h3 { font-size: calc(24 / 1920 * 100vw); }
h4 { font-size: calc(20 / 1920 * 100vw); }
h5 { font-size: calc(18 / 1920 * 100vw); }
h6 { font-size: calc(16 / 1920 * 100vw); }

p {
    margin: 0 0 1em;
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    margin: 0 0 1em;
    padding-left: calc(24 / 1920 * 100vw);
}

ul { list-style: disc; }
ol { list-style: decimal; }

li {
    margin-bottom: calc(4 / 1920 * 100vw);
}

a {
    color: var(--color-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img,
picture,
video,
canvas,
svg,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

img {
    vertical-align: middle;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

input,
textarea,
select {
    margin: 0;
}

input::placeholder,
textarea::placeholder {
    color: var(--color-text-muted);
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

.visually-hidden {
    position: absolute;
    width: calc(1 / 1920 * 100vw);
    height: calc(1 / 1920 * 100vw);
    margin: calc(-1 / 1920 * 100vw);
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-neutral-100);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-none);
    padding: calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    border-radius: var(--radius-full);
}

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


.heading {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    margin: 0;
    color: var(--color-neutral-800);
}

/* === layout: header === */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    box-sizing: border-box;
}

.header .container,
.header .header__container {
    width: 100%;
    max-width: calc(1920 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-md) calc(174 / 1920 * 100vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-height: calc(95 / 1920 * 100vw);
    box-sizing: border-box;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    box-sizing: border-box;
}

.header .logo__img--dark {
    display: none;
}

.header .logo__img--light {
    display: block;
    height: calc(60 / 1920 * 100vw);
    width: auto;
    max-height: calc(60 / 1920 * 100vw);
    object-fit: contain;
}

.header--light .logo__img--dark {
    display: block;
    height: calc(60 / 1920 * 100vw);
    width: auto;
    max-height: calc(60 / 1920 * 100vw);
    object-fit: contain;
}

.header--light .logo__img--light {
    display: none;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.header .nav__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0 calc(60 / 1920 * 100vw);
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header .nav__list > li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header .nav__list > li > a {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    letter-spacing: 0;
    color: #fafafa;
    text-decoration: none;
    padding: calc(5 / 1920 * 100vw) 0;
    display: inline-block;
    transition: color 0.2s;
    box-sizing: border-box;
}

.header .nav__list > li > a:hover {
    color: var(--color-primary-hover);
}

.header--light .nav__list > li > a {
    color: var(--color-primary);
}

.header--light .nav__list > li > a:hover {
    color: var(--color-primary-hover);
}

.header .nav__list .menu-item-has-children {
    position: relative;
}

.header .nav__list .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: calc(10 / 1920 * 100vw);
}

.header .nav__list .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: calc(26 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
    background-image: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.9 19.75C24.6625 19.75 24.425 19.6625 24.2375 19.475L16.0875 11.325C15.4875 10.725 14.5125 10.725 13.9125 11.325L5.7625 19.475C5.4 19.8375 4.8 19.8375 4.4375 19.475C4.075 19.1125 4.075 18.5125 4.4375 18.15L12.5875 10C13.9125 8.675 16.075 8.675 17.4125 10L25.5625 18.15C25.925 18.5125 25.925 19.1125 25.5625 19.475C25.375 19.65 25.1375 19.75 24.9 19.75Z" fill="%23fafafa"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    transition: transform 0.2s;
    box-sizing: border-box;
}

.header--light .nav__list .menu-item-has-children > a::after {
    background-image: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.9 19.75C24.6625 19.75 24.425 19.6625 24.2375 19.475L16.0875 11.325C15.4875 10.725 14.5125 10.725 13.9125 11.325L5.7625 19.475C5.4 19.8375 4.8 19.8375 4.4375 19.475C4.075 19.1125 4.075 18.5125 4.4375 18.15L12.5875 10C13.9125 8.675 16.075 8.675 17.4125 10L25.5625 18.15C25.925 18.5125 25.925 19.1125 25.5625 19.475C25.375 19.65 25.1375 19.75 24.9 19.75Z" fill="%23189eb8"/></svg>');
}

.header .nav__list .menu-item-has-children:hover > a::after {
    transform: rotate(0deg);
}

@media (min-width: 769px) {
    .header .nav__list .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: calc(10 / 1920 * 100vw);
        min-width: calc(280 / 1920 * 100vw);
        padding: calc(30 / 1920 * 100vw);
        list-style: none;
        background-color: var(--color-neutral-200);
        border-radius: var(--radius-md);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        z-index: 100;
        box-sizing: border-box;
    }

    .header .nav__list .sub-menu::before {
        content: '';
        position: absolute;
        top: calc(-10 / 1920 * 100vw);
        left: 0;
        right: 0;
        height: calc(10 / 1920 * 100vw);
        background: transparent;
    }

    .header .nav__list .menu-item-has-children:hover .sub-menu,
    .header .nav__list .menu-item-has-children.is-open .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.header .nav__list .sub-menu li {
    margin: 0;
    padding: 0;
}

.header .nav__list .sub-menu li:not(:last-child) {
    margin-bottom: calc(20 / 1920 * 100vw);
}

.header .nav__list .sub-menu a {
    display: block;
    padding: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
    box-sizing: border-box;
}

.header .nav__list .sub-menu a:hover {
    color: var(--color-primary-hover);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: calc(60 / 1920 * 100vw);
    flex-shrink: 0;
    box-sizing: border-box;
}

.header .actions__phone-wrap {
    position: relative;
    box-sizing: border-box;
}

.header .actions__btn.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(10 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    padding: calc(10 / 1920 * 100vw) var(--space-md);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-lg);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-white);
    background-color: var(--color-primary);
    border: none;
    border-radius: calc(100 / 1920 * 100vw);
    text-decoration: none;
    text-transform: none;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.header .actions__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fafafa;
    box-sizing: border-box;
}

.header .actions__btn-icon--phone {
    width: calc(28 / 1920 * 100vw);
    height: calc(28 / 1920 * 100vw);
}

.header .actions__btn-icon--phone svg {
    width: 100%;
    height: 100%;
}

.header .actions__btn-icon--arrow {
    width: calc(30 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
    transition: transform 0.2s;
    transform: rotate(180deg);
}

.header .actions__phone-wrap:hover .actions__btn-icon--arrow {
    transform: rotate(0deg);
}

.header .actions__btn-icon--arrow svg {
    width: 100%;
    height: 100%;
}

.header .actions__phone-popover {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: calc(10 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(40 / 1920 * 100vw);
    padding: calc(30 / 1920 * 100vw);
    background-color: #fafafa;
    border-radius: calc(40 / 1920 * 100vw);
    filter: drop-shadow(-4px 4px 12px rgba(29, 49, 64, 0.4));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1100;
    box-sizing: border-box;
    white-space: nowrap;
}

.header .actions__phone-popover::before {
    content: '';
    position: absolute;
    top: calc(-10 / 1920 * 100vw);
    left: 0;
    right: 0;
    height: calc(10 / 1920 * 100vw);
    background: transparent;
}

.header .actions__phone-wrap:hover .actions__phone-popover,
.header .actions__phone-wrap:focus-within .actions__phone-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .actions__phone-popover-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(4 / 1920 * 100vw);
    box-sizing: border-box;
}

.header .actions__phone-popover-phone {
    font-family: var(--font-family-base);
    font-size: calc(30 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    color: #1a2b38;
    text-decoration: none;
    box-sizing: border-box;
}

.header .actions__phone-popover-phone:hover {
    color: #189eb8;
}

.header .actions__phone-popover-note {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: calc(20 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    color: #bdbdbd;
    box-sizing: border-box;
}

.header .actions__phone-popover-hours {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(10 / 1920 * 100vw);
    box-sizing: border-box;
}

.header .actions__phone-popover-hours-label {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: calc(24 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    color: #189eb8;
    box-sizing: border-box;
}

.header .actions__phone-popover-hours-value {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: calc(24 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    color: #1a2b38;
    box-sizing: border-box;
}

.header .actions__phone-popover-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: calc(28 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    color: var(--color-white);
    background-color: #189eb8;
    border: none;
    border-radius: calc(20 / 1920 * 100vw);
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.header .actions__phone-popover-cta:hover {
    background-color: #158a9f;
    color: var(--color-white);
}

.header .actions__btn.btn--primary:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
}

.header__burger {
    display: none;
}

.header__mobile-nav,
.header__mobile-overlay {
    display: none;
}

.header--light {
    border-bottom-color: #bdbdbd;
}


@media (max-width: 768px) {

    .header {
        border-bottom: 0;
    }

    .header .container,
    .header .header__container {
        padding: calc(16 / 430 * 100vw) calc(16 / 430 * 100vw) 0;
        min-height: calc(80 / 430 * 100vw);
        gap: 0;
        position: relative;
        z-index: 1001;
    }

    .header .logo__img--light,
    .header--light .logo__img--dark {
        height: calc(53.84 / 430 * 100vw);
        max-height: calc(53.84 / 430 * 100vw);
    }

    .header__nav {
        display: none;
    }

    .header .actions__phone-wrap {
        display: none;
    }

    .header .actions__btn.btn--primary {
        display: none;
    }

    .header__actions {
        gap: calc(20 / 430 * 100vw);
        margin-left: auto;
    }

    .header__burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: calc(5 / 430 * 100vw);
        width: calc(60 / 430 * 100vw);
        height: calc(60 / 430 * 100vw);
        background-color: var(--color-white);
        border: none;
        border-radius: calc(66.667 / 430 * 100vw);
        padding: 0;
        cursor: pointer;
        flex-shrink: 0;
        box-sizing: border-box;
        transition: background-color 0.2s;
    }

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

    .header__burger:hover {
        background-color: #f0f0f0;
    }

    .header--light .header__burger:hover {
        background-color: var(--color-primary-hover);
    }

    .burger__line {
        display: block;
        width: calc(26 / 430 * 100vw);
        height: calc(2 / 430 * 100vw);
        background-color: var(--color-primary);
        border-radius: calc(2 / 430 * 100vw);
        transition: transform 0.25s ease, opacity 0.25s ease;
        transform-origin: center;
    }

    .header--light .burger__line {
        background-color: var(--color-white);
    }

    .header.is-menu-open .burger__line--1 {
        transform: translateY(7px) rotate(45deg);
    }

    .header.is-menu-open .burger__line--2 {
        opacity: 0;
        transform: scaleX(0);
    }

    .header.is-menu-open .burger__line--3 {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header__mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background-color: transparent;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: calc(40 / 430 * 100vw);
        padding: calc(126 / 430 * 100vw) 0 calc(40 / 430 * 100vw) calc(8.33% + calc(14.17 / 430 * 100vw));
        box-sizing: border-box;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header.is-menu-open .header__mobile-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header__mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: transparent;
        background-image: url('../images/mobile-menu-overlay.png');
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header.is-menu-open .header__mobile-overlay {
        opacity: 1;
        visibility: visible;
    }

    .header__mobile-nav .nav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(40 / 430 * 100vw);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .header__mobile-nav .nav__list > li {
        border-bottom: none;
        margin: 0;
        padding: calc(5 / 430 * 100vw) 0;
    }

    .header__mobile-nav .nav__list > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        font-family: var(--font-family-base);
        font-size: calc(24 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        line-height: 1;
        color: var(--color-white);
        text-decoration: none;
        transition: color 0.2s;
    }

    .header__mobile-nav .nav__list > li > a:hover {
        color: var(--color-primary);
    }

    .header__mobile-nav .nav__list .menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        width: calc(20 / 430 * 100vw);
        height: calc(20 / 430 * 100vw);
        background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }

    .header__mobile-nav .nav__list .menu-item-has-children.is-open > a::after {
        transform: rotate(180deg);
    }

    .header__mobile-nav .nav__list .sub-menu {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        margin: calc(30 / 430 * 100vw) 0 0 0;
        min-width: 0;
        padding: 0 0 0 calc(20 / 430 * 100vw);
        list-style: none;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        z-index: auto;
    }

    .header__mobile-nav .nav__list .menu-item-has-children.is-open .sub-menu {
        display: flex;
        flex-direction: column;
        gap: calc(40 / 430 * 100vw);
    }

    .header__mobile-nav .nav__list .sub-menu li {
        border-bottom: none;
        margin: 0;
        padding: 0;
    }

    .header__mobile-nav .nav__list .sub-menu li:last-child {
        border-bottom: none;
    }

    .header__mobile-nav .nav__list .sub-menu li:not(:last-child) {
        margin-bottom: 0;
    }

    .header__mobile-nav .nav__list .sub-menu a {
        display: block;
        padding: 0;
        font-family: var(--font-family-base);
        font-size: calc(20 / 430 * 100vw);
        font-weight: var(--font-weight-normal);
        line-height: 1;
        color: var(--color-white);
        text-decoration: none;
        transition: color 0.2s;
    }

    .header__mobile-nav .nav__list .sub-menu a:hover {
        color: var(--color-primary);
    }

    .header__mobile-nav .actions__phone-wrap {
        display: block;
        position: relative;
        width: calc(100% - calc(8.33% + calc(14.17 / 430 * 100vw)));
        margin-right: calc(16 / 430 * 100vw);
        box-sizing: border-box;
    }

    .header__mobile-nav .header__mobile-phone {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: calc(10 / 430 * 100vw);
        margin: 0;
        padding: calc(10 / 430 * 100vw) calc(20 / 430 * 100vw);
        color: var(--color-white);
        background-color: #189eb8;
        border: none;
        border-radius: calc(100 / 430 * 100vw);
        text-decoration: none;
        transition: background-color 0.2s;
        width: calc(108 / 430 * 100vw);
        box-sizing: border-box;
        cursor: pointer;
    }

    .header__mobile-nav .header__mobile-phone-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .header__mobile-nav .header__mobile-phone-icon--phone {
        width: calc(28 / 430 * 100vw);
        height: calc(28 / 430 * 100vw);
    }

    .header__mobile-nav .header__mobile-phone-icon--arrow {
        width: calc(30 / 430 * 100vw);
        height: calc(30 / 430 * 100vw);
        transform: rotate(180deg);
        transition: transform 0.2s;
    }
    
    .header__mobile-nav .actions__phone-wrap.is-open .header__mobile-phone-icon--arrow {
        transform: rotate(0deg);
    }

    .header__mobile-nav .header__mobile-phone-icon svg {
        width: 100%;
        height: 100%;
    }

    .header__mobile-nav .header__mobile-phone:hover {
        background-color: var(--color-primary-hover);
        color: var(--color-white);
    }

    .header__mobile-nav .actions__phone-popover {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(20 / 430 * 100vw);
        background-color: #fafafa;
        border-radius: calc(30 / 430 * 100vw);
        padding: calc(20 / 430 * 100vw);
        filter: drop-shadow(-4px 4px 12px rgba(29, 49, 64, 0.4));
        box-sizing: border-box;
        position: absolute;
        top: calc(82 / 430 * 100vw);
        left: 0;
        z-index: 10;
    }

    .header__mobile-nav .actions__phone-wrap.is-open .actions__phone-popover {
        display: flex;
    }

    .header__mobile-nav .actions__phone-popover__head {
        display: flex;
        flex-direction: column;
        gap: calc(4 / 430 * 100vw);
        align-items: flex-start;
    }

    .header__mobile-nav .actions__phone-popover__phone {
        margin: 0;
        font-family: var(--font-family-base);
        font-size: calc(24 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        line-height: 1;
        color: #1a2b38;
    }

    .header__mobile-nav .actions__phone-popover__caption {
        margin: 0;
        font-family: var(--font-family-base);
        font-size: calc(16 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        line-height: 1;
        color: #bdbdbd;
    }

    .header__mobile-nav .actions__phone-popover__schedule-block {
        display: flex;
        flex-direction: column;
        gap: calc(10 / 430 * 100vw);
        align-items: flex-start;
    }

    .header__mobile-nav .actions__phone-popover__schedule-label {
        margin: 0;
        font-family: var(--font-family-base);
        font-size: calc(20 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        line-height: 1;
        color: #189eb8;
    }

    .header__mobile-nav .actions__phone-popover__schedule {
        margin: 0;
        font-family: var(--font-family-base);
        font-size: calc(20 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        line-height: 1;
        color: #1a2b38;
    }

    .header__mobile-nav .actions__phone-popover__cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
        font-family: var(--font-family-base);
        font-size: calc(20 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        line-height: 1;
        color: var(--color-white);
        background-color: #059eac;
        border: none;
        border-radius: calc(20 / 430 * 100vw);
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s;
        box-sizing: border-box;
    }

    .header__mobile-nav .actions__phone-popover__cta:hover {
        background-color: #048a97;
        color: var(--color-white);
    }
}

/* === layout: footer === */

.footer {
    background-color: var(--color-neutral-200);
    width: 100%;
    padding: calc(52 / 1920 * 100vw) calc(174 / 1920 * 100vw);
    box-sizing: border-box;
}

.footer .container,
.footer .footer__container {
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: grid;
    grid-template-columns: calc(305 / 1920 * 100vw) calc(1135 / 1920 * 100vw);
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
    gap: calc(132 / 1920 * 100vw);
    box-sizing: border-box;
}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    flex-shrink: 0;
    grid-column: 1;
    grid-row: 1;
    box-sizing: border-box;
}

.footer__logo {
    display: block;
    text-decoration: none;
    box-sizing: border-box;
}

.footer__logo img {
    width: calc(258.12 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    max-width: calc(258.12 / 1920 * 100vw);
    max-height: calc(60 / 1920 * 100vw);
    object-fit: contain;
    display: block;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: calc(5 / 1920 * 100vw);
    flex-wrap: nowrap;
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    box-sizing: border-box;
}

.footer .social-icons__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(40 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    padding: var(--space-xs);
    border-radius: calc(285.6 / 1920 * 100vw);
    background-color: var(--color-white);
    color: var(--color-teal);
    transition: background-color 0.2s, color 0.2s;
    box-sizing: border-box;
}

.footer .social-icons__link:hover {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.footer .social-icons__link img {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
    object-fit: contain;
    display: block;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(20 / 1920 * 100vw);
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: end;
    width: 100%;
    box-sizing: border-box;
}

.footer__copy {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-neutral-600);
    margin: 0;
    box-sizing: border-box;
}

.footer__privacy-link {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-neutral-600);
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.2s;
    box-sizing: border-box;
}

.footer__privacy-link:hover {
    color: var(--color-teal);
}

.footer__nav {
    display: flex;
    align-items: flex-start;
    gap: calc(150 / 1920 * 100vw);
    flex-shrink: 0;
    width: calc(1135 / 1920 * 100vw);
    flex-wrap: nowrap;
    grid-column: 2;
    grid-row: 1 / -1;
    box-sizing: border-box;
}

.footer__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    box-sizing: border-box;
}

.footer__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    line-height: 1;
    letter-spacing: 0;
    color: #79991f;
    margin: 0 0 calc(38 / 1920 * 100vw);
    padding: calc(5 / 1920 * 100vw) 0;
    box-sizing: border-box;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: calc(28 / 1920 * 100vw);
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer__list li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer__list a {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-neutral-900);
    text-decoration: none;
    transition: color 0.2s;
    box-sizing: border-box;
}

.footer__list a:hover {
    color: var(--color-primary-hover);
}


.main .container {
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
}

.main .section-title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0 0 calc(24 / 1920 * 100vw);
    line-height: 1.2;
}

@media (max-width: 768px) {

    .footer {
        padding: calc(70 / 430 * 100vw) calc(16 / 430 * 100vw);
    }

    .footer .container,
    .footer .footer__container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: calc(49 / 430 * 100vw);
        max-width: 100%;
    }

    .footer__left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .footer__logo img {
        width: calc(258.12 / 430 * 100vw);
        height: calc(60 / 430 * 100vw);
        max-width: calc(258.12 / 430 * 100vw);
        max-height: calc(60 / 430 * 100vw);
    }

    .footer__socials {
        gap: calc(5 / 430 * 100vw);
        align-self: auto;
    }

    .footer .social-icons__link {
        width: calc(40 / 430 * 100vw);
        height: calc(40 / 430 * 100vw);
        padding: calc(8 / 430 * 100vw);
        border-radius: calc(285.6 / 430 * 100vw);
        background-color: var(--color-white);
    }

    .footer .social-icons__link img {
        width: calc(20 / 430 * 100vw);
        height: calc(20 / 430 * 100vw);
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: calc(16 / 430 * 100vw);
    }

    .footer__copy {
        font-size: calc(18 / 430 * 100vw);
    }

    .footer__privacy-link {
        font-size: calc(18 / 430 * 100vw);
    }

    .footer__nav {
        width: 100%;
        flex-direction: column;
        gap: calc(60 / 430 * 100vw);
    }

    .footer__col {
        width: 100%;
    }

    .footer__title {
        font-size: calc(24 / 430 * 100vw);
        margin: 0 0 calc(20 / 430 * 100vw);
        padding: calc(5 / 430 * 100vw) 0;
        color: #79991f;
    }

    .footer__list {
        gap: calc(16 / 430 * 100vw);
    }

    .footer__list a {
        font-size: calc(18 / 430 * 100vw);
        color: var(--color-neutral-900);
    }
}

/* === component: forms === */

.feedback {
    --feedback-section-bg: #304002;
    --feedback-gradient-from: #304002;
    --feedback-gradient-to: rgba(48, 64, 2, 0);
    --feedback-btn-bg: var(--color-primary);
    --feedback-btn-bg-hover: var(--color-primary-hover);
    position: relative;
    background-color: var(--feedback-section-bg);
    background-image: var(--feedback-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: calc(108 / 1920 * 100vw);
    padding-bottom: calc(135 / 1920 * 100vw); 
    box-sizing: border-box;
}

.feedback::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(598 / 1920 * 100vw);
    width: calc(658 / 1920 * 100vw);
    height: 100%;
    background: linear-gradient(90deg, var(--feedback-gradient-from) 0%, var(--feedback-gradient-to) 100%);
    backdrop-filter: blur(0px);
}

.feedback .feedback__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
}

.feedback .feedback-form {
    width: 100%;
    max-width: calc(912 / 1920 * 100vw);
    margin: 0;
    padding: calc(80 / 1920 * 100vw) calc(60 / 1920 * 100vw);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(150, 150, 150, 0.24);
    border-radius: var(--radius-lg);
    box-sizing: border-box;
}

.feedback .feedback-form__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(40 / 1920 * 100vw);
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--color-white);
    margin: 0 0 calc(20 / 1920 * 100vw);
    text-align: center;
    box-sizing: border-box;
}

.feedback .feedback-form__subtitle {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--color-white);
    margin: 0 0 calc(60 / 1920 * 100vw); 
    text-align: center;
    box-sizing: border-box;
}

.feedback .feedback-form__fields form,
.feedback .feedback-form__fields .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: calc(18 / 1920 * 100vw);
    box-sizing: border-box;
    position: relative;
}

.feedback .feedback-form__row {
    display: flex;
    gap: calc(18 / 1920 * 100vw);
    box-sizing: border-box;
}

.feedback .feedback-form__row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(18 / 1920 * 100vw);
}

.feedback .feedback-form__row .wpcf7-form-control-wrap {
    flex: 1;
    box-sizing: border-box;
}

.feedback .feedback-form__select-wrapper {
    flex: 1;
    box-sizing: border-box;
}

.feedback .feedback-form__submit-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-top: calc(42 / 1920 * 100vw);
}

.feedback .feedback-form__input,
.feedback .feedback-form__select {
    width: 100%;
    padding: calc(24 / 1920 * 100vw) calc(24 / 1920 * 100vw); 
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--color-white);
    background: rgba(243, 243, 243, 0.1);
    border: 1px solid rgba(150, 150, 150, 0.24);
    border-radius: var(--radius-md);
    margin: 0;
    box-sizing: border-box;
}

.feedback .feedback-form__input::placeholder {
    color: #aaaaaa; 
}

.feedback .feedback-form__select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 24px;
    padding-right: calc(54 / 1920 * 100vw);
}

.feedback .feedback-form__select option {
    background: var(--color-dark);
    color: var(--color-white);
}

.feedback .feedback-form__input.wpcf7-not-valid,
.feedback .feedback-form__select.wpcf7-not-valid {
    border-color: #dc3232;
}

.feedback .feedback-form__input.wpcf7-not-valid::placeholder,
.feedback .feedback-form__select.wpcf7-not-valid::placeholder {
    color: #dc3232;
}

.feedback .wpcf7-not-valid-tip {
    display: none;
}

.feedback .feedback-form__submit-wrapper .wpcf7-submit,
.feedback .feedback-form__submit-wrapper .btn-primary {
    display: inline-block;
    padding: calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-size: calc(28 / 1920 * 100vw);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-white);
    background-color: var(--feedback-btn-bg); 
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: none;
    box-sizing: border-box;
}

.feedback .feedback-form__submit-wrapper .wpcf7-submit:hover,
.feedback .feedback-form__submit-wrapper .btn-primary:hover {
    background-color: var(--feedback-btn-bg-hover); 
    color: var(--color-white);
}

.feedback .feedback-form__submit-wrapper .wpcf7-spinner {
    display: none;
}

.feedback .wpcf7 form .wpcf7-response-output {
	margin: 0;
    padding: calc(20 / 1920 * 100vw) calc(24 / 1920 * 100vw);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    color: var(--color-neutral-900);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fade 4s cubic-bezier(1, 0, 1, 1) forwards;
}

@keyframes fade {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.feedback .wpcf7 form.sent .wpcf7-response-output {
	background: #46b44f;
    animation: fade 10s cubic-bezier(1, 0, 1, 1) forwards;
}

.feedback .wpcf7 form.failed .wpcf7-response-output,
.feedback .wpcf7 form.aborted .wpcf7-response-output {
	background: #dc3232;    
    animation: fade 5s cubic-bezier(1, 0, 1, 1) forwards;
}

.feedback .wpcf7 form.spam .wpcf7-response-output {
	background: #f56e28;
    animation: fade 5s cubic-bezier(1, 0, 1, 1) forwards;
}

.feedback .wpcf7 form.invalid .wpcf7-response-output,
.feedback .wpcf7 form.unaccepted .wpcf7-response-output,
.feedback .wpcf7 form.payment-required .wpcf7-response-output {
	background: #ffb900;
    animation: fade 5s cubic-bezier(1, 0, 1, 1) forwards;
}

/* --- feedback: page overrides --- */

.vacancies-page .feedback {
    --feedback-section-bg: #0a3e49; 
    --feedback-gradient-from: #0a3e49;
    --feedback-gradient-to: rgba(10, 62, 73, 0);
}


@media (max-width: 768px) {
    .feedback {
        padding-top: calc(70 / 430 * 100vw);
        padding-bottom: calc(70 / 430 * 100vw);
        background-position: 80% center;
    }

    .feedback::after {
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, var(--feedback-gradient-from) 0%, var(--feedback-gradient-to) 100%);
        backdrop-filter: blur(0px);
    }

    .feedback .feedback__container {
        max-width: calc(398 / 430 * 100vw);
    }

    .feedback .feedback-form {
        max-width: 100%;
        padding: calc(40 / 430 * 100vw) calc(26 / 430 * 100vw);
        border-radius: calc(40 / 430 * 100vw);
    }

    .feedback .feedback-form__title {
        font-size: calc(40 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        line-height: 1.1;
        text-align: center;
        margin: 0 0 calc(20 / 430 * 100vw); 
    }

    .feedback .feedback-form__subtitle {
        font-size: calc(20 / 430 * 100vw);
        font-weight: var(--font-weight-normal);
        line-height: 1.3;
        text-align: center;
        margin: 0 0 calc(40 / 430 * 100vw);
    }

    .feedback .feedback-form__fields form, .feedback .feedback-form__fields .wpcf7-form {
        gap: calc(12 / 430 * 100vw);
    }

    .feedback .feedback-form__row--half {
        grid-template-columns: 1fr;
        gap: calc(12 / 430 * 100vw);
    }

    .feedback .feedback-form__input, 
    .feedback .feedback-form__select {
        padding: calc(24 / 430 * 100vw) calc(20 / 430 * 100vw); 
        font-size: calc(20 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
    }

    .feedback .feedback-form__submit-wrapper {
        margin-top: calc(28 / 430 * 100vw); 
        text-align: center;
    }

    .feedback .feedback-form__submit-wrapper .wpcf7-submit,
    .feedback .feedback-form__submit-wrapper .btn-primary {
        font-size: calc(20 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        padding: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
        background-color: var(--feedback-btn-bg); 
        width: auto;
    }

    .feedback .wpcf7 form .wpcf7-response-output {
        padding: calc(20 / 430 * 100vw) calc(24 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
        font-size: calc(16 / 430 * 100vw);
        width: 100%;
    }
}


/* === global: feedback_modal === */

.feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(30 / 1920 * 100vw);
    box-sizing: border-box;
}

.feedback-modal[hidden] {
    display: none;
}

.feedback-modal__overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.feedback-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(30 / 1920 * 100vw);
    width: calc(912 / 1920 * 100vw);
    padding: var(--space-2xl) var(--space-2xl) calc(80 / 1920 * 100vw);
    background: var(--color-white);
    border: 1px solid rgba(150, 150, 150, 0.24);
    border-radius: var(--space-xl);
    box-sizing: border-box;
}

.feedback-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(30 / 1920 * 100vw);
    height: calc(21.21 / 1920 * 100vw);
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.feedback-modal__close-icon {
    display: block;
    width: calc(23.21 / 1920 * 100vw);
    height: calc(21.21 / 1920 * 100vw);
    object-fit: contain;
}

.feedback-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
    width: 100%;
    max-width: calc(792 / 1920 * 100vw);
    box-sizing: border-box;
}

.feedback-modal__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    width: 100%;
    box-sizing: border-box;
}

.feedback-modal__title {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: calc(40 / 1920 * 100vw);
    font-weight: 600;
    line-height: 1.1;
    color: #272727;
    text-align: center;
    box-sizing: border-box;
}

.feedback-modal__subtitle {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.3;
    color: #272727;
    text-align: center;
    box-sizing: border-box;
}

.feedback-modal__form {
    width: 100%;
    box-sizing: border-box;
}

.feedback-modal__fields,
.feedback-modal__fields form,
.feedback-modal__fields .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: calc(18 / 1920 * 100vw);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.feedback-modal .feedback-form__row {
    display: flex;
    gap: calc(18 / 1920 * 100vw);
    box-sizing: border-box;
}

.feedback-modal .feedback-form__row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(18 / 1920 * 100vw);
    box-sizing: border-box;
}

.feedback-modal .feedback-form__row .wpcf7-form-control-wrap,
.feedback-modal .feedback-form__select-wrapper {
    flex: 1;
    box-sizing: border-box;
}

.feedback-modal .feedback-form__input,
.feedback-modal .feedback-form__select {
    width: 100%;
    padding: calc(24 / 1920 * 100vw) var(--space-md);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.3;
    color: #4f4949;
    background: rgba(243, 243, 243, 0.1);
    border: 1px solid rgba(150, 150, 150, 0.24);
    border-radius: var(--space-md);
    margin: 0;
    box-sizing: border-box;
}

.feedback-modal .feedback-form__input::placeholder {
    color: #aaaaaa;
}

.feedback-modal .feedback-form__select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.0001 19C12.2418 19 11.4835 18.6625 10.9093 18L3.84598 9.84999C3.53181 9.48749 3.53181 8.88749 3.84598 8.52499C4.16014 8.16249 4.68014 8.16249 4.99431 8.52499L12.0576 16.675C12.5776 17.275 13.4226 17.275 13.9426 16.675L21.006 8.52499C21.3201 8.16249 21.8401 8.16249 22.1543 8.52499C22.4685 8.88749 22.4685 9.48749 22.1543 9.84999L15.091 18C14.5168 18.6625 13.7585 19 13.0001 19Z' fill='%234F4949'/%3E%3C/svg%3E");    
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    background-size: calc(26 / 1920 * 100vw);
    padding-right: calc(54 / 1920 * 100vw);
}

.feedback-modal .feedback-form__select option {
    background: var(--color-white);
    color: #4f4949;
}

.feedback-modal .feedback-form__submit-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    margin-top: calc(42 / 1920 * 100vw);
}

.feedback-modal .feedback-form__submit-wrapper .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: calc(234 / 1920 * 100vw);
    min-height: calc(68 / 1920 * 100vw);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-family-base);
    font-size: calc(28 / 1920 * 100vw);
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
    background-color: #189eb8;
    border: none;
    border-radius: var(--space-md);
    cursor: pointer;
    box-sizing: border-box;
}

.feedback-modal .feedback-form__submit-wrapper .wpcf7-submit:hover {
    background-color: #189eb8;
    color: var(--color-white);
}

.feedback-modal .feedback-form__submit-wrapper .wpcf7-spinner {
    display: none;
}

.feedback-modal .feedback-form__input.wpcf7-not-valid,
.feedback-modal .feedback-form__select.wpcf7-not-valid {
    border-color: #dc3232;
}

.feedback-modal .feedback-form__input.wpcf7-not-valid::placeholder,
.feedback-modal .feedback-form__select.wpcf7-not-valid::placeholder {
    color: #dc3232;
}

.feedback-modal .wpcf7-not-valid-tip {
    display: none;
}

.feedback-modal .wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: calc(20 / 1920 * 100vw) calc(24 / 1920 * 100vw);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    letter-spacing: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    color: var(--color-neutral-900);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fade 4s cubic-bezier(1, 0, 1, 1) forwards;
    box-sizing: border-box;
    z-index: 2;
}

.feedback-modal .wpcf7 form.sent .wpcf7-response-output {
    background: #46b44f;
    animation: fade 10s cubic-bezier(1, 0, 1, 1) forwards;
}

.feedback-modal .wpcf7 form.failed .wpcf7-response-output,
.feedback-modal .wpcf7 form.aborted .wpcf7-response-output {
    background: #dc3232;
    animation: fade 5s cubic-bezier(1, 0, 1, 1) forwards;
}

.feedback-modal .wpcf7 form.spam .wpcf7-response-output {
    background: #f56e28;
    animation: fade 5s cubic-bezier(1, 0, 1, 1) forwards;
}

.feedback-modal .wpcf7 form.invalid .wpcf7-response-output,
.feedback-modal .wpcf7 form.unaccepted .wpcf7-response-output,
.feedback-modal .wpcf7 form.payment-required .wpcf7-response-output {
    background: #ffb900;
    animation: fade 5s cubic-bezier(1, 0, 1, 1) forwards;
}

@media (max-width: 768px) {

    .feedback-modal {
        padding: calc(16 / 430 * 100vw);
    }

    .feedback-modal__overlay {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .feedback-modal__dialog {
        align-items: flex-start;
        gap: calc(40 / 430 * 100vw);
        width: 100%;
        max-width: calc(398 / 430 * 100vw);
        padding: calc(40 / 430 * 100vw) calc(26 / 430 * 100vw);
        background-color: var(--color-white);
        border: 1px solid rgba(150, 150, 150, 0.24);
        border-radius: calc(40 / 430 * 100vw);
    }

    .feedback-modal__close {
        width: calc(30 / 430 * 100vw);
        height: calc(21.21 / 430 * 100vw);
        align-self: flex-end;
    }

    .feedback-modal__close-icon {
        width: calc(23.21 / 430 * 100vw);
        height: calc(21.21 / 430 * 100vw);
    }

    .feedback-modal__content {
        max-width: 100%;
        gap: calc(40 / 430 * 100vw);
    }

    .feedback-modal__header {
        gap: calc(20 / 430 * 100vw);
    }

    .feedback-modal__title {
        font-size: calc(40 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
        color: #272727;
        text-align: center;
    }

    .feedback-modal__subtitle {
        font-size: calc(20 / 430 * 100vw);
        font-weight: 400;
        line-height: 1.3;
        color: #272727;
        text-align: center;
    }

    .feedback-modal__fields,
    .feedback-modal__fields form,
    .feedback-modal__fields .wpcf7-form {
        gap: calc(12 / 430 * 100vw);
    }

    .feedback-modal .feedback-form__row--half {
        grid-template-columns: 1fr;
        gap: calc(12 / 430 * 100vw);
    }

    .feedback-modal .feedback-form__input,
    .feedback-modal .feedback-form__select {
        min-height: calc(74 / 430 * 100vw);
        padding: calc(24 / 430 * 100vw) calc(20 / 430 * 100vw);
        font-size: calc(20 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
    }

    .feedback-modal .feedback-form__input::placeholder {
        color: #aaaaaa;
    }

    .feedback-modal .feedback-form__select {
        background-size: calc(26 / 430 * 100vw);
        background-position: right calc(20 / 430 * 100vw) center;
        padding-right: calc(54 / 430 * 100vw);
        color: #4f4949;
    }

    .feedback-modal__form .wpcf7-form-control-wrap:nth-child(3) .feedback-form__input,
    .feedback-modal__form .wpcf7-form-control-wrap:nth-child(3) input {
        color: #4f4949;
    }

    .feedback-modal .feedback-form__submit-wrapper {
        margin-top: calc(28 / 430 * 100vw);
    }

    .feedback-modal .feedback-form__submit-wrapper .wpcf7-submit {
        width: calc(190 / 430 * 100vw);
        min-width: calc(190 / 430 * 100vw);
        min-height: calc(60 / 430 * 100vw);
        padding: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
        font-size: calc(20 / 430 * 100vw);
        font-weight: 500;
        align-self: center;
        border-radius: calc(20 / 430 * 100vw);
        background-color: #189eb8;
    }

    .feedback-modal .wpcf7 form .wpcf7-response-output {
        padding: calc(20 / 430 * 100vw) calc(24 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
        font-size: calc(16 / 430 * 100vw);
        width: 100%;
    }
}


/* === component: layout === */

.container--content,
.about-page .container,
.delivery-page .container,
.services-page .container,
.portfolio-page .portfolio-tabs__container,
.portfolio-page .portfolio-content .container,
.news-page .news .container,
.vacancies-page .vacancies-list > .container,
.certificates-page .certificates-content > .container,
.service-detail .container,
.service-detail .hero.hero--service .container,
.feedback .feedback__container,
.main .reviews .reviews__container,
.main .faq .faq__container,
.main .info .info__container {
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.container--narrow,
.about-page .container--narrow,
.delivery-page .container--narrow,
.certificates-page .container--narrow {
    max-width: calc(1439 / 1920 * 100vw);
    margin-left: calc(174 / 1920 * 100vw);
    box-sizing: border-box;
}

.about-page .container--narrow {
    margin-right: calc(307 / 1920 * 100vw);
}

.delivery-page .container--narrow,
.certificates-page .container--narrow {
    margin-right: auto;
}

.post-single-page .container--narrow {
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: calc(133 / 1920 * 100vw);
    box-sizing: border-box;
}

.section-padding,
.main .section-padding {
    padding-top: calc(64 / 1920 * 100vw);
    padding-bottom: calc(64 / 1920 * 100vw);
}

/* === component: page-hero === */

.hero.hero--small:not(.hero--service),
.hero.hero--certificates,
.hero.hero--vacancies {
    min-height: calc(415 / 1920 * 100vw);
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    box-sizing: border-box;
}

.hero.hero--small.hero--news,
.hero.hero--small.hero--portfolio,
.hero.hero--small.hero--services,
.hero.hero--small.hero--about,
.hero.hero--small.hero--delivery,
.hero.hero--delivery,
.hero.hero--certificates,
.hero.hero--vacancies {
    background-size: cover;
    background-repeat: no-repeat;
}

.hero.hero--small.hero--news,
.hero.hero--small.hero--portfolio,
.hero.hero--small.hero--services,
.hero.hero--small.hero--about,
.hero.hero--small.hero--delivery,
.hero.hero--delivery,
.hero.hero--certificates {
    background-position: 70% 50%;
}

.hero.hero--vacancies {
    background-position: center;
}

.hero.hero--small:not(.hero--service) .container,
.hero.hero--certificates .container,
.hero.hero--vacancies .container {
    padding-left: 0;
    padding-right: 0;
    position: relative;
    box-sizing: border-box;
}

.hero.hero--small:not(.hero--service) .hero__title,
.hero.hero--certificates .hero__title,
.hero.hero--vacancies .hero__title,
.delivery-page .hero .hero__title {
    position: absolute;
    left: 50%;
    top: calc(215 / 1920 * 100vw);
    transform: translateX(-50%);
    font-family: var(--font-family-base);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    color: var(--color-white);
    margin: 0;
    box-sizing: border-box;
}

.hero.hero--small:not(.hero--service) .hero__title,
.hero.hero--certificates .hero__title,
.hero.hero--vacancies .hero__title {
    white-space: nowrap;
}

/* === component: entry-content === */

.entry-content {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--color-neutral-900);
    box-sizing: border-box;
}

.entry-content p {
    margin: 0 0 calc(40 / 1920 * 100vw);
    line-height: 1.3;
}

.entry-content p:last-child {
    margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 calc(40 / 1920 * 100vw);
    padding-left: 0;
    line-height: 1.5;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 0;
    margin-left: calc(36 / 1920 * 100vw);
}

.entry-content ol ol,
.entry-content ol ul {
    margin-left: calc(36 / 1920 * 100vw);
}

.entry-content ol ol {
    list-style: decimal;
}

.entry-content ol ul {
    list-style: disc;
}

.entry-content video,
.entry-content img {
    border-radius: var(--radius-md);
}

.entry-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: var(--radius-md);
}

.entry-content .wp-block-embed,
.entry-content .wp-block-embed__wrapper,
.entry-content figure.wp-block-embed {
    max-width: 100%;
    margin: 0 0 calc(40 / 1920 * 100vw);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.entry-content .wp-block-embed:last-child,
.entry-content figure.wp-block-embed:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .entry-content iframe,
    .entry-content .wp-block-embed,
    .entry-content .wp-block-embed__wrapper,
    .entry-content figure.wp-block-embed {
        border-radius: calc(20 / 430 * 100vw);
    }
}

/* === component: text-clamp === */

.news-page .news-card__title,
.portfolio-page .portfolio-card__title,
.news-page .news-card__excerpt,
.portfolio-page .portfolio-card__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-page .news-card__title,
.portfolio-page .portfolio-card__title {
    -webkit-line-clamp: 3;
}

.news-page .news-card__excerpt,
.portfolio-page .portfolio-card__excerpt {
    -webkit-line-clamp: 4;
}

/* === component: media-fill === */

.news-page .news-card__image img,
.portfolio-page .portfolio-card__image img,
.portfolio-page .portfolio-card__image .img-responsive,
.post-single-page .post-single__main-image img,
.post-single-page .post-single__section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {

    .container--content,
    .about-page .container,
    .delivery-page .container,
    .services-page .container,
    .service-detail .container,
    .post-single-page .container--narrow {
        max-width: calc(398 / 430 * 100vw);
        margin-left: auto;
        margin-right: auto;
    }

    .hero.hero--small:not(.hero--service),
    .hero.hero--certificates,
    .hero.hero--vacancies {
        min-height: calc(390 / 430 * 100vw);
        padding-bottom: calc(40 / 430 * 100vw);
    }

    .hero.hero--small.hero--news,
    .hero.hero--small.hero--portfolio,
    .hero.hero--small.hero--services,
    .hero.hero--small.hero--about,
    .hero.hero--small.hero--delivery {
        background-position: center bottom;
    }

    .hero.hero--small:not(.hero--service) .hero__title,
    .hero.hero--certificates .hero__title,
    .hero.hero--vacancies .hero__title {
        top: calc(200 / 430 * 100vw);
        font-size: calc(50 / 430 * 100vw);
        white-space: normal;
        text-align: center;
        width: calc(398 / 430 * 100vw);
        left: 50%;
        transform: translateX(-50%);
        color: var(--color-white);
    }

    .hero.hero--certificates,
    .hero.hero--vacancies {
        background-position: bottom;
    }

    .news-page .hero.hero--news .hero__title,
    .portfolio-page .hero.hero--portfolio .hero__title,
    .about-page .hero.hero--about .hero__title {
        white-space: pre-wrap;
    }

    .delivery-page .hero.hero--delivery,
    .delivery-page .hero.hero.hero--small.hero--delivery {
        background-color: transparent;
        background-position: bottom;
    }

    .delivery-page .hero.hero--delivery .hero__title {
        top: calc(180 / 430 * 100vw);
        white-space: pre-wrap;
    }

    .news-page .news-card__title,
    .portfolio-page .portfolio-card__title {
        -webkit-line-clamp: 2;
    }
}

/* === page: home === */

.main .hero {
    background-color: var(--color-dark);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: calc(1068 / 1920 * 100vw);
    padding-top: calc(161 / 1920 * 100vw);
    padding-bottom: calc(82 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.main .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(1125 / 1920 * 100vw); 
    height: 100%;
    background: linear-gradient(to left, rgba(5, 40, 47, 0) 0%, #05282f 100%);
    pointer-events: none;
    z-index: 0;
}

.main .hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(384 / 1920 * 100vw);
    background: linear-gradient(90deg, #05282f 0%, rgba(5, 40, 47, 0) 100%);
    backdrop-filter: blur(calc(8 / 1920 * 100vw));
    -webkit-backdrop-filter: blur(calc(8 / 1920 * 100vw));
    pointer-events: none;
    z-index: 0;
}

.main .hero .hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(83 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .hero .hero__content {
    max-width: calc(600 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .hero__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-style: normal;
    font-size: var(--font-size-4xl);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-white);
    margin: 0;
    box-sizing: border-box;
}

.main .hero__title span {
    color: var(--hero-title-accent);
}

.main .hero .advantages {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding-bottom: 0 !important;
}

.main .hero .advantages__wrapper {
    display: flex;
    gap: calc(12 / 1920 * 100vw);
    list-style: none;
    margin: 0 !important;
    padding: 0;
    align-items: stretch;
    box-sizing: border-box;
}

.main .hero .advantages__item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    box-sizing: border-box;
    height: auto;
    width: auto !important;
    margin-right: 0 !important;
}


.main .hero .advantages__inner {
    height: 100%;
    min-height: 100%;
    padding: calc(40 / 1920 * 100vw);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(150, 150, 150, 0.24);
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-white);
    box-sizing: border-box;
}

.main .hero .advantages__item--accent .advantages__inner {
    background-color: #189eb8;
    border: 1px solid rgba(150, 150, 150, 0.24);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.main .hero .advantages__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(40 / 1920 * 100vw);
    margin-bottom: 0;
    box-sizing: border-box;
}

.main .hero .advantages__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(40 / 1920 * 100vw);
    line-height: 1.1;
    letter-spacing: 0;
    margin: 0;
    color: inherit;
    box-sizing: border-box;
}

.main .hero .advantages__icon {
    flex-shrink: 0;
    width: calc(80 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .hero .advantages__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.main .hero .advantages__body {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.main .hero .advantages__text {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    line-height: 1.3;
    max-width: calc(406 / 1920 * 100vw);
    margin: 0;
    color: inherit;
    box-sizing: border-box;
}

.main .hero .advantages__footer {
    margin-top: auto;
    box-sizing: border-box;
}

.main .hero .advantages__link.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: calc(16 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-size: calc(28 / 1920 * 100vw);
    line-height: 1;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-white);
    padding: calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    border-radius: var(--radius-md);
    text-decoration: none;
    box-sizing: border-box;
}

.main .hero .advantages__item--accent .advantages__link.btn-outline:hover {
    background: var(--color-white);
    color: #189eb8;
    border-color: var(--color-white);
}

.main .hero .advantages__link.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.main .promo-trust {
    position: relative;
    min-height: calc(900 / 1920 * 100vw);
    padding-top: calc(102 / 1920 * 100vw);
    padding-bottom: 0;
    margin-bottom: calc(175 / 1920 * 100vw);
    background-color: var(--color-neutral-200);
    box-sizing: border-box;
}

.main .promo-trust__background {
    position: absolute;
    top: calc(92 / 1920 * 100vw);
    left: 0;
    right: 0;
    width: 100%;
    height: calc(809 / 1920 * 100vw);
    z-index: 0;
    pointer-events: none;
    box-sizing: border-box;
}

.main .promo-trust__background-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
    box-sizing: border-box;
}

.main .promo-trust__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(24 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .promo-trust__content {
    width: 100%;
    box-sizing: border-box;
}

.main .promo-trust__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-3xl);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-neutral-900);
    text-align: center;
    margin: 0;
    box-sizing: border-box;
}

.main .promo-trust__title span {
    color: #189eb8;
}

.main .promo-trust__media {
    width: 100%;
    max-width: calc(1337 / 1920 * 100vw);
    margin-bottom: calc(-249 / 1920 * 100vw);
    line-height: 0;
    box-sizing: border-box;
}

.main .promo-trust__image {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    box-sizing: border-box;
}

.main .services {
    position: relative;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

.main .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(501 / 1920 * 100vw);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.63) 100%);
    backdrop-filter: blur(calc(12.1 / 1920 * 100vw));
    pointer-events: none;
    z-index: 0;
    box-sizing: border-box;
}

.main .services .services__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.main .services .services__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-3xl);
    line-height: 1;
    color: var(--color-text);
    margin: calc(10 / 1920 * 100vw) 0 calc(60 / 1920 * 100vw);
    letter-spacing: 0;
    box-sizing: border-box;
}

.main .services .info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: calc(12 / 1920 * 100vw);
    margin-bottom: calc(100 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .services .info-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: calc(40 / 1920 * 100vw);
    position: relative;
    overflow: visible;
    box-shadow: 0 0 calc(10 / 1920 * 100vw) #f1f1f1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.main .services .info-card--large {
    grid-column: 1;
    grid-row: 1 / -1;
}

.main .services .info-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10 / 1920 * 100vw);
    margin-bottom: calc(40 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .services .info-tag {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    color: var(--color-text);
    background: var(--color-neutral-200);
    padding: calc(10 / 1920 * 100vw) calc(20 / 1920 * 100vw);
    border-radius: var(--radius-full);
    box-sizing: border-box;
}

.main .services .info-card__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(40 / 1920 * 100vw);
    line-height: 1.1;
    color: var(--color-text);
    margin: 0 0 calc(20 / 1920 * 100vw);
    letter-spacing: 0;
    box-sizing: border-box;
}

.main .services .info-card__text {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 calc(40 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .services .info-card__btn {
    display: inline-flex;
    align-items: center;
    gap: calc(16 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-size: calc(28 / 1920 * 100vw);
    line-height: 1;
    color: var(--color-white);
    background-color: #79991f;
    padding: calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    transition: background-color 0.2s;
    box-sizing: border-box;
    width: max-content;
}

.main .services .info-card__btn:hover {
    background-color: #627a19;
    color: var(--color-white);
}

.main .services .info-card__img {
    margin-top: auto;
    width: 100%;
    max-height: none;
    height: auto;
    object-fit: cover;
    mix-blend-mode: darken;
    border-radius: calc(20 / 1920 * 100vw);
    display: block;
    box-sizing: border-box;
}

.main .services .info-card--large .info-card__img {
    margin-top: calc(40 / 1920 * 100vw);
}


.main .faq {
    background-color: var(--color-neutral-200);
    padding-top: calc(140 / 1920 * 100vw);
    padding-bottom: calc(140 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .faq .faq__container {
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.main .faq .faq__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-3xl);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-text);
    text-align: left;
    margin: 0 0 calc(60 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .faq .faq__list {
    display: flex;
    flex-direction: column;
    gap: calc(32 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .faq .faq__item {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: none;
    overflow: hidden;
    box-sizing: border-box;
}

.main .faq .faq__question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(40 / 1920 * 100vw);
    padding: calc(60 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(40 / 1920 * 100vw);
    line-height: 1.1;
    color: var(--color-text);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    box-sizing: border-box;
}

.main .faq .faq__question:hover {
    color: var(--color-primary);
}

.main .faq .faq__item.is-open .faq__question {
    color: var(--color-primary);
}

.main .faq .faq__icon {
    flex-shrink: 0;
    width: calc(40 / 1920 * 100vw);
    height: calc(44 / 1920 * 100vw);
    transition: transform 0.2s;
    color: currentColor;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .faq .faq__item.is-open .faq__icon {
    transform: rotate(180deg);
}

.main .faq .faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-sizing: border-box;
}

.main .faq .faq__item.is-open .faq__answer {
    max-height: calc(1000 / 1920 * 100vw);
}

.main .faq .faq__answer-content {
    padding: 0 calc(60 / 1920 * 100vw) calc(60 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-text);
    margin: 0;
    box-sizing: border-box;
}

.main .faq .faq__answer-content p {
    margin: 0;
}

.main .faq .faq__answer-content p:last-child {
    margin-bottom: 0;
}

.main .promo-geo {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.main .reviews {
    box-sizing: border-box;
    overflow: hidden;
    padding-top: calc(100 / 1920 * 100vw);
    margin-bottom: var(--space-3xl); 
}

.main .reviews .reviews__container {
    width: 100%;
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl); 
    box-sizing: border-box;
}

.main .reviews .reviews__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-3xl);
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-neutral-900);
    margin: 0;
    padding: calc(10 / 1920 * 100vw);
    box-sizing: border-box;
}

.main .reviews .reviews__slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: calc(499 / 1920 * 100vw); 
    padding-bottom: 0;
    box-sizing: border-box;
}

.main .reviews .reviews__slider .swiper-wrapper {
    align-items: flex-start; 
    box-sizing: border-box;
}

.main .reviews .reviews__slide {
    position: relative;
    width: calc(733 / 1920 * 100vw); 
    height: calc(499 / 1920 * 100vw);
    flex-shrink: 0;
    box-sizing: border-box;
}

.main .reviews .reviews__card {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(382 / 1920 * 100vw); 
    height: calc(260 / 1920 * 100vw);
    border-radius: calc(40 / 1920 * 100vw);
    overflow: hidden;
    background-color: var(--color-neutral-200);
    box-sizing: border-box;
    transform: translateX(calc((733 - 382) / 2 / 1920 * 100vw)); 
    transition:
        width 0.5s ease,
        height 0.5s ease,
        transform 0.5s ease;
    backface-visibility: hidden;
}

.main .reviews .reviews__slide.swiper-slide-active .reviews__card {
    width: calc(733 / 1920 * 100vw);
    height: calc(499 / 1920 * 100vw);
    transform: translateX(0);
}

.main .reviews .reviews__slide.swiper-slide-prev .reviews__card {
    width: calc(382 / 1920 * 100vw);
    height: calc(260 / 1920 * 100vw);
    transform: translateX(calc((733 - 382) / 1920 * 100vw)); 
}

.main .reviews .reviews__slide.swiper-slide-next .reviews__card {
    width: calc(382 / 1920 * 100vw);
    height: calc(260 / 1920 * 100vw);
    transform: translateX(0); 
}

.main .reviews .reviews__card-link {
    display: block;
    width: 100%;
    height: 100%;
}

.main .reviews .reviews__card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
}

.main .reviews .reviews__nav {
    position: absolute;
    left: 50%;
    top: calc(347 / 1920 * 100vw); 
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(937 / 1920 * 100vw);
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

.main .reviews .reviews__pagination {
    display: none;
}

.main .reviews .reviews__nav-btn {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(60 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #79991f;
    color: var(--color-white);
    cursor: pointer;
    box-sizing: border-box;
}

.main .reviews .reviews__nav-btn svg {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
}

.main .reviews .reviews__nav-btn--prev svg {
    transform: rotate(180deg);
}

.main .reviews .reviews__nav-btn:hover {
    background-color: #627a19;
}

.main .promo-geo .promo-geo__content {
    width: 100%;
    padding-top: calc(140 / 1920 * 100vw);
    padding-bottom: calc(140 / 1920 * 100vw);
    padding-left: calc(174 / 1920 * 100vw);
    padding-right: calc(174 / 1920 * 100vw);
    background-color: var(--color-neutral-200);
    box-sizing: border-box;
    z-index: 1;
}

.main .promo-geo .promo-geo__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-4xl);
    line-height: 1;
    color: var(--color-text);
    text-align: center;
    margin: 0;
    letter-spacing: 0;
    box-sizing: border-box;
}

.main .promo-geo .promo-geo__title span {
    color: #79991f;
}

.main .promo-geo .promo-geo__media {
    width: 100%;
    line-height: 0;
    box-sizing: border-box;
}

.main .promo-geo .promo-geo__image {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    box-sizing: border-box;
}

.news-page .news {
    background-color: var(--color-white);
    padding-top: calc(90 / 1920 * 100vw);
    padding-bottom: calc(150 / 1920 * 100vw);
    box-sizing: border-box;
}

.news-page .news .container {
    display: flex;
    flex-direction: column;
    gap: calc(100 / 1920 * 100vw);
    box-sizing: border-box;
}

.news-page .news__grid {
    display: flex;
    flex-wrap: wrap;
    gap: calc(100 / 1920 * 100vw) calc(36 / 1920 * 100vw);
    margin-bottom: 0;
    box-sizing: border-box;
}

.news-page .news-card {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
    width: calc(500 / 1920 * 100vw);
    flex-shrink: 0;
    box-sizing: border-box;
}

.news-page .news-card:hover {
    box-shadow: none;
}

.news-page .news-card__image {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: calc(376 / 1920 * 100vw);
    background: #e2e8f0;
    box-sizing: border-box;
}

.news-page .news-card__image .placeholder-img {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-page .news-card__content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: calc(20 / 1920 * 100vw);
    flex: 0;
    box-sizing: border-box;
}

.news-page .news-card__date-badge {
    background-color: var(--color-neutral-200);
    display: inline-flex;
    align-items: center;
    padding: calc(10 / 1920 * 100vw) calc(20 / 1920 * 100vw);
    border-radius: var(--radius-full);
    margin: 0;
    align-self: flex-start;
    box-sizing: border-box;
}

.news-page .news-card__date {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    color: var(--color-neutral-900);
    box-sizing: border-box;
}

.news-page .news-card__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    height: calc(110 / 1920 * 100vw);
    overflow: hidden;
    box-sizing: border-box;
}

.news-page .news-card__title a {
    color: inherit;
    text-decoration: none;
}

.news-page .news-card__title a:hover {
    color: var(--color-primary);
}

.news-page .news-card__excerpt {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-600);
    margin: 0;
    height: calc(103 / 1920 * 100vw);
    overflow: hidden;
    box-sizing: border-box;
}

.news-page .news__empty {
    width: 100%;
    text-align: center;
    padding: calc(60 / 1920 * 100vw) calc(32 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-600);
    margin: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .main .hero {
        min-height: auto;
        padding-top: calc(159 / 430 * 100vw);
        padding-bottom: calc(171 / 430 * 100vw);
        background-position: center center;
    }

    .main .hero::before {
        display: none;
    }

    .main .hero::after {
        height: calc(384 / 430 * 100vw);
    }

    .main .hero .hero__container {
        gap: calc(46 / 430 * 100vw);
        max-width: calc(398 / 430 * 100vw);
    }

    .main .hero .hero__content {
        max-width: 100%;
    }

    .main .hero__title {
        font-size: calc(60 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        line-height: 1;
    }

    .main .hero .advantages {
        overflow: hidden !important;
        position: relative;
    }

    .main .hero .advantages__wrapper {
        transform: unset;
        width: unset;
        margin: unset !important;
        gap: 0;
    }

    .main .hero .advantages__item {
        width: calc(100vw - calc(32 / 430 * 100vw)) !important;
        max-width: calc(398 / 430 * 100vw);
        flex: none;
        min-height: calc(312 / 430 * 100vw);
        height: auto;
        margin-right: 0 !important;
    }

    .main .hero .advantages__inner {
        padding: calc(26 / 430 * 100vw);
        gap: calc(40 / 430 * 100vw);
        border-radius: calc(30 / 430 * 100vw);
        background-color: rgba(255, 255, 255, 0.04);
    }

    .main .hero .advantages__item--accent .advantages__inner {
        background-color: #059eac;
    }

    .main .hero .advantages__title {
        font-size: calc(34 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        line-height: 1.1;
    }

    .main .hero .advantages__icon {
        width: calc(80 / 430 * 100vw);
        height: calc(80 / 430 * 100vw);
    }

    .main .hero .advantages__text {
        font-size: calc(18 / 430 * 100vw);
        font-weight: var(--font-weight-normal);
        line-height: 1.3;
        max-width: 100%;
    }

    .main .hero .advantages__link.btn-outline {
        font-size: calc(20 / 430 * 100vw);
        padding: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
        gap: calc(16 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
    }

    .main .promo-trust {
        min-height: calc(409 / 430 * 100vw);
        padding-top: calc(70 / 430 * 100vw);
        padding-bottom: 0;
        background-color: var(--color-neutral-200);
    }

    .main .promo-trust__container {
        gap: calc(38 / 430 * 100vw);
        max-width: calc(398 / 430 * 100vw);
    }

    .main .promo-trust__title {
        font-size: calc(34 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        line-height: 1;
        text-align: center;
    }

    .main .promo-trust__media {
        max-width: calc(393 / 430 * 100vw);
        margin-bottom: calc(-76 / 430 * 100vw);
    }

    .main .services {
        padding-top: 0;
        padding-bottom: calc(70 / 430 * 100vw);
    }

    .main .services .services__container {
        max-width: calc(398 / 430 * 100vw);
    }

    .main .services .services__title {
        font-size: calc(40 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        text-align: center;
        margin: 0 0 calc(40 / 430 * 100vw);
        line-height: 1;
    }

    .main .services .info {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: calc(20 / 430 * 100vw);
        margin-bottom: 0;
    }

    .main .services .info-card--large {
        grid-column: 1;
        grid-row: auto;
    }

    .main .services .info-card {
        padding: calc(24 / 430 * 100vw) calc(26 / 430 * 100vw);
        border-radius: calc(40 / 430 * 100vw);
        box-shadow: 0 0 calc(10 / 430 * 100vw) var(--color-neutral-200);
    }

    .main .services .info-card__tags {
        margin-bottom: calc(30 / 430 * 100vw);
        gap: calc(8 / 430 * 100vw);
    }

    .main .services .info-tag {
        font-size: calc(16 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        padding: calc(10 / 430 * 100vw) calc(20 / 430 * 100vw);
        border-radius: var(--radius-full);
    }

    .main .services .info-card__title {
        font-size: calc(30 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        line-height: 1.1;
        margin: 0 0 calc(20 / 430 * 100vw);
    }

    .main .services .info-card__text {
        font-size: calc(18 / 430 * 100vw);
        font-weight: var(--font-weight-normal);
        line-height: 1.3;
        margin: 0 0 calc(30 / 430 * 100vw);
    }

    .main .services .info-card__btn {
        font-size: calc(20 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        padding: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
        gap: calc(16 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
        background-color: #79991f;
    }

    .main .services .info-card__img {
        margin-top: calc(30 / 430 * 100vw);
    }


    .main .services .info-card--large .info-card__img {
        margin-top: calc(30 / 430 * 100vw);
    }

    .main .faq {
        padding-top: calc(70 / 430 * 100vw);
        padding-bottom: calc(70 / 430 * 100vw);
    }

    .main .faq .faq__container {
        max-width: calc(398 / 430 * 100vw);
    }

    .main .faq .faq__title {
        font-size: calc(40 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        line-height: 1;
        text-align: center;
        margin: 0 0 calc(40 / 430 * 100vw);
    }

    .main .faq .faq__list {
        gap: calc(20 / 430 * 100vw);
    }

    .main .faq .faq__item {
        border-radius: calc(30 / 430 * 100vw);
    }

    .main .faq .faq__question {
        padding: calc(26 / 430 * 100vw);
        font-size: calc(24 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        line-height: 1.1;
        gap: calc(40 / 430 * 100vw);
    }

    .main .faq .faq__item.is-open .faq__answer {
        max-height: calc(1000 / 430 * 100vw);
    }

    .main .faq .faq__icon {
        width: calc(40 / 430 * 100vw);
        height: calc(44 / 430 * 100vw);
        flex-shrink: 0;
    }

    .main .faq .faq__answer-content {
        padding: 0 calc(26 / 430 * 100vw) calc(26 / 430 * 100vw);
        font-size: calc(18 / 430 * 100vw);
        font-weight: var(--font-weight-normal);
        line-height: 1.3;
    }

    .main .promo-geo {
        padding-top: 0;
        padding-bottom: 0;
    }

    .main .reviews {
        padding-top: calc(90 / 430 * 100vw);
        margin-bottom: calc(90 / 430 * 100vw);
    }

    .main .reviews .reviews__container {
        gap: calc(40 / 430 * 100vw);
        max-width: calc(398 / 430 * 100vw);
    }

    .main .reviews .reviews__title {
        font-size: calc(40 / 430 * 100vw);
        padding: 0;
    }

    .main .reviews .reviews__slider {
        display: flex;
        flex-direction: column;
        gap: calc(10 / 430 * 100vw); 
        min-height: auto;
        padding-bottom: 0;
    }

    .main .reviews .reviews__slider .swiper-wrapper {
        align-items: stretch;
        width: 100%;
    }

    .main .reviews .reviews__slide {
        position: relative;
        width: calc(398 / 430 * 100vw); 
        height: calc(300 / 430 * 100vw);
        flex-shrink: 0;
        display: block;
    }

    .main .reviews .reviews__card,
    .main .reviews .reviews__slide.swiper-slide-active .reviews__card,
    .main .reviews .reviews__slide.swiper-slide-prev .reviews__card,
    .main .reviews .reviews__slide.swiper-slide-next .reviews__card {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        height: 100%;
        border-radius: calc(30 / 430 * 100vw);
        transform: none;
        transition: none;
        backface-visibility: visible;
    }

    .main .reviews .reviews__slide.swiper-slide-active {
        width: calc(398 / 430 * 100vw);
        height: calc(300 / 430 * 100vw);
    }

    .main .reviews .reviews__nav {
        display: none;
    }

    .main .reviews .reviews__pagination.swiper-pagination {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc(16 / 430 * 100vw); 
        margin-top: 0;
        transform: none;
        order: 2;
    }

    .main .reviews .reviews__pagination .swiper-pagination-bullet {
        width: calc(5 / 430 * 100vw);
        height: calc(5 / 430 * 100vw);
        margin: 0;
        opacity: 1;
        background-color: #ededed; 
    }

    .main .reviews .reviews__pagination .swiper-pagination-bullet-active {
        width: calc(10 / 430 * 100vw);
        height: calc(10 / 430 * 100vw);
        background-color: #79991f;
    }

    .main .promo-geo .promo-geo__content {
        width: 100%;
        padding: calc(70 / 430 * 100vw) calc(16 / 430 * 100vw);
    }

    .main .promo-geo .promo-geo__title {
        font-size: calc(34 / 430 * 100vw);
        font-weight: var(--font-weight-medium);
        line-height: 1;
        text-align: center;
    }

    .main .promo-geo .promo-geo__image {
        height: calc(508 / 430 * 100vw);
        object-fit: cover;
    }
    .news-page .news {
        padding-top: calc(40 / 430 * 100vw);
        padding-bottom: calc(130 / 430 * 100vw);
    }

    .news-page .news .container {
        max-width: 100%;
        gap: calc(40 / 430 * 100vw);
        max-width: calc(398 / 430 * 100vw);
    }

    .news-page .news__grid {
        flex-direction: column;
        gap: calc(60 / 430 * 100vw);
        align-items: stretch;
    }

    .news-page .news-card {
        width: 100%;
        gap: calc(20 / 430 * 100vw);
    }

    .news-page .news-card__image {
        height: calc(300 / 430 * 100vw);
        border-radius: calc(30 / 430 * 100vw);
    }

    .news-page .news-card__content {
        gap: calc(14 / 430 * 100vw);
    }

    .news-page .news-card__date-badge {
        padding: calc(10 / 430 * 100vw) calc(20 / 430 * 100vw);
        border-radius: calc(100 / 430 * 100vw);
    }

    .news-page .news-card__date {
        font-size: calc(18 / 430 * 100vw);
    }

    .news-page .news-card__title {
        font-size: calc(24 / 430 * 100vw);
        max-height: calc(52 / 430 * 100vw);
        height: max-content;
    }

    .news-page .news-card__excerpt {
        font-size: calc(16 / 430 * 100vw);
        height: calc(85 / 430 * 100vw);
    }

    .news-page .news__empty {
        padding: calc(60 / 430 * 100vw) calc(32 / 430 * 100vw);
        font-size: calc(16 / 430 * 100vw);
    }
}

/* === page: portfolio === */

.portfolio-page .portfolio-tabs {
    background-color: var(--color-white);
    padding-top: calc(90 / 1920 * 100vw);
    padding-bottom: 0;
    box-sizing: border-box;
}

.portfolio-page .portfolio-tabs__list {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.portfolio-page .portfolio-tabs__list .tabs-list__item {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-lg);
    line-height: 1;
    color: var(--color-neutral-400);
    padding: var(--space-sm) calc(10 / 1920 * 100vw);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    box-sizing: border-box;
    white-space: nowrap;
    flex-shrink: 0;
}

.portfolio-page .portfolio-tabs__list .tabs-list__item:hover {
    color: #189eb8;
}

.portfolio-page .portfolio-tabs__list .tabs-list__item.is-active {
    font-weight: var(--font-weight-medium);
    color: #189eb8;
    border-bottom-color: #189eb8;
}

.portfolio-page .portfolio-content {
    background-color: var(--color-white);
    padding-top: calc(80 / 1920 * 100vw);
    padding-bottom: calc(150 / 1920 * 100vw);
    box-sizing: border-box;
}

.portfolio-page .portfolio-tab-panel[hidden] {
    display: none;
}

.portfolio-page .portfolio-section {
    display: flex;
    flex-direction: column;
    gap: calc(50 / 1920 * 100vw);
    box-sizing: border-box;
}

.portfolio-page .portfolio-section + .portfolio-section {
    margin-top: calc(80 / 1920 * 100vw);
}

.portfolio-page .portfolio-section__title {
    font-family: var(--font-family-base);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    color: var(--color-neutral-900);
    margin: 0;
    padding: calc(10 / 1920 * 100vw);
    box-sizing: border-box;
}

.portfolio-page .portfolio-section__text {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-600);
    margin: 0;
    padding: 0 calc(10 / 1920 * 100vw);
    box-sizing: border-box;
}

.portfolio-page .portfolio-section__text p {
    margin: 0;
}

.portfolio-page .portfolio-section__text p + p {
    margin-top: var(--space-md);
}

.portfolio-page .portfolio-section__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: calc(36 / 1920 * 100vw);
    box-sizing: border-box;
}

.portfolio-page .portfolio-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    width: calc(500 / 1920 * 100vw);
    flex-shrink: 0;
    box-sizing: border-box;
}

.portfolio-page .portfolio-card.is-hidden {
    display: none;
}

.portfolio-page .portfolio-card--image-only {
    gap: 0;
    margin: 0;
}

.portfolio-page .portfolio-card__image {
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: calc(40 / 1920 * 100vw);
    overflow: hidden;
    height: calc(376 / 1920 * 100vw);
    background: #e2e8f0;
    box-sizing: border-box;
}

.portfolio-page .portfolio-card__image .placeholder-img {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
}

.portfolio-page .portfolio-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    box-sizing: border-box;
}

.portfolio-page .portfolio-card__title {
    font-family: var(--font-family-base);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    height: calc(110 / 1920 * 100vw);
    overflow: hidden;
    box-sizing: border-box;
}

.portfolio-page .portfolio-card__title a {
    color: inherit;
    text-decoration: none;
}

.portfolio-page .portfolio-card__title a:hover {
    color: var(--color-primary);
}

.portfolio-page .portfolio-card__excerpt {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-600);
    margin: 0;
    height: calc(103 / 1920 * 100vw);
    overflow: hidden;
    box-sizing: border-box;
}

.portfolio-page .portfolio-section__more {
    display: block;
    margin-top: calc(50 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding: calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    background-color: #059eac;
    color: var(--color-white);
    border: none;
    border-radius: calc(20 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: calc(28 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    cursor: pointer;
    box-sizing: border-box;
}

.portfolio-page .portfolio-section__more:hover {
    opacity: 0.9;
}

.portfolio-page .portfolio-section__more[hidden] {
    display: none !important;
}

.portfolio-page .portfolio-content__empty {
    width: 100%;
    text-align: center;
    padding: calc(60 / 1920 * 100vw) calc(32 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-600);
    margin: 0;
    box-sizing: border-box;
}

.service-detail {
    background-color: var(--color-white);
    padding-bottom: 0;
    box-sizing: border-box;
}
.service-detail .container--narrow {
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

.service-detail .container--narrow.section-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.service-detail .hero.hero--small {
    min-height: auto;
    padding-top: calc(185 / 1920 * 100vw);
    padding-bottom: 0;
    background-color: var(--color-white);
    background-image: none;
    box-sizing: border-box;
}
.service-detail .hero .breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(26 / 1920 * 100vw);
    margin: 0 0 calc(80 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1;
    color: var(--color-neutral-400);
    box-sizing: border-box;
}

.service-detail .hero .breadcrumbs a,
.service-detail .hero .breadcrumbs span {
    padding: calc(12 / 1920 * 100vw) calc(10 / 1920 * 100vw);
    white-space: nowrap;
    box-sizing: border-box;
}

.service-detail .hero .breadcrumbs__link {
    color: var(--color-neutral-400);
    text-decoration: none;
}

.service-detail .hero .breadcrumbs__link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.service-detail .hero .breadcrumbs__separator {
    color: var(--color-neutral-400);
}

.service-detail .hero .breadcrumbs__current {
    color: #059eac;
    font-weight: var(--font-weight-medium);
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-detail .hero .hero__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(60 / 1920 * 100vw);
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--color-neutral-900);
    margin: 0 0 calc(30 / 1920 * 100vw);
    box-sizing: border-box;
    margin-right: calc(133 / 1920 * 100vw);
}

.service-detail .hero .hero__text {
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
    padding: calc(40 / 1920 * 100vw) 0;
    margin: 0;
    font-family: var(--font-family-base);
    font-size: calc(28 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
    color: var(--color-neutral-900);
    box-sizing: border-box;
    margin-right: calc(133 / 1920 * 100vw);
}

.service-detail .hero .hero__text p {
    margin: 0;
}

.service-detail .hero .hero__text p:last-child {
    margin-bottom: 0;
}

.service-detail .service-article {
    padding-top: calc(80 / 1920 * 100vw);
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: 0;
    margin-right: auto;
    box-sizing: border-box;
}

.service-detail .service-article__section {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
    padding-right: calc(133 / 1920 * 100vw);
    box-sizing: border-box;
}

.service-detail .service-article__section:last-child {
    margin-bottom: 0;
}

.service-detail .service-article__section-title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

.service-detail .service-article__section-image {
    margin: calc(32 / 1920 * 100vw) 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-sizing: border-box;
}

.service-detail .service-article__section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail .service-steps {
    max-width: calc(1572 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.service-detail .service-steps__main-title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0 0 calc(30 / 1920 * 100vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

.service-detail .service-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(20 / 1920 * 100vw);
    box-sizing: border-box;
}

.service-detail .step-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 calc(10 / 1920 * 100vw) #f1f1f1;
    padding: calc(36 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(20 / 1920 * 100vw);
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
}

.service-detail .step-card:hover {
    box-shadow: 0px 0px 30px 0px rgba(241, 241, 241, 0.8);
}

.service-detail .step-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(60 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    border-radius: calc(66.667 / 1920 * 100vw);
    background-color: #059eac;
    color: var(--color-white);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    text-align: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.service-detail .step-card__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.service-detail .step-card__text {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.service-detail .step-card__text p {
    margin: 0;
}

.service-detail .step-card__text p:last-child {
    margin-bottom: 0;
}

.service-detail .service-note {
    display: flex;
    align-items: flex-start;
    gap: calc(30 / 1920 * 100vw);
    margin: calc(80 / 1920 * 100vw) 0 0;
    padding: var(--space-xl) 0;
    max-width: calc(1572 / 1920 * 100vw);
    padding-right: calc(133 / 1920 * 100vw);
    background-color: transparent;
    border-top: 1px solid var(--color-neutral-200);
    border-bottom: 1px solid var(--color-neutral-200);
    border-radius: 0;
    font-family: var(--font-family-base);
    font-size: calc(28 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
    color: var(--color-neutral-900);
    box-sizing: border-box;
}

.service-detail .service-note::before {
    content: '"';
    flex-shrink: 0;
    width: calc(89 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    overflow: hidden;
    font-size: calc(200 / 1920 * 100vw);
    line-height: 0.76;
    color: #f3f3f3;
}

.service-detail .service-note p {
    margin: 0;
    flex: 1 1 0;
    min-width: 0;
}

.service-detail .related-services {
    background-color: var(--color-white);
    padding-top: calc(156 / 1920 * 100vw);
    padding-bottom: calc(100 / 1920 * 100vw);
    box-sizing: border-box;
}

.service-detail .related-services .container {
    max-width: calc(1572 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
}

.service-detail .related-services .section-title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-3xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0 0 calc(60 / 1920 * 100vw);
    box-sizing: border-box;
}

.service-detail .related-services .services-grid__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: calc(20 / 1920 * 100vw);
    box-sizing: border-box;
}

.service-detail .related-services .service-card,
.service-detail .related-services .service-card--small {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0px 0px 20px 0px #f1f1f1;
    padding: calc(36 / 1920 * 100vw);
    width: calc(510.667 / 1920 * 100vw);
    height: calc(300 / 1920 * 100vw);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
}

.service-detail .related-services .service-card:hover,
.service-detail .related-services .service-card--small:hover {
    box-shadow: 0px 0px 30px 0px rgba(241, 241, 241, 0.8);
}

.service-detail .related-services .service-card__top,
.service-detail .related-services .service-card--small .service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(30 / 1920 * 100vw);
    width: 100%;
    margin-bottom: 0;
    box-sizing: border-box;
}

.service-detail .related-services .service-card__title,
.service-detail .related-services .service-card--small .service-card__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}

.service-detail .related-services .service-card__icon {
    flex-shrink: 0;
    width: calc(80 / 1920 * 100vw);
    height: auto;
    max-height: calc(80 / 1920 * 100vw);
    object-fit: contain;
    display: block;
    box-sizing: border-box;
}

.service-detail .related-services .service-card__more,
.service-detail .related-services .service-card--small .service-card__more {
    display: inline-flex;
    align-items: center;
    gap: calc(16 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    line-height: 1;
    color: var(--color-primary-hover);
    text-decoration: none;
    margin-top: 0;
    transition: color 0.2s;
    box-sizing: border-box;
}

.service-detail .related-services .service-card__more:hover,
.service-detail .related-services .service-card--small .service-card__more:hover {
    color: var(--color-primary);
}

.service-detail .related-services .service-card__more span {
    display: inline-block;
    font-size: var(--font-size-base);
}

@media (max-width: 768px) {
    .portfolio-page {
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .portfolio-page .container {
        max-width: calc(398 / 430 * 100vw);
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    .portfolio-page .portfolio-tabs {
        margin-top: calc(40 / 430 * 100vw);
        padding-top: 0;
    }

    .portfolio-page .portfolio-tabs__container {
        max-width: calc(398 / 430 * 100vw);
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .portfolio-page .portfolio-tabs__list {
        display: flex;
        flex-wrap: nowrap;
        gap: calc(26 / 430 * 100vw);
        min-height: calc(42 / 430 * 100vw);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .portfolio-page .portfolio-tabs__list::-webkit-scrollbar {
        display: none;
    }

    .portfolio-page .portfolio-tabs__list .tabs-list__item {
        font-size: calc(18 / 430 * 100vw);
        padding: calc(12 / 430 * 100vw) calc(10 / 430 * 100vw);
        flex-shrink: 0;
    }

    .portfolio-page .portfolio-tabs__list .tabs-list__item.is-active {
        color: #059eac;
        font-weight: var(--font-weight-medium);
        border-bottom: calc(3 / 430 * 100vw) solid #059eac;
    }

    .portfolio-page .portfolio-tabs__list .tabs-list__item:not(.is-active) {
        color: var(--color-neutral-400);
        font-weight: var(--font-weight-normal);
    }

    .portfolio-page .portfolio-content {
        padding-top: calc(60 / 430 * 100vw);
        padding-bottom: calc(130 / 430 * 100vw);
    }

    .portfolio-page .portfolio-content .container {
        max-width: calc(398 / 430 * 100vw);
    }

    .portfolio-page .portfolio-section + .portfolio-section {
        margin-top: calc(60 / 430 * 100vw);
    }

    .portfolio-page .portfolio-section {
        gap: calc(40 / 430 * 100vw);
    }

    .portfolio-page .portfolio-section__title {
        font-size: calc(32 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        line-height: 1.1;
        color: var(--color-neutral-900);
        padding: 0;
    }

    .portfolio-page .portfolio-section__text {
        font-size: calc(16 / 430 * 100vw);
        line-height: 1.3;
        padding: 0;
    }

    .portfolio-page .portfolio-section__text p + p {
        margin-top: calc(12 / 430 * 100vw);
    }

    .portfolio-page .portfolio-section__grid {
        display: flex;
        flex-direction: column;
        gap: calc(60 / 430 * 100vw);
        align-items: stretch;
        justify-content: flex-start;
    }

    .portfolio-page .portfolio-card {
        width: 100%;
        gap: calc(20 / 430 * 100vw);
    }

    .portfolio-page .portfolio-card__image {
        height: calc(300 / 430 * 100vw);
        border-radius: calc(30 / 430 * 100vw);
        border: calc(1 / 430 * 100vw) solid #e3e3e3;
    }

    .portfolio-page .portfolio-card__content {
        gap: calc(14 / 430 * 100vw);
    }

    .portfolio-page .portfolio-card__title {
        font-size: calc(24 / 430 * 100vw);
        font-weight: var(--font-weight-semibold);
        line-height: 1.1;
        max-height: calc(52 / 430 * 100vw);
        height: max-content;
        -webkit-line-clamp: 2;
    }

    .portfolio-page .portfolio-card__excerpt {
        font-size: calc(16 / 430 * 100vw);
        font-weight: var(--font-weight-normal);
        line-height: 1.3;
        color: var(--color-neutral-600);
        height: max-content;
        -webkit-line-clamp: 4;
    }

    .portfolio-page .portfolio-section__more {
        font-size: calc(24 / 430 * 100vw);
        padding: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
        margin-top: calc(20 / 430 * 100vw);
    }
}

/* === page: about === */


.about-page .about-content .container {
    padding-top: 0;
}

.about-page .about-content > .container--narrow:first-of-type {
    padding-top: calc(90 / 1920 * 100vw);
}

.about-page .about-content .container--narrow {
    margin-right: calc(307 / 1920 * 100vw);
    padding-left: 0;
    padding-right: 0;
}

.about-page .about-content {
    background-color: var(--color-white);
    padding-bottom: 0;
    box-sizing: border-box;
}

.about-page .about-title-large {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(60 / 1920 * 100vw);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0 0 calc(30 / 1920 * 100vw);
    box-sizing: border-box;
}

.about-page .about-main-img {
    width: 100%;
    height: auto;
    display: block;
    margin: calc(80 / 1920 * 100vw) 0;
    border-radius: calc(20 / 1920 * 100vw);
}

.about-page .about-work {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    padding-bottom: calc(150 / 1920 * 100vw);
    box-sizing: border-box;
}

.about-page .about-content-block {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    box-sizing: border-box;
}

.about-page .about-content-block__title {
    font-family: var(--font-family-base);
    margin: 0;
    box-sizing: border-box;
}

.about-page .about-content-block__title--lead {
    font-weight: var(--font-weight-semibold);
    font-size: calc(60 / 1920 * 100vw);
    line-height: 1.1;
    color: var(--color-neutral-900);
}

.about-page .about-content-block__title--sub {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
}

.about-page .about-content-block__text {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.about-page .about-content-block__text p {
    margin: 0 0 calc(20 / 1920 * 100vw);
}

.about-page .about-content-block__text p:last-child {
    margin-bottom: 0;
}

.about-page .about-features .container {
    padding-top: calc(80 / 1920 * 100vw);
}

.about-page .about-features {
    padding-bottom: calc(80 / 1920 * 100vw);
}

.about-page .about-features__header {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.about-page .about-features__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(60 / 1920 * 100vw);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.about-page .about-features__intro {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.about-page .about-features__intro p {
    margin: 0;
}

.about-page .features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
    box-sizing: border-box;
}

.about-page .feature-card:nth-child(-n+3) {
    grid-column: span 2;
}

.about-page .feature-card:nth-child(n+4) {
    grid-column: span 3;
}

.about-page .feature-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 calc(10 / 1920 * 100vw) #f1f1f1;
    padding: calc(36 / 1920 * 100vw);
    box-sizing: border-box;
}

.about-page .feature-card__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0 0 var(--space-md);
    box-sizing: border-box;
}

.about-page .feature-card__text {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.about-page .feature-card__text p {
    margin: 0 0 calc(8 / 1920 * 100vw);
}

.about-page .feature-card__text p:last-child {
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .about-page .container {
        max-width: calc(398 / 430 * 100vw);
    }

    .about-page .container--narrow {
        max-width: calc(398 / 430 * 100vw);
        margin-left: auto;
        margin-right: auto;
    }

    .about-page .hero.hero--small {
        min-height: calc(390 / 430 * 100vw);
    }

    .about-page .hero.hero.hero--small.hero--about {
        background-position: center bottom;
        padding-bottom: calc(40 / 430 * 100vw);
    }

    .about-page .hero.hero--about .container {
        max-width: calc(398 / 430 * 100vw);
    }

    .about-page .hero.hero--about .hero__title {
        top: calc(200 / 430 * 100vw);
        font-size: calc(50 / 430 * 100vw);
        width: calc(398 / 430 * 100vw);
        white-space: pre-wrap;
        text-align: center;
    }

    .about-page .about-content {
        padding-bottom: 0;
    }

    .about-page .about-content .container {
        padding-top: 0;
        max-width: calc(398 / 430 * 100vw);
    }

    .about-page .about-content .container--narrow {
        max-width: calc(398 / 430 * 100vw);
        margin-left: auto;
        margin-right: auto;
        padding-right: 0;
    }

    .about-page .about-content > .container--narrow:first-of-type {
        padding-top: calc(40 / 430 * 100vw);
    }

    .about-page .about-title-large {
        font-size: calc(32 / 430 * 100vw);
        margin: 0 0 calc(40 / 430 * 100vw);
    }

    .about-page .about-intro__text.entry-content,
    .about-page .about-intro .entry-content {
        font-size: calc(18 / 430 * 100vw);
    }

    .about-page .about-intro__text.entry-content p,
    .about-page .about-intro .entry-content p {
        margin: 0 0 calc(20 / 430 * 100vw);
    }

    .about-page .about-main-img {
        margin: calc(40 / 430 * 100vw) 0;
        border-radius: calc(20 / 430 * 100vw);
    }

    .about-page .about-work {
        gap: calc(40 / 430 * 100vw);
        padding-bottom: calc(130 / 430 * 100vw);
    }

    .about-page .about-content-block {
        gap: calc(30 / 430 * 100vw);
    }

    .about-page .about-content-block__title--lead {
        font-size: calc(32 / 430 * 100vw);
    }

    .about-page .about-content-block__title--sub {
        font-size: calc(28 / 430 * 100vw);
    }

    .about-page .about-content-block__text {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.5;
    }

    .about-page .about-content-block:not(.about-content-block--lead) .about-content-block__text {
        line-height: 1.3;
    }

    .about-page .about-features .container {
        padding-top: calc(40 / 430 * 100vw);
    }

    .about-page .about-features {
        padding-bottom: calc(40 / 430 * 100vw);
    }

    .about-page .about-features__header {
        gap: calc(30 / 430 * 100vw);
        margin-bottom: calc(40 / 430 * 100vw);
    }

    .about-page .about-features__title {
        font-size: calc(32 / 430 * 100vw);
    }

    .about-page .about-features__intro {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.5;
    }

    .about-page .features-grid {
        grid-template-columns: 1fr;
        gap: calc(20 / 430 * 100vw);
    }

    .about-page .feature-card:nth-child(-n+3),
    .about-page .feature-card:nth-child(n+4) {
        grid-column: span 3;
    }

    .about-page .feature-card {
        padding: calc(26 / 430 * 100vw);
        border-radius: calc(40 / 430 * 100vw);
        box-shadow: 0 0 calc(10 / 430 * 100vw) #f1f1f1;
    }

    .about-page .feature-card__title {
        font-size: calc(28 / 430 * 100vw);
        margin: 0 0 calc(20 / 430 * 100vw);
        color: var(--color-neutral-900);
        line-height: 1.1;
    }

    .about-page .feature-card__text {
        font-size: calc(18 / 430 * 100vw);
        color: var(--color-neutral-900);
        line-height: 1.5;
    }
}

/* === page: delivery === */

.delivery-page .delivery-content.section-padding {
    padding-top: calc(90 / 1920 * 100vw);
    padding-bottom: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.delivery-page .container--narrow {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.delivery-page .delivery-page-title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(60 / 1920 * 100vw);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.delivery-page .delivery-intro {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.delivery-page .delivery-intro__text.entry-content {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.delivery-page .delivery-intro__text p {
    margin: 0 0 calc(20 / 1920 * 100vw);
}

.delivery-page .delivery-intro__text p:last-child {
    margin-bottom: 0;
}

.delivery-page .delivery-content__body {
    display: flex;
    flex-direction: column;
    gap: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.delivery-page .delivery-steps {
    box-sizing: border-box;
}

.delivery-page .delivery-steps__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0 0 calc(80 / 1920 * 100vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

.delivery-page .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(20 / 1920 * 100vw);
    width: 100%;
    box-sizing: border-box;
}

.delivery-page .delivery-steps .step-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 calc(10 / 1920 * 100vw) #f1f1f1;
    padding: calc(36 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
}

.delivery-page .delivery-steps .step-card > * {
    margin: 0;
}

.delivery-page .delivery-steps .step-card > *:not(:last-child) {
    margin-bottom: calc(20 / 1920 * 100vw);
}

.delivery-page .delivery-steps .step-card:hover {
    box-shadow: 0 0 calc(30 / 1920 * 100vw) rgba(241, 241, 241, 0.8);
}

.delivery-page .delivery-steps .step-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(60 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    border-radius: calc(66.667 / 1920 * 100vw);
    background-color: #059eac;
    color: var(--color-white);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    flex-shrink: 0;
    box-sizing: border-box;
}

.delivery-page .delivery-steps .step-card__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.delivery-page .delivery-steps .step-card__text {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.delivery-page .delivery-steps .step-card__text p {
    margin: 0;
}

.delivery-page .delivery-info-blocks {
    display: flex;
    flex-direction: column;
    gap: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.delivery-page .delivery-info-block {
    box-sizing: border-box;
}

.delivery-page .delivery-info-block__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0 0 calc(30 / 1920 * 100vw);
    box-sizing: border-box;
}

.delivery-page .delivery-info-block__content.entry-content {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.delivery-page .delivery-info-block__content p {
    margin: 0 0 calc(40 / 1920 * 100vw);
}

.delivery-page .delivery-info-block__content p:last-child {
    margin-bottom: 0;
}

.delivery-page .delivery-info-block__content ul {
    margin: 0 0 calc(40 / 1920 * 100vw);
    padding-left: 0;
    list-style: none;
}

.delivery-page .delivery-info-block__content li {
    margin-bottom: 0;
    margin-left: calc(36 / 1920 * 100vw);
    position: relative;
}

.delivery-page .delivery-info-block__content li::before {
    content: '•';
    position: absolute;
    left: calc(-20 / 1920 * 100vw);
    color: var(--color-neutral-900);
}

.delivery-page .delivery-info-block__content h4,
.delivery-page .delivery-info-block__content strong {
    font-weight: var(--font-weight-semibold);
    color: var(--color-neutral-900);
}

.delivery-page .delivery-cost {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    box-sizing: border-box;
}

.delivery-page .delivery-cost__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(60 / 1920 * 100vw);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.delivery-page .delivery-cost__items {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 1920 * 100vw);
    box-sizing: border-box;
}

.delivery-page .delivery-cost__item {
    box-sizing: border-box;
}

.delivery-page .delivery-cost__item-title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0 0 calc(20 / 1920 * 100vw);
    box-sizing: border-box;
}

.delivery-page .delivery-cost__item-content.entry-content {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.delivery-page .delivery-cost__item-content p {
    margin: 0 0 calc(20 / 1920 * 100vw);
}

.delivery-page .delivery-cost__item-content p:last-child {
    margin-bottom: 0;
}

/* === page: single-post === */

.post-single-page {
    background-color: var(--color-white);
    padding-top: calc(185 / 1920 * 100vw);
    padding-bottom: calc(100 / 1920 * 100vw);
    box-sizing: border-box;
}

.post-single-page .breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: var(--space-lg);
    margin: 0 0 calc(80 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1;
    color: var(--color-neutral-400);
    box-sizing: border-box;
}

.post-single-page .breadcrumbs__link {
    padding: calc(12 / 1920 * 100vw) calc(10 / 1920 * 100vw);
    border-radius: calc(100 / 1920 * 100vw);
    color: var(--color-neutral-400);
    text-decoration: none;
    white-space: nowrap;
}

.post-single-page .breadcrumbs__link:hover {
    color: var(--color-primary);
}

.post-single-page .breadcrumbs__separator {
    padding: calc(12 / 1920 * 100vw) calc(10 / 1920 * 100vw);
    border-radius: calc(100 / 1920 * 100vw);
    color: var(--color-neutral-400);
}

.post-single-page .breadcrumbs__current {
    flex: 1 1 0;
    min-width: 0;
    padding: calc(12 / 1920 * 100vw) calc(10 / 1920 * 100vw);
    border-radius: calc(100 / 1920 * 100vw);
    color: #059eac;
    font-weight: var(--font-weight-medium);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-single-page .post-single__header {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.post-single-page .post-single__meta {
    display: flex;
    align-items: center;
    gap: calc(16 / 1920 * 100vw);
    margin-bottom: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__date-badge,
.post-single-page .post-single__category-badge {
    background-color: var(--color-neutral-200);
    padding: calc(10 / 1920 * 100vw) calc(20 / 1920 * 100vw);
    border-radius: var(--radius-full);
    margin: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__date,
.post-single-page .post-single__category {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    color: var(--color-neutral-900);
    box-sizing: border-box;
}

.post-single-page .post-single__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: calc(60 / 1920 * 100vw);
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__lead {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    color: var(--color-neutral-600);
    margin: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__quote--top {
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
    padding: calc(40 / 1920 * 100vw) 0;
    margin: 0;
}

.post-single-page .post-single__quote {
    display: flex;
    align-items: center;
    gap: calc(30 / 1920 * 100vw);
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    box-sizing: border-box;
}

.post-single-page .post-single__quote-mark {
    flex-shrink: 0;
    font-family: var(--font-family-base);
    font-size: calc(200 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 0.76;
    color: #f3f3f3;
    width: calc(89 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__quote--middle .post-single__quote-mark {
    height: calc(149 / 1920 * 100vw);
}

.post-single-page .post-single__quote-text {
    flex: 1 1 0;
    min-width: 0;
    font-family: var(--font-family-base);
    font-size: calc(28 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__quote--middle .post-single__quote-text {
    font-size: var(--font-size-xl);
}

.post-single-page .post-single__main-image,
.post-single-page .post-single__main-video {
    margin-top: 0;
    margin-bottom: calc(80 / 1920 * 100vw);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: calc(830 / 1920 * 100vw);
    box-sizing: border-box;
}

.post-single-page .post-single__main-image img,
.post-single-page .post-single__main-image .img-responsive,
.post-single-page .post-single__main-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-single-page .post-single__main-image .placeholder-img {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}

.post-single-page .post-single__body {
    display: flex;
    flex-direction: column;
    gap: calc(80 / 1920 * 100vw);
    margin-top: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__section {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    margin-bottom: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__section-title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    white-space: normal;
    box-sizing: border-box;
}

.post-single-page .post-single__section-images {
    display: flex;
    justify-content: space-between;
    gap: calc(36 / 1920 * 100vw);
    margin: 0;
    box-sizing: border-box;
}

.post-single-page .post-single__section-images--multi {
    display: flex;
    flex-direction: column;
    gap: calc(36 / 1920 * 100vw);
}

.post-single-page .post-single__section-images-row {
    display: flex;
    gap: calc(36 / 1920 * 100vw);
    height: calc(557 / 1920 * 100vw);
    box-sizing: border-box;
}

.post-single-page .post-single__section-images .post-single__section-image {
    flex: 1 1 0;
    min-width: 0;
}

.post-single-page .post-single__section-images-row .post-single__section-image--1 {
    flex: 0 0 871px;
    width: calc(871 / 1920 * 100vw);
}

.post-single-page .post-single__section-images-row .post-single__section-image--2 {
    flex: 1 1 0;
    min-width: 0;
}

.post-single-page .post-single__section-images .post-single__section-image--full {
    width: 100%;
    height: calc(830 / 1920 * 100vw);
    flex: none;
}

.post-single-page .post-single__section-images .post-single__section-image:only-child {
    flex: none;
    width: 100%;
}

.post-single-page .post-single__section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

.post-single-page .post-single__quote--middle {
    margin: 0;
}

.post-single-page .post-single__final-text {
    margin: 0;
}

@media (max-width: 768px) {
    .post-single-page {
        padding-top: calc(136 / 430 * 100vw);
        padding-bottom: calc(70 / 430 * 100vw);
    }

    .post-single-page .container--narrow {
        max-width: calc(398 / 430 * 100vw);
        padding-right: 0;
    }

    .post-single-page .breadcrumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: calc(10 / 430 * 100vw);
        margin: 0 0 calc(40 / 430 * 100vw);
        font-size: calc(18 / 430 * 100vw);
    }

    .post-single-page .breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    .post-single-page .breadcrumbs__link {
        white-space: nowrap;
        flex-shrink: 0;
        padding: calc(12 / 430 * 100vw) calc(10 / 430 * 100vw);
        border-radius: calc(100 / 430 * 100vw);
    }

    .post-single-page .breadcrumbs__separator {
        white-space: nowrap;
        flex-shrink: 0;
        padding: calc(12 / 430 * 100vw) calc(10 / 430 * 100vw);
        border-radius: calc(100 / 430 * 100vw);
    }

    .post-single-page .breadcrumbs__current {
        flex: none;
        white-space: nowrap;
        flex-shrink: 0;
        padding: calc(12 / 430 * 100vw) calc(10 / 430 * 100vw);
        border-radius: calc(100 / 430 * 100vw);
        color: #059eac;
        font-size: calc(18 / 430 * 100vw);
    }

    .post-single-page .post-single__header {
        gap: calc(30 / 430 * 100vw);
        margin-bottom: calc(40 / 430 * 100vw);
    }

    .post-single-page .post-single__date-badge,
    .post-single-page .post-single__category-badge {
        padding: calc(10 / 430 * 100vw) calc(20 / 430 * 100vw);
        border-radius: calc(100 / 430 * 100vw);
    }

    .post-single-page .post-single__date,
    .post-single-page .post-single__category {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.1;
    }

    .post-single-page .post-single__title {
        font-size: calc(32 / 430 * 100vw);
        line-height: 1.1;
    }

    .post-single-page .post-single__lead {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.3;
    }

    .post-single-page .post-single__quote--top {
        padding: calc(40 / 430 * 100vw) 0;
    }

    .post-single-page .post-single__quote {
        gap: calc(12 / 430 * 100vw);
    }

    .post-single-page .post-single__quote-mark {
        font-size: calc(89 / 430 * 100vw);
        width: calc(40 / 430 * 100vw);
        height: calc(27 / 430 * 100vw);
    }

    .post-single-page .post-single__quote--middle .post-single__quote-mark {
        height: calc(67 / 430 * 100vw);
    }

    .post-single-page .post-single__quote-text {
        font-size: calc(20 / 430 * 100vw);
        line-height: 1.3;
    }

    .post-single-page .post-single__quote--middle .post-single__quote-text {
        font-size: calc(20 / 430 * 100vw);
    }

    .post-single-page .post-single__main-image,
    .post-single-page .post-single__main-video {
        height: calc(262 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
        margin-bottom: calc(40 / 430 * 100vw);
    }

    .post-single-page .post-single__body {
        gap: calc(40 / 430 * 100vw);
    }

    .post-single-page .post-single__section {
        gap: calc(30 / 430 * 100vw);
    }

    .post-single-page .post-single__section-title {
        font-size: calc(28 / 430 * 100vw);
        line-height: 1.1;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .post-single-page .post-single__section-content,
    .post-single-page .post-single__content,
    .post-single-page .post-single__section-content.entry-content,
    .post-single-page .post-single__content.entry-content,
    .post-single-page .post-single__final-text.entry-content {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.5;
    }

    .post-single-page .post-single__section-content p,
    .post-single-page .post-single__content p,
    .post-single-page .entry-content p,
    .post-single-page .post-single__final-text p {
        margin: 0 0 calc(20 / 430 * 100vw);
    }

    .post-single-page .post-single__section-content ul li,
    .post-single-page .post-single__section-content ol li {
        margin-left: calc(27 / 430 * 100vw);
    }

    .post-single-page .post-single__section-content ol ul li {
        margin-left: calc(54 / 430 * 100vw);
    }

    .post-single-page .post-single__section-content strong,
    .post-single-page .post-single__section-content b {
        font-weight: 600;
    }

    .post-single-page .post-single__section-images {
        flex-direction: column;
        gap: calc(12 / 430 * 100vw);
    }

    .post-single-page .post-single__section-images--multi {
        gap: calc(12 / 430 * 100vw);
    }

    .post-single-page .post-single__section-images-row {
        flex-direction: column;
        height: auto;
        gap: calc(12 / 430 * 100vw);
    }

    .post-single-page .post-single__section-images-row .post-single__section-image--1 {
        flex: none;
        width: 100%;
        height: calc(262 / 430 * 100vw);
    }

    .post-single-page .post-single__section-images-row .post-single__section-image--2 {
        flex: none;
        width: 100%;
        height: calc(262 / 430 * 100vw);
    }

    .post-single-page .post-single__section-images .post-single__section-image {
        flex: none;
        width: 100%;
        height: calc(262 / 430 * 100vw);
    }

    .post-single-page .post-single__section-images .post-single__section-image--full {
        width: 100%;
        height: calc(262 / 430 * 100vw);
    }

    .post-single-page .post-single__section-image img {
        border-radius: calc(20 / 430 * 100vw);
    }
}

@media (max-width: 768px) {
    .delivery-page .container {
        max-width: calc(398 / 430 * 100vw);
    }

    .delivery-page .container--narrow {
        max-width: calc(398 / 430 * 100vw);
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .delivery-page .hero.hero--small {
        min-height: calc(390 / 430 * 100vw);
        padding-top: 0;
        padding-bottom: calc(40 / 430 * 100vw);
    }

    .delivery-page .hero.hero--delivery,
    .delivery-page .hero.hero.hero--small.hero--delivery {
        background-color: transparent;
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .delivery-page .hero.hero--delivery .container {
        max-width: calc(398 / 430 * 100vw);
    }

    .delivery-page .hero.hero--delivery .hero__title {
        top: calc(180 / 430 * 100vw);
        font-size: calc(50 / 430 * 100vw);
        width: calc(398 / 430 * 100vw);
        white-space: pre-wrap;
        text-align: center;
    }

    .delivery-page .delivery-content.section-padding {
        padding-top: calc(40 / 430 * 100vw);
        padding-bottom: calc(130 / 430 * 100vw);
    }

    .delivery-page .delivery-intro {
        margin-bottom: calc(40 / 430 * 100vw);
    }

    .delivery-page .delivery-content__body {
        display: flex;
        flex-direction: column;
        gap: calc(40 / 430 * 100vw);
    }

    .delivery-page .delivery-page-title {
        font-size: calc(32 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
        color: var(--color-neutral-900);
    }

    .delivery-page .delivery-steps {
        display: flex;
        flex-direction: column;
        gap: calc(30 / 430 * 100vw);
    }

    .delivery-page .delivery-steps__title {
        font-size: calc(28 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
        margin: 0;
        white-space: normal;
    }

    .delivery-page .steps-grid {
        grid-template-columns: 1fr;
        gap: calc(20 / 430 * 100vw);
        width: 100%;
    }

    .delivery-page .delivery-steps .step-card {
        padding: calc(26 / 430 * 100vw);
        border-radius: calc(40 / 430 * 100vw);
        box-shadow: 0 calc(10 / 430 * 100vw) calc(10 / 430 * 100vw) #f1f1f1;
        display: flex;
        flex-direction: column;
        gap: calc(20 / 430 * 100vw);
    }

    .delivery-page .delivery-steps .step-card > *:not(:last-child) {
        margin-bottom: 0;
    }

    .delivery-page .delivery-steps .step-card__number {
        width: calc(60 / 430 * 100vw);
        height: calc(60 / 430 * 100vw);
        border-radius: 50%;
        background-color: #059eac;
        font-size: calc(32 / 430 * 100vw);
        color: var(--color-white);
    }

    .delivery-page .delivery-steps .step-card__title {
        font-size: calc(28 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
    }

    .delivery-page .delivery-steps .step-card:first-child .step-card__text {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.5;
    }

    .delivery-page .delivery-steps .step-card:not(:first-child) .step-card__text {
        font-size: calc(20 / 430 * 100vw);
        line-height: 1.5;
    }

    .delivery-page .delivery-info-blocks {
        gap: calc(40 / 430 * 100vw);
    }

    .delivery-page .delivery-info-block__title {
        font-size: calc(28 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: calc(30 / 430 * 100vw);
    }

    .delivery-page .delivery-info-block__content.entry-content {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.5;
    }

    .delivery-page .delivery-info-block__content h4,
    .delivery-page .delivery-info-block__content strong {
        line-height: 1.3;
    }

    .delivery-page .delivery-info-block__content p {
        margin-bottom: calc(20 / 430 * 100vw);
    }

    .delivery-page .delivery-info-block__content ul {
        margin-bottom: calc(20 / 430 * 100vw);
    }

    .delivery-page .delivery-info-block__content li {
        margin-bottom: calc(10 / 430 * 100vw);
        margin-left: calc(27 / 430 * 100vw);
    }

    .delivery-page .delivery-info-block__content li::before {
        left: calc(-27 / 430 * 100vw);
    }

    .delivery-page .delivery-cost__title {
        font-size: calc(32 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
        margin: 0;
    }

    .delivery-page .delivery-cost__items {
        display: flex;
        flex-direction: column;
        gap: calc(30 / 430 * 100vw);
    }

    .delivery-page .delivery-cost__item-title {
        font-size: calc(28 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: calc(30 / 430 * 100vw);
    }

    .delivery-page .delivery-cost__item-content.entry-content {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.3;
    }

    .delivery-page .delivery-cost__item-content p {
        margin-bottom: calc(20 / 430 * 100vw);
    }

    .delivery-page .delivery-cost__item-content ul {
        margin-bottom: calc(20 / 430 * 100vw);
        padding-left: 0;
        list-style: none;
    }

    .delivery-page .delivery-cost__item-content li {
        margin-bottom: calc(10 / 430 * 100vw);
        margin-left: calc(27 / 430 * 100vw);
        position: relative;
    }

    .delivery-page .delivery-cost__item-content li::before {
        content: '•';
        position: absolute;
        left: calc(-27 / 430 * 100vw);
        color: var(--color-neutral-900);
    }
}

/* === component: main-media === */

.main .img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.main .placeholder-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
    border-radius: calc(4 / 1920 * 100vw);
}

@media (max-width: 768px) {
    .service-detail .container {
        max-width: calc(398 / 430 * 100vw);
    }

    .service-detail .container--narrow {
        padding-bottom: calc(60 / 430 * 100vw);
    }

    .service-detail .container--narrow.section-padding {
        padding-bottom: 0;
    }

    .service-detail .hero.hero--small {
        padding-top: calc(145 / 430 * 100vw);
    }

    .service-detail .hero.hero--service .container {
        max-width: calc(398 / 430 * 100vw);
    }

    .service-detail .hero .breadcrumbs {
        gap: calc(10 / 430 * 100vw);
        margin: 0 0 calc(40 / 430 * 100vw);
        font-size: calc(18 / 430 * 100vw);
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .service-detail .hero .breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    .service-detail .hero .breadcrumbs a,
    .service-detail .hero .breadcrumbs span {
        padding: calc(12 / 430 * 100vw) calc(10 / 430 * 100vw);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .service-detail .hero .breadcrumbs__current {
        white-space: nowrap;
        flex: none;
    }

    .service-detail .hero .hero__title {
        font-size: calc(32 / 430 * 100vw);
        margin: 0 0 calc(30 / 430 * 100vw);
        margin-right: 0;
    }

    .service-detail .hero .hero__text {
        font-size: calc(20 / 430 * 100vw);
        margin-right: 0;
        padding: calc(40 / 430 * 100vw) 0;
    }

    .service-detail .service-article {
        padding-top: calc(40 / 430 * 100vw);
        max-width: calc(398 / 430 * 100vw);
    }

    .service-detail .service-article__section {
        gap: calc(30 / 430 * 100vw);
        margin-bottom: calc(40 / 430 * 100vw);
        padding-right: 0;
    }

    .service-detail .service-article__section-title {
        font-size: calc(28 / 430 * 100vw);
        white-space: normal;
        text-overflow: unset;
        overflow: visible;
    }

    .service-detail .service-article__section-content,
    .service-detail .service-article__content,
    .service-detail .service-article .entry-content {
        font-size: calc(18 / 430 * 100vw);
    }

    .service-detail .service-article__section-content p,
    .service-detail .service-article__content p,
    .service-detail .service-article .entry-content p {
        margin: 0 0 calc(20 / 430 * 100vw);
    }

    .service-detail .service-article__section-content ul,
    .service-detail .service-article__content ul,
    .service-detail .service-article .entry-content ul {
        margin: 0 0 calc(20 / 430 * 100vw);
    }

    .service-detail .service-article__section-content li,
    .service-detail .service-article__content li,
    .service-detail .service-article .entry-content li {
        margin-left: calc(20 / 430 * 100vw);
        margin-bottom: calc(10 / 430 * 100vw);
    }

    .service-detail .service-steps {
        margin-bottom: calc(40 / 430 * 100vw);
        max-width: calc(398 / 430 * 100vw);
    }

    .service-detail .service-steps__main-title {
        font-size: calc(28 / 430 * 100vw);
        white-space: normal;
        text-overflow: unset;
        overflow: visible;
        margin: 0 0 calc(20 / 430 * 100vw);
    }

    .service-detail .service-steps__grid {
        grid-template-columns: 1fr;
        gap: calc(20 / 430 * 100vw);
    }

    .service-detail .step-card {
        padding: calc(26 / 430 * 100vw);
        border-radius: calc(40 / 430 * 100vw);
        gap: calc(20 / 430 * 100vw);
        height: auto;
        box-shadow: 0px 0px 10px 0px #f1f1f1;
    }

    .service-detail .step-card__number {
        width: calc(60 / 430 * 100vw);
        height: calc(60 / 430 * 100vw);
        font-size: calc(32 / 430 * 100vw);
        border-radius: calc(66.667 / 430 * 100vw);
    }

    .service-detail .step-card__title {
        font-size: calc(28 / 430 * 100vw);
    }

    .service-detail .step-card__text {
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.5;
    }

    .service-detail .service-note {
        gap: calc(12 / 430 * 100vw);
        margin: calc(40 / 430 * 100vw) 0 0;
        padding-right: 0;
        font-size: calc(20 / 430 * 100vw);
        border-top: 1px solid #f3f3f3;
        border-bottom: 1px solid #f3f3f3;
        padding-top: calc(40 / 430 * 100vw);
        padding-bottom: calc(40 / 430 * 100vw);
        max-width: calc(398 / 430 * 100vw);
    }

    .service-detail .service-note::before {
        width: calc(40 / 430 * 100vw);
        height: calc(27 / 430 * 100vw);
        font-size: calc(89.888 / 430 * 100vw);
        line-height: 0.76;
        overflow: hidden;
        flex-shrink: 0;
    }

    .service-detail .related-services {
        padding-top: calc(60 / 430 * 100vw);
        padding-bottom: calc(60 / 430 * 100vw);
    }

    .service-detail .related-services .container {
        max-width: calc(398 / 430 * 100vw);
    }

    .service-detail .related-services .section-title {
        font-size: calc(32 / 430 * 100vw);
        margin: 0 0 calc(40 / 430 * 100vw);
    }

    .service-detail .related-services .services-grid__wrapper {
        flex-direction: column;
        gap: calc(30 / 430 * 100vw);
    }

    .service-detail .related-services .service-card,
    .service-detail .related-services .service-card--small {
        width: 100%;
        height: calc(210 / 430 * 100vw);
        padding: calc(26 / 430 * 100vw);
        border-radius: calc(40 / 430 * 100vw);
        box-shadow: 0px 0px 10px 0px #f1f1f1;
    }

    .service-detail .related-services .service-card__top,
    .service-detail .related-services .service-card--small .service-card__top {
        gap: calc(30 / 430 * 100vw);
    }

    .service-detail .related-services .service-card__title,
    .service-detail .related-services .service-card--small .service-card__title {
        font-size: calc(28 / 430 * 100vw);
    }

    .service-detail .related-services .service-card__icon {
        width: calc(68 / 430 * 100vw);
        max-height: calc(68 / 430 * 100vw);
    }

    .service-detail .related-services .service-card__more,
    .service-detail .related-services .service-card--small .service-card__more {
        font-size: calc(20 / 430 * 100vw);
        gap: calc(16 / 430 * 100vw);
        color: #059eac;
    }
}

/* === page: services === */

.services-tabs {
    background-color: var(--color-white);
    padding-top: calc(90 / 1920 * 100vw);
    padding-bottom: 0;
    box-sizing: border-box;
}

.services-tabs__list {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-tabs__list .tabs-list__item {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-lg);
    line-height: 1;
    color: var(--color-neutral-400);
    padding: var(--space-sm) calc(10 / 1920 * 100vw);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    box-sizing: border-box;
    white-space: nowrap;
    flex-shrink: 0;
}

.services-tabs__list .tabs-list__item:hover {
    color: #189eb8;
}

.services-tabs__list .tabs-list__item.is-active {
    font-weight: var(--font-weight-medium);
    color: #189eb8;
    border-bottom-color: #189eb8;
}

.services-cards {
    background-color: var(--color-white);
    padding-top: calc(100 / 1920 * 100vw);
    padding-bottom: calc(150 / 1920 * 100vw);
    box-sizing: border-box;
}

.services-cards__grid {
    display: flex;
    flex-wrap: wrap;
    gap: calc(20 / 1920 * 100vw);
    box-sizing: border-box;
}

.services-page .service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0px 0px 10px #f1f1f1;
    padding: calc(36 / 1920 * 100vw);
    width: calc(510.667 / 1920 * 100vw);
    height: calc(300 / 1920 * 100vw);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    transition: box-shadow 0.2s;
    box-sizing: border-box;
}

.services-page .service-card:hover {
    box-shadow: 0px 0px 30px 0px rgba(241, 241, 241, 0.8);
}

.services-page .service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(30 / 1920 * 100vw);
    width: 100%;
    box-sizing: border-box;
}

.services-page .service-card__title {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}

.services-page .service-card__icon {
    flex-shrink: 0;
    width: calc(80 / 1920 * 100vw);
    height: auto;
    max-height: calc(80 / 1920 * 100vw);
    object-fit: contain;
    display: block;
    box-sizing: border-box;
}

.services-page .service-card__more {
    display: inline-flex;
    align-items: center;
    gap: calc(16 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    line-height: 1;
    color: #059eac;
    text-decoration: none;
    transition: color 0.2s;
    box-sizing: border-box;
}

.services-page .service-card__more:hover {
    color: var(--color-primary);
}

.services-page .service-card__more span {
    display: inline-block;
    font-size: var(--font-size-base);
}

@media (max-width: 768px) {

    .services-page .container {
        max-width: calc(398 / 430 * 100vw);
    }
    .services-tabs {
        padding-top: calc(40 / 430 * 100vw);
        padding-bottom: 0;
    }

    .services-tabs__container {
        max-width: 100%;
        padding-left: calc(11 / 430 * 100vw);
        padding-right: 0;
        overflow: hidden;
    }

    .services-tabs__list {
        gap: calc(26 / 430 * 100vw);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-right: calc(16 / 430 * 100vw);
    }

    .services-tabs__list::-webkit-scrollbar {
        display: none;
    }

    .services-tabs__list .tabs-list__item {
        font-size: calc(18 / 430 * 100vw);
        color: var(--color-neutral-400);
        padding: calc(12 / 430 * 100vw) calc(10 / 430 * 100vw);
    }

    .services-tabs__list .tabs-list__item.is-active {
        font-weight: var(--font-weight-medium);
        color: #059eac;
        border-bottom-color: #059eac;
    }

    .services-page .services-tabs .tabs-list__item:not(.is-active) {
        border-radius: calc(100 / 430 * 100vw);
    }

    .services-cards {
        padding-top: calc(40 / 430 * 100vw);
        padding-bottom: calc(130 / 430 * 100vw);
    }

    .services-page .services-cards .container {
        margin-left: calc(11 / 430 * 100vw);
        margin-right: auto;
    }

    .services-cards__grid {
        flex-direction: column;
        gap: calc(30 / 430 * 100vw);
    }

    .services-page .service-card {
        width: 100%;
        height: calc(210 / 430 * 100vw);
        padding: calc(26 / 430 * 100vw);
        border-radius: calc(40 / 430 * 100vw);
        box-shadow: 0 0 calc(10 / 430 * 100vw) #f1f1f1;
    }

    .services-page .service-card__top {
        gap: calc(30 / 430 * 100vw);
    }

    .services-page .service-card__title {
        font-size: calc(28 / 430 * 100vw);
    }

    .services-page .service-card__icon {
        width: calc(68 / 430 * 100vw);
        max-height: calc(68 / 430 * 100vw);
    }

    .services-page .service-card__more {
        font-size: calc(20 / 430 * 100vw);
        gap: calc(12 / 430 * 100vw);
        color: #059eac;
    }

    .services-page .service-card__more span {
        font-size: calc(20 / 430 * 100vw);
    }

}

/* === page: certificates === */
.certificates-page .certificates-content.section-padding {
    padding-top: calc(90 / 1920 * 100vw);
    box-sizing: border-box;
}
.certificates-page .certificates-content > .container {
    margin-left: calc(174 / 1920 * 100vw);
    margin-right: auto;
    margin-bottom: calc(150 / 1920 * 100vw);
    padding: 0;
}

.certificates-page .certificates-content {
    background-color: var(--color-white);
}
.certificates-page .certificates-intro {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    margin-bottom: calc(90 / 1920 * 100vw);
    box-sizing: border-box;
}

.certificates-page .certificates-intro__title {
    font-family: var(--font-family-base);
    font-size: calc(60 / 1920 * 100vw);
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.certificates-page .certificates-intro__text {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--color-neutral-900);
    box-sizing: border-box;
}
.certificates-page .certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, calc(500 / 1920 * 100vw));
    column-gap: calc(36 / 1920 * 100vw);
    row-gap: calc(80 / 1920 * 100vw);
    box-sizing: border-box;
}

.certificates-page .certificate-card {
    margin: 0;
    box-sizing: border-box;
}

.certificates-page .certificate-card__image {
    width: calc(500 / 1920 * 100vw);
    height: calc(714 / 1920 * 100vw);
    max-width: none;
    object-fit: cover;
    box-sizing: border-box;
}


@media (max-width: 768px) {
    .certificates-page .certificates-content.section-padding,
    .certificates-page .certificates-content {
        padding-top: calc(40 / 430 * 100vw);
        padding-bottom: calc(130 / 430 * 100vw);
    }

    .certificates-page .certificates-content .container {
        padding-left: calc(16 / 430 * 100vw);
        padding-right: calc(16 / 430 * 100vw);
    }

    .certificates-page .container--narrow {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .certificates-page .certificates-content > .container {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }

    .certificates-page .certificates-intro {
        gap: 0;
        margin-bottom: 0;
    }

    .certificates-page .certificates-intro__title {
        font-size: calc(32 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: calc(40 / 430 * 100vw);
    }

    .certificates-page .certificates-intro__text {
        font-size: calc(18 / 430 * 100vw);
        font-weight: 400;
        line-height: 1.5;
    }

    .certificates-page .certificates-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(10 / 430 * 100vw);
        margin-top: calc(40 / 430 * 100vw);
    }

    .certificates-page .certificates-grid__item {
        aspect-ratio: 840 / 1200;
        overflow: hidden;
    }

    .certificates-page .certificate-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* === page: vacancies === */

.vacancies-page .vacancies-list {
    padding: calc(90 / 1920 * 100vw) calc(174 / 1920 * 100vw);
    background-color: var(--color-neutral-200);
    box-sizing: border-box;
}

.vacancies-page .vacancies-list > .container {
    padding: 0;
}

.vacancies-page .vacancies-accordion {
    display: flex;
    flex-direction: column;
    gap: calc(32 / 1920 * 100vw);
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__item {
    padding: var(--space-2xl);
    background-color: var(--color-white);
    border-radius: calc(40 / 1920 * 100vw);
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(40 / 1920 * 100vw);
    padding: 0;
    margin: 0;
    font-family: var(--font-family-base);
    font-size: calc(40 / 1920 * 100vw);
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    color: var(--color-text);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__header:hover {
    color: var(--color-primary);
}

.vacancies-page .vacancies-accordion__item.is-open .vacancies-accordion__header {
    color: var(--color-primary);
}

.vacancies-page .vacancies-accordion__title {
    flex: 1;
}

.vacancies-page .vacancies-accordion__icon {
    flex-shrink: 0;
    width: calc(40 / 1920 * 100vw);
    height: calc(44 / 1920 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    color: currentColor;
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__icon svg {
    width: 100%;
    height: 100%;
}

.vacancies-page .vacancies-accordion__item.is-open .vacancies-accordion__icon {
    transform: rotate(180deg);
}

.vacancies-page .vacancies-accordion__content {
    display: none;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__item.is-open .vacancies-accordion__content {
    display: flex;
}

.vacancies-page .vacancies-accordion__subsection {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 1920 * 100vw);
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__subsection-title {
    font-family: var(--font-family-base);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    color: var(--color-neutral-900);
    margin: 0;
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__text {
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--color-neutral-900);
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__text p {
    margin: 0 0 calc(10 / 1920 * 100vw);
}

.vacancies-page .vacancies-accordion__text p:last-child {
    margin-bottom: 0;
}

.vacancies-page .vacancies-accordion__list {
    margin: 0;
    padding-left: calc(36 / 1920 * 100vw);
    list-style: disc;
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--color-neutral-900);
    box-sizing: border-box;
}

.vacancies-page .vacancies-accordion__list li + li {
    margin-top: calc(10 / 1920 * 100vw);
}

.vacancies-page .vacancies-accordion__cta {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    margin-top: calc(70 / 1920 * 100vw);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-family-base);
    font-size: calc(28 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    color: var(--color-white);
    background-color: #189eb8;
    border: none;
    border-radius: calc(20 / 1920 * 100vw);
    text-decoration: none;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .vacancies-page .vacancies-list.vacancies {
        padding: 0;
        padding-top: calc(40 / 430 * 100vw);
        padding-bottom: calc(130 / 430 * 100vw);
    }

    .vacancies-page .vacancies-list > .container {
        max-width: none;
        padding-left: calc(16 / 430 * 100vw);
        padding-right: calc(16 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion.vacancies__list {
        gap: calc(32 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion__item.vacancies__item {
        padding: calc(30 / 430 * 100vw);
        border-radius: calc(40 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion__header.vacancies__header {
        gap: calc(10 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion__title.vacancies__title {
        font-size: calc(32 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
    }

    .vacancies-page .vacancies-accordion__icon.vacancies__icon {
        width: calc(40 / 430 * 100vw);
        height: calc(44 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion__item.is-open .vacancies-accordion__icon.vacancies__icon {
        transform: rotate(180deg);
    }

    .vacancies-page .vacancies-accordion__content.vacancies__body {
        margin-top: calc(40 / 430 * 100vw);
        gap: calc(40 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion__text.vacancies__text {
        font-size: calc(18 / 430 * 100vw);
        font-weight: 400;
        line-height: 1.5;
        color: var(--color-neutral-900);
    }

    .vacancies-page .vacancies-accordion__text.vacancies__text p + p {
        margin-top: calc(10 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion__subsection-title.vacancies__subheading {
        font-size: calc(28 / 430 * 100vw);
        font-weight: 600;
        line-height: 1.1;
        color: var(--color-neutral-900);
        margin-top: calc(30 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion__subsection {
        gap: calc(30 / 430 * 100vw);
    }

    .vacancies-page .vacancies-accordion__list.vacancies__list-conditions {
        padding-left: calc(27 / 430 * 100vw);
        font-size: calc(18 / 430 * 100vw);
        line-height: 1.5;
    }

    .vacancies-page .vacancies-accordion__cta.vacancies__cta {
        margin-top: calc(70 / 430 * 100vw);
        padding: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
        font-size: calc(20 / 430 * 100vw);
        font-weight: 500;
        background-color: #059eac;
        border-radius: calc(20 / 430 * 100vw);
    }
}

/* === page: 404 === */

.error-404,
.index-empty {
    padding-top: calc(160 / 1920 * 100vw);
    padding-bottom: calc(120 / 1920 * 100vw);
    background-color: var(--color-neutral-250);
    box-sizing: border-box;
}

.error-404 .container,
.index-empty .container {
    max-width: calc(900 / 1920 * 100vw);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.error-404__wrapper,
.index-empty__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.error-404__code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(280 / 1920 * 100vw);
    height: calc(280 / 1920 * 100vw);
    border-radius: var(--radius-round);
    background-color: var(--color-primary-light);
    box-sizing: border-box;
}

.error-404__code span {
    display: block;
    font-family: var(--font-family-base);
    font-size: calc(120 / 1920 * 100vw);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-none);
    letter-spacing: calc(-2 / 1920 * 100vw);
    color: var(--color-primary);
}

.error-404__title,
.index-empty__title {
    margin: var(--space-xl) 0 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-neutral-900);
}

.index-empty__title {
    margin-top: 0;
}

.error-404__text,
.index-empty__text {
    max-width: calc(680 / 1920 * 100vw);
    margin: var(--space-md) 0 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-muted);
}

.error-404__actions,
.index-empty__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.error-404 .btn-primary,
.index-empty .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: calc(28 / 1920 * 100vw);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-none);
    color: var(--color-white);
    background-color: var(--color-primary);
    border: calc(2 / 1920 * 100vw) solid var(--color-primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    box-sizing: border-box;
}

.error-404 .btn-primary:hover,
.index-empty .btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--color-white);
    text-decoration: none;
}

.error-404__help,
.index-empty__help {
    width: 100%;
    max-width: calc(520 / 1920 * 100vw);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: calc(1 / 1920 * 100vw) solid var(--color-neutral-300);
    box-sizing: border-box;
}

.error-404__help p,
.index-empty__help p {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-muted);
}

.error-404__phone,
.index-empty__phone {
    display: inline-block;
    margin-top: var(--space-sm);
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-snug);
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.error-404__phone:hover,
.index-empty__phone:hover {
    color: var(--color-primary-hover);
    text-decoration: none;
}

@media (max-width: 768px) {

    .error-404,
    .index-empty {
        padding-top: calc(120 / 430 * 100vw);
        padding-bottom: calc(80 / 430 * 100vw);
    }

    .error-404 .container,
    .index-empty .container {
        max-width: 100%;
        padding-left: calc(16 / 430 * 100vw);
        padding-right: calc(16 / 430 * 100vw);
    }

    .error-404__code {
        width: calc(180 / 430 * 100vw);
        height: calc(180 / 430 * 100vw);
    }

    .error-404__code span {
        font-size: calc(72 / 430 * 100vw);
        letter-spacing: calc(-1 / 430 * 100vw);
    }

    .error-404__title,
    .index-empty__title {
        margin-top: calc(32 / 430 * 100vw);
        font-size: calc(40 / 430 * 100vw);
    }

    .index-empty__title {
        margin-top: 0;
    }

    .error-404__text,
    .index-empty__text {
        max-width: 100%;
        margin-top: calc(16 / 430 * 100vw);
        font-size: calc(18 / 430 * 100vw);
    }

    .error-404__actions,
    .index-empty__actions {
        flex-direction: column;
        width: 100%;
        gap: calc(16 / 430 * 100vw);
        margin-top: calc(40 / 430 * 100vw);
    }

    .error-404 .btn-primary,
    .index-empty .btn-primary {
        width: 100%;
        padding: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
        font-size: calc(20 / 430 * 100vw);
        border-width: calc(2 / 430 * 100vw);
        border-radius: calc(20 / 430 * 100vw);
    }

    .error-404__help,
    .index-empty__help {
        max-width: 100%;
        margin-top: calc(60 / 430 * 100vw);
        padding-top: calc(32 / 430 * 100vw);
        border-top-width: calc(1 / 430 * 100vw);
    }

    .error-404__help p,
    .index-empty__help p {
        font-size: calc(16 / 430 * 100vw);
    }

    .error-404__phone,
    .index-empty__phone {
        margin-top: calc(12 / 430 * 100vw);
        font-size: calc(24 / 430 * 100vw);
    }
}

/* === page: index === */

.index-page .news {
    padding-top: calc(160 / 1920 * 100vw);
}

.index-page .index-page__pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: calc(60 / 1920 * 100vw);
    box-sizing: border-box;
}

.index-page .index-page__pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: calc(12 / 1920 * 100vw);
    box-sizing: border-box;
}

.index-page .index-page__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: calc(48 / 1920 * 100vw);
    height: calc(48 / 1920 * 100vw);
    padding: 0 calc(12 / 1920 * 100vw);
    font-family: var(--font-family-base);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-none);
    color: var(--color-neutral-800);
    background-color: var(--color-neutral-200);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    box-sizing: border-box;
}

.index-page .index-page__pagination .page-numbers:hover,
.index-page .index-page__pagination .page-numbers.current {
    color: var(--color-white);
    background-color: var(--color-primary);
    text-decoration: none;
}

.index-page .index-page__pagination .page-numbers.dots {
    background-color: transparent;
    color: var(--color-text-muted);
    min-width: auto;
    padding: 0;
}

.index-page .index-page__pagination .page-numbers.dots:hover {
    color: var(--color-text-muted);
    background-color: transparent;
}

@media (max-width: 768px) {

    .index-page .news {
        padding-top: calc(120 / 430 * 100vw);
    }

    .index-page .index-page__pagination {
        margin-top: calc(40 / 430 * 100vw);
    }

    .index-page .index-page__pagination .nav-links {
        gap: calc(8 / 430 * 100vw);
    }

    .index-page .index-page__pagination .page-numbers {
        min-width: calc(40 / 430 * 100vw);
        height: calc(40 / 430 * 100vw);
        padding: 0 calc(10 / 430 * 100vw);
        font-size: calc(16 / 430 * 100vw);
        border-radius: calc(8 / 430 * 100vw);
    }
}
