:root {
  --color-bg: #ffffff;
  --color-ink: #141414;
  --color-muted: #656565;
  --color-chip-bg: #f3f3f3;
  --color-chip-bg-active: #f4f4f4;

  --color-fuel-bg: #f6f7f8;
  --color-fuel-title: #312702;
  --color-fuel-subtitle: #413815;
  --color-fuel-tag-bg: #5b4f20;
  --color-fuel-tag-icon: #fff1be;
  --color-fuel-ribbon-start: #ffe99e;
  --color-fuel-ribbon-end: #ffb157;

  --color-estate-start: #7392ff;
  --color-estate-end: #3864ff;

  --color-market-start: #f6f7f8;
  --color-market-end: #eaecee;
  --color-market-title: #272727;

  --page-max-width: 1300px;
  --page-padding: clamp(12px, 3vw, 24px);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fade-up 0.5s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    animation: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 20px var(--page-padding) 0;
  padding-bottom: 12px;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 598px;
  min-height: 60px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 243, 243, 0.65);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .brand__mark {
  width: 40px;
  height: 40px;
}

.brand__name {
  display: inline-block;
  max-width: 0;
  margin-left: -8px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-10px);
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-ink);
  transition: max-width 0.35s ease, margin-left 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}

.brand:hover .brand__name {
  max-width: 140px;
  margin-left: 0;
  opacity: 1;
  transform: translateX(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-ink);
}

.nav-link--active {
  color: var(--color-ink);
}

.nav-link--cta {
  background: var(--color-ink);
  color: #ffffff;
  border-radius: 999px;
}

.nav-link--cta:hover {
  background: #2b2b2b;
  color: #ffffff;
}

@media (max-width: 480px) {
  .nav-pill {
    padding: 6px 6px 6px 14px;
    gap: 8px;
  }

  .brand__name {
    display: none;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.portfolio-card--centered {
  max-width: 424px;
  margin: 0 auto;
}

.portfolio-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 31px;
  overflow: hidden;
  background: #f4f4f4;
  container-type: inline-size;
}

.portfolio-card__media-inner {
  position: absolute;
  inset: 0;
}

.portfolio-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.25s ease;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-card__media::after {
  background: rgba(0, 0, 0, 0.1);
}

.portfolio-card:hover .portfolio-card__title {
  color: #3864ff;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card__media::after {
    transition: none;
  }
}

.portfolio-card__info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-card__logo {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.portfolio-card__title {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  transition: color 0.25s ease;
}

.portfolio-card__external-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.portfolio-card__subtitle {
  margin: 0;
  color: var(--color-ink);
  opacity: 0.6;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sv-neft-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.market-visual__ring {
  position: absolute;
  left: 50%;
  top: 34.906%;
  width: 101.179%;
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 3.774cqw solid rgba(0, 0, 0, 0.03);
  pointer-events: none;
}

.market-visual__frame {
  position: absolute;
  left: 21.934%;
  top: 10.85%;
  width: 54.559%;
  height: 129.72%;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.market-visual__screen-wrap {
  position: absolute;
  left: 26.899%;
  top: 12.85%;
  width: 48.373%;
  height: 125.77%;
  overflow: hidden;
  mask-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20overflow='visible'%20style='display:%20block;'%20width='205.108'%20height='533.262'%20viewBox='0%200%20205.108%20533.262'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20id='Mask'%20d='M30.2929%20533.155C24.8703%20532.7%2020.3868%20531.392%2016.4878%20529.127C9.53388%20525.089%204.603%20518.219%202.12997%20509.124C0.994998%20504.95%200.428364%20500.571%200.154472%20493.858C-0.132292%20486.829%200.0162167%2039.1095%200.306314%2036.0891C0.875899%2030.1588%201.54978%2026.5952%202.84629%2022.6572C5.70713%2013.9676%2010.7926%207.6268%2017.9843%203.78231C22.1818%201.53846%2026.9461%200.409357%2033.5789%200.086513C37.2048%20-0.0899687%2040.9555%20-0.0223844%2058.3521%200.532893C62.9592%200.679946%2076.9142%201.12178%2089.3631%201.51474C170.235%204.06753%20168.609%204.01029%20172.907%204.45652C180.502%205.24516%20185.642%207.02975%20190.505%2010.5668C192.334%2011.8967%20195.879%2015.5238%20197.246%2017.4632C199.626%2020.8397%20201.37%2024.4753%20202.631%2028.6928C203.671%2032.1724%20204.195%2035.0848%20204.797%2040.7229C205.094%2043.5122%20205.242%20478.729%20204.947%20484.858C204.633%20491.397%20203.998%20495.867%20202.777%20500.131C200.203%20509.121%20195.069%20516.292%20188.099%20520.634C183.977%20523.202%20179.474%20524.667%20173.211%20525.478C169.245%20525.992%20167.711%20526.097%20148.266%20527.182C112.34%20529.187%2072.6632%20531.407%2057.2828%20532.272C41.0356%20533.187%2033.5733%20533.431%2030.2929%20533.155ZM129.209%2032.9034C132.044%2031.9993%20134.136%2029.8379%20135.227%2026.6847C136.355%2023.426%20135.848%2018.9912%20134.028%2016.1828C133.121%2014.7845%20131.313%2013.1524%20129.977%2012.5276C127.898%2011.5546%20127.699%2011.5412%20105.403%2010.8708C93.9346%2010.5259%2083.709%2010.2456%2082.6797%2010.2478C79.3044%2010.2551%2077.2468%2011.0071%2075.3487%2012.9271C73.2828%2015.0168%2072.2739%2017.646%2072.2739%2020.9401C72.2739%2026.5666%2075.5386%2030.9396%2080.5385%2032.0105C81.5425%2032.2255%20121.715%2033.4114%20125.364%2033.3338C127.472%2033.2889%20128.286%2033.1978%20129.209%2032.9034Z'%20fill='black'/%3e%3c/svg%3e");
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20overflow='visible'%20style='display:%20block;'%20width='205.108'%20height='533.262'%20viewBox='0%200%20205.108%20533.262'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20id='Mask'%20d='M30.2929%20533.155C24.8703%20532.7%2020.3868%20531.392%2016.4878%20529.127C9.53388%20525.089%204.603%20518.219%202.12997%20509.124C0.994998%20504.95%200.428364%20500.571%200.154472%20493.858C-0.132292%20486.829%200.0162167%2039.1095%200.306314%2036.0891C0.875899%2030.1588%201.54978%2026.5952%202.84629%2022.6572C5.70713%2013.9676%2010.7926%207.6268%2017.9843%203.78231C22.1818%201.53846%2026.9461%200.409357%2033.5789%200.086513C37.2048%20-0.0899687%2040.9555%20-0.0223844%2058.3521%200.532893C62.9592%200.679946%2076.9142%201.12178%2089.3631%201.51474C170.235%204.06753%20168.609%204.01029%20172.907%204.45652C180.502%205.24516%20185.642%207.02975%20190.505%2010.5668C192.334%2011.8967%20195.879%2015.5238%20197.246%2017.4632C199.626%2020.8397%20201.37%2024.4753%20202.631%2028.6928C203.671%2032.1724%20204.195%2035.0848%20204.797%2040.7229C205.094%2043.5122%20205.242%20478.729%20204.947%20484.858C204.633%20491.397%20203.998%20495.867%20202.777%20500.131C200.203%20509.121%20195.069%20516.292%20188.099%20520.634C183.977%20523.202%20179.474%20524.667%20173.211%20525.478C169.245%20525.992%20167.711%20526.097%20148.266%20527.182C112.34%20529.187%2072.6632%20531.407%2057.2828%20532.272C41.0356%20533.187%2033.5733%20533.431%2030.2929%20533.155ZM129.209%2032.9034C132.044%2031.9993%20134.136%2029.8379%20135.227%2026.6847C136.355%2023.426%20135.848%2018.9912%20134.028%2016.1828C133.121%2014.7845%20131.313%2013.1524%20129.977%2012.5276C127.898%2011.5546%20127.699%2011.5412%20105.403%2010.8708C93.9346%2010.5259%2083.709%2010.2456%2082.6797%2010.2478C79.3044%2010.2551%2077.2468%2011.0071%2075.3487%2012.9271C73.2828%2015.0168%2072.2739%2017.646%2072.2739%2020.9401C72.2739%2026.5666%2075.5386%2030.9396%2080.5385%2032.0105C81.5425%2032.2255%20121.715%2033.4114%20125.364%2033.3338C127.472%2033.2889%20128.286%2033.1978%20129.209%2032.9034Z'%20fill='black'/%3e%3c/svg%3e");
  mask-mode: alpha;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.market-visual__screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
  user-select: none;
}
.moove-visual__item {
  position: absolute;
  left: 11.556%;
  width: 76.887%;
  overflow: hidden;
  border-radius: 3.15%;
  container-type: inline-size;
}

.moove-visual__item--small {
  top: 9.198%;
  height: 30.896%;
  background: #ffffff;
}

.moove-visual__item--medium {
  top: 42.925%;
  height: 36.321%;
  background: #ffffff;
}

.moove-visual__item--large {
  top: 82.075%;
  height: 35.142%;
  background: #bbfc01;
}

.moove-visual__title {
  position: absolute;
  left: 5.215%;
  top: 14.832%;
  width: 54.377%;
  margin: 0;
  color: #252525;
  font-size: 7.077cqw;
  font-weight: 700;
  line-height: 1;
}

.moove-visual__weight {
  position: absolute;
  right: 5.863%;
  top: 14.832%;
  margin: 0;
  color: #252525;
  opacity: 0.6;
  font-size: 3.725cqw;
  font-weight: 500;
  white-space: nowrap;
}

.moove-visual__van-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moove-visual__van-wrap--small {
  left: -7.362%;
  top: 38.931%;
  width: 85.89%;
  height: 106.87%;
}

.moove-visual__van-wrap--medium {
  left: -8%;
  top: 32%;
  width: 100%;
  height: 82%;
}

.moove-visual__van-wrap--large {
  left: -10.123%;
  top: 34.221%;
  width: 187.117%;
  height: 161.074%;
}

.moove-visual__van {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scaleX(-1);
  pointer-events: none;
  user-select: none;
}
.chatika-visual__doodle {
  position: absolute;
  left: 12.76%;
  top: 36.32%;
  width: 74.26%;
  height: 27.24%;
  pointer-events: none;
  user-select: none;
}

.chatika-visual__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.screenshot-visual {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 4px 22.6px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  user-select: none;
}

.screenshot-visual--nedvizhka {
  left: 50%;
  top: 27.358%;
  width: 80.896%;
  height: 45.283%;
  transform: translateX(-50%);
}

.screenshot-visual--tinyclo {
  left: 50%;
  top: 50%;
  width: 73.821%;
  height: 49.528%;
  transform: translate(-50%, -50%);
}

.screenshot-visual--kosovskaya {
  left: 8.962%;
  top: 22.642%;
  width: 82.075%;
  height: 54.245%;
  border-radius: 20px;
}

.screenshot-visual-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.portfolio-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
}

.portfolio-logo--dark {
  background: var(--color-ink);
}

.portfolio-logo--bordered {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(24px, 4vw, 49px) 16px;
  padding-top: 16px;
  padding-bottom: clamp(32px, 6vw, 80px);
}

.portfolio-grid .portfolio-card--centered {
  grid-column: 1 / -1;
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  padding-top: clamp(24px, 5vw, 48px);
  padding-bottom: clamp(48px, 8vw, 96px);
  align-items: start;
}

.about-hero__photo {
  position: sticky;
  top: 108px;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  background: #111111;
}

.about-hero__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-hero__photo-img--active {
  opacity: 1;
}

.about-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.about-hero__photo:hover .about-hero__arrow {
  opacity: 1;
}

.about-hero__arrow:hover {
  background: rgba(20, 20, 20, 0.65);
}

.about-hero__arrow svg {
  width: 18px;
  height: 18px;
}

.about-hero__arrow--prev {
  left: 14px;
}

.about-hero__arrow--next {
  right: 14px;
}

.about-hero__thumbs {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.about-hero__thumb {
  appearance: none;
  padding: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  cursor: pointer;
  background: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.about-hero__thumb:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.about-hero__thumb--active {
  border-color: #ffffff;
  transform: scale(1.1);
}

.about-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__photo-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.about-hero__photo-name {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-hero__photo-role {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  padding-top: clamp(4px, 1vw, 12px);
}

.about-hero__pill {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-ink);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-hero__title {
  margin: 0 0 20px;
  color: var(--color-ink);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-hero__bio {
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--color-ink);
  opacity: 0.8;
  font-size: 16px;
  line-height: 1.6;
}

.about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 32px;
}

.about-hero__meta-item dt {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.about-hero__meta-item dd {
  margin: 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
}

.about-hero__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-hero__contact {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-chip-bg);
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.about-hero__contact:hover {
  background: var(--color-ink);
  color: #ffffff;
}

@media (max-width: 720px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__photo {
    position: relative;
    top: auto;
  }
}

.about-career {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-career__heading {
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-career__list {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.about-career__item {
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-career__item:first-child {
  padding-top: 0;
  border-top: none;
}

.about-career__item:last-child {
  padding-bottom: 0;
}

.about-career__item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.about-career__company {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-career__period {
  flex-shrink: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.about-career__desc {
  margin: 0;
  color: var(--color-ink);
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.6;
}
.sv-neft-hero {
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(32px, 6vw, 64px);
}

.sv-neft-hero__icon {
  border-radius: 20px;
  margin-bottom: 24px;
}

.sv-neft-hero__title {
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sv-neft-hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--color-fuel-bg);
}

.sv-neft-hero__badge-pill {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-fuel-tag-bg);
  color: var(--color-fuel-tag-icon);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sv-neft-hero__badge-text {
  min-width: 0;
  color: var(--color-fuel-subtitle);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.sv-neft-hero__badge-link {
  color: var(--color-fuel-subtitle);
  font-weight: 600;
  text-decoration: underline;
}

.sv-neft-hero__badge-link:hover {
  color: var(--color-fuel-title);
}

.sv-neft-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 32px;
}

.sv-neft-hero__meta-item dt {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.sv-neft-hero__meta-item dd {
  margin: 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: -webkit-fill-available;
  height: 100dvh;
  padding: clamp(16px, 6vw, 64px);
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: rgba(10, 10, 12, 0.92);
  animation: lightbox-fade-in 0.2s ease both;
}

@keyframes lightbox-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lightbox__image {
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  cursor: default;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  animation-duration: 0.28s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

.lightbox__image--next {
  animation-name: lightbox-slide-from-right;
}

.lightbox__image--prev {
  animation-name: lightbox-slide-from-left;
}

@keyframes lightbox-slide-from-right {
  from {
    opacity: 0;
    transform: translateX(32px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes lightbox-slide-from-left {
  from {
    opacity: 0;
    transform: translateX(-32px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox__image {
    animation: none;
  }
}

.lightbox__close,
.lightbox__nav {
  appearance: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.55);
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(20, 20, 20, 0.75);
}

.lightbox__close svg,
.lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.lightbox__close {
  position: fixed;
  top: calc(20px + env(safe-area-inset-top));
  right: calc(20px + env(safe-area-inset-right));
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

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

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

.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .lightbox__nav {
    display: none;
  }

  .lightbox__close {
    top: calc(12px + env(safe-area-inset-top));
    right: calc(12px + env(safe-area-inset-right));
  }
}
.sv-neft-tabs {
  padding-bottom: clamp(32px, 6vw, 64px);
}

.sv-neft-tabs__nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.sv-neft-tabs__tab {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sv-neft-tabs__tab:hover {
  color: var(--color-ink);
}

.sv-neft-tabs__tab--active {
  color: var(--color-ink);
  border-bottom-color: var(--color-ink);
}

.sv-neft-tabs__panel {
  min-height: clamp(260px, 32vw, 420px);
}

.sv-neft-tabs__banner {
  width: 100%;
  max-width: 640px;
  margin-bottom: 32px;
  border-radius: 20px;
}

.sv-neft-tabs__lead {
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--color-ink);
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.sv-neft-tabs__about-grid {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.sv-neft-tabs__about-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}

.sv-neft-tabs__about-item:first-child {
  padding-top: 0;
}

.sv-neft-tabs__about-item:last-child {
  padding-bottom: 0;
}

.sv-neft-tabs__about-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.sv-neft-tabs__about-desc {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.sv-neft-tabs__about-footnote {
  position: relative;
  margin: 4px 0 0;
  padding-left: 16px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.sv-neft-tabs__about-footnote::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-fuel-tag-bg);
  font-weight: 700;
}

.sv-neft-tabs__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.sv-neft-tabs__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-chip-bg);
  color: var(--color-muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sv-neft-tabs__chip-count {
  font-weight: 500;
  opacity: 0.55;
}

.sv-neft-tabs__chip:hover:not(.sv-neft-tabs__chip--active) {
  color: var(--color-ink);
}

.sv-neft-tabs__chip--active {
  background: var(--color-ink);
  color: #ffffff;
}

.sv-neft-tabs__screens {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-top: -12px;
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}

.sv-neft-tabs__screens:hover {
  scrollbar-color: #c4c4c4 transparent;
}

.sv-neft-tabs__screens--dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.sv-neft-tabs__screens::-webkit-scrollbar {
  height: 8px;
}

.sv-neft-tabs__screens::-webkit-scrollbar-track {
  background: transparent;
}

.sv-neft-tabs__screens::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.sv-neft-tabs__screens:hover::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.sv-neft-tabs__screen {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 200px);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  cursor: zoom-in;
  animation: sv-neft-screen-in 0.5s ease both;
}

.sv-neft-tabs__screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 414 / 897;
  object-fit: cover;
}

@keyframes sv-neft-screen-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sv-neft-tabs__screen {
    opacity: 1;
    animation: none;
  }
}
.sv-neft-showcase {
  padding-bottom: clamp(48px, 8vw, 96px);
}

.sv-neft-showcase__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-top: -12px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}

.sv-neft-showcase__row:hover {
  scrollbar-color: #c4c4c4 transparent;
}

.sv-neft-showcase__row::-webkit-scrollbar {
  height: 8px;
}

.sv-neft-showcase__row::-webkit-scrollbar-track {
  background: transparent;
}

.sv-neft-showcase__row::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.sv-neft-showcase__row:hover::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.sv-neft-showcase__item {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 170px);
  border-radius: 18px;
  overflow: hidden;
}

.sv-neft-showcase__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 414 / 897;
  object-fit: cover;
  display: block;
}

.sv-neft-showcase__cta {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 170px);
  aspect-ratio: 414 / 897;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  background: var(--color-fuel-bg);
  color: var(--color-ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
}

.sv-neft-showcase__cta:hover {
  background: #eceef0;
}

.sv-neft-showcase__cta-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.market-hero {
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(32px, 6vw, 64px);
}

.market-hero__icon {
  margin-bottom: 24px;
  border-radius: 20px;
}

.market-hero__title {
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.market-hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  padding: 14px 20px;
  border-radius: 14px;
  background: #eef5ee;
}

.market-hero__badge-pill {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #437143;
  color: #eef5ee;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.market-hero__badge-text {
  min-width: 0;
  color: #2f5030;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.market-hero__badge-link {
  color: #2f5030;
  font-weight: 600;
  text-decoration: underline;
}

.market-hero__badge-link:hover {
  color: #1f381f;
}

.market-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 32px;
}

.market-hero__meta-item dt {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.market-hero__meta-item dd {
  margin: 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
}
.market-tabs {
  padding-bottom: clamp(32px, 6vw, 64px);
}

.market-tabs__nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.market-tabs__tab {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.market-tabs__tab:hover {
  color: var(--color-ink);
}

.market-tabs__tab--active {
  color: var(--color-ink);
  border-bottom-color: var(--color-ink);
}

.market-tabs__panel {
  min-height: clamp(260px, 32vw, 420px);
}

.market-tabs__lead {
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--color-ink);
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.market-tabs__about-grid {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.market-tabs__about-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}

.market-tabs__about-item:first-child {
  padding-top: 0;
}

.market-tabs__about-item:last-child {
  padding-bottom: 0;
}

.market-tabs__about-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.market-tabs__about-desc {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.market-tabs__about-footnote {
  position: relative;
  margin: 4px 0 0;
  padding-left: 16px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.market-tabs__about-footnote::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #437143;
  font-weight: 700;
}

.market-tabs__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.market-tabs__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-chip-bg);
  color: var(--color-muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.market-tabs__chip-count {
  font-weight: 500;
  opacity: 0.55;
}

.market-tabs__chip:hover:not(.market-tabs__chip--active) {
  color: var(--color-ink);
}

.market-tabs__chip--active {
  background: var(--color-ink);
  color: #ffffff;
}

.market-tabs__screens {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-top: -12px;
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}

.market-tabs__screens:hover {
  scrollbar-color: #c4c4c4 transparent;
}

.market-tabs__screens--dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.market-tabs__screens::-webkit-scrollbar {
  height: 8px;
}

.market-tabs__screens::-webkit-scrollbar-track {
  background: transparent;
}

.market-tabs__screens::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.market-tabs__screens:hover::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.market-tabs__screen {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 200px);
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
}

.market-tabs__screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 401 / 897;
  object-fit: cover;
}
.market-showcase {
  padding-bottom: clamp(48px, 8vw, 96px);
}

.market-showcase__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-top: -12px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}

.market-showcase__row:hover {
  scrollbar-color: #c4c4c4 transparent;
}

.market-showcase__row::-webkit-scrollbar {
  height: 8px;
}

.market-showcase__row::-webkit-scrollbar-track {
  background: transparent;
}

.market-showcase__row::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.market-showcase__row:hover::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.market-showcase__item {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 170px);
  border-radius: 18px;
  overflow: hidden;
}

.market-showcase__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 401 / 897;
  object-fit: cover;
  display: block;
}

.market-showcase__cta {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 170px);
  aspect-ratio: 401 / 897;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  background: #eef5ee;
  color: var(--color-ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
}

.market-showcase__cta:hover {
  background: #dcebdc;
}

.market-showcase__cta-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.nedvizhka-hero {
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(32px, 6vw, 64px);
}

.nedvizhka-hero__icon {
  margin-bottom: 24px;
  border-radius: 20px;
}

.nedvizhka-hero__title {
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.nedvizhka-hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  padding: 14px 20px;
  border-radius: 14px;
  background: #eef1ff;
}

.nedvizhka-hero__badge-pill {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-estate-end);
  color: #eef1ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nedvizhka-hero__badge-text {
  min-width: 0;
  color: #2b3a75;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.nedvizhka-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 32px;
}

.nedvizhka-hero__meta-item dt {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.nedvizhka-hero__meta-item dd {
  margin: 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
}
.nedvizhka-tabs {
  padding-bottom: clamp(32px, 6vw, 64px);
}

.nedvizhka-tabs__nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.nedvizhka-tabs__tab {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nedvizhka-tabs__tab:hover {
  color: var(--color-ink);
}

.nedvizhka-tabs__tab--active {
  color: var(--color-ink);
  border-bottom-color: var(--color-ink);
}

.nedvizhka-tabs__panel {
  min-height: clamp(260px, 32vw, 420px);
}

.nedvizhka-tabs__banner {
  width: 100%;
  max-width: 640px;
  margin-bottom: 32px;
  border-radius: 20px;
}

.nedvizhka-tabs__lead {
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--color-ink);
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.nedvizhka-tabs__about-grid {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.nedvizhka-tabs__about-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}

.nedvizhka-tabs__about-item:first-child {
  padding-top: 0;
}

.nedvizhka-tabs__about-item:last-child {
  padding-bottom: 0;
}

.nedvizhka-tabs__about-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.nedvizhka-tabs__about-desc {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.nedvizhka-tabs__about-footnote {
  position: relative;
  margin: 4px 0 0;
  padding-left: 16px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.nedvizhka-tabs__about-footnote::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-estate-end);
  font-weight: 700;
}

.nedvizhka-tabs__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.nedvizhka-tabs__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-chip-bg);
  color: var(--color-muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nedvizhka-tabs__chip:hover:not(.nedvizhka-tabs__chip--active) {
  color: var(--color-ink);
}

.nedvizhka-tabs__chip--active {
  background: var(--color-ink);
  color: #ffffff;
}

.nedvizhka-tabs__screens {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-top: -12px;
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}

.nedvizhka-tabs__screens:hover {
  scrollbar-color: #c4c4c4 transparent;
}

.nedvizhka-tabs__screens--dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.nedvizhka-tabs__screens::-webkit-scrollbar {
  height: 8px;
}

.nedvizhka-tabs__screens::-webkit-scrollbar-track {
  background: transparent;
}

.nedvizhka-tabs__screens::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.nedvizhka-tabs__screens:hover::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.nedvizhka-tabs__screen {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 200px);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  cursor: zoom-in;
  animation: nedvizhka-screen-in 0.5s ease both;
}

.nedvizhka-tabs__screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 401 / 871;
  object-fit: cover;
}

.nedvizhka-tabs__screen--web {
  width: clamp(280px, 34vw, 480px);
  border-radius: 14px;
}

.nedvizhka-tabs__screen--web img {
  aspect-ratio: 1920 / 1080;
  border-radius: 14px;
}

@keyframes nedvizhka-screen-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nedvizhka-tabs__screen {
    opacity: 1;
    animation: none;
  }
}
.nedvizhka-showcase {
  padding-bottom: clamp(48px, 8vw, 96px);
}

.nedvizhka-showcase__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-top: -12px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}

.nedvizhka-showcase__row:hover {
  scrollbar-color: #c4c4c4 transparent;
}

.nedvizhka-showcase__row::-webkit-scrollbar {
  height: 8px;
}

.nedvizhka-showcase__row::-webkit-scrollbar-track {
  background: transparent;
}

.nedvizhka-showcase__row::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.nedvizhka-showcase__row:hover::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.nedvizhka-showcase__item {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 170px);
  border-radius: 18px;
  overflow: hidden;
}

.nedvizhka-showcase__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 401 / 871;
  object-fit: cover;
  display: block;
}

.nedvizhka-showcase__cta {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 170px);
  aspect-ratio: 414 / 897;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  background: #eef1ff;
  color: var(--color-ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
}

.nedvizhka-showcase__cta:hover {
  background: #e2e6fb;
}

.nedvizhka-showcase__cta-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.moove-hero {
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(32px, 6vw, 64px);
}

.moove-hero__icon {
  margin-bottom: 24px;
  border-radius: 20px;
}

.moove-hero__title {
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.moove-hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  padding: 14px 20px;
  border-radius: 14px;
  background: #f4fbdc;
}

.moove-hero__badge-pill {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #3f5210;
  color: #e8ffab;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.moove-hero__badge-text {
  min-width: 0;
  color: #384413;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.moove-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 32px;
}

.moove-hero__meta-item dt {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.moove-hero__meta-item dd {
  margin: 0;
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 600;
}
.moove-tabs {
  padding-bottom: clamp(32px, 6vw, 64px);
}

.moove-tabs__nav {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.moove-tabs__tab {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.moove-tabs__tab:hover {
  color: var(--color-ink);
}

.moove-tabs__tab--active {
  color: var(--color-ink);
  border-bottom-color: var(--color-ink);
}

.moove-tabs__panel {
  min-height: clamp(260px, 32vw, 420px);
}

.moove-tabs__banner {
  width: 100%;
  max-width: 640px;
  margin-bottom: 32px;
  border-radius: 20px;
}

.moove-tabs__lead {
  max-width: 640px;
  margin: 0 0 40px;
  color: var(--color-ink);
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.moove-tabs__about-grid {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.moove-tabs__about-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}

.moove-tabs__about-item:first-child {
  padding-top: 0;
}

.moove-tabs__about-item:last-child {
  padding-bottom: 0;
}

.moove-tabs__about-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.moove-tabs__about-desc {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.moove-tabs__about-footnote {
  position: relative;
  margin: 4px 0 0;
  padding-left: 16px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.moove-tabs__about-footnote::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #6b8f00;
  font-weight: 700;
}

.moove-tabs__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.moove-tabs__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-chip-bg);
  color: var(--color-muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.moove-tabs__chip:hover:not(.moove-tabs__chip--active) {
  color: var(--color-ink);
}

.moove-tabs__chip--active {
  background: var(--color-ink);
  color: #ffffff;
}

.moove-tabs__screens {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-top: -12px;
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}

.moove-tabs__screens:hover {
  scrollbar-color: #c4c4c4 transparent;
}

.moove-tabs__screens--dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.moove-tabs__screens::-webkit-scrollbar {
  height: 8px;
}

.moove-tabs__screens::-webkit-scrollbar-track {
  background: transparent;
}

.moove-tabs__screens::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.moove-tabs__screens:hover::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.moove-tabs__screen {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 200px);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  cursor: zoom-in;
  animation: moove-screen-in 0.5s ease both;
}

.moove-tabs__screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 508 / 1101;
  object-fit: cover;
}

.moove-tabs__screen--web {
  width: clamp(280px, 34vw, 480px);
  border-radius: 14px;
}

.moove-tabs__screen--web img {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
}

@keyframes moove-screen-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .moove-tabs__screen {
    opacity: 1;
    animation: none;
  }
}
.moove-showcase {
  padding-bottom: clamp(48px, 8vw, 96px);
}

.moove-showcase__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0 24px;
  margin-top: -12px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.2s ease;
}

.moove-showcase__row:hover {
  scrollbar-color: #c4c4c4 transparent;
}

.moove-showcase__row::-webkit-scrollbar {
  height: 8px;
}

.moove-showcase__row::-webkit-scrollbar-track {
  background: transparent;
}

.moove-showcase__row::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.moove-showcase__row:hover::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}

.moove-showcase__item {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 170px);
  border-radius: 18px;
  overflow: hidden;
}

.moove-showcase__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 508 / 1101;
  object-fit: cover;
  display: block;
}

.moove-showcase__cta {
  flex-shrink: 0;
  width: clamp(120px, 14vw, 170px);
  aspect-ratio: 508 / 1101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  background: #f4fbdc;
  color: var(--color-ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
}

.moove-showcase__cta:hover {
  background: #e9f7bd;
}

.moove-showcase__cta-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
