.product-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.product-switcher {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
  min-height: 48px;
}
.product-switcher-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15, 16, 22, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-switcher-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(196,181,253,0.55);
  box-shadow: 0 10px 32px rgba(99,102,241,0.22);
}
.product-switcher-icon {
  display: block;
  flex-shrink: 0;
}
.product-switcher-btn.is-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-title-row h2 {
  margin: 0;
}
.product-popular-badge,
.product-new-badge {
  display: inline-block;
  flex: 0 0 auto;
  padding: 3px 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-popular-badge {
  background: linear-gradient(90deg, #6366f1 0%, #d946ef 100%);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.product-new-badge {
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 100%);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.32);
}
.product-pres {
  position: relative;
  padding: 72px 0 88px;
  background: #09090f;
  overflow: hidden;
}
.product-pres::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 320px at 18% 12%, rgba(99, 102, 241, 0.18), transparent 70%),
    radial-gradient(560px 300px at 86% 88%, rgba(236, 72, 153, 0.12), transparent 72%),
    radial-gradient(420px 220px at 50% 50%, rgba(168, 85, 247, 0.08), transparent 70%);
}
.product-pres .center {
  position: relative;
  z-index: 1;
}
.product-pres-head {
  text-align: center;
  margin-bottom: 36px;
}
.product-pres-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.8);
}
.product-pres-head h2 {
  margin: 0 0 8px;
  color: #fff;
  font: 24px Opensans, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-pres-hint {
  margin: 0 auto;
  max-width: 520px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.5;
}
.product-pres-head .product-faq-cta {
  margin-top: 18px;
}
.product-pres-head--left {
  text-align: left;
  margin-bottom: 0;
}
.product-pres-head--left .product-pres-hint {
  margin-left: 0;
  margin-right: 0;
}

.product-pres-stage {
  position: relative;
  height: 560px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.product-pres-slide {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 0;
  bottom: 36px;
  opacity: 0;
  transform: scale(0.84);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.product-pres-slide.is-prev,
.product-pres-slide.is-next {
  opacity: 0.38;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}
.product-pres-slide.is-prev { transform: translateX(-76%) scale(0.78); }
.product-pres-slide.is-next { transform: translateX(76%) scale(0.78); }
.product-pres-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 4;
  pointer-events: auto;
  cursor: zoom-in;
}
.product-pres-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.04) 42%, rgba(168,85,247,0.35));
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(99, 102, 241, 0.12);
}
.product-pres-slide.is-active .product-pres-frame {
  box-shadow:
    0 48px 90px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(168, 85, 247, 0.18);
}
.product-pres-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 23px;
  background: #111218;
}
.product-pres-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(10, 10, 16, 0.62);
  backdrop-filter: blur(12px);
  color: #fff;
  opacity: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
}
.product-pres-slide.is-active:hover .product-pres-zoom { opacity: 1; }

.product-pres-nav {
  position: absolute;
  top: 46%;
  z-index: 6;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(15, 16, 22, 0.55);
  backdrop-filter: blur(16px);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.product-pres-nav:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.06);
}
.product-pres-prev { left: 8px; }
.product-pres-next { right: 8px; }
.product-pres-count {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
}

.product-pres-thumbs {
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.product-pres-thumb {
  position: relative;
  z-index: 8;
  width: 92px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #15161e;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.product-pres-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.product-pres-thumb.is-active,
.product-pres-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(196, 181, 253, 0.7);
}

.product-pres-lb {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 10, 0.88);
  backdrop-filter: blur(18px);
}
.product-pres-lb.is-open { display: flex; }
.product-pres-lb-imgwrap {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  touch-action: pan-y;
}
.product-pres-lb img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  background: #0b0b12;
}
.product-pres-lb-close,
.product-pres-lb-nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(20, 20, 28, 0.7);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.product-pres-lb-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 22px;
}
.product-pres-lb-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 30px;
  transform: translateY(-50%);
}
.product-pres-lb-prev { left: 24px; }
.product-pres-lb-next { right: 24px; }
.product-pres-lb-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: 0.18em;
  font-size: 13px;
}
body.pres-lb-open { overflow: hidden; }

