:root {
    --black: #0b0b0b;
    --black-soft: #141414;
    --white: #ffffff;
    --text: #111111;
    --muted: #636363;
    --line: rgba(255, 255, 255, 0.22);
    --yellow: #f7de05;
    --green: #74bd45;
    --radius: 18px;
    --container: 1660px;
    --slide-size: clamp(250px, 30vw, 370px);
}

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

html,
body {
    margin: 0;
    padding: 0;
    font-family: Roboto, Lato, sans-serif;
    color: var(--text);
    background: #fff;
}

body {
    padding-top: 84px;
}

.no-scroll {
    overflow: hidden;
}

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

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar__inner {
    height: 84px;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 120px;
}

.brand__logo {
    height: 72px;
    display: block;
}

.nav {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 500;
    font-size: 18px;
}

.nav a.is-active,
.nav a:hover {
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: transparent;
    padding: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang {
    display: flex;
    gap: 8px;
}

.lang-btn {
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.lang-btn.is-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn {
    border: none;
    padding: 11px 14px;
    border-radius: 10px;
    font-weight: 800;
    font-family: Lato, Roboto, sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: transparent;
}

.btn-outline-dark {
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.35);
    background: transparent;
}

.btn-yellow {
    background: var(--yellow);
    color: #151515;
}

.btn-green {
    background: var(--green);
    color: #0d1a13;
}

.hero {
    min-height: 640px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 48px 0;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.46);
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    width: 100%;
    align-items: start;
}

.hero__left {
    padding-left: 120px;
}

.hero__left-wrap {
    max-width: 620px;
    width: 100%;
    margin-top: 0;
}

.hero__left h1 {
    margin: 0 0 12px;
    font-size: 54px;
    color: #fff;
    font-family: Lato, Roboto, sans-serif;
}

.hero__left .lead {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.94);
    max-width: 600px;
    line-height: 1.5;
}

.hero__bullets {
    margin: 0 0 18px;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.94);
}

.hero__bullets li {
    margin: 8px 0;
}

.vcols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vcol__viewport {
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
}

.vloop {
    display: flex;
    flex-direction: column;
    gap: 14px;
    will-change: transform;
}

.vloop__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vthumb {
    height: 186px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
    display: block;
    text-decoration: none;
}

.vthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vthumb__label {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    background: rgba(0, 0, 0, 0.58);
    padding: 8px 10px;
    border-radius: 10px;
}

.vthumb--plain {
    pointer-events: none;
}

@keyframes vUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(calc(-1 * var(--v-distance)));
    }
}

@keyframes vDown {
    from {
        transform: translateY(calc(-1 * var(--v-distance)));
    }
    to {
        transform: translateY(0);
    }
}

.vcol.vrun .vloop {
    animation: vUp var(--v-duration, 40s) linear infinite;
}

.vcol.is-down.vrun .vloop {
    animation: vDown var(--v-duration, 40s) linear infinite;
}

.section {
    padding: 46px 0;
}

.section--white {
    background: #fff;
}

.section--dark {
    background: var(--black);
    color: #fff;
}

.section__title {
    margin: 0 0 18px;
    font-size: 34px;
    font-family: Lato, Roboto, sans-serif;
    font-weight: 900;
}

.section__title--dark {
    color: #fff;
}

.section__intro {
    margin: 0;
    color: var(--muted);
}

.section__intro--light {
    color: rgba(255, 255, 255, 0.72);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
    margin-bottom: 18px;
}

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

.icon {
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}

.icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.icon span {
    font-weight: 900;
}

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

.triple img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.triple img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.plan {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.plan__name {
    margin: 0;
    text-align: center;
    padding: 22px 16px 14px;
    color: #51555f;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.plan__img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.plan .btn {
    margin: 18px auto 22px;
    min-width: 210px;
    height: 46px;
    border-radius: 12px;
    font-size: 16px;
}

.mt-48 {
    margin-top: 28px;
}

#coworking > .container {
    max-width: 1180px;
    margin: 0 auto;
}

#coworking .section__title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 22px;
    color: #3b3f4a;
    letter-spacing: -0.4px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.tablebox {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    overflow: hidden;
    background: #0f0f0f;
}

.cmp {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-weight: 700;
}

.cmp th,
.cmp td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cmp th:not(:first-child),
.cmp td:not(:first-child) {
    text-align: center;
}

.cmp .cmp-cell--yes {
    background: #0f0f0f url("../../checkmark-symbol-png-background-12.png") center no-repeat;
    background-size: 18px 18px;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.cmp .cmp-cell--no {
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.cmp th {
    background: #141414;
    font-weight: 900;
}

.cmp tr:last-child td {
    border-bottom: 0;
}

.compare-mobile {
    display: none;
}

.compare-mobile__card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #0f0f0f;
    overflow: hidden;
}

.compare-mobile__card--green {
    border-color: rgba(116, 189, 69, 0.5);
}

.compare-mobile__card--yellow {
    border-color: rgba(247, 222, 5, 0.5);
}

.compare-mobile__head {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-mobile__head h3 {
    margin: 0;
    font-size: 20px;
    font-family: Lato, Roboto, sans-serif;
}

.compare-mobile__list {
    list-style: none;
    margin: 0;
    padding: 6px 18px 18px;
}

.compare-mobile__list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.compare-mobile__list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.compare-mobile__status {
    width: 18px;
    height: 18px;
}

.compare-mobile__status.is-available {
    background: #0f0f0f url("../../checkmark-symbol-png-background-12.png") center no-repeat;
    background-size: 16px 16px;
    border-color: rgba(255, 255, 255, 0.18);
}

.mini {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mini__card {
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    background: #0f0f0f;
    transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.27, 1), box-shadow 0.28s ease;
    will-change: transform;
}

.mini__card--green {
    border-color: #74bd45;
}

.mini__card--yellow {
    border-color: #f7de05;
}

.mini__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
    align-items: start;
}

.mini__img {
    width: 100%;
    height: 230px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.27, 1), box-shadow 0.28s ease;
}

.mini__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.mini__card:hover .mini__img {
    transform: translateY(-6px) scale(1.04);
}

.mini__body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-family: Lato, Roboto, sans-serif;
    font-weight: 900;
    color: #fff;
}

.mini__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.mini__list li {
    display: flex;
    gap: 10px;
}

.check {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    flex: 0 0 10px;
    border-radius: 999px;
    background: #fff;
    opacity: 0.86;
}

.mini__actions {
    margin-top: 12px;
}

.meeting-carousel {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meeting-carousel__viewport {
    flex: 1;
    position: relative;
    height: 430px;
    overflow: hidden;
}

.meeting-carousel__track {
    position: relative;
    height: 100%;
}

.meeting-slide {
    position: absolute;
    left: 50%;
    top: 0;
    width: var(--slide-size);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
    opacity: 0;
    transform: translateX(-50%) scale(0.78);
    transition: transform 420ms ease, opacity 420ms ease, filter 420ms ease, box-shadow 420ms ease;
    filter: saturate(0.8) brightness(0.82);
    pointer-events: none;
}

.meeting-slide__img {
    width: 100%;
    height: 238px;
    object-fit: cover;
    display: block;
}

.meeting-slide__body {
    padding: 12px;
    text-align: center;
}

.meeting-slide__body h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #121212;
}

.meeting-slide__body p {
    color: #2b2b2b;
    margin: 0 0 8px;
    min-height: 25px;
}

.meeting-slide.is-active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: none;
    z-index: 4;
    pointer-events: auto;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.meeting-slide.is-prev {
    opacity: 0.72;
    transform: translateX(calc(-50% - var(--slide-size) * 0.78)) scale(0.86);
    z-index: 3;
}

.meeting-slide.is-next {
    opacity: 0.72;
    transform: translateX(calc(-50% + var(--slide-size) * 0.78)) scale(0.86);
    z-index: 3;
}

.meeting-slide.is-hidden {
    opacity: 0;
    transform: translateX(calc(-50% + var(--slide-size) * 1.5)) scale(0.72);
    z-index: 1;
}

.meeting-slide.is-hidden-left {
    opacity: 0;
    transform: translateX(calc(-50% - var(--slide-size) * 1.5)) scale(0.72);
    z-index: 1;
}

.carousel-control {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.1);
}

.meeting-dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.meeting-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.meeting-dots button.is-active {
    background: #fff;
}

.conf {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 46px;
    align-items: start;
}

.conf__title {
    font-family: Lato, Roboto, sans-serif;
    font-weight: 900;
    font-size: 36px;
    margin: 0 0 16px;
}

.conf__photo {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.conf__photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.conf__name {
    font-family: Lato, Roboto, sans-serif;
    font-weight: 900;
    font-size: 28px;
    margin: 10px 0 18px;
}

.conf__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.conf__list li {
    position: relative;
    padding: 18px 0 18px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    font-size: 18px;
    font-weight: 600;
}

.conf__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4aa83a;
    box-shadow: 0 0 0 3px rgba(74, 168, 58, 0.18);
}

.conf__actions {
    margin-top: 18px;
}

.conf__list--yellow li::before {
    background: #f2c400;
    box-shadow: 0 0 0 3px rgba(242, 196, 0, 0.22);
}

.private {
    background: #fff;
    padding: 0 0 30px;
}

.private__title {
    margin: 0;
    font-size: 40px;
    padding: 30px 0 14px;
}

.private__hero {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.private__img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.private__overlay {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: min(520px, calc(100% - 32px));
    background: #fff;
    border-radius: 12px;
    padding: 14px 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.private__overlay p {
    margin: 0;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 13px;
}

.stats {
    background: #fff;
    padding: 46px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    align-items: center;
}

.stat {
    text-align: center;
    padding: 18px 10px;
}

.stat__k {
    font-weight: 900;
    font-family: Lato, Roboto, sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.stat__v {
    font-weight: 900;
    font-family: Lato, Roboto, sans-serif;
    font-size: 40px;
}

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

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

.content-card {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background: #fff;
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.content-card--dark {
    background: #1b1b1b;
    border-color: rgba(255, 255, 255, 0.15);
}

.content-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.content-card__body {
    padding: 14px;
}

.content-card__meta {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--muted);
}

.content-card--dark .content-card__meta,
.content-card--dark h3,
.content-card--dark p {
    color: rgba(255, 255, 255, 0.86);
}

.content-card__body h3 {
    margin: 0 0 8px;
}

.content-card__body p {
    margin: 0;
}

.content-card--page {
    height: 100%;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.content-card--page img {
    height: 270px;
}

.content-card--page .content-card__body {
    padding: 18px 18px 20px;
}

.content-card--page .meta-stack {
    gap: 6px;
    margin-bottom: 12px;
    color: #727272;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.content-card--page .content-card__body h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.08;
    font-family: Lato, Roboto, sans-serif;
}

.content-card--page .content-card__body p {
    color: #424242;
    line-height: 1.68;
}

.content-card--page:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    color: #111;
    font-weight: 800;
}

.article-back::before {
    content: "←";
    font-size: 16px;
    line-height: 1;
}

.article-back--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.meta-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background: linear-gradient(120deg, #ffe36f 0%, #f5f5f5 100%);
}

.inner-hero--dark {
    background: linear-gradient(130deg, #1a1a1a 0%, #313131 100%);
    color: #fff;
}

.inner-hero--story {
    padding: 44px 0 58px;
}

.inner-hero h1 {
    margin: 0 0 10px;
    font-size: 46px;
}

.inner-hero p {
    margin: 0;
    max-width: 760px;
    color: inherit;
    opacity: 0.9;
}

.story-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.88fr);
    gap: 38px;
    align-items: end;
}

.story-hero__copy {
    max-width: 700px;
}

.story-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    color: #111;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inner-hero--dark .story-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.story-hero__copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.story-lead {
    max-width: 58ch;
    font-size: 18px;
    line-height: 1.72;
}

.story-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.story-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 17, 17, 0.08);
    font-weight: 700;
    color: #111;
}

.inner-hero--dark .story-pill {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.story-hero__media {
    min-height: 470px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.14);
}

.story-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    display: block;
}

.story-shell {
    padding: 0 0 76px;
}

.story-shell--event {
    background: linear-gradient(180deg, #edf5df 0%, #ffffff 220px);
}

.story-shell--blog {
    background: linear-gradient(180deg, #f2efe8 0%, #ffffff 220px);
}

.story-shell__container {
    margin-top: -34px;
    position: relative;
    z-index: 1;
}

.story-article {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 46px);
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.story-article__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.story-article__line {
    width: 58px;
    height: 4px;
    flex: 0 0 58px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%);
}

.story-article__head h2 {
    margin: 0;
    font-size: 30px;
    font-family: Lato, Roboto, sans-serif;
}

.story-prose {
    color: #232323;
    font-size: 18px;
    line-height: 1.9;
}

.story-prose p {
    margin: 0 0 1.2em;
}

.story-prose p:last-child {
    margin-bottom: 0;
}

.contacts {
    background: #fff;
    padding: 0 0 48px;
}

.contacts__grid {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contacts__map iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
}

.contacts__panel {
    background: var(--black);
    color: #fff;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.contacts__panel h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.citem {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.cicon {
    color: var(--yellow);
}

.contacts__footer {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.follow__title {
    font-weight: 900;
    margin-bottom: 8px;
}

.soc {
    display: inline-flex;
    margin-right: 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
}

.copy {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.linklike {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: rgba(0, 0, 0, 0.58);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal-backdrop.is-open {
    display: flex;
}

.modal {
    width: min(560px, 100%);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
}

.modal__close {
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.modal__body {
    padding: 14px;
}

.form {
    display: grid;
    gap: 12px;
}

.field label {
    display: block;
    font-weight: 900;
    margin-bottom: 6px;
    font-family: Lato, Roboto, sans-serif;
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    font-family: Roboto, Lato, sans-serif;
}

.field input[readonly] {
    background: #f6f6f6;
}

.form-status {
    margin: 0;
    min-height: 20px;
    font-size: 13px;
    font-weight: 700;
}

.form-status.is-success {
    color: #2f7d22;
}

.form-status.is-error {
    color: #c53333;
}

.form__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.privacy-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1350;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.privacy-backdrop.is-open {
    display: flex;
}

.privacy {
    width: min(860px, 100%);
    max-height: 85vh;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.privacy__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    background: #fafafa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 900;
    font-family: Lato, Roboto, sans-serif;
}

.privacy__close {
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.privacy__body {
    padding: 18px;
    overflow: auto;
    max-height: calc(85vh - 56px);
    color: #111;
}

.privacy__body h2 {
    margin: 0 0 10px;
}

.privacy__body h3 {
    margin: 18px 0 8px;
}

.privacy__body p,
.privacy__body li {
    color: #333;
    line-height: 1.55;
}

.imgbackdrop {
    position: fixed;
    inset: 0;
    z-index: 1400;
    background: rgba(0, 0, 0, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.imgbox {
    width: min(1120px, 100%);
    margin: 0;
}

.imgbox img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

img.zoomable {
    cursor: zoom-in;
}

@media (max-width: 1100px) {
    body {
        padding-top: 76px;
    }

    .topbar__inner {
        height: 76px;
        gap: 10px;
        position: relative;
    }

    .brand__logo {
        height: 36px;
    }

    .brand {
        margin-left: 0;
    }

    .topbar__right {
        gap: 8px;
        margin-left: auto;
    }

    .topbar__right .btn-outline {
        display: none;
    }

    .lang-btn {
        padding: 6px 10px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        padding: 12px 16px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
        z-index: 1100;
    }

    .topbar.is-menu-open .nav {
        display: flex;
    }

    .nav a {
        font-size: 16px;
        width: 100%;
        padding: 4px 0;
    }

    .topbar__right {
        margin-left: 0;
    }

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

    .hero__left {
        padding-left: 0;
    }

    .hero__left h1 {
        font-size: 42px;
    }

    .hero__left .lead {
        font-size: 15px;
    }

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

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

    .icon {
        padding: 20px;
    }

    .icon img {
        width: 38px;
        height: 38px;
    }

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

    .plan {
        min-height: auto;
    }

    .plan__img {
        height: 200px;
    }

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

    .tablebox {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cmp {
        min-width: 620px;
    }

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

    .conf {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .conf__photo img {
        height: 300px;
    }

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

    .cards-grid,
    .cards-grid--full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .contacts__map iframe {
        height: 350px;
    }

    .private__img {
        height: 360px;
    }

    .private__overlay {
        position: static;
        width: 100%;
        border-radius: 0;
        display: block;
    }

    .private__overlay .btn {
        margin-top: 12px;
    }

    .content-card--page img {
        height: 240px;
    }

    .story-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .story-hero__media,
    .story-hero__media img {
        min-height: 340px;
    }

    .story-shell__container {
        margin-top: -24px;
    }
}

@media (max-width: 900px) {
    .tablebox {
        display: none;
    }

    .compare-mobile {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .mini {
        gap: 16px;
    }

    .mini__card {
        padding: 16px;
    }

    .mini__img {
        height: 220px;
        border-radius: 16px;
    }

    .mini__actions .btn {
        width: 100%;
    }
}

@media (max-width: 760px) {
    body {
        padding-top: 72px;
    }

    .topbar__inner {
        height: 72px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    .menu-toggle span {
        width: 16px;
    }

    .brand__logo {
        height: 32px;
    }

    .btn-outline {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .section {
        padding: 38px 0;
    }

    .hero__left h1 {
        font-size: 34px;
    }

    .section__title {
        font-size: 28px;
    }

    .vcol__viewport {
        height: 360px;
    }

    .vthumb {
        height: 160px;
    }

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

    .icon {
        padding: 16px;
    }

    .icon span {
        font-size: 14px;
    }

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

    .triple img {
        height: 300px;
    }

    .meeting-carousel__viewport {
        height: 390px;
    }

    .meeting-slide.is-prev,
    .meeting-slide.is-next {
        opacity: 0;
    }

    .carousel-control {
        width: 38px;
        height: 38px;
    }

    .private__img {
        height: 320px;
    }

    .split {
        gap: 18px;
    }

    .compare-mobile__card {
        border-radius: 20px;
    }

    .compare-mobile__head {
        padding: 14px 16px;
    }

    .compare-mobile__head h3 {
        font-size: 18px;
    }

    .compare-mobile__list {
        padding: 4px 16px 14px;
    }

    .compare-mobile__list li {
        gap: 12px;
        padding: 11px 0;
        font-size: 14px;
    }

    .mini {
        gap: 14px;
    }

    .mini__card {
        border-radius: 20px;
        padding: 12px;
    }

    .mini__img {
        height: 190px;
    }

    .mini__body h3 {
        font-size: 20px;
    }

    .mini__list {
        gap: 12px;
    }

    .mini__list li {
        font-size: 14px;
    }

    .mini__actions {
        margin-top: 14px;
    }

    .mini__actions .btn {
        width: 100%;
        min-height: 46px;
    }

    .content-card--page {
        border-radius: 20px;
    }

    .content-card--page img {
        height: 220px;
    }

    .content-card--page .content-card__body {
        padding: 16px;
    }

    .content-card--page .content-card__body h3 {
        font-size: 22px;
    }

    .inner-hero--story {
        padding: 34px 0 40px;
    }

    .article-back {
        margin-bottom: 18px;
        padding: 9px 14px;
    }

    .story-hero__copy h1 {
        font-size: 34px;
    }

    .story-lead {
        font-size: 16px;
    }

    .story-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .story-hero__media {
        border-radius: 20px;
        min-height: auto;
    }

    .story-hero__media img {
        min-height: 0;
        height: 250px;
    }

    .story-shell__container {
        margin-top: -16px;
    }

    .story-article {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .story-article__head h2 {
        font-size: 24px;
    }

    .story-prose {
        font-size: 16px;
    }

    .conf__photo img {
        height: 260px;
    }

    .cmp {
        min-width: 560px;
    }

    .cards-grid,
    .cards-grid--full {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: start;
    }

    .contacts__map iframe {
        height: 300px;
    }

    .stat__v {
        font-size: 34px;
    }

    .contacts__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
