.dedicated-servers-visual {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
}

.servers-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

.server-cylinder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}
.server-cylinder--left {
  align-self: flex-end;
  margin-bottom: 0;
  position: absolute;
  top: 300px;
  left: 0px;
}
.server-cylinder--center {
  width: 300px;
  align-self: flex-end;
  margin-bottom: 30px;
  z-index: 1;
  position: absolute;
  top: 90px;
}
.server-cylinder--right {
  width: 300px;
  align-self: flex-end;
  position: absolute;
  top: 260px;
  right: -45px;
}
.server-cylinder__image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}
.server-cylinder__flag {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.server-cylinder__flag img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.server-cylinder__flag--left {
  top: 15%;
  right: -8px;
}
.server-cylinder__flag--center {
  top: 20%;
  right: -14px;
}
.server-cylinder__flag--right {
  top: -14%;
  right: -8px;
}

.server-price-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  z-index: 3;
  width: 100%;
  max-width: 229px;
  height: 120px;
}
.server-price-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #1a1a1a;
  text-align: center;
}
.server-price-card__subtitle {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: #888;
  margin-bottom: 10px;
  text-align: center;
}
.server-price-card__price {
  font-size: 20px;
  font-weight: 600;
  color: #f05243;
  line-height: 1;
  margin-bottom: 14px;
  text-align: center;
}
.server-price-card__price span {
  font-size: 13px;
  font-weight: 300;
  color: #888;
}
.server-price-card__btn {
  justify-content: center;
  gap: 6px;
  background: #f05243;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  max-width: 105px;
  max-height: 36px;
  text-align: center;
  height: 36px;
  line-height: normal;
  display: flex;
  align-items: center;
}
.server-price-card__btn:hover {
  background: #d93d2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(240, 82, 67, 0.35);
  color: #fff;
}
.server-price-card__btn svg {
  flex-shrink: 0;
}
.server-price-card--1 {
  bottom: 140px;
  left: 45px;
}
.server-price-card--2 {
  top: 5px;
  left: 176px;
}
.server-price-card--3 {
  bottom: 185px;
  right: -10px;
}

.servers-banner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 100px;
  padding: 14px 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  min-width: 420px;
  height: 68px;
}
.servers-banner__text {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
}
.servers-banner__badges {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #f05243;
  border-radius: 100px;
  position: relative;
  top: 20px;
}
.servers-banner__badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f05243;
  color: #fff;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.servers-banner__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.servers-banner__discount {
  font-size: 13px;
  font-weight: 500;
  color: #f05243;
}