@media (max-width: 900px) {
  .product-pres-stage { height: 380px; }
  .product-switcher {
    margin-bottom: 14px;
    min-height: 40px;
  }
  .product-switcher-btn {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .product-switcher-icon {
    width: 18px;
    height: 18px;
  }
  .product-pres-slide { left: 6%; right: 6%; }
  .product-pres-slide.is-prev { transform: translateX(-88%) scale(0.82); }
  .product-pres-slide.is-next { transform: translateX(88%) scale(0.82); }
  .product-pres-nav { width: 40px; height: 40px; font-size: 22px; }
  .product-pres-thumb { width: 68px; height: 42px; }
  .product-pres-lb-nav { display: none; }
  .product-pres-slide.is-active .product-pres-zoom { opacity: 1; }
}
@media (max-width: 600px) {
  .product-pres { padding: 48px 0 56px; }
  .product-pres-stage { height: 240px; }
  .product-pres-slide { left: 0; right: 0; bottom: 28px; }
  .product-pres-slide.is-prev,
  .product-pres-slide.is-next { opacity: 0; pointer-events: none; }
  .product-pres-nav { width: 36px; height: 36px; }
  .product-pres-prev { left: 4px; }
  .product-pres-next { right: 4px; }
  .product-pres-thumbs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .product-pres-thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 40px;
  }
}

.vps-plan-price.has-off {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}
.vps-plan-price-was {
  display: block;
  width: 100%;
  margin: 0;
  color: #8b90a4;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: line-through;
}
.vps-plan-save.is-on {
  display: inline-block;
  width: auto;
  flex: 0 0 auto;
  align-self: center;
  margin: 0 0 2px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.14);
  border: 1px solid rgba(251, 191, 36, 0.4);
  white-space: nowrap;
}
.vps-plan-price.has-off .vps-plan-price-value {
  background: linear-gradient(90deg, #fff 0%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-news {
  position: relative;
  padding: 72px 0 96px;
  background: #07070b;
  overflow: hidden;
}
.product-news::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 280px at 12% 0%, rgba(99,102,241,.16), transparent 70%),
    radial-gradient(480px 240px at 90% 100%, rgba(232,121,249,.1), transparent 72%);
}
.product-news .center,
.product-news .product-pres-head {
  position: relative;
  z-index: 1;
}
.product-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.product-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(380px 120px at 0% 0%, rgba(99,102,241,.12), transparent 70%),
    rgba(12,12,18,.9);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  transition: transform .25s ease, border-color .25s ease;
}
.product-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(167,139,250,.42);
}
.product-news-img {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0c0c12;
}
.product-news-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-news-card:hover .product-news-img img {
  transform: scale(1.04);
}
.product-news-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 20px;
}
.product-news-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c4b5fd;
}
.product-news-body strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.product-news-body em {
  color: #9ca3af;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
}
.product-news-more {
  margin-top: 4px;
  color: #a78bfa;
  font-size: 13px;
  font-weight: 700;
}

.product-about {
  position: relative;
  padding: 110px 0 80px;
  background: #0a0a0f;
  overflow: hidden;
}
.product-about::before,
.product-about::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.product-about::before {
  width: 520px;
  height: 520px;
  left: -120px;
  top: 40px;
  background: rgba(99, 102, 241, 0.16);
}
.product-about::after {
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -60px;
  background: rgba(236, 72, 153, 0.12);
}
.product-about .center {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}
.product-about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap: 72px 80px;
  align-items: start;
}
.product-about-intro {
  position: sticky;
  top: 130px;
}
.product-about-intro h2 {
  margin: 0 0 10px;
  color: #fff;
  font: 24px Opensans, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-about-intro .product-pres-hint {
  margin: 0 0 22px;
  max-width: 360px;
}
.product-about-copy {
  max-width: 400px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 15px;
  line-height: 1.65;
}
.product-about-copy p {
  margin: 0 0 14px;
}
.product-about-copy p:last-child {
  margin-bottom: 0;
}
.product-docs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font: 14px Opensansb, sans-serif;
  background:
    linear-gradient(#15151e, #15151e) padding-box,
    linear-gradient(145deg, rgba(165,180,252,.9), rgba(232,121,249,.55), rgba(251,191,36,.45)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(99,102,241,.16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-docs:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(99,102,241,.22);
  color: #fff;
}
.product-docs-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: #fde68a;
  background: linear-gradient(135deg, rgba(99,102,241,.35), rgba(217,70,239,.2));
}
.product-about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-about-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 48%),
    rgba(15, 16, 26, 0.72);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.product-about-row:hover {
  border-color: rgba(167, 139, 250, 0.38);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(139, 92, 246, 0.12);
}
.product-about-ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #c4b5fd;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.28);
}
.product-about-row h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.product-about-row p {
  margin: 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .product-about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-about-intro {
    position: static;
  }
  .product-about-copy,
  .product-about-intro .product-pres-hint {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .product-about {
    padding: 72px 0 56px;
  }
}

.product-forum {
  position: relative;
  padding: 72px 0 96px;
  background: #07070b;
  overflow: hidden;
}
.product-forum::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 260px at 8% 0%, rgba(99,102,241,.18), transparent 70%),
    radial-gradient(460px 240px at 92% 100%, rgba(251,191,36,.1), transparent 72%);
}
.product-forum .center,
.product-forum .product-pres-head {
  position: relative;
  z-index: 1;
}
.product-forum-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.product-forum-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  background:
    linear-gradient(#12121a, #12121a) padding-box,
    linear-gradient(145deg, rgba(165,180,252,.85), rgba(232,121,249,.55), rgba(251,191,36,.42)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 40px rgba(99,102,241,.16), 0 0 28px rgba(251,191,36,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-forum-card:before {
  content: '';
  position: absolute;
  top: -48px;
  right: -24px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,.22), transparent 70%);
  pointer-events: none;
}
.product-forum-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(99,102,241,.22), 0 0 32px rgba(251,191,36,.12);
}
.product-forum-ico {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fde68a;
  background: linear-gradient(135deg, rgba(99,102,241,.35), rgba(217,70,239,.22));
}
.product-forum-body {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-forum-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
  color: rgba(196,181,253,.75);
}
.product-forum-chip {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  font: 11px Opensansb, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.28);
}
.product-forum-body strong {
  font: 18px Opensansb, sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.product-forum-body em {
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(203,213,225,.7);
}
.product-forum-go {
  position: relative;
  flex: 0 0 auto;
  font: 13px Opensansb, sans-serif;
  white-space: nowrap;
  background: linear-gradient(90deg, #a5b4fc 0%, #e879f9 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 720px) {
  .product-forum {
    padding: 56px 0 64px;
  }
  .product-forum-card {
    flex-wrap: wrap;
    padding: 18px 18px 16px;
  }
  .product-forum-go {
    width: 100%;
    margin-left: 66px;
  }
}

.product-fmap {
  position: relative;
  padding: 72px 0 88px;
  background: #09090f;
  overflow: hidden;
}
.product-fmap::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 280px at 12% 0%, rgba(236, 72, 153, 0.14), transparent 70%),
    radial-gradient(520px 260px at 88% 100%, rgba(99, 102, 241, 0.16), transparent 72%);
}
.product-fmap .center,
.product-fmap .product-pres-head {
  position: relative;
  z-index: 1;
}
.product-fmap-note {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  max-width: 860px;
  margin: 0 auto 28px;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(236, 72, 153, 0.28);
  background:
    linear-gradient(165deg, rgba(236, 72, 153, 0.14) 0%, rgba(99, 102, 241, 0.08) 55%, rgba(15, 16, 26, 0.7) 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), 0 0 28px rgba(236, 72, 153, 0.08);
}
.product-fmap-note-tag {
  flex: 0 0 auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #db2777, #9333ea);
  color: #fff;
  font: 11px Opensansb, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(219, 39, 119, 0.35);
}
.product-fmap-note p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 14px;
  line-height: 1.5;
}
.product-fmap-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.product-fmap-col {
  padding: 22px 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 48%),
    rgba(15, 16, 26, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.product-fmap-col h3 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f9a8d4;
  font: 11px Opensansb, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-fmap-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-fmap-col li {
  position: relative;
  padding-left: 14px;
}
.product-fmap-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e879f9;
  box-shadow: 0 0 10px rgba(232, 121, 249, 0.55);
}
.product-fmap-col strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.product-fmap-col em {
  display: block;
  font-style: normal;
  color: rgba(203, 213, 225, 0.7);
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 1280px) {
  .product-fmap-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .product-fmap-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .product-fmap {
    padding: 56px 0 64px;
  }
  .product-fmap-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .product-fmap-map {
    grid-template-columns: minmax(0, 1fr);
  }
}