.price-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  bottom: -10px;
  z-index: 1000;
}
.price-badge__title {
  background: #fff;
  border-radius: 100px;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-badge__text {
  color: var(--ui-dark, #1b1716);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.price-badge__pill {
  margin-top: -14px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid var(--ui-orange, #f05243);
  display: flex;
  align-items: stretch;
}
.price-badge__code {
  background: var(--ui-orange, #f05243);
  border-radius: 100px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-badge__code-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.price-badge__copy-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  margin: 0;
  cursor: pointer;
  line-height: 0;
  flex-shrink: 0;
  opacity: 0.8;
  position: relative;
  border-radius: 999px;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.price-badge__copy-trigger:hover {
  opacity: 1;
}
.price-badge__copy-trigger:active {
  transform: scale(0.96);
}
.price-badge__copy-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}
.price-badge__copy-trigger.copied {
  opacity: 1;
  background: rgba(40, 167, 69, 0.25);
}
.price-badge__copy-trigger.copied::after {
  content: attr(title);
  position: absolute;
  left: 50%;
  top: -36px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  animation: priceBadgeTooltip 2s ease forwards;
}
.price-badge__code-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.price-badge__code-icon.copied-animation {
  animation: priceBadgeCopySuccess 0.45s ease;
}
.price-badge__discount {
  padding: 8px 24px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-badge__discount-text {
  color: var(--ui-orange, #f05243);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

@keyframes priceBadgeCopySuccess {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes priceBadgeTooltip {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
  10% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-2px);
  }
}
@media (max-width: 1200px) {
  .dedicated-servers-visual {
    max-width: 580px;
    min-height: 420px;
  }
  .servers-stack {
    min-height: 420px;
    padding-bottom: 80px;
  }
  .server-cylinder--left {
    width: 110px;
  }
  .server-cylinder--center {
    width: 145px;
    margin-bottom: 25px;
  }
  .server-cylinder--right {
    width: 130px;
  }
  .server-price-card {
    min-width: 170px;
    padding: 16px 18px;
  }
  .server-price-card__title {
    font-size: 13px;
  }
  .server-price-card__subtitle {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .server-price-card__price {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .server-price-card__price span {
    font-size: 11px;
  }
  .server-price-card__btn {
    padding: 8px 18px;
    font-size: 13px;
  }
  .server-price-card--1 {
    top: 30%;
    left: -20px;
  }
  .server-price-card--2 {
    top: 0;
    right: -20px;
  }
  .server-price-card--3 {
    bottom: 100px;
    right: -20px;
  }
  .servers-banner {
    min-width: 360px;
    padding: 12px 22px;
  }
  .servers-banner__text {
    font-size: 13px;
  }
  .servers-banner__badge {
    padding: 6px 12px;
    font-size: 11px;
  }
  .servers-banner__discount {
    font-size: 11px;
  }
}
@media (max-width: 980px) {
  .dedicated-servers-visual {
    max-width: 100%;
    min-height: 380px;
    margin: 0 auto;
  }
  .servers-stack {
    min-height: 380px;
    padding-bottom: 70px;
  }
  .server-cylinder--left {
    width: 90px;
    top: 280px;
    left: 20px;
  }
  .server-cylinder--center {
    width: 130px;
    margin-bottom: 20px;
    top: 80px;
  }
  .server-cylinder--right {
    width: 110px;
    top: 240px;
    right: -10px;
  }
  .server-price-card {
    min-width: 150px;
    max-width: 200px;
    padding: 14px 16px;
    height: 110px;
  }
  .server-price-card__title {
    font-size: 12px;
  }
  .server-price-card__price {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .server-price-card__btn {
    padding: 6px 14px;
    font-size: 12px;
    max-width: 90px;
    max-height: 32px;
    height: 32px;
  }
  .server-price-card--1 {
    top: 28%;
    left: 10px;
  }
  .server-price-card--2 {
    top: 0;
    right: 10px;
    left: auto;
  }
  .server-price-card--3 {
    bottom: 90px;
    right: 10px;
  }
  .price-badge__title {
    padding: 12px 24px;
  }
  .price-badge__pill {
    margin-top: -12px;
  }
  .price-badge__text {
    font-size: 16px;
  }
  .price-badge__code-text {
    font-size: 14px;
  }
  .price-badge__discount-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .dedicated-servers-visual {
    max-width: 100%;
    min-height: 0;
    align-items: stretch;
  }
  .servers-stack {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    min-height: 0;
    padding: 0;
    gap: 12px;
  }
  .server-cylinder--left, .server-cylinder--center, .server-cylinder--right {
    display: none !important;
  }
  .server-price-card {
    position: static !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    transition: box-shadow 0.2s ease;
  }
  .server-price-card:active {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }
  .server-price-card__title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-align: left;
    color: #1a1a1a;
    white-space: nowrap;
  }
  .server-price-card__subtitle {
    display: none;
  }
  .server-price-card__price {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .server-price-card__price span {
    font-size: 12px;
    color: #999;
  }
  .server-price-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f05243;
    color: #fff;
    border: none;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    min-width: 0;
    max-width: none;
    max-height: none;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .server-price-card__btn:hover {
    background: #d93d2f;
    color: #fff;
  }
  .server-price-card__btn svg {
    width: 16px;
    height: 16px;
  }
  .server-price-card--2 {
    order: 1;
  }
  .server-price-card--3 {
    order: 2;
    position: relative;
  }
  .server-price-card--1 {
    order: 3;
    margin-top: 0 !important;
    border: 1px solid rgba(240, 82, 67, 0.3);
    background: #fffaf9;
  }
  .server-price-card .server-cylinder__flag {
    position: relative;
    top: auto;
    right: auto;
    width: 28px;
    height: 28px;
    z-index: 1;
    flex-shrink: 0;
    display: none;
  }
  .server-price-card .server-cylinder__flag img {
    width: 28px;
    height: 28px;
  }
  .price-badge {
    order: 4;
    position: static;
    bottom: auto;
    margin: 0;
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(240, 82, 67, 0.1);
    overflow: hidden;
  }
  .price-badge__title {
    padding: 12px 16px;
    border-radius: 0;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
  }
  .price-badge__text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }
  .price-badge__pill {
    margin-top: 0;
    flex-direction: row;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 100%;
  }
  .price-badge__code {
    border-radius: 0 !important;
    padding: 10px 14px;
    justify-content: center;
    gap: 8px;
    flex: 1;
  }
  .price-badge__code-text {
    font-size: 13px;
  }
  .price-badge__code-icon {
    width: 16px;
    height: 16px;
  }
  .price-badge__discount {
    padding: 10px 14px;
    border-top: none;
    flex: 1;
    justify-content: center;
  }
  .price-badge__discount-text {
    font-size: 13px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .servers-stack {
    padding: 0;
    gap: 10px;
  }
  .server-price-card {
    padding: 12px 14px;
    gap: 10px;
    border-radius: 12px;
  }
  .server-price-card__title {
    font-size: 13px;
  }
  .server-price-card__price {
    font-size: 15px;
  }
  .server-price-card__btn {
    padding: 7px 14px;
    font-size: 12px;
    margin: 0;
    border-radius: 6px;
  }
  .price-badge {
    border-radius: 12px;
    margin-bottom: 0;
  }
  .price-badge__title {
    padding: 10px 12px;
  }
  .price-badge__text {
    font-size: 12px;
  }
  .price-badge__code, .price-badge__discount {
    padding: 8px 12px;
  }
  .price-badge__code-text, .price-badge__discount-text {
    font-size: 11px;
  }
}/*# sourceMappingURL=dedicated-servers-visual.css.map */