﻿/* Page-specific styles (pricing, logo, custom select, hero lead, scroll) */
#pricing details summary { list-style: none; }
#pricing details summary::-webkit-details-marker { display: none; }
#pricing details[open] summary .pricing-chev { transform: rotate(180deg); }

#pricing .pricing-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 1;
  column-gap: 2.5rem;
}
@media (min-width: 768px) {
  #pricing .pricing-rows--two-cols {
    column-count: 2;
  }
  #pricing .pricing-rows--three-cols {
    column-count: 3;
  }
}
#pricing .pricing-row {
  display: block;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  padding: 0.65rem 0 0.85rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
}
#pricing .pricing-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#pricing .pricing-row-label {
  display: block;
  line-height: 1.45;
  margin-bottom: 0.35rem;
}
#pricing .pricing-row-value {
  display: block;
  line-height: 1.45;
}
@media (min-width: 768px) {
  #pricing .pricing-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem 1.25rem;
  }
  #pricing .pricing-row-label {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
    padding-right: 0.5rem;
  }
  #pricing .pricing-row-value {
    flex: 0 0 auto;
    text-align: right;
    white-space: nowrap;
  }
}

#pricing .pricing-catalog details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#pricing .pricing-catalog details:first-of-type {
  border-top: none;
}
#pricing .pricing-catalog summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
#pricing .pricing-catalog summary::-webkit-details-marker {
  display: none;
}
#pricing .pricing-catalog details[open] summary .pricing-chev {
  transform: rotate(180deg);
}
#pricing .pricing-catalog .pricing-rows {
  padding-bottom: 0.35rem;
}
#pricing .pricing-catalog .pricing-row {
  padding: 0.45rem 0 0.55rem;
  margin-bottom: 0;
}

#pricing .pricing-outer-catalog > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display, inherit);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.35;
  color: #fff;
}
#pricing .pricing-outer-catalog > summary::-webkit-details-marker {
  display: none;
}
#pricing .pricing-outer-catalog > summary .pricing-outer-hint {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(156, 163, 175, 1);
  flex: 1 1 auto;
  text-align: right;
}
@media (max-width: 639px) {
  #pricing .pricing-outer-catalog > summary {
    flex-wrap: wrap;
  }
  #pricing .pricing-outer-catalog > summary .pricing-outer-hint {
    flex: 1 1 100%;
    text-align: left;
    margin-top: 0.25rem;
  }
}
#pricing .pricing-outer-catalog[open] > summary .pricing-chev {
  transform: rotate(180deg);
}
#pricing .pricing-outer-catalog .pricing-outer-body {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
#pricing .pricing-outer-catalog .pricing-outer-section + .pricing-outer-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aka-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
  gap: 0.5rem;
}
.header-inner > .aka-logo-link {
  --logo-aka-size: 0.875rem;
  --logo-tech-size: 0.5625rem;
  --logo-line-gap: 0.25rem;
  --logo-text-height: calc(var(--logo-aka-size) + var(--logo-line-gap) + var(--logo-tech-size));
  gap: 0.625rem;
  align-items: center;
}
.header-inner > .aka-logo-link .aka-logo-mark {
  height: var(--logo-text-height);
  width: auto;
}
.header-inner > .aka-logo-link .logo-text-stack {
  min-height: 0;
  gap: var(--logo-line-gap);
  justify-content: center;
}
.header-inner > .aka-logo-link .logo-aka-word {
  font-size: var(--logo-aka-size);
}
.header-inner > .aka-logo-link .logo-tech-text {
  font-size: var(--logo-tech-size);
}
@media (min-width: 640px) {
  .header-inner > .aka-logo-link {
    --logo-aka-size: 0.9375rem;
    --logo-tech-size: 0.625rem;
    gap: 0.75rem;
  }
}
.logo-text-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1;
  min-height: 1.75rem;
}
@media (min-width: 640px) {
  .logo-text-stack {
    min-height: 2rem;
  }
}
.logo-aka-word {
  display: block;
  font-family: Sora, "Google Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #ed214c;
  white-space: nowrap;
  transition: color 0.3s ease;
}
@media (min-width: 640px) {
  .logo-aka-word {
    font-size: 0.875rem;
  }
}
.aka-logo-mark {
  display: block;
  height: 1.75rem;
  width: auto;
  flex-shrink: 0;
  align-self: center;
  object-fit: contain;
  object-position: center center;
}
@media (min-width: 640px) {
  .aka-logo-mark {
    height: 2rem;
  }
}
.logo-tech-text {
  display: block;
  font-family: Sora, "Google Sans", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.5625rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease;
}
@media (min-width: 640px) {
  .logo-tech-text {
    font-size: 0.625rem;
  }
}
.aka-logo-link.h-8 .aka-logo-mark {
  height: 1.5rem;
}
.aka-logo-link.h-8 .logo-text-stack {
  min-height: 1.5rem;
}
.aka-logo-link.h-8 .logo-aka-word {
  font-size: 0.6875rem;
}
.aka-logo-link.h-8 .logo-tech-text {
  font-size: 0.5rem;
}
.aka-logo-link:hover .logo-aka-word,
.aka-logo-link:focus-visible .logo-aka-word {
  color: #f92672;
}
.aka-logo-link:hover .logo-tech-text,
.aka-logo-link:focus-visible .logo-tech-text {
  color: #00d4ff;
}

.aka-select-native-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.aka-select-wrap { position: relative; }
.aka-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0 1rem 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 640px) {
  .aka-select-trigger { font-size: 16px; }
}
.aka-select-trigger:hover {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}
.aka-select-trigger:focus {
  outline: none;
}
.aka-select-trigger:focus-visible {
  border-bottom-color: rgba(0, 212, 255, 0.65);
  box-shadow: 0 1px 0 0 rgba(0, 212, 255, 0.45);
}
.aka-select-wrap.is-open .aka-select-trigger {
  border-bottom-color: rgba(0, 212, 255, 0.5);
}
.aka-select-chevron {
  flex-shrink: 0;
  display: flex;
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.aka-select-wrap.is-open .aka-select-chevron {
  transform: rotate(180deg);
}
/* Ячейка грида растягивается по высоте соседней колонки — без align-self
   дропдаун (top: 100%) открывался с отрывом от кнопки */
.aka-select-wrap {
  align-self: start;
}
.aka-select-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 60;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(22, 33, 62, 0.97) 0%, rgba(10, 10, 26, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.06),
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(0, 212, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s;
  pointer-events: none;
}
.aka-select-wrap.is-open .aka-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.aka-select-options {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: min(52vh, 300px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.35) transparent;
}
.aka-select-options::-webkit-scrollbar {
  width: 6px;
}
.aka-select-options::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.3);
  border-radius: 999px;
}
@keyframes aka-select-option-in {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.aka-select-wrap.is-open .aka-select-option {
  animation: aka-select-option-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.aka-select-option {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.2s ease;
  border-left: 2px solid transparent;
}
.aka-select-option:hover,
.aka-select-option:focus {
  outline: none;
  background: rgba(0, 212, 255, 0.08);
  color: #fff;
  border-left-color: rgba(0, 212, 255, 0.55);
  padding-left: 18px;
}
.aka-select-option[aria-selected="true"] {
  background: rgba(0, 212, 255, 0.12);
  color: #57e4ff;
  border-left-color: #00d4ff;
}
.aka-select-option[aria-selected="true"]:hover {
  background: rgba(0, 212, 255, 0.16);
}

.hero-lead-block {
  max-width: 36rem;
}
.hero-lead-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-lead-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.3;
}
.hero-lead-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.65);
  flex-shrink: 0;
}
.hero-lead-geo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.18);
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.55), rgba(22, 33, 62, 0.25));
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-sec, #9ca3af);
}
.hero-lead-geo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.1rem;
  border-radius: 0.625rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.28);
  color: #00d4ff;
}
.hero-lead-geo-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

html.aka-nav-jump {
  scroll-behavior: auto !important;
}

[id] {
  scroll-margin-top: calc(var(--header-offset-mobile) + 12px);
}

@media (min-width: 1024px) {
  [id] {
    scroll-margin-top: calc(var(--header-offset-desktop) + 12px);
  }
}

/* Service cards — action buttons */
.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.service-card-btn:hover {
  transform: translateY(-1px);
}

.service-card-actions--cyan .service-card-btn--light {
  color: #000;
  background: #fff;
}

.service-card-actions--cyan .service-card-btn--light:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.service-card-actions--cyan .service-card-btn--outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card-actions--cyan .service-card-btn--outline:hover {
  border-color: rgba(0, 212, 255, 0.45);
  color: #00d4ff;
}

.service-card-actions--cyan .service-card-btn--accent {
  color: #000;
  background: #00d4ff;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.25);
}

.service-card-actions--cyan .service-card-btn--accent:hover {
  background: #57e4ff;
}

.service-card-actions--red .service-card-btn--light {
  color: #000;
  background: #fff;
}

.service-card-actions--red .service-card-btn--light:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.service-card-actions--red .service-card-btn--outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card-actions--red .service-card-btn--outline:hover {
  border-color: rgba(227, 30, 74, 0.5);
  color: #f92672;
}

.service-card-actions--red .service-card-btn--accent {
  color: #fff;
  background: var(--red, #f92672);
  box-shadow: 0 6px 20px rgba(249, 38, 114, 0.35);
}

.service-card-actions--red .service-card-btn--accent:hover {
  background: var(--red-2, #e31e4a);
}

@media (max-width: 639px) {
  .service-card-actions {
    flex-direction: column;
  }

  .service-card-btn {
    width: 100%;
  }
}

/* Pricing cards — кнопки внизу карточки */
#pricing .pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#pricing .pricing-card[hidden] {
  display: none !important;
}

#pricing .pricing-card > .relative.z-10 {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 100%;
}

#pricing .pricing-card .pricing-card-footer {
  margin-top: auto;
}

#pricing .pricing-card .pricing-card-footer details {
  padding-top: 0.75rem;
}

#pricing .pricing-card .pricing-card-footer details > ul {
  margin-top: 0.5rem;
}

#pricing .pricing-card .pricing-card-footer details > ul > li + li {
  margin-top: 0.25rem;
}

#pricing .pricing-card .pricing-card-footer > p {
  margin-top: 0.75rem;
}

#pricing .pricing-card .pricing-card-actions {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#pricing .pricing-card-actions .service-card-btn--outline::after {
  content: "→";
  margin-left: 0.2rem;
  transition: transform 0.2s ease;
}

#pricing .pricing-card-actions .service-card-btn--outline:hover::after {
  transform: translateX(3px);
}

@media (min-width: 640px) {
  #pricing .pricing-card .pricing-card-actions {
    padding-top: 1.75rem;
  }
}

#pricing .pricing-pager-btn {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 232, 240, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

#pricing .pricing-pager-btn:not(:disabled):hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

#pricing .pricing-pager-btn:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

#pricing .pricing-pager-center {
  flex: 0 1 auto;
  max-width: calc(100% - 112px);
}

#pricing .pricing-pager-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  background: rgba(148, 163, 184, 0.18);
  cursor: pointer;
  transition: width 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

#pricing .pricing-pager-dot.is-active {
  width: 28px;
  border-color: rgba(34, 211, 238, 0.9);
  background: rgba(34, 211, 238, 0.8);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.22);
}

/* Service detail / pricing detail pages */
.service-detail .sr-only,
.plan-detail .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-detail-stat,
.plan-detail-stat {
  backdrop-filter: blur(8px);
}

.service-detail-actions .btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-accent-cyan {
  color: #000;
  background: #00d4ff;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.35);
}

.btn-accent-cyan:hover {
  background: #57e4ff;
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.45);
}

/* Pricing detail page */
.plan-detail-page {
  background: #0b0c10;
}

.plan-detail-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.plan-detail--cyan .plan-detail-glow,
.plan-detail--cyan .plan-detail-hero-glow {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35) 0%, transparent 70%);
}

.plan-detail--red .plan-detail-glow,
.plan-detail--red .plan-detail-hero-glow {
  background: radial-gradient(circle, rgba(249, 38, 114, 0.28) 0%, transparent 70%);
}

.plan-detail-header {
  padding: 1rem 0 0;
}

.plan-detail-header-inner {
  max-width: 72rem;
  margin-inline: auto;
}

.plan-detail-link {
  color: rgba(0, 212, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.plan-detail-link:hover {
  color: #fff;
}

.plan-detail-breadcrumbs .plan-detail-link {
  font-weight: 500;
}

.plan-detail-hero {
  background: linear-gradient(145deg, rgba(22, 33, 62, 0.72), rgba(22, 33, 62, 0.38));
}

.plan-detail-hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  transform: translate(25%, -25%);
  pointer-events: none;
}

.plan-detail-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-detail--cyan .plan-detail-kicker {
  color: #00d4ff;
}

.plan-detail--red .plan-detail-kicker {
  color: #f92672;
}

.plan-detail-section-title {
  font-family: var(--font-display, Sora, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .plan-detail-section-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }
}

.plan-detail-stat {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.35rem;
}

.plan-detail--cyan .plan-detail-stat {
  background: rgba(0, 212, 255, 0.06);
}

.plan-detail--red .plan-detail-stat {
  background: rgba(249, 38, 114, 0.06);
}

.plan-detail-benefit {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 33, 62, 0.45);
  padding: 1.35rem 1.35rem 1.35rem 3.25rem;
}

.plan-detail-benefit-num {
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  font-family: var(--font-display, Sora, sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.45;
  color: #fff;
}

.plan-detail-panel {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 33, 62, 0.38);
  padding: 1.35rem 1.5rem;
}

.plan-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.plan-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.plan-detail--cyan .plan-detail-list li::before,
.plan-detail--red .plan-detail-list li::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 0.05rem;
}

.plan-detail--cyan .plan-detail-list li::before {
  color: #00d4ff;
}

.plan-detail--red .plan-detail-list li::before {
  color: #f92672;
}

.plan-detail-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-detail-options li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
}

.plan-detail-options li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.plan-detail-options-label {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.plan-detail-options-price {
  flex-shrink: 0;
  font-weight: 600;
  white-space: nowrap;
}

.plan-detail-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.75), rgba(22, 33, 62, 0.45));
  padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
  .plan-detail-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }
}

.plan-detail-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 480px) {
  .plan-detail-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
}

.plan-detail-cta-actions .btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.plan-detail-other-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 33, 62, 0.4);
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.plan-detail-other-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(22, 33, 62, 0.58);
}

.plan-detail-other-title {
  font-weight: 600;
  color: #fff;
  font-size: 0.9375rem;
}

.plan-detail-other-price {
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
}

.plan-detail-other-link {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: rgba(0, 212, 255, 0.85);
}

.plan-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 212, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.plan-detail-back:hover {
  color: #fff;
}

.plan-detail-footer {
  margin-top: auto;
}

.plan-detail-audience {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .plan-detail-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
  }
}

.plan-detail-audience li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.plan-detail-audience li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
}

.plan-detail--cyan .plan-detail-audience li::before {
  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.45);
}

.plan-detail--red .plan-detail-audience li::before {
  background: #f92672;
  box-shadow: 0 0 10px rgba(249, 38, 114, 0.45);
}

.plan-detail-benefit--compact {
  padding: 1.15rem 1.25rem;
}

.plan-detail-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .plan-detail-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.plan-detail-process-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 33, 62, 0.38);
  padding: 1.15rem 1.2rem;
}

.plan-detail-process-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-family: var(--font-display, Sora, sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}

.plan-detail--cyan .plan-detail-process-num {
  background: rgba(0, 212, 255, 0.18);
  border: 1px solid rgba(0, 212, 255, 0.35);
}

.plan-detail--red .plan-detail-process-num {
  background: rgba(249, 38, 114, 0.18);
  border: 1px solid rgba(249, 38, 114, 0.35);
}

.plan-detail-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plan-detail-tags li {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.plan-detail-panel--muted {
  background: rgba(15, 23, 42, 0.35);
  border-color: rgba(255, 255, 255, 0.05);
}

.plan-detail-list--muted li {
  color: rgba(255, 255, 255, 0.65);
}

.plan-detail-list--muted li::before {
  content: "—";
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.plan-detail-faq {
  display: grid;
  gap: 0.65rem;
}

.plan-detail-faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 33, 62, 0.38);
  overflow: hidden;
}

.plan-detail-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}

.plan-detail-faq-item summary::-webkit-details-marker {
  display: none;
}

.plan-detail-faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease;
}

.plan-detail-faq-item[open] summary::after {
  content: "−";
}

.plan-detail-faq-item p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.plan-detail--red .plan-detail-other-link {
  color: rgba(249, 38, 114, 0.9);
}

.plan-detail--red .plan-detail-back {
  color: rgba(249, 38, 114, 0.9);
}

/* Plan detail — motion & visuals */
@keyframes plan-glow-pulse {
  0%, 100% { opacity: 0.28; transform: scale(1); }
  50% { opacity: 0.42; transform: scale(1.06); }
}

@keyframes plan-orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}

@keyframes plan-shimmer-sweep {
  0% { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%) skewX(-12deg); }
}

@keyframes plan-mock-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes plan-cta-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(0, 212, 255, 0); }
  50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.12); }
}

.plan-detail-glow--pulse {
  animation: plan-glow-pulse 8s ease-in-out infinite;
}

.plan-detail-glow--secondary {
  top: auto;
  bottom: -15%;
  left: -8%;
  right: auto;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  opacity: 0.22;
  animation: plan-glow-pulse 10s ease-in-out infinite reverse;
}

.plan-detail--red .plan-detail-glow--secondary {
  background: radial-gradient(circle, rgba(249, 38, 114, 0.25) 0%, transparent 70%);
}

.plan-detail-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  animation: plan-orb-float 14s ease-in-out infinite;
}

.plan-detail-orb--1 {
  width: 120px;
  height: 120px;
  top: 18%;
  left: 8%;
  background: rgba(0, 212, 255, 0.25);
}

.plan-detail-orb--2 {
  width: 90px;
  height: 90px;
  bottom: 22%;
  right: 12%;
  background: rgba(249, 38, 114, 0.2);
  animation-delay: -4s;
  animation-duration: 11s;
}

.plan-detail--cyan .plan-detail-orb--2 {
  background: rgba(0, 212, 255, 0.18);
}

.plan-detail-hero-glow--pulse {
  animation: plan-glow-pulse 6s ease-in-out infinite;
}

.plan-detail-hero-shimmer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.plan-detail-hero-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  animation: plan-shimmer-sweep 7s ease-in-out infinite;
}

.plan-detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .plan-detail-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.85fr);
    gap: 2.5rem;
  }
}

.plan-detail-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 480px) {
  .plan-detail-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.plan-detail-hero-actions .btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.plan-detail-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-detail-visual-stage {
  position: relative;
  width: min(100%, 560px);
  min-height: 400px;
  margin-inline: auto;
}

.plan-detail-visual-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

/* Infographic — shared drift */
@keyframes plan-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -10px); }
}

@keyframes plan-drift-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-6px, 8px) rotate(-1deg); }
}

@keyframes plan-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -6px); }
}

@keyframes plan-drift-4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(5px, 6px) rotate(1deg); }
}

@keyframes plan-drift-5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, -8px); }
}

@keyframes plan-hub-spin {
  to { transform: rotate(360deg); }
}

@keyframes plan-line-flow {
  0% { stroke-dashoffset: 120; opacity: 0.2; }
  50% { opacity: 0.55; }
  100% { stroke-dashoffset: 0; opacity: 0.25; }
}

@keyframes plan-bar-grow {
  0%, 100% { transform: scaleY(0.72); }
  50% { transform: scaleY(1); }
}

.plan-infographic-drift--1 { animation: plan-drift-1 7s ease-in-out infinite; }
.plan-infographic-drift--2 { animation: plan-drift-2 8s ease-in-out infinite 0.4s; }
.plan-infographic-drift--3 { animation: plan-drift-3 6.5s ease-in-out infinite 0.8s; }
.plan-infographic-drift--4 { animation: plan-drift-4 7.5s ease-in-out infinite 0.2s; }
.plan-infographic-drift--5 { animation: plan-drift-5 8.5s ease-in-out infinite 1s; }
.plan-infographic-drift--6 { animation: plan-drift-1 6s ease-in-out infinite 0.3s; }
.plan-infographic-drift--7 { animation: plan-drift-2 7s ease-in-out infinite 0.6s; }

.plan-infographic {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

/* Hub — AKA System composition */
.plan-infographic--hub {
  min-height: 380px;
  perspective: 1200px;
}

.plan-infographic-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.plan-infographic-lines path {
  fill: none;
  stroke: rgba(0, 212, 255, 0.22);
  stroke-width: 1;
  stroke-dasharray: 6 8;
  animation: plan-line-flow 4s ease-in-out infinite;
}

.plan-infographic--hub .plan-infographic-lines path:nth-child(2) { animation-delay: 0.3s; stroke: rgba(249, 38, 114, 0.2); }
.plan-infographic--hub .plan-infographic-lines path:nth-child(3) { animation-delay: 0.6s; }
.plan-infographic--hub .plan-infographic-lines path:nth-child(4) { animation-delay: 0.15s; stroke: rgba(249, 38, 114, 0.18); }
.plan-infographic--hub .plan-infographic-lines path:nth-child(5) { animation-delay: 0.45s; }
.plan-infographic--hub .plan-infographic-lines path:nth-child(6) { animation-delay: 0.75s; stroke: rgba(0, 212, 255, 0.35); }

.plan-hub-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem;
  min-width: 4.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, rgba(22, 33, 62, 0.94), rgba(10, 10, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.plan-hub-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
}

.plan-hub-card--input { left: 4%; top: 10%; transform: rotate(-4deg); }
.plan-hub-card--web { left: 2%; top: 42%; transform: rotate(2deg); border-color: rgba(249, 38, 114, 0.25); }
.plan-hub-card--ux { left: 8%; top: 68%; transform: rotate(-2deg); }
.plan-hub-card--api { left: 22%; top: 4%; transform: rotate(5deg); }
.plan-hub-card--support { left: 18%; bottom: 6%; transform: rotate(-5deg); border-color: rgba(249, 38, 114, 0.2); }

.plan-hub-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
}

.plan-hub-card-icon svg {
  width: 1rem;
  height: 1rem;
}

.plan-hub-card-icon--cyan {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.25);
}

.plan-hub-card-icon--red {
  background: rgba(249, 38, 114, 0.15);
  color: #f92672;
  box-shadow: 0 0 12px rgba(249, 38, 114, 0.25);
}

.plan-hub-card-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.plan-hub-core {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 5;
  width: 9.5rem;
  height: 9.5rem;
  transform: translate(-50%, -50%);
}

.plan-hub-core-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.plan-hub-core-ring--dash {
  inset: -0.65rem;
  border: 2px dashed rgba(0, 212, 255, 0.35);
  animation: plan-hub-spin 28s linear infinite;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
}

.plan-hub-core-ring--pulse {
  inset: -1.25rem;
  border: 1px solid rgba(0, 212, 255, 0.15);
  animation: plan-glow-pulse 4s ease-in-out infinite;
}

.plan-hub-core-card {
  position: absolute;
  inset: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.35rem;
  background: linear-gradient(145deg, #1e2a4a, #0a0a1a);
  border: 2px solid rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-hub-logo {
  width: 1.75rem;
  height: 1.75rem;
  color: #f92672;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 0 10px rgba(249, 38, 114, 0.5));
}

.plan-hub-core-title {
  font-family: var(--font-display, Sora, sans-serif);
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.12em;
}

.plan-hub-core-sub {
  font-size: 0.625rem;
  font-weight: 600;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.plan-hub-core-pill {
  margin-top: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.28);
}

.plan-hub-dot {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  animation: plan-glow-pulse 2.5s ease-in-out infinite;
}

.plan-hub-dot--top { top: 0; left: 50%; transform: translateX(-50%); background: #00d4ff; box-shadow: 0 0 16px #00d4ff; }
.plan-hub-dot--bottom { bottom: 0; left: 50%; transform: translateX(-50%); background: #f92672; box-shadow: 0 0 16px #f92672; animation-delay: 0.5s; }
.plan-hub-dot--left { left: 0; top: 50%; transform: translateY(-50%); background: rgba(0, 212, 255, 0.85); box-shadow: 0 0 12px rgba(0, 212, 255, 0.8); animation-delay: 1s; }
.plan-hub-dot--right { right: 0; top: 50%; transform: translateY(-50%); background: rgba(249, 38, 114, 0.85); box-shadow: 0 0 12px rgba(249, 38, 114, 0.8); animation-delay: 1.5s; }

.plan-hub-result {
  position: absolute;
  right: 0;
  top: 32%;
  z-index: 4;
  width: 46%;
  max-width: 11.5rem;
  padding: 0.85rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(26, 38, 66, 0.96), rgba(10, 10, 26, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 212, 255, 0.1);
  transform: rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
}

.plan-hub-result-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-hub-result-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #00d4ff, rgba(0, 212, 255, 0.5));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
}

.plan-hub-result-head strong {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.plan-hub-result-head small {
  display: block;
  font-size: 0.5rem;
  color: #00d4ff;
}

.plan-hub-result-chrome {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.45rem;
}

.plan-hub-result-chrome span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.plan-hub-result-chrome span:first-child { background: #00d4ff; box-shadow: 0 0 6px rgba(0, 212, 255, 0.8); }
.plan-hub-result-chrome span:nth-child(2) { background: #f92672; box-shadow: 0 0 6px rgba(249, 38, 114, 0.8); }

.plan-hub-result-line {
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.35rem;
  width: 72%;
}

.plan-hub-result-line--lg {
  height: 0.5rem;
  width: 88%;
  background: rgba(0, 212, 255, 0.35);
}

.plan-hub-result-blocks {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.plan-hub-result-blocks span {
  flex: 1;
  height: 2rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-hub-result-blocks span:first-child {
  background: rgba(0, 212, 255, 0.18);
  border-color: rgba(0, 212, 255, 0.3);
}

.plan-hub-result-blocks span:last-child {
  background: rgba(249, 38, 114, 0.18);
  border-color: rgba(249, 38, 114, 0.3);
}

.plan-hub-result-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.55rem;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
}

.plan-hub-live {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: #4ade80;
  font-weight: 600;
}

.plan-hub-live i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
  animation: plan-glow-pulse 2s ease-in-out infinite;
}

.plan-hub-result-badge {
  position: absolute;
  top: -0.65rem;
  right: -0.65rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f92672, rgba(249, 38, 114, 0.6));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid #16213e;
  box-shadow: 0 0 24px rgba(249, 38, 114, 0.55);
}

/* Dev stack — code + phone + conversion */
.plan-infographic--devstack {
  min-height: 340px;
}

.plan-code-window {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 58%;
  border-radius: 0.85rem;
  background: rgba(18, 20, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(249, 38, 114, 0.08);
  overflow: hidden;
  transform: rotate(-2deg);
}

.plan-code-window-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-code-window-bar span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.plan-code-window-bar span:nth-child(1) { background: #ff5f57; }
.plan-code-window-bar span:nth-child(2) { background: #febc2e; }
.plan-code-window-bar span:nth-child(3) { background: #28c840; }

.plan-code-window-bar code {
  margin-left: auto;
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.45);
}

.plan-code-window-body {
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.5625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  white-space: pre-wrap;
}

.plan-code-kw { color: #f92672; }
.plan-code-var { color: #c4b5fd; }
.plan-code-key { color: #7dd3fc; }
.plan-code-str { color: #86efac; }
.plan-code-bool { color: #fbbf24; }
.plan-code-num { color: #fcd34d; }
.plan-code-fn { color: #67e8f9; }

.plan-phone-mock {
  position: absolute;
  right: 2%;
  top: 12%;
  z-index: 4;
  width: 42%;
  max-width: 9.5rem;
  padding: 0.45rem;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, #2a2d38, #12141a);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 212, 255, 0.12);
}

.plan-phone-notch {
  width: 2rem;
  height: 0.35rem;
  margin: 0 auto 0.35rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
}

.plan-phone-screen {
  padding: 0.55rem;
  border-radius: 1rem;
  background: rgba(11, 12, 16, 0.95);
}

.plan-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.plan-phone-avatar {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.plan-phone-dots {
  width: 1rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.plan-phone-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.plan-phone-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.4rem;
  flex-shrink: 0;
}

.plan-phone-icon--1 { background: linear-gradient(135deg, #f97316, #ec4899); }
.plan-phone-icon--2 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.plan-phone-icon--3 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

.plan-phone-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plan-phone-lines i {
  display: block;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.plan-phone-lines i:last-child { width: 65%; }

.plan-phone-cta {
  margin-top: 0.45rem;
  padding: 0.35rem;
  border-radius: 0.45rem;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: #0a0a1a;
  background: linear-gradient(135deg, #00d4ff, #57e4ff);
}

.plan-conversion-card {
  position: absolute;
  left: 6%;
  bottom: 4%;
  z-index: 5;
  width: 48%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, rgba(22, 33, 62, 0.96), rgba(10, 10, 26, 0.92));
  border: 1px solid rgba(249, 38, 114, 0.25);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(249, 38, 114, 0.12);
}

.plan-conversion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.25rem;
}

.plan-conversion-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(249, 38, 114, 0.2);
  color: #f92672;
  font-size: 0.625rem;
}

.plan-conversion-value {
  font-family: var(--font-display, Sora, sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #f92672;
  line-height: 1;
  margin: 0 0 0.45rem;
  text-shadow: 0 0 20px rgba(249, 38, 114, 0.35);
}

.plan-conversion-value--cyan {
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.35);
}

.plan-conversion-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 2rem;
}

.plan-conversion-bars span {
  flex: 1;
  height: calc(var(--h, 50) * 1%);
  border-radius: 0.2rem 0.2rem 0 0;
  background: rgba(255, 255, 255, 0.12);
  transform-origin: bottom;
  animation: plan-bar-grow 2.8s ease-in-out infinite;
}

.plan-conversion-bars span.is-peak {
  background: linear-gradient(180deg, #f92672, rgba(249, 38, 114, 0.4));
  box-shadow: 0 0 12px rgba(249, 38, 114, 0.45);
}

.plan-conversion-bars--cyan span.is-peak {
  background: linear-gradient(180deg, #00d4ff, rgba(0, 212, 255, 0.35));
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.45);
}

.plan-conversion-bars span:nth-child(2) { animation-delay: 0.15s; }
.plan-conversion-bars span:nth-child(3) { animation-delay: 0.3s; }
.plan-conversion-bars span:nth-child(4) { animation-delay: 0.45s; }
.plan-conversion-bars span:nth-child(5) { animation-delay: 0.6s; }

.plan-kpi-float {
  position: absolute;
  right: 4%;
  top: 18%;
  z-index: 4;
  width: 44%;
  padding: 0.65rem;
  border-radius: 0.85rem;
  background: rgba(18, 20, 26, 0.92);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.plan-kpi-float-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  text-align: center;
}

.plan-kpi-float-row strong {
  display: block;
  font-size: 0.75rem;
  color: #c7d2fe;
}

.plan-kpi-float-row small {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
}

.plan-kpi-float-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  height: 1.75rem;
}

.plan-kpi-float-bars span {
  flex: 1;
  height: calc(var(--h, 50) * 1%);
  border-radius: 0.15rem 0.15rem 0 0;
  background: rgba(99, 102, 241, 0.45);
  animation: plan-bar-grow 2.5s ease-in-out infinite;
}

/* Cycle — 5 glass stage cards */
.plan-process-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.plan-process-visual-wrap {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 12, 16, 0.35);
  padding: 1rem;
  overflow: hidden;
}

.plan-process-layout .plan-detail-process {
  grid-template-columns: 1fr;
}

.plan-cycle-scene {
  position: relative;
  width: 100%;
  max-width: 22rem;
  min-height: 16rem;
  margin-inline: auto;
}

.plan-cycle-wire {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.plan-cycle-wire-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.plan-cycle-wire-ring--1 {
  width: 88%;
  height: 78%;
}

.plan-cycle-wire-ring--2 {
  width: 62%;
  height: 54%;
  border-style: dashed;
  opacity: 0.7;
  animation: plan-hub-spin 40s linear infinite;
}

.plan-cycle-wire-cross {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
}

.plan-cycle-wire-cross--v {
  left: 50%;
  top: 8%;
  width: 1px;
  height: 84%;
  transform: translateX(-50%);
}

.plan-cycle-wire-cross--h {
  top: 50%;
  left: 8%;
  height: 1px;
  width: 84%;
  transform: translateY(-50%);
}

.plan-cycle-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 5.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.plan-cycle-card:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.plan-cycle-card--tl { left: 4%; top: 6%; }
.plan-cycle-card--tr { right: 4%; top: 6%; }
.plan-cycle-card--center {
  left: 50%;
  top: 50%;
  width: 6.25rem;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-color: rgba(249, 38, 114, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(249, 38, 114, 0.12);
}

.plan-cycle-card--center:hover {
  transform: translate(-50%, calc(-50% - 4px)) scale(1.05);
}

.plan-cycle-card--bl { left: 4%; bottom: 6%; }
.plan-cycle-card--br { right: 4%; bottom: 6%; }

.plan-cycle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.plan-cycle-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.plan-cycle-icon--cyan { color: #00d4ff; filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5)); }
.plan-cycle-icon--violet { color: #a78bfa; filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.5)); }
.plan-cycle-icon--red { color: #f92672; filter: drop-shadow(0 0 8px rgba(249, 38, 114, 0.5)); }
.plan-cycle-icon--blue { color: #60a5fa; filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5)); }
.plan-cycle-icon--white { color: #fff; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35)); }

.plan-cycle-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .plan-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  }

  .plan-detail-visual-stage {
    min-height: 400px;
  }

  .plan-process-layout {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .plan-process-visual-wrap {
    flex: 0 0 min(100%, 20rem);
  }

  .plan-process-layout .plan-detail-process {
    flex: 1;
  }
}

@media (max-width: 639px) {
  .plan-infographic--hub {
    min-height: 320px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .plan-hub-result {
    width: 42%;
    padding: 0.65rem;
  }

  .plan-infographic--devstack {
    min-height: 300px;
    transform: scale(0.95);
    transform-origin: center;
  }
}

.plan-detail-visual-float--1 {
  width: 80px;
  height: 80px;
  top: 0;
  right: 10%;
  background: rgba(0, 212, 255, 0.2);
  animation: plan-orb-float 8s ease-in-out infinite;
}

.plan-detail-visual-float--2 {
  width: 64px;
  height: 64px;
  bottom: 8%;
  left: 5%;
  background: rgba(249, 38, 114, 0.15);
  animation: plan-orb-float 9s ease-in-out infinite reverse;
}

.plan-detail--red .plan-detail-visual-float--1 {
  background: rgba(249, 38, 114, 0.22);
}

.plan-detail--red .plan-detail-visual-float--2 {
  background: rgba(249, 38, 114, 0.12);
}

.plan-detail-price-glow {
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
}

.plan-detail--red .plan-detail-price-glow {
  text-shadow: 0 0 30px rgba(249, 38, 114, 0.25);
}

.plan-detail-section-title--accent {
  position: relative;
  padding-left: 1rem;
}

.plan-detail-section-title--accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 3px;
  height: 1.1em;
  border-radius: 999px;
  background: linear-gradient(180deg, #00d4ff, transparent);
}

.plan-detail--red .plan-detail-section-title--accent::before {
  background: linear-gradient(180deg, #f92672, transparent);
}

.plan-detail-stat--interactive,
.plan-detail-benefit--interactive,
.plan-detail-panel--interactive,
.plan-detail-other-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.plan-detail-stat--interactive:hover,
.plan-detail-benefit--interactive:hover,
.plan-detail-panel--interactive:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.plan-detail-other-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.plan-detail-cta-inner--glow {
  position: relative;
  overflow: hidden;
}

.plan-detail--cyan .plan-detail-cta-inner--glow {
  animation: plan-cta-glow 4s ease-in-out infinite;
}

.plan-detail--red .plan-detail-cta-inner--glow {
  animation: plan-cta-glow 4s ease-in-out infinite;
  animation-name: none;
  box-shadow: 0 0 0 rgba(249, 38, 114, 0);
}

.plan-detail--red .plan-detail-cta-inner--glow:hover {
  box-shadow: 0 0 36px rgba(249, 38, 114, 0.14);
}

.plan-detail-process-step {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.plan-detail-process-step:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.plan-detail-tags li {
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.plan-detail-tags li:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.08);
}

.plan-detail--red .plan-detail-tags li:hover {
  border-color: rgba(249, 38, 114, 0.35);
  background: rgba(249, 38, 114, 0.08);
}

.plan-detail-faq-item {
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.plan-detail-faq-item[open] {
  border-color: rgba(0, 212, 255, 0.22);
  background: rgba(22, 33, 62, 0.52);
}

.plan-detail--red .plan-detail-faq-item[open] {
  border-color: rgba(249, 38, 114, 0.22);
}

.plan-detail-page [data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.plan-detail-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .plan-detail-glow--pulse,
  .plan-detail-glow--secondary,
  .plan-detail-hero-glow--pulse,
  .plan-detail-orb,
  .plan-infographic-drift,
  .plan-detail-visual-float,
  .plan-detail-hero-shimmer::after,
  .plan-detail-cta-inner--glow,
  .plan-hub-core-ring--dash,
  .plan-cycle-wire-ring--2,
  .plan-infographic-lines path,
  .plan-conversion-bars span,
  .plan-kpi-float-bars span {
    animation: none !important;
  }

  .plan-detail-page [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== Plan detail v2 — дизайн в стиле главной страницы ===== */

/* Hero под фиксированной шапкой, как .hero на главной */
.plan-hero {
  padding-top: var(--header-offset-mobile, 104px);
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .plan-hero {
    padding-top: var(--header-offset-desktop, 132px);
    padding-bottom: 64px;
  }
}

.plan-hero .hero-grid {
  align-items: center;
}

/* Визуальная колонка героя в 12-колоночной .hero-grid:
   на десктопе — слева от текста (зеркально главной), на мобильном — после текста */
.plan-hero .plan-detail-hero-visual {
  min-width: 0;
  order: 2;
}

@media (min-width: 1024px) {
  .plan-hero .plan-detail-hero-visual {
    grid-column: span 6 / span 6;
    align-self: stretch;
    order: 0;
  }
}

/* 4 показателя в строке статистики героя */
.plan-hero-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 1rem;
  max-width: 640px;
}

@media (min-width: 640px) {
  .plan-hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .plan-hero-stats .stat-item:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

/* Киккеры наследуют акцент тарифа */
.plan-detail--red .section-kicker.is-active {
  color: var(--red, #f92672);
}

/* Сетки (утилит grid-cols-3/4 нет в сборке style.css) */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .plan-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 640px) {
  .plan-grid--half {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .plan-grid--plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Карточки — язык карточек главной (bg-card-gradient + border-white/5) */
.plan-detail-panel,
.plan-detail-benefit,
.plan-detail-process-step,
.plan-detail-faq-item {
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.8), rgba(22, 33, 62, 0.4));
  border-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.plan-detail-panel {
  border-radius: 1.75rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .plan-detail-panel {
    padding: 2rem;
  }
}

.plan-detail-benefit,
.plan-detail-process-step {
  border-radius: 1.25rem;
}

.plan-detail-panel--muted {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.3));
  border-color: rgba(255, 255, 255, 0.04);
}

/* Hover-акценты карточек, как у pricing-card на главной */
.plan-detail--cyan .plan-detail-benefit--interactive:hover,
.plan-detail--cyan .plan-detail-panel--interactive:hover {
  border-color: rgba(0, 212, 255, 0.35);
}

.plan-detail--red .plan-detail-benefit--interactive:hover,
.plan-detail--red .plan-detail-panel--interactive:hover {
  border-color: rgba(249, 38, 114, 0.35);
}

/* CTA-панель в том же языке */
.plan-detail-cta-inner {
  border-radius: 1.75rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.8), rgba(22, 33, 62, 0.4));
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

/* pricing-card вне секции #pricing (блок «Другие тарифы») */
.plan-detail-page .pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-detail-page .pricing-card .pricing-card-footer {
  margin-top: auto;
}

.plan-detail-page .pricing-card .pricing-card-actions {
  padding-top: 1.25rem;
}

/* ===== Plan detail v3 — иконки, инфографика, живые детали ===== */

/* Акцент тарифа как CSS-переменные */
.plan-detail--cyan {
  --plan-accent: #00d4ff;
  --plan-accent-soft: rgba(0, 212, 255, 0.1);
  --plan-accent-border: rgba(0, 212, 255, 0.26);
  --plan-accent-glow: rgba(0, 212, 255, 0.16);
}

.plan-detail--red {
  --plan-accent: #f92672;
  --plan-accent-soft: rgba(249, 38, 114, 0.1);
  --plan-accent-border: rgba(249, 38, 114, 0.26);
  --plan-accent-glow: rgba(249, 38, 114, 0.16);
}

/* Шим: утилиты mb-5 нет в сборке style.css */
.plan-detail-page .mb-5 {
  margin-bottom: 1.25rem;
}

/* Иконка-чип */
.plan-icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  color: var(--plan-accent, #00d4ff);
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.26));
  box-shadow: 0 0 18px var(--plan-accent-glow, rgba(0, 212, 255, 0.16));
}

.plan-icon-chip svg {
  width: 1.375rem;
  height: 1.375rem;
}

.plan-icon-chip--sm {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
}

.plan-icon-chip--sm svg {
  width: 1.125rem;
  height: 1.125rem;
}

.plan-icon-chip--xs {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.6rem;
  box-shadow: none;
}

.plan-icon-chip--xs svg {
  width: 0.95rem;
  height: 0.95rem;
}

.plan-icon-chip--muted {
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.plan-icon-chip--cyan {
  --plan-accent: #00d4ff;
  --plan-accent-soft: rgba(0, 212, 255, 0.1);
  --plan-accent-border: rgba(0, 212, 255, 0.26);
  --plan-accent-glow: rgba(0, 212, 255, 0.16);
}

.plan-icon-chip--red {
  --plan-accent: #f92672;
  --plan-accent-soft: rgba(249, 38, 114, 0.1);
  --plan-accent-border: rgba(249, 38, 114, 0.26);
  --plan-accent-glow: rgba(249, 38, 114, 0.16);
}

/* Шапка панели: чип + заголовок */
.plan-panel-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

/* ═══════════════════════════════════════════
   PIF — Pricing Includes Feature Board
   ═══════════════════════════════════════════ */

/* Layout: board (3fr) + side (2fr) */
.pif-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .pif-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* ── Board ── */
.pif-board {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(18, 28, 54, 0.85) 0%, rgba(10, 11, 15, 0.75) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}


/* ── Board header ── */
.pif-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0;
}

.pif-head-kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.5);
  margin-bottom: 0.375rem;
}

.pif-head-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pif-head-num {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--plan-accent, #00d4ff);
  text-shadow: 0 0 24px var(--plan-accent-glow, rgba(0, 212, 255, 0.4));
}

.pif-head-unit {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: rgba(148, 163, 184, 0.7);
}

.pif-head-right {
  text-align: right;
  flex-shrink: 0;
}

.pif-head-opts-num {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.45);
  line-height: 1.1;
}

.pif-head-opts-label {
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(100, 116, 139, 0.5);
}

/* ── Progress bar ── */
.pif-bar {
  padding: 1rem 0 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
}

.pif-bar-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.pif-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--plan-accent, #00d4ff), color-mix(in srgb, var(--plan-accent, #00d4ff) 60%, white));
  border-radius: 99px;
  box-shadow: 0 0 8px var(--plan-accent-glow, rgba(0, 212, 255, 0.5));
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.pif-board.is-active .pif-bar-fill {
  width: var(--pif-pct, 75%);
  transition-delay: 300ms;
}

.pif-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(100, 116, 139, 0.6);
}

/* ── Groups ── */
.pif-group {
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.75rem;
}

.pif-group:first-of-type {
  margin-top: 0.75rem;
}

.pif-board .pif-extras-head + .pif-group {
  border-top: none;
}

.pif-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(100, 116, 139, 0.5);
  margin-bottom: 0.625rem;
}

.pif-group--opts .pif-group-label {
  color: var(--plan-accent, #00d4ff);
  opacity: 0.55;
}

/* ── Rows ── */
.pif-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.425rem 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.18s ease;
}

.pif-row + .pif-row {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.pif-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Stagger animate rows on reveal */
.pif-board.is-active .pif-row--base,
.pif-board.is-active .pif-row--extra {
  animation: pif-row-in 0.38s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: calc(120ms + var(--ri, 0) * 50ms);
}

.pif-board.is-active .pif-row--opt {
  animation: pif-row-in 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: calc(80ms + var(--ri, 0) * 45ms);
}

@keyframes pif-row-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Check icon ── */
.pif-chk {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plan-accent, #00d4ff);
  margin-top: 0.15rem;
}

.pif-chk svg { width: 12px; height: 12px; }

.pif-chk--soft {
  color: rgba(148, 163, 184, 0.45);
}

.pif-chk-path {
  stroke-dasharray: 14;
  stroke-dashoffset: 0;
}

/* ── Plus icon ── */
.pif-plus {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(100, 116, 139, 0.55);
  margin-top: 0.1rem;
}

.pif-plus svg { width: 9px; height: 9px; }

/* ── Minus icon ── */
.pif-minus {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(71, 85, 105, 0.5);
  font-size: 12px;
  margin-top: 0.1rem;
}

.pif-minus::before { content: '—'; }

/* ── Row text ── */
.pif-row-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  flex: 1;
}

.pif-row--extra .pif-row-name {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.pif-row--opt .pif-row-name {
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.7);
}

.pif-row--excl .pif-row-name {
  font-size: 0.875rem;
  color: rgba(100, 116, 139, 0.5);
}

.pif-row-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.pif-row-desc {
  font-size: 0.75rem;
  color: rgba(100, 116, 139, 0.75);
  line-height: 1.45;
}

/* ── Option price badge ── */
.pif-opt-badge {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.175rem 0.525rem;
  border-radius: 0.375rem;
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.08));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.18));
  color: var(--plan-accent, #00d4ff);
  white-space: nowrap;
  margin-top: 0.1rem;
}

/* ── Right side ── */
.pif-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

/* ── Payment card ── */
.pif-pay {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(18, 28, 54, 0.85) 0%, rgba(10, 11, 15, 0.75) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 1.375rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pif-pay-stripe { display: none; }

.pif-pay:hover {
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.18));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pif-pay-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--plan-accent, #00d4ff) 0%, transparent 100%);
  border-radius: 1.25rem 0 0 1.25rem;
  opacity: 0.65;
}

.pif-pay-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.09));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plan-accent, #00d4ff);
  margin-top: 0.1rem;
}

.pif-pay-icon svg { width: 1rem; height: 1rem; }

.pif-pay-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.8);
  margin-bottom: 0.4rem;
}

.pif-pay-text {
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.85);
  line-height: 1.6;
  margin: 0 0 0.4rem;
}

.pif-pay-note {
  font-size: 0.75rem;
  color: rgba(100, 116, 139, 0.65);
  line-height: 1.5;
  margin: 0;
}

/* ── Extras panels (options + not-included) ── */
.pif-extras {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .pif-extras {
    grid-template-columns: 1fr 1fr;
  }
}

.pif-extras-panel {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(18, 28, 54, 0.85) 0%, rgba(10, 11, 15, 0.75) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 1.375rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}


.pif-extras-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pif-extras-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pif-extras-icon svg { width: 12px; height: 12px; }

.pif-extras-icon--plus {
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.09));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.18));
  color: var(--plan-accent, #00d4ff);
}

.pif-extras-icon--excl {
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.09));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.18));
  color: var(--plan-accent, #00d4ff);
}

.pif-extras-kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.8);
  line-height: 1.3;
}

.pif-extras-title {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.pif-extras-rows {
  display: flex;
  flex-direction: column;
}

/* ── Plain option rows ── */
.pif-opt-plain-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pif-opt-plain-row:last-child {
  border-bottom: none;
}

.pif-opt-plain-name {
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.75);
  line-height: 1.4;
}

.pif-opt-plain-price {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: rgba(148, 163, 184, 0.5);
  white-space: nowrap;
}

/* Animate rows when panel gains is-active */
.pif-extras-panel.is-active .pif-row--opt {
  animation: pif-row-in 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: calc(60ms + var(--ri, 0) * 45ms);
}

.pif-extras-panel.is-active .pif-row--excl {
  animation: pif-row-in 0.35s cubic-bezier(0.34, 1.2, 0.64, 1) both;
  animation-delay: calc(60ms + var(--ri, 0) * 40ms);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .pif-board .pif-row,
  .pif-extras-panel .pif-row { animation: none !important; opacity: 1 !important; transform: none !important; }
  .pif-chk-path { stroke-dashoffset: 0 !important; transition: none !important; }
  .pif-bar-fill { transition: none !important; width: var(--pif-pct, 75%) !important; }
}

/* ── Разделитель зон (Также входит / Что можно добавить) ── */
.plan-zone-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.plan-zone-head-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
}

.plan-zone-head-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

/* ── Панель «В базе» ── */
.plan-includes-panel {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.7) 0%, rgba(11, 12, 16, 0.6) 100%);
}

.plan-includes-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, var(--plan-accent-soft, rgba(0, 212, 255, 0.07)), transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  pointer-events: none;
}

/* ── Список «В базе» ── */
.plan-include-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

.plan-include-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.55rem 0.75rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.045);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.plan-includes-panel.is-active .plan-include-list li {
  animation: pil-row-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(80ms + var(--check-delay, 0ms));
}

@keyframes pil-row-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.plan-include-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.15));
}

/* ── Чекмарк ── */
.pil-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--plan-accent, #00d4ff);
  filter: drop-shadow(0 0 5px var(--plan-accent-glow, rgba(0, 212, 255, 0.4)));
}

.pil-check-path {
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  transition: stroke-dashoffset 0.4s ease;
}

.plan-includes-panel.is-active .pil-check-path {
  stroke-dashoffset: 0;
  transition-delay: calc(160ms + var(--check-delay, 0ms));
}

@media (prefers-reduced-motion: reduce) {
  .plan-include-list li { animation: none !important; }
  .pil-check-path { stroke-dashoffset: 0 !important; transition: none !important; }
}

/* ── includesExtra карточки с водяным числом ── */
.plan-incl-card {
  position: relative;
  overflow: hidden;
}

.plan-incl-num {
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--plan-accent, #00d4ff);
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s ease;
}

.plan-incl-card:hover .plan-incl-num {
  opacity: 0.1;
}

/* ── Панель опций ── */
.plan-options-panel {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.7) 0%, rgba(11, 12, 16, 0.6) 100%);
}

/* ── Опции: строки ── */
.plan-detail-options li {
  align-items: center;
  gap: 0.75rem;
  transition: background 0.18s ease;
  border-radius: 0.5rem;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-detail-options li:last-child {
  border-bottom: none;
}

.plan-detail-options li:hover {
  background: rgba(255, 255, 255, 0.035);
}

.plan-options-panel.is-active .plan-detail-options li {
  animation: pil-row-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(100ms + var(--opt-delay, 0ms));
}

@media (prefers-reduced-motion: reduce) {
  .plan-options-panel .plan-detail-options li { animation: none !important; }
}

.plan-detail-options .plan-detail-options-label {
  flex: 1 1 auto;
}

/* ── Бейдж цены опции ── */
.pdo-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.08));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.2));
  color: var(--plan-accent, #00d4ff);
  white-space: nowrap;
}

/* ── Панель «Не входит в базу» ── */
.plan-excluded-panel {}

.plan-excl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.plan-excl-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.7);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-excl-list li:last-child {
  border-bottom: none;
}

.plan-excl-list li::before {
  content: '—';
  flex-shrink: 0;
  color: rgba(100, 116, 139, 0.5);
  font-size: 0.75rem;
  margin-top: 0.15em;
}

/* ── Блок оплаты ── */
.plan-payment-card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.7) 0%, rgba(11, 12, 16, 0.6) 100%);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.plan-payment-card:hover {
  transform: translateY(-2px);
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.2));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.plan-payment-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--plan-accent, #00d4ff), transparent);
  opacity: 0.7;
  border-radius: 1.25rem 0 0 1.25rem;
}

.plan-payment-card-body {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 1.75rem 1.75rem 2.25rem;
}

@media (max-width: 639px) {
  .plan-payment-card-body {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}

.plan-payment-card-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plan-accent, #00d4ff);
}

.plan-payment-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Карточки «Кому подходит» */
.plan-audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .plan-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.plan-audience-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.8), rgba(22, 33, 62, 0.4));
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--plan-accent-border, rgba(255, 255, 255, 0.14));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.plan-audience-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

/* Лента «Оплата» */
.plan-payment-strip {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

@media (max-width: 639px) {
  .plan-payment-strip {
    flex-direction: column;
  }
}

.plan-payment-strip-text {
  flex: 1 1 auto;
}

/* Инфографика «смета проекта» */
.plan-estimate {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 280px;
  flex: 1;
}

.plan-estimate-window {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 12, 16, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.plan-estimate-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.plan-estimate-bar > span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.plan-estimate-bar > span:nth-child(1) { background: rgba(249, 38, 114, 0.8); }
.plan-estimate-bar > span:nth-child(2) { background: rgba(250, 204, 21, 0.8); }
.plan-estimate-bar > span:nth-child(3) { background: rgba(74, 222, 128, 0.8); }

.plan-estimate-bar code {
  margin-left: 0.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6875rem;
  color: rgba(148, 163, 184, 0.9);
}

.plan-estimate-body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.plan-estimate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.plan-estimate-label {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.plan-estimate-row--option .plan-estimate-label {
  color: rgba(255, 255, 255, 0.55);
}

.plan-estimate-row--option .plan-estimate-label::before {
  content: "+ ";
  color: var(--plan-accent, #00d4ff);
}

.plan-estimate-value {
  flex-shrink: 0;
  font-weight: 600;
  white-space: nowrap;
  color: var(--plan-accent, #00d4ff);
}

.plan-estimate-row--option .plan-estimate-value {
  color: rgba(255, 255, 255, 0.6);
}

.plan-estimate-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  gap: 1rem;
  padding-top: 0.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
}

.plan-estimate-total-value {
  font-family: Sora, Google Sans, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.plan-estimate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.26));
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  color: var(--plan-accent, #00d4ff);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.plan-estimate-badge svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.plan-estimate-shimmer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: plan-shimmer-sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

.plan-estimate-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

.plan-estimate-float--1 {
  width: 11rem;
  height: 11rem;
  top: -1.5rem;
  left: -1rem;
  background: var(--plan-accent-glow, rgba(0, 212, 255, 0.16));
  animation: plan-drift-1 9s ease-in-out infinite;
}

.plan-estimate-float--2 {
  width: 9rem;
  height: 9rem;
  bottom: -1.5rem;
  right: -0.5rem;
  background: rgba(138, 43, 226, 0.14);
  animation: plan-drift-3 11s ease-in-out infinite;
}

/* Декор CTA: пульсирующие кольца + орбита + «отправка» */
.plan-cta-visual {
  position: relative;
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-cta-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.26));
  animation: plan-cta-ring-pulse 3.2s ease-out infinite;
}

.plan-cta-ring--2 {
  animation-delay: 1.6s;
}

@keyframes plan-cta-ring-pulse {
  0% { transform: scale(0.55); opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}

.plan-cta-orbit {
  position: absolute;
  inset: 0.45rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  animation: plan-hub-spin 14s linear infinite;
}

.plan-cta-orbit i {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--plan-accent, #00d4ff);
  box-shadow: 0 0 10px var(--plan-accent, #00d4ff);
}

.plan-cta-core {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: var(--plan-accent, #00d4ff);
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.26));
  box-shadow: 0 0 24px var(--plan-accent-glow, rgba(0, 212, 255, 0.16));
}

.plan-cta-core svg {
  width: 1.35rem;
  height: 1.35rem;
}

.plan-cta-text {
  flex: 1 1 auto;
  min-width: 220px;
}

/* Этапы — вертикальный таймлайн с соединительной линией */
.plan-process-layout .plan-detail-process-step {
  position: relative;
}

.plan-process-layout .plan-detail-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.2rem + 0.875rem);
  top: 100%;
  width: 2px;
  height: 1.1rem;
  background: linear-gradient(180deg, var(--plan-accent-border, rgba(0, 212, 255, 0.26)), transparent);
  pointer-events: none;
}

/* «Не входит в базу»: приглушённые тире вместо акцентных галочек
   (перебиваем тематические правила .plan-detail--cyan/--red .plan-detail-list) */
.plan-detail--cyan .plan-detail-list--muted li::before,
.plan-detail--red .plan-detail-list--muted li::before {
  content: "—";
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

/* Преимущества: иконка слева, порядковый номер — водяной знак справа */
.plan-detail-benefit {
  padding: 1.35rem;
}

.plan-detail-benefit-num {
  left: auto;
  right: 1.25rem;
  top: 1.15rem;
  font-size: 0.8125rem;
}

@media (prefers-reduced-motion: reduce) {
  .plan-cta-ring,
  .plan-cta-orbit,
  .plan-estimate-shimmer,
  .plan-estimate-float {
    animation: none !important;
  }
}

/* ===== Plan Route — «Маршрут проекта» (анимация секции Этапы работы) ===== */

/* Снимаем clip с враппера — ноды выступают за его границы */
.plan-process-visual-wrap {
  overflow: visible;
  background: none;
  border-color: transparent;
}

/* Контейнер визуала-маршрута */
.plan-route {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(ellipse at 20% 90%, var(--plan-accent-glow, rgba(0, 212, 255, 0.08)), transparent 55%),
    linear-gradient(165deg, rgba(22, 33, 62, 0.75), rgba(11, 12, 16, 0.55));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: visible;
}

/* SVG-холст */
.plan-route-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Фоновая трасса — пунктир */
.plan-route-track {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 9;
  fill: none;
}

/* Анимированная прогресс-линия (pathLength="100" на элементе) */
.plan-route-progress {
  stroke: var(--plan-accent, #00d4ff);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 5px var(--plan-accent, #00d4ff));
}

/* Бегущая точка-курсор */
.plan-route-runner {
  fill: var(--plan-accent, #00d4ff);
  filter:
    drop-shadow(0 0 10px var(--plan-accent, #00d4ff))
    drop-shadow(0 0 3px #fff);
}

/* Маркеры-вехи (позиционируются через JS) */
.plan-route-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 4;
}

.plan-route-node.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Кружок с номером */
.plan-route-node-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.12));
  border: 1.5px solid var(--plan-accent, #00d4ff);
  color: var(--plan-accent, #00d4ff);
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 0 12px var(--plan-accent-glow, rgba(0, 212, 255, 0.2));
  z-index: 2;
}

/* Ping-кольцо при активации */
.plan-route-node-dot i {
  display: block;
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--plan-accent, #00d4ff);
  opacity: 0;
  pointer-events: none;
}

.plan-route-node.is-active .plan-route-node-dot i {
  animation: plan-route-ping 1s ease-out 0.15s 2;
}

@keyframes plan-route-ping {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Метка под точкой */
.plan-route-node-label {
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  white-space: nowrap;
  background: rgba(11, 12, 16, 0.82);
  padding: 0.15rem 0.45rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 5.5rem;
  white-space: normal;
}

/* Финишная иконка-ракета */
.plan-route-finish {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4) rotate(-45deg);
  transition:
    opacity 0.5s ease 0.15s,
    transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
  color: var(--plan-accent, #00d4ff);
  filter: drop-shadow(0 0 14px var(--plan-accent, #00d4ff));
  z-index: 5;
}

.plan-route-finish svg {
  width: 1.375rem;
  height: 1.375rem;
}

.plan-route.is-done .plan-route-finish {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-45deg);
}

/* Подсветка карточки шага при активации (синхронно с точкой маршрута) */
.plan-detail-process-step.is-route-active {
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.28)) !important;
  background: linear-gradient(145deg, var(--plan-accent-soft, rgba(0, 212, 255, 0.05)), rgba(22, 33, 62, 0.6)) !important;
}

.plan-detail-process-step.is-route-active .plan-detail-process-num {
  color: var(--plan-accent, #00d4ff);
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.28));
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .plan-route-progress { stroke-dashoffset: 0 !important; }
  .plan-route-node     { opacity: 1 !important; transform: translate(-50%, -50%) scale(1) !important; }
  .plan-route-finish   { opacity: 1 !important; transform: translate(-50%, -50%) scale(1) rotate(-45deg) !important; }
  .plan-route-node-dot i { animation: none !important; }
}

/* =============================================================
   Redesigned Visuals — landing pricing page
   Skill guidance: no continuous decorative animations,
   motion conveys meaning, ease-out, ≤400ms, one-shot on scroll
   ============================================================= */

/* ── 1. Hero Landing: browser mockup with stagger build-in ── */

.plan-lp-preview {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  border-radius: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(170deg, rgba(22, 33, 62, 0.88), rgba(11, 12, 16, 0.72));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5), 0 0 0 0.5px rgba(255, 255, 255, 0.06);
  overflow: visible;
}

/* Chrome bar */
.plan-lp-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 1.125rem 1.125rem 0 0;
}

.plan-lp-chrome-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.plan-lp-chrome-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.plan-lp-chrome-dots span:nth-child(1) { background: rgba(255, 95, 87, 0.85); }
.plan-lp-chrome-dots span:nth-child(2) { background: rgba(254, 188, 46, 0.85); }
.plan-lp-chrome-dots span:nth-child(3) { background: rgba(40, 200, 64, 0.85); }

.plan-lp-chrome-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.4rem;
  padding: 0.22rem 0.55rem;
}

.plan-lp-chrome-lock {
  width: 10px;
  height: 10px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.plan-lp-chrome-bar > span {
  font-family: ui-monospace, monospace;
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.01em;
}

/* Body with sections */
.plan-lp-body {
  padding: 0.8rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-radius: 0 0 1.125rem 1.125rem;
  overflow: hidden;
}

/* Each section is invisible until .is-built fires */
.plan-lp-sect {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease-out, transform 0.38s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.plan-lp-preview.is-built .plan-lp-sect   { opacity: 1; transform: translateY(0); }
.plan-lp-preview.is-built .plan-lp-s1     { transition-delay: 0ms; }
.plan-lp-preview.is-built .plan-lp-s2     { transition-delay: 90ms; }
.plan-lp-preview.is-built .plan-lp-s3     { transition-delay: 180ms; }
.plan-lp-preview.is-built .plan-lp-s4     { transition-delay: 270ms; }

/* Nav row */
.plan-lp-s1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-lp-logo-pill {
  width: 2.25rem;
  height: 0.45rem;
  border-radius: 0.25rem;
  background: var(--plan-accent, #00d4ff);
  opacity: 0.8;
  flex-shrink: 0;
}

.plan-lp-nav-dots {
  flex: 1;
  display: flex;
  gap: 0.625rem;
}

.plan-lp-nav-dots i {
  display: block;
  width: 1.25rem;
  height: 0.28rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.13);
}

.plan-lp-cta-sm {
  width: 1.75rem;
  height: 0.8rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Hero section */
.plan-lp-s2 {
  padding: 0.75rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.plan-lp-headline {
  height: 0.875rem;
  width: 90%;
  border-radius: 0.35rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.3));
}

.plan-lp-subline {
  height: 0.45rem;
  width: 68%;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.2);
}

.plan-lp-cta-row {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.plan-lp-cta-primary {
  height: 1.2rem;
  width: 4.25rem;
  border-radius: 0.45rem;
  background: var(--plan-accent, #00d4ff);
  opacity: 0.85;
  box-shadow: 0 0 12px var(--plan-accent-glow, rgba(0, 212, 255, 0.28));
}

.plan-lp-cta-ghost {
  height: 1.2rem;
  width: 2.75rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

/* Feature cards */
.plan-lp-s3 {
  display: flex;
  gap: 0.4rem;
}

.plan-lp-feat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.5rem;
  padding: 0.5rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.plan-lp-feat-card span {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.3rem;
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.2));
  margin-bottom: 0.18rem;
}

.plan-lp-feat-card i {
  display: block;
  height: 0.275rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.14);
}

.plan-lp-feat-card i:first-of-type { width: 80%; }
.plan-lp-feat-card i:last-of-type  { width: 58%; }

/* Form CTA section */
.plan-lp-s4 {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.5rem;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.plan-lp-form-h {
  height: 0.45rem;
  width: 55%;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 0.2rem;
  margin-bottom: 0.15rem;
}

.plan-lp-form-row {
  display: flex;
  gap: 0.4rem;
}

.plan-lp-form-row span {
  flex: 1;
  height: 0.85rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-lp-form-sub {
  height: 1.2rem;
  border-radius: 0.4rem;
  background: var(--plan-accent, #00d4ff);
  opacity: 0.75;
  box-shadow: 0 2px 10px var(--plan-accent-glow, rgba(0, 212, 255, 0.22));
}

/* Floating badges */
.plan-lp-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.96), rgba(11, 12, 16, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.625rem 0.875rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 4;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.plan-lp-badge--right {
  right: -1.5rem;
  bottom: 1.75rem;
  transform: translateX(6px);
  min-width: 6.5rem;
  transition: opacity 0.38s ease-out 360ms, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 360ms;
}

.plan-lp-badge--left {
  left: -1.5rem;
  top: 4rem;
  transform: translateX(-6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.38s ease-out 440ms, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 440ms;
}

.plan-lp-badge--left svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--plan-accent, #00d4ff);
}

.plan-lp-preview.is-built .plan-lp-badge--right,
.plan-lp-preview.is-built .plan-lp-badge--left {
  opacity: 1;
  transform: translateX(0);
}

.plan-lp-badge-val {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--plan-accent, #00d4ff);
  line-height: 1;
  text-shadow: 0 0 12px var(--plan-accent-glow, rgba(0, 212, 255, 0.4));
}

.plan-lp-badge-sub {
  font-size: 0.575rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.plan-lp-badge-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 1.25rem;
  margin-top: 0.45rem;
}

.plan-lp-badge-bars span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 1px 1px 0 0;
  background: var(--plan-accent, #00d4ff);
  opacity: 0.55;
}

.plan-lp-badge-bars span:last-child {
  opacity: 1;
  box-shadow: 0 0 4px var(--plan-accent, #00d4ff);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .plan-lp-sect,
  .plan-lp-badge { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── 2. Estimate: one-shot shimmer scan, no floating blobs ── */

/* Override: stop continuous shimmer loop */
.plan-estimate-shimmer {
  animation: none;
  opacity: 0;
}

/* Play exactly once when JS adds .is-revealed */
.plan-estimate.is-revealed .plan-estimate-shimmer {
  animation: plan-shimmer-sweep 1.6s ease-in-out 0.3s 1 forwards;
  opacity: 1;
}

/* Hide leftover float blobs (already removed from PHP, belt+suspenders) */
.plan-estimate-float { display: none !important; }

/* Reduced motion for new animations */
@media (prefers-reduced-motion: reduce) {
  .plan-lp-badge-bars span { animation: none !important; }
  .plan-estimate.is-revealed .plan-estimate-shimmer { animation: none !important; }
}

/* ===== Plan Route Big — полноширинный маршрут «Этапы работы» ===== */

.plan-route-big-wrap {
  width: 100%;
}

/* Контейнер: три строки [верх] [SVG] [низ] */
.plan-route-big {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(ellipse at 15% 50%, var(--plan-accent-glow, rgba(0, 212, 255, 0.07)), transparent 55%),
    radial-gradient(ellipse at 85% 50%, var(--plan-accent-glow, rgba(0, 212, 255, 0.05)), transparent 55%),
    linear-gradient(165deg, rgba(22, 33, 62, 0.75), rgba(11, 12, 16, 0.55));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

/* Верхний и нижний ряды карточек */
.prb-top-row,
.prb-bot-row {
  display: grid;
  gap: 0.75rem;
}

/* Ячейка колонки — горизонтальное центрирование карточки */
.prb-col {
  display: flex;
  justify-content: center;
}

.prb-top-row .prb-col { align-items: flex-end; }   /* карточки прижаты к SVG снизу */
.prb-bot-row .prb-col { align-items: flex-start; }  /* карточки прижаты к SVG сверху */

/* SVG-холст трассы */
.prb-svg {
  display: block;
  width: 100%;
  /* aspect-ratio 5:1 = viewBox 1000/200 → равномерное масштабирование с preserveAspectRatio=none */
  aspect-ratio: 1000 / 200;
  overflow: visible;
  flex-shrink: 0;
}

/* Фоновый пунктир */
.prb-track {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 12;
  fill: none;
}

/* Прогресс-линия (анимируется JS через stroke-dashoffset) */
.prb-progress {
  stroke: var(--plan-accent, #00d4ff);
  stroke-width: 3.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 7px var(--plan-accent-glow, rgba(0, 212, 255, 0.6)));
}

/* Коннекторы: от вехи к краю SVG (дают "провод" к карточке) */
.prb-connector {
  stroke: var(--plan-accent, #00d4ff);
  stroke-width: 1;
  stroke-dasharray: 3 5;
  opacity: 0.2;
}

/* === Узлы-вехи === */
.prb-node {
  opacity: 0;
  transition: opacity 0.28s ease-out;
}

.prb-node.is-active { opacity: 1; }

/* Ping-кольцо (анимируется дважды при активации) */
.prb-node-ping {
  fill: none;
  stroke: var(--plan-accent, #00d4ff);
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.prb-node.is-active .prb-node-ping {
  animation: prb-ping 0.85s ease-out 0.08s 2;
}

@keyframes prb-ping {
  0%   { transform: scale(1);   opacity: 0.75; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Ореол (полупрозрачный круг вокруг узла) */
.prb-node-halo {
  fill: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  stroke: var(--plan-accent, #00d4ff);
  stroke-width: 1;
  opacity: 0.55;
}

/* Заливка узла */
.prb-node-bg {
  fill: var(--plan-accent, #00d4ff);
  filter: drop-shadow(0 0 7px var(--plan-accent-glow, rgba(0, 212, 255, 0.65)));
}

/* Номер внутри узла */
.prb-node-num {
  fill: #030d18;
  font-size: 12px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: central;
  font-family: 'Sora', sans-serif;
  pointer-events: none;
}

/* Финишный расходящийся круг */
.prb-finish-ring {
  fill: none;
  stroke: var(--plan-accent, #00d4ff);
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.plan-route-big.is-done .prb-finish-ring {
  animation: prb-finish 1.4s ease-out 0.1s 1 forwards;
}

@keyframes prb-finish {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(3);   opacity: 0; }
}

/* === Карточки шагов === */
.prb-card {
  width: 100%;
  max-width: 215px;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition:
    opacity 0.32s ease-out,
    transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease;
}

.prb-card--top {
  transform: translateY(-10px) scale(0.92);
}

.prb-card--bot {
  transform: translateY(10px) scale(0.92);
}

.prb-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.18));
}

/* Иконка карточки */
.prb-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.12));
  color: var(--plan-accent, #00d4ff);
  margin-bottom: 0.625rem;
  flex-shrink: 0;
}

.prb-card-icon svg {
  width: 15px;
  height: 15px;
}

.prb-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.375rem;
  line-height: 1.3;
}

.prb-card-text {
  font-size: 12px;
  color: rgba(148, 163, 184, 1);
  line-height: 1.65;
  margin: 0 0 0.625rem;
}

.prb-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plan-accent, #00d4ff);
  opacity: 0.65;
  margin-bottom: 0.4rem;
}

/* === Мобильный вертикальный таймлайн (<768px) === */
@media (max-width: 767px) {
  .plan-route-big {
    padding: 1.25rem 1rem 1.25rem 2.875rem;
    gap: 0;
    position: relative;
    overflow: visible;
  }

  /* Вертикальная линия-«рельс» */
  .plan-route-big::before {
    content: '';
    position: absolute;
    left: 1.125rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(
      to bottom,
      var(--plan-accent, #00d4ff),
      var(--plan-accent-soft, rgba(0, 212, 255, 0.2))
    );
  }

  /* SVG скрываем на мобильном */
  .prb-svg { display: none; }

  /* Ряды становятся «прозрачными» — их дети попадают напрямую в flex */
  .prb-top-row,
  .prb-bot-row { display: contents; }

  /* Ячейки тоже */
  .prb-col { display: contents; }

  /* Карточки сразу видимы, упорядочены через CSS order */
  .prb-card {
    width: 100%;
    max-width: none;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 0.75rem;
    order: var(--idx, 0);
    padding: 0.875rem 1rem;
    position: relative;
  }

  /* Маркер-кружок на «рельсе» слева от карточки */
  .prb-card::before {
    content: '';
    position: absolute;
    left: calc(-1.75rem + 1px);
    top: 1.125rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--plan-accent, #00d4ff);
    border: 2px solid #0b0c10;
    box-shadow: 0 0 8px var(--plan-accent-glow, rgba(0, 212, 255, 0.55));
  }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .prb-card             { opacity: 1 !important; transform: none !important; transition: none !important; }
  .prb-progress         { stroke-dashoffset: 0 !important; }
  .prb-node             { opacity: 1 !important; transition: none !important; }
  .prb-node-ping        { animation: none !important; }
  .prb-finish-ring      { animation: none !important; }
}

/* ===== Статьи по теме ===== */

.plan-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .plan-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.plan-article-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem 1.375rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.plan-article-card:hover {
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.2));
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.plan-article-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.plan-article-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plan-accent, #00d4ff);
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.2));
  border-radius: 0.375rem;
  padding: 0.2rem 0.55rem;
}

.plan-article-read {
  font-size: 11px;
  color: rgba(100, 116, 139, 1);
  white-space: nowrap;
}

.plan-article-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.plan-article-text {
  font-size: 13px;
  color: rgba(148, 163, 184, 1);
  line-height: 1.65;
  margin: 0;
}

.plan-article-more {
  display: block;
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--plan-accent, #00d4ff);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.plan-article-card:hover .plan-article-more {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Страница статьи ===== */

.article-page-wrap {
  max-width: 720px;
}

.article-page-header {
  margin-bottom: 2.5rem;
}

.article-page-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.article-page-read {
  font-size: 12px;
  color: rgba(100, 116, 139, 1);
}

.article-page-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.article-page-lead {
  font-size: 1.0625rem;
  color: rgba(148, 163, 184, 1);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

.article-page-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2.5rem;
}

.article-page-body p {
  font-size: 1rem;
  color: rgba(203, 213, 225, 1);
  line-height: 1.8;
  margin: 0;
}

.article-page-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}

.article-page-cta-text {
  width: 100%;
  font-size: 0.875rem;
  color: rgba(100, 116, 139, 1);
  margin: 0 0 0.25rem;
}

/* ===== Hero: Corporate site mockup ===== */

.plan-corp-preview {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  border-radius: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(170deg, rgba(22, 33, 62, 0.88), rgba(11, 12, 16, 0.72));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5), 0 0 0 0.5px rgba(255, 255, 255, 0.06);
  overflow: visible;
}

/* Top nav inside the site */
.plan-corp-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.plan-corp-logo {
  display: block;
  width: 2.25rem;
  height: 0.5rem;
  border-radius: 0.3rem;
  background: var(--plan-accent, #f92672);
  opacity: 0.65;
  flex-shrink: 0;
}

.plan-corp-navlinks {
  display: flex;
  gap: 0.25rem;
  flex: 1;
}

.plan-corp-navlink {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.3);
  padding: 0.15rem 0.3rem;
  border-radius: 0.2rem;
  white-space: nowrap;
}

.plan-corp-navlink--active {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
}

.plan-corp-nav-cta {
  display: block;
  width: 2.5rem;
  height: 0.9rem;
  border-radius: 0.3rem;
  background: var(--plan-accent, #f92672);
  opacity: 0.18;
  flex-shrink: 0;
}

/* Two-column layout */
.plan-corp-layout {
  display: flex;
}

.plan-corp-sidebar {
  width: 27%;
  flex-shrink: 0;
  padding: 0.6rem 0.45rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.plan-corp-sidebar-head {
  font-size: 0.42rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.22);
  padding: 0 0.2rem;
  margin-bottom: 0.2rem;
}

.plan-corp-sidebar-item {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.32);
  padding: 0.18rem 0.3rem;
  border-radius: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-corp-sidebar-item--active {
  color: var(--plan-accent, #f92672);
  background: var(--plan-accent-soft, rgba(249, 38, 114, 0.08));
}

.plan-corp-sidebar-sub {
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.44rem;
  padding-left: 0.5rem;
}

/* Content area */
.plan-corp-content {
  flex: 1;
  padding: 0.65rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}

.plan-corp-page-title {
  height: 0.55rem;
  width: 55%;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 0.25rem;
}

.plan-corp-page-sub {
  height: 0.28rem;
  width: 80%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.2rem;
  margin-bottom: 0.1rem;
}

/* Service card grid */
.plan-corp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}

.plan-corp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding-bottom: 0.38rem;
}

.plan-corp-card--hl {
  border-color: var(--plan-accent-border, rgba(249, 38, 114, 0.22));
}

.plan-corp-card-img {
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.04);
}

.plan-corp-card--hl .plan-corp-card-img {
  background: var(--plan-accent-soft, rgba(249, 38, 114, 0.07));
}

.plan-corp-card-line {
  height: 0.28rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.18rem;
  margin: 0 0.35rem;
}

.plan-corp-card-line--short {
  width: 55%;
  background: rgba(255, 255, 255, 0.05);
}

/* Floating badges */
.plan-corp-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.97), rgba(11, 12, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.6rem 0.875rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 4;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.plan-corp-badge--pages {
  right: -1.5rem;
  top: 4.5rem;
  text-align: center;
  transform: translateX(6px);
  transition: opacity 0.38s ease-out 350ms, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 350ms;
}

.plan-corp-badge--cwv {
  left: -1.5rem;
  bottom: 2rem;
  min-width: 6.75rem;
  transform: translateX(-6px);
  transition: opacity 0.38s ease-out 480ms, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 480ms;
}

.plan-corp-preview.is-built .plan-corp-badge {
  opacity: 1;
  transform: translateX(0);
}

.plan-corp-badge-val {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--plan-accent, #f92672);
  line-height: 1;
  text-shadow: 0 0 14px var(--plan-accent-glow, rgba(249, 38, 114, 0.4));
}

.plan-corp-badge-sub {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.15rem;
}

.plan-corp-cwv-track {
  margin-top: 0.45rem;
  height: 0.22rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0.2rem;
  overflow: hidden;
}

.plan-corp-cwv-bar {
  height: 100%;
  width: 0%;
  background: var(--plan-accent, #f92672);
  border-radius: 0.2rem;
  box-shadow: 0 0 6px var(--plan-accent-glow, rgba(249, 38, 114, 0.5));
  transition: width 0.9s cubic-bezier(0.25, 1, 0.5, 1) 600ms;
}

.plan-corp-preview.is-built .plan-corp-cwv-bar {
  width: 94%;
}

@media (prefers-reduced-motion: reduce) {
  .plan-corp-badge { opacity: 1 !important; transform: none !important; transition: none !important; }
  .plan-corp-cwv-bar { transition: none !important; width: 94% !important; }
}

/* ===== Hero: Shop e-commerce mockup ===== */

.plan-shop-preview {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  border-radius: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(170deg, rgba(22, 33, 62, 0.88), rgba(11, 12, 16, 0.72));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5), 0 0 0 0.5px rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.plan-shop-topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.plan-shop-logo {
  display: block;
  width: 2rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: var(--plan-accent, #00d4ff);
  opacity: 0.5;
  flex-shrink: 0;
}

.plan-shop-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.3rem;
  padding: 0.2rem 0.4rem;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.47rem;
  overflow: hidden;
}

.plan-shop-search svg {
  width: 0.62rem;
  height: 0.62rem;
  flex-shrink: 0;
}

.plan-shop-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.38);
}

.plan-shop-cart svg {
  width: 0.88rem;
  height: 0.88rem;
}

.plan-shop-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--plan-accent, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.34rem;
  font-weight: 700;
  color: #030916;
  line-height: 1;
}

/* Site body */
.plan-shop-site {
  display: flex;
  flex-direction: column;
}

.plan-shop-cats {
  display: flex;
  gap: 0.22rem;
  padding: 0.45rem 0.65rem 0.3rem;
  overflow: hidden;
}

.plan-shop-cat {
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.28);
  padding: 0.14rem 0.38rem;
  border-radius: 9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.plan-shop-cat--active {
  color: var(--plan-accent, #00d4ff);
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.28));
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.07));
}

/* Product grid */
.plan-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  padding: 0 0.6rem 0.65rem;
}

.plan-shop-product {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plan-shop-product-img {
  height: 2.5rem;
}

.plan-shop-product-img--1 {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.plan-shop-product-img--2 {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.18) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.plan-shop-product-img--3 {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.plan-shop-product-info {
  padding: 0.32rem 0.38rem 0.38rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
}

.plan-shop-product-name {
  height: 0.27rem;
  width: 72%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.18rem;
}

.plan-shop-product-price {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--plan-accent, #00d4ff);
  letter-spacing: -0.01em;
}

.plan-shop-product-btn {
  font-size: 0.42rem;
  text-align: center;
  padding: 0.18rem 0;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.38);
  margin-top: auto;
}

.plan-shop-product-btn--added {
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  border-color: var(--plan-accent-border, rgba(0, 212, 255, 0.28));
  color: var(--plan-accent, #00d4ff);
}

/* Floating order toast */
.plan-shop-toast {
  position: absolute;
  right: -1.5rem;
  top: 3.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.97), rgba(11, 12, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  padding: 0.55rem 0.75rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.38s ease-out 420ms, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 420ms;
}

.plan-shop-preview.is-built .plan-shop-toast {
  opacity: 1;
  transform: translateX(0);
}

.plan-shop-toast-check {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: rgba(40, 200, 64, 0.12);
  border: 1px solid rgba(40, 200, 64, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #28c840;
  flex-shrink: 0;
}

.plan-shop-toast-text strong {
  display: block;
  font-size: 0.54rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.plan-shop-toast-text small {
  display: block;
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.33);
  margin-top: 0.04rem;
  white-space: nowrap;
}

/* Floating stat badge */
.plan-shop-stat {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.97), rgba(11, 12, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.6rem 0.875rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.38s ease-out 530ms, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 530ms;
}

.plan-shop-preview.is-built .plan-shop-stat {
  opacity: 1;
  transform: translateX(0);
}

.plan-shop-stat-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--plan-accent, #00d4ff);
  line-height: 1;
  text-shadow: 0 0 14px var(--plan-accent-glow, rgba(0, 212, 255, 0.4));
}

.plan-shop-stat-sub {
  display: block;
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.1rem;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

.plan-shop-stat-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.18rem;
  height: 1.1rem;
}

.plan-shop-stat-bars span {
  display: block;
  flex: 1;
  height: var(--h, 50%);
  border-radius: 0.12rem;
  background: var(--plan-accent, #00d4ff);
  opacity: 0.45;
}

.plan-shop-stat-bars span:last-child {
  opacity: 1;
  box-shadow: 0 0 5px var(--plan-accent-glow, rgba(0, 212, 255, 0.5));
}

@media (prefers-reduced-motion: reduce) {
  .plan-shop-toast,
  .plan-shop-stat { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Hero: Laravel Request Profiler ===== */

.plan-lrv-preview {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  border-radius: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(170deg, rgba(10, 14, 26, 0.94) 0%, rgba(6, 8, 14, 0.88) 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.55), 0 0 0 0.5px rgba(255, 255, 255, 0.05);
  overflow: visible;
  font-family: ui-monospace, 'Cascadia Code', monospace;
}

/* Request bar */
.plan-lrv-reqbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 1.125rem 1.125rem 0 0;
}

.plan-lrv-method {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--plan-accent, #00d4ff);
  background: var(--plan-accent-soft, rgba(0, 212, 255, 0.1));
  border: 1px solid var(--plan-accent-border, rgba(0, 212, 255, 0.22));
  padding: 0.1rem 0.32rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.plan-lrv-endpoint {
  flex: 1;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-lrv-status {
  font-size: 0.5rem;
  font-weight: 600;
  color: #28c840;
  background: rgba(40, 200, 64, 0.1);
  border: 1px solid rgba(40, 200, 64, 0.22);
  padding: 0.1rem 0.32rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

/* Ruler ticks */
.plan-lrv-ruler {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0.875rem 0.2rem calc(0.875rem + 5.25rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-lrv-ruler span {
  display: block;
  width: 1px;
  height: 0.3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

/* Timeline rows */
.plan-lrv-rows {
  padding: 0.5rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.plan-lrv-row {
  display: grid;
  grid-template-columns: 5.25rem 1fr 2.5rem;
  align-items: center;
  gap: 0.4rem;
}

.plan-lrv-label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-lrv-track {
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-lrv-bar {
  height: 100%;
  width: 0%;
  border-radius: 0.3rem;
  transition: width 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.plan-lrv-preview.is-built .plan-lrv-bar { width: var(--w, 20%); }

/* Stagger each row via nth-child */
.plan-lrv-row:nth-child(1) .plan-lrv-bar { transition-delay: 80ms; }
.plan-lrv-row:nth-child(2) .plan-lrv-bar { transition-delay: 160ms; }
.plan-lrv-row:nth-child(3) .plan-lrv-bar { transition-delay: 240ms; }
.plan-lrv-row:nth-child(4) .plan-lrv-bar { transition-delay: 320ms; }
.plan-lrv-row:nth-child(5) .plan-lrv-bar { transition-delay: 400ms; }
.plan-lrv-row:nth-child(6) .plan-lrv-bar { transition-delay: 480ms; }

/* Bar color per layer */
.plan-lrv-bar--auth   { background: var(--plan-accent, #00d4ff); opacity: 0.55; }
.plan-lrv-bar--router { background: var(--plan-accent, #00d4ff); opacity: 0.35; }
.plan-lrv-bar--ctrl   { background: var(--plan-accent, #00d4ff); opacity: 0.7; }
.plan-lrv-bar--db {
  background: linear-gradient(90deg, var(--plan-accent, #00d4ff), var(--plan-accent-glow, rgba(0, 212, 255, 0.6)));
  opacity: 1;
  box-shadow: 0 0 8px var(--plan-accent-glow, rgba(0, 212, 255, 0.35));
}
.plan-lrv-bar--cache  { background: rgba(147, 51, 234, 0.7); }
.plan-lrv-bar--resp   { background: rgba(40, 200, 64, 0.65); }

.plan-lrv-ms {
  font-size: 0.47rem;
  color: rgba(255, 255, 255, 0.28);
  text-align: right;
}

/* Footer */
.plan-lrv-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.875rem 0.625rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-lrv-total {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.plan-lrv-total-label {
  font-size: 0.47rem;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.plan-lrv-total-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--plan-accent, #00d4ff);
  text-shadow: 0 0 10px var(--plan-accent-glow, rgba(0, 212, 255, 0.4));
  letter-spacing: -0.02em;
}

.plan-lrv-tags {
  display: flex;
  gap: 0.25rem;
}

.plan-lrv-tag {
  font-size: 0.44rem;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.25rem;
  padding: 0.12rem 0.3rem;
}

.plan-lrv-tag--ok {
  color: rgba(40, 200, 64, 0.7);
  background: rgba(40, 200, 64, 0.08);
  border-color: rgba(40, 200, 64, 0.18);
}

/* Floating badges */
.plan-lrv-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.98), rgba(6, 8, 14, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.6rem 0.875rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 4;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.plan-lrv-badge--rt {
  right: -1.5rem;
  top: 3.75rem;
  text-align: center;
  transform: translateX(6px);
  transition: opacity 0.38s ease-out 560ms, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 560ms;
}

.plan-lrv-badge--up {
  left: -1.5rem;
  bottom: 1.75rem;
  min-width: 7rem;
  transform: translateX(-6px);
  transition: opacity 0.38s ease-out 680ms, transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 680ms;
}

.plan-lrv-preview.is-built .plan-lrv-badge {
  opacity: 1;
  transform: translateX(0);
}

.plan-lrv-badge-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--plan-accent, #00d4ff);
  line-height: 1;
  text-shadow: 0 0 14px var(--plan-accent-glow, rgba(0, 212, 255, 0.45));
}

.plan-lrv-badge-sub {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.12rem;
  white-space: nowrap;
}

/* Uptime dot grid */
.plan-lrv-udots {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 0.18rem;
  margin-top: 0.45rem;
}

.plan-lrv-udot {
  display: block;
  aspect-ratio: 1;
  border-radius: 0.15rem;
  background: rgba(40, 200, 64, 0.5);
}

.plan-lrv-udot--warn {
  background: rgba(251, 191, 36, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .plan-lrv-bar { transition: none !important; width: var(--w, 20%) !important; }
  .plan-lrv-badge { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Wizard Calculator ─────────────────────────────────────── */

/* Step indicator */
#wizardStepRow {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: stretch;
}

.wizard-step-dot {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border);
  color: var(--text-muted); font-size: 10px; font-weight: 700;
  font-family: Sora, Google Sans, system-ui, sans-serif;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--ease), color var(--ease), background var(--ease), box-shadow var(--ease);
}
.wizard-step-dot.active {
  border-color: var(--cyan); color: var(--cyan);
  background: rgba(0,212,255,.1); box-shadow: 0 0 0 3px rgba(0,212,255,.1);
}
.wizard-step-dot.done {
  border-color: rgba(0,212,255,.4); color: var(--cyan); background: rgba(0,212,255,.07);
}
.wizard-step-line {
  height: 1px; flex: 1; margin: 0 5px; background: var(--border);
  transition: background var(--ease);
}
.wizard-step-line.done { background: rgba(0,212,255,.4); }

/* Base selectable card */
.calc-product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  cursor: pointer;
  background: var(--surface);
  transition: border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
  user-select: none;
}
.calc-product-card:hover {
  border-color: var(--cyan);
  background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(0,212,255,.3), 0 0 18px rgba(0,212,255,.25), 0 8px 30px rgba(0,0,0,.4);
}
.calc-product-card.selected,
.calc-product-card.is-selected {
  border-color: var(--cyan);
  background: rgba(0,212,255,.06);
  box-shadow: 0 0 0 1px rgba(0,212,255,.25), 0 6px 20px rgba(0,212,255,.1);
}

.wiz-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
  font-size: 30px;
  line-height: 1;
  transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.wiz-card-icon .hgi-stroke {
  display: block;
  line-height: 1;
}

.calc-product-card:hover .wiz-card-icon,
.calc-product-card.selected .wiz-card-icon,
.calc-product-card.is-selected .wiz-card-icon {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(0, 212, 255, 0.14);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.18);
}

/* Card typography */
.wiz-card-title {
  color: var(--text-main);
  font-weight: 600; font-size: 14px; margin-bottom: 4px; line-height: 1.3;
  font-family: Sora, Google Sans, system-ui, sans-serif;
  text-align: center;
  min-height: 3.9em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wiz-card-sub {
  color: var(--text-muted); font-size: 12px; line-height: 1.5;
  text-align: center;
}

/* Grid-контейнеры для шагов — одинаковые карточки, короткие ряды по центру */
.wiz-cards {
  display: grid !important;
  grid-template-columns: repeat(var(--cards-mobile-cols, 2), minmax(0, 1fr));
  justify-content: center;
  gap: 12px;
}

#calc .border-t.pt-6 {
  padding-top: 32px !important;
}

@media (min-width: 640px) {
  .wiz-cards {
    grid-template-columns: repeat(var(--cards-cols, 5), minmax(0, calc((100% - 48px) / 5)));
  }

  #calc .border-t.pt-6 {
    padding-top: 36px !important;
  }
}

.wizard-step-row--compact .wizard-step-dot {
  width: 20px;
  min-width: 20px;
  height: 20px;
  font-size: 8px;
  border-width: 1px;
}

.wizard-step-row--compact .wizard-step-line {
  flex: 1;
  min-width: 3px;
  margin: 0 1px;
}

.wizard-step-counter {
  font-size: 13px;
  font-weight: 600;
  font-family: Sora, Google Sans, system-ui, sans-serif;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.wsc-num { color: var(--cyan); }
.wsc-of { margin: 0 4px; }

@media (max-width: 639px) {
  .wiz-card-title {
    min-height: 5.2em;
  }
}

/* Step 1 & 3 — иконка + текст по центру */
.wiz-cat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center; padding: 28px 14px 24px; min-height: 200px;
}

/* Step 2 — цели (теперь используют wiz-cat-card, этот класс не применяется) */
.wiz-goal-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px 14px; min-height: 200px;
}

/* Step 4 — масштаб */
.wiz-scale-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px 16px; min-height: 200px;
}

/* Steps 5–6 — карточки-ответы (тот же стиль что и шаг 1) */
.wiz-answer-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px 14px; min-height: 200px;
}
.wiz-answer-card .wiz-card-title { font-size: 15px; font-weight: 600; }

.wizard-result-summary {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 16px;
}

.wizard-result-kicker {
  margin: 0 0 18px;
  color: rgba(148, 163, 184, 0.95);
  font-size: 18px;
  line-height: 1.35;
}

.wizard-result-price {
  color: var(--cyan);
  font-family: Sora, Google Sans, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow:
    0 0 8px rgba(0, 212, 255, 0.75),
    0 0 22px rgba(0, 212, 255, 0.55),
    0 0 48px rgba(0, 212, 255, 0.28);
}

.wizard-result-note {
  margin: 0;
  color: rgba(100, 116, 139, 1);
  font-size: 15px;
  line-height: 1.5;
}

/* Contact mode pill toggle */
.contact-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  color: rgba(148, 163, 184, 1);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
  user-select: none;
}
.contact-pill:not(.contact-pill--active):hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(203, 213, 225, 1);
}
.contact-pill--active {
  border-color: rgba(34, 211, 238, 1);
  color: rgba(34, 211, 238, 1);
  background: rgba(34, 211, 238, 0.08);
}

.lead-contact-method {
  margin-top: 16px;
}

.wizard-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: opacity 0.22s ease;
}

.wizard-lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.82);
  backdrop-filter: blur(10px);
}

.wizard-lead-modal__panel {
  position: relative;
  width: min(100%, 440px);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.98), rgba(10, 10, 26, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), 0 0 55px rgba(0, 212, 255, 0.12);
  padding: 30px;
  transform: scale(0.96);
  transition: transform 0.22s ease;
}

.wizard-lead-modal:not(.opacity-0) .wizard-lead-modal__panel {
  transform: scale(1);
}

.wizard-lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.wizard-lead-modal__close:hover {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
}

.wizard-lead-modal__intro {
  text-align: center;
  padding: 18px 0;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-lead-modal__intro h3,
.wizard-lead-modal__intro p {
  margin: 0;
}

.wizard-lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wizard-lead-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.wizard-lead-input::placeholder {
  color: rgba(148, 163, 184, 0.95);
}

.wizard-lead-input:focus {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.wizard-contact-method {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wizard-contact-method.is-hidden {
  display: none;
}

.wizard-contact-method__title {
  margin: 0;
  color: rgba(203, 213, 225, 0.92);
  font-size: 13px;
  line-height: 1.4;
}

.wizard-contact-method__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.wizard-contact-method__options label {
  min-width: 0;
  cursor: pointer;
}

.wizard-contact-method__options input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wizard-contact-method__options span {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(148, 163, 184, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  font-size: 13px;
  line-height: 1.2;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.wizard-contact-method__options input:checked + span {
  border-color: rgba(34, 211, 238, 0.9);
  color: rgba(34, 211, 238, 1);
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12);
}

.wizard-lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(148, 163, 184, 0.95);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.wizard-lead-consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: rgba(34, 211, 238, 1);
}

.wizard-lead-consent a {
  color: rgba(34, 211, 238, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(34, 211, 238, 0.42);
}

.wizard-lead-error {
  display: none;
  margin: -4px 0 0;
  color: #fca5a5;
  font-size: 13px;
  line-height: 1.4;
}

.wizard-lead-error.is-visible {
  display: block;
}

.wiz-empty-note {
  grid-column: 1 / -1;
  width: min(520px, 100%);
  margin: 0 auto;
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(148, 163, 184, 0.95);
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 480px) {
  .wizard-lead-modal__panel {
    padding: 26px 20px 22px;
    border-radius: 20px;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   GENERATED PAGE HERO VISUALS
   ════════════════════════════════════════════════════════════════════════ */

/* ── Shared badge atom (reused across visuals) ─────────────────────── */
.plan-cal-stat {
  position: absolute;
  top: -18px;
  left: -20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background: rgba(11, 12, 18, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
}
.plan-cal-stat b { font-size: 20px; color: #00d4ff; line-height: 1; }
.plan-cal-stat small { font-size: 10px; color: rgba(255,255,255,0.5); }

/* ── CALENDAR (booking) ────────────────────────────────────────────── */
.plan-cal-preview {
  position: relative;
  width: min(100%, 470px);
  margin: 30px auto 24px;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-cal-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.plan-cal-month { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); }
.plan-cal-nav { font-size: 16px; color: #00d4ff; letter-spacing: 4px; cursor: default; }
.plan-cal-grid {
  display: grid;
  grid-template-columns: 36px repeat(5, 1fr);
  gap: 3px;
}
.plan-cal-dh {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  padding: 3px 0;
}
.plan-cal-th {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  padding: 0 2px;
}
.plan-cal-slot {
  height: 34px;
  border-radius: 5px;
  border: 1px solid transparent;
}
.plan-cal-slot--free    { background: rgba(0,212,255,0.08);  border-color: rgba(0,212,255,0.18); }
.plan-cal-slot--booked  { background: rgba(249,38,114,0.12); border-color: rgba(249,38,114,0.22); }
.plan-cal-slot--sel {
  background: rgba(0,212,255,0.28);
  border-color: rgba(0,212,255,0.55);
  box-shadow: 0 0 10px rgba(0,212,255,0.22);
}
.plan-cal-confirm {
  position: absolute;
  bottom: -18px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,12,18,0.92);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 10px;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
}
.plan-cal-check { font-size: 17px; color: #00d4ff; }
.plan-cal-confirm b  { display: block; font-size: 12px; color: #fff; }
.plan-cal-confirm small { font-size: 10px; color: rgba(255,255,255,0.5); }

/* ── PORTAL ──────────────────────────────────────────────────────── */
.plan-portal-preview {
  position: relative;
  width: min(100%, 520px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-portal-body {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 256px;
}
.plan-portal-sidebar {
  background: rgba(0,0,0,0.25);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-portal-side-hd {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.35);
  padding: 0 6px 2px;
}
.plan-portal-role {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.plan-portal-role--admin  { background: rgba(0,212,255,0.2);   color: #00d4ff; }
.plan-portal-role--mgr    { background: rgba(167,139,250,0.2); color: #a78bfa; }
.plan-portal-role--user   { background: rgba(255,255,255,0.08);color: rgba(255,255,255,0.5); }
.plan-portal-hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 6px 0; }
.plan-portal-nav-item {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  padding: 5px 6px;
  border-radius: 5px;
  cursor: default;
}
.plan-portal-nav-item--active {
  background: rgba(0,212,255,0.12);
  color: #00d4ff;
}
.plan-portal-content { padding: 14px 12px; }
.plan-portal-title { height: 10px; background: rgba(255,255,255,0.12); border-radius: 4px; margin-bottom: 10px; width: 60%; }
.plan-portal-kpis { display: flex; gap: 6px; margin-bottom: 12px; }
.plan-portal-kpi {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 6px 8px;
  text-align: center;
}
.plan-portal-kpi b    { display: block; font-size: 16px; color: rgba(255,255,255,0.9); }
.plan-portal-kpi small{ font-size: 9px; color: rgba(255,255,255,0.4); }
.plan-portal-kpi--red b { color: #f92672; }
.plan-portal-table { display: flex; flex-direction: column; gap: 5px; }
.plan-portal-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 5px 8px;
}
.plan-portal-ava {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c, rgba(255,255,255,0.2));
  opacity: 0.4;
  flex-shrink: 0;
}
.plan-portal-uname { font-size: 11px; color: rgba(255,255,255,0.75); flex: 1; }
.plan-portal-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--c) 20%, transparent);
  color: var(--c, rgba(255,255,255,0.5));
}
.plan-portal-stat { top: auto; bottom: -18px; left: auto; right: -20px; }

/* ── LMS / COURSES ───────────────────────────────────────────────── */
.plan-lms-preview {
  position: relative;
  width: min(100%, 490px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-lms-player {
  background: rgba(0,0,0,0.4);
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-lms-screen {
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.plan-lms-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(249,38,114,0.04));
}
.plan-lms-play {
  width: 36px; height: 36px;
  background: rgba(0,212,255,0.2);
  border: 2px solid rgba(0,212,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
}
.plan-lms-play svg { width: 16px; height: 16px; }
.plan-lms-progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.plan-lms-progress-fill { height: 100%; background: #00d4ff; border-radius: 2px; }
.plan-lms-player-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.plan-lms-list { padding: 10px 12px; }
.plan-lms-list-hd { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.plan-lms-lesson {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 3px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.plan-lms-lesson--done   { background: rgba(0,212,255,0.06);  color: rgba(255,255,255,0.8); }
.plan-lms-lesson--active { background: rgba(249,38,114,0.08); color: rgba(255,255,255,0.9); }
.plan-lms-lesson-ico {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
}
.plan-lms-lesson--done .plan-lms-lesson-ico   { background: rgba(0,212,255,0.2); color: #00d4ff; }
.plan-lms-lesson--active .plan-lms-lesson-ico { background: rgba(249,38,114,0.2); color: #f92672; }
.plan-lms-lesson-title { flex: 1; }
.plan-lms-mini-bar {
  width: 40px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.plan-lms-mini-bar div { height: 100%; background: #00d4ff; border-radius: 2px; }
.plan-lms-stat { top: auto; bottom: -18px; right: -20px; left: auto; }

/* ── WEB APP / CONFIGURATOR ──────────────────────────────────────── */
.plan-cfg-preview {
  position: relative;
  width: min(100%, 470px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-cfg-body { padding: 14px 16px 16px; }
.plan-cfg-title { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.plan-cfg-field { margin-bottom: 12px; }
.plan-cfg-field label { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.plan-cfg-slider { margin-bottom: 4px; }
.plan-cfg-track {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
}
.plan-cfg-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, rgba(0,212,255,0.5));
  border-radius: 2px;
}
.plan-cfg-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: #00d4ff;
  border-radius: 50%;
  border: 2px solid rgba(11,12,18,0.9);
  box-shadow: 0 0 6px rgba(0,212,255,0.5);
}
.plan-cfg-val { font-size: 12px; color: #00d4ff; float: right; margin-top: -20px; }
.plan-cfg-opts { display: flex; gap: 5px; flex-wrap: wrap; }
.plan-cfg-opt {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  cursor: default;
}
.plan-cfg-opt--active {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.4);
  color: #00d4ff;
}
.plan-cfg-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 14px;
}
.plan-cfg-result-label { font-size: 12px; color: rgba(255,255,255,0.55); }
.plan-cfg-result-val   { font-size: 20px; font-weight: 700; color: #00d4ff; }
.plan-cfg-stat { top: auto; bottom: -18px; left: -20px; }

/* ── SAAS DASHBOARD ──────────────────────────────────────────────── */
.plan-saas-preview {
  position: relative;
  width: min(100%, 490px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-saas-body { padding: 12px 14px 14px; }
.plan-saas-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.plan-saas-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  padding: 8px 10px;
  text-align: center;
}
.plan-saas-kpi--cyan { border-color: rgba(0,212,255,0.2); }
.plan-saas-kpi-v { display: block; font-size: 17px; font-weight: 700; color: rgba(255,255,255,0.9); }
.plan-saas-kpi--cyan .plan-saas-kpi-v { color: #00d4ff; }
.plan-saas-kpi-l { font-size: 10px; color: rgba(255,255,255,0.4); }
.plan-saas-chart { margin-bottom: 10px; }
.plan-saas-chart-label { font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.plan-saas-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
}
.plan-saas-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(0,212,255,0.6), rgba(0,212,255,0.15));
  border-radius: 3px 3px 0 0;
  height: calc(var(--h) * 0.6px);
  min-height: 4px;
  animation: plan-bar-grow 3s ease-in-out infinite;
}
.plan-saas-bar:nth-child(2n) { animation-delay: 0.4s; }
.plan-saas-bar:nth-child(3n) { animation-delay: 0.8s; }
.plan-saas-table { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 8px; }
.plan-saas-tr { display: flex; align-items: center; font-size: 11px; padding: 4px 0; gap: 0; }
.plan-saas-tr span { flex: 1; color: rgba(255,255,255,0.55); }
.plan-saas-tr--hd span { color: rgba(255,255,255,0.3); font-size: 10px; }
.plan-saas-up { color: #00d4ff !important; }
.plan-saas-stat { top: auto; bottom: -18px; right: -20px; left: auto; }

/* ── MARKETPLACE ────────────────────────────────────────────────── */
.plan-mrkt-preview {
  position: relative;
  width: min(100%, 490px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-mrkt-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}
.plan-mrkt-search svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.5; }
.plan-mrkt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 10px 12px;
}
.plan-mrkt-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.plan-mrkt-img {
  position: relative;
  height: 74px;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(249,38,114,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-mrkt-card:nth-child(2) .plan-mrkt-img { background: linear-gradient(135deg, rgba(167,139,250,0.1), rgba(0,212,255,0.06)); }
.plan-mrkt-card:nth-child(3) .plan-mrkt-img { background: linear-gradient(135deg, rgba(249,38,114,0.08), rgba(167,139,250,0.06)); }
.plan-mrkt-card:nth-child(4) .plan-mrkt-img { background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(249,38,114,0.1)); }
.plan-mrkt-product-icon {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.55);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.plan-mrkt-card:nth-child(1) .plan-mrkt-product-icon { color: rgba(0,212,255,0.75); }
.plan-mrkt-card:nth-child(2) .plan-mrkt-product-icon { color: rgba(167,139,250,0.8); }
.plan-mrkt-card:nth-child(3) .plan-mrkt-product-icon { color: rgba(249,38,114,0.7); }
.plan-mrkt-card:nth-child(4) .plan-mrkt-product-icon { color: rgba(0,212,255,0.65); }
.plan-mrkt-disc {
  position: absolute;
  top: 6px; left: 6px;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 5px;
  background: #f92672;
  color: #fff;
}
.plan-mrkt-hit {
  position: absolute;
  bottom: 6px; left: 6px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(251,191,36,0.9);
  color: #1a1a1a;
}
.plan-mrkt-fav {
  position: absolute;
  top: 5px; right: 6px;
  width: 18px; height: 18px;
  color: rgba(255,255,255,0.45);
}
.plan-mrkt-fav svg { width: 100%; height: 100%; }
.plan-mrkt-fav--on { color: #f92672; }
.plan-mrkt-info { padding: 6px 8px 8px; }
.plan-mrkt-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}
.plan-mrkt-price { font-size: 13px; font-weight: 800; color: #00d4ff; }
.plan-mrkt-price-old {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.plan-mrkt-name {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan-mrkt-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 3px;
  font-size: 10px;
}
.plan-mrkt-rating svg { width: 10px; height: 10px; color: #fbbf24; flex-shrink: 0; }
.plan-mrkt-rating b { color: rgba(255,255,255,0.85); font-weight: 700; }
.plan-mrkt-rating span { color: rgba(255,255,255,0.35); }
.plan-mrkt-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.plan-mrkt-delivery {
  font-size: 9px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  padding: 1px 6px;
  border-radius: 4px;
}
.plan-mrkt-sellers { font-size: 9px; color: rgba(255,255,255,0.35); }
.plan-mrkt-btn {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 4px 0;
  border-radius: 6px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  cursor: default;
}
.plan-mrkt-btn--added {
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.3);
  color: #4ade80;
}
.plan-mrkt-stat { top: auto; bottom: -18px; right: -20px; left: auto; }

/* ── CLASSIFIEDS ────────────────────────────────────────────────── */
.plan-clas-preview {
  position: relative;
  width: min(100%, 490px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-clas-filters {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.plan-clas-chip {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  cursor: default;
}
.plan-clas-chip--active {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.4);
  color: #00d4ff;
}
.plan-clas-list { padding: 8px 10px 10px; display: flex; flex-direction: column; gap: 6px; }
.plan-clas-ad {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 8px;
  align-items: flex-start;
}
.plan-clas-ad-img {
  width: 54px; height: 54px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(249,38,114,0.08));
  flex-shrink: 0;
}
.plan-clas-ad:nth-child(2) .plan-clas-ad-img { background: linear-gradient(135deg, rgba(167,139,250,0.12), rgba(0,212,255,0.08)); }
.plan-clas-ad:nth-child(3) .plan-clas-ad-img { background: linear-gradient(135deg, rgba(249,38,114,0.1), rgba(167,139,250,0.1)); }
.plan-clas-ad-body { flex: 1; min-width: 0; }
.plan-clas-ad-title { font-size: 12px; color: rgba(255,255,255,0.85); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.plan-clas-ad-meta  { display: flex; gap: 6px; margin-bottom: 4px; }
.plan-clas-tag  { font-size: 10px; padding: 2px 6px; border-radius: 4px; background: rgba(0,212,255,0.1); color: #00d4ff; }
.plan-clas-city { font-size: 10px; color: rgba(255,255,255,0.35); padding: 2px 0; }
.plan-clas-ad-price { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.9); }
.plan-clas-new-badge {
  position: absolute;
  bottom: -14px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(11,12,18,0.92);
  border: 1px solid rgba(249,38,114,0.3);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
}
.plan-clas-pulse {
  width: 7px; height: 7px;
  background: #f92672;
  border-radius: 50%;
  flex-shrink: 0;
  animation: plan-clas-pulse-anim 1.8s ease-in-out infinite;
}
@keyframes plan-clas-pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,38,114,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(249,38,114,0); }
}

/* ── PHONE MOCKUP ────────────────────────────────────────────────── */
.plan-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 30px;
}
.plan-phone-frame {
  width: 212px;
  height: 400px;
  background: rgba(22,33,62,0.9);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.plan-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 16px;
  background: rgba(0,0,0,0.7);
  border-radius: 8px;
  z-index: 2;
}
.plan-phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.plan-phone-home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}
/* Native app inside phone */
.plan-phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 28px 12px 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}
.plan-phone-app-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.plan-phone-app-logo {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(249,38,114,0.12);
  border: 1px solid rgba(249,38,114,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f92672;
}
.plan-phone-app-logo svg { width: 15px; height: 15px; }
.plan-phone-app-title { flex: 1; }
.plan-phone-app-hero {
  margin: 8px 8px 6px;
  height: 100px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(249,38,114,0.08));
}
.plan-phone-app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 0 8px;
}
.plan-phone-app-card {
  height: 64px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.plan-phone-app-card--c { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.2); }
.plan-phone-tabbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
  margin-bottom: 18px;
}
.plan-phone-tab { color: rgba(255,255,255,0.35); }
.plan-phone-tab--active { color: #00d4ff; }
/* Browser inside phone */
.plan-phone-browser { display: flex; flex-direction: column; flex: 1; padding-top: 26px; }
.plan-phone-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}
.plan-phone-web-hero {
  height: 88px;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(249,38,114,0.06));
  margin: 6px 8px;
  border-radius: 8px;
}
.plan-phone-web-nav {
  display: flex;
  gap: 8px;
  padding: 0 8px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-phone-web-nav span {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
}
.plan-phone-web-card {
  display: flex;
  gap: 8px;
  margin: 5px 8px;
  padding: 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
}
.plan-phone-web-card div:first-child {
  width: 28px; height: 28px;
  border-radius: 5px;
  background: rgba(0,212,255,0.1);
  flex-shrink: 0;
}
.plan-phone-web-card div:last-child {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  align-self: center;
}
.plan-phone-badge {
  position: absolute;
  background: rgba(11,12,18,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 7px 12px;
  backdrop-filter: blur(8px);
  font-size: 12px;
}
.plan-phone-badge--score {
  bottom: 10px;
  right: 0;
  border-color: rgba(0,212,255,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.plan-phone-badge--score b    { font-size: 20px; color: #00d4ff; line-height: 1; }
.plan-phone-badge--score small{ font-size: 10px; color: rgba(255,255,255,0.5); }
.plan-phone-badge--platform {
  top: 20px;
  left: 0;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
}

/* ── DUAL PHONE ──────────────────────────────────────────────────── */
.plan-dualph-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 24px 36px;
}
.plan-dualph-phone {
  width: 164px;
  height: 330px;
  background: rgba(22,33,62,0.9);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 26px;
  position: relative;
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.plan-dualph-phone--left  { transform: rotate(-2deg); }
.plan-dualph-phone--right { transform: rotate(2deg); }
.plan-dualph-notch--pill {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 14px;
  background: rgba(0,0,0,0.7);
  border-radius: 7px;
  z-index: 2;
}
.plan-dualph-notch--hole {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  z-index: 2;
}
.plan-dualph-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
}
.plan-dualph-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 26px 10px 4px;
  font-size: 9px;
  color: rgba(255,255,255,0.6);
}
.plan-dualph-statusbar--android { padding-top: 22px; }
.plan-dualph-app-hd {
  height: 74px;
  margin: 4px 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(167,139,250,0.08));
}
.plan-dualph-list { padding: 0 6px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.plan-dualph-item {
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
}
.plan-dualph-item--active { background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.2); }
.plan-dualph-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.plan-dualph-tab {
  width: 20px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.plan-dualph-tab--on { background: #00d4ff; }
.plan-dualph-tabbar--android { gap: 6px; }
.plan-dualph-anav {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.plan-dualph-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.plan-dualph-badge { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); top: auto; left: auto; right: auto; }

/* ── CHAT ────────────────────────────────────────────────────────── */
.plan-chat-wrap {
  position: relative;
  width: min(100%, 450px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-chat-ava {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  flex-shrink: 0;
}
.plan-chat-hdr-text b    { display: block; font-size: 13px; color: rgba(255,255,255,0.9); }
.plan-chat-hdr-text small{ font-size: 11px; color: #00d4ff; }
.plan-chat-status {
  margin-left: auto;
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(74,222,128,0.5);
}
.plan-chat-msgs {
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 165px;
}
.plan-chat-msg {
  max-width: 82%;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.45;
}
.plan-chat-msg--bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-radius: 4px 12px 12px 12px;
}
.plan-chat-msg--user {
  align-self: flex-end;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  color: rgba(255,255,255,0.9);
  border-radius: 12px 4px 12px 12px;
}
.plan-chat-btns {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.plan-chat-btns span {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  cursor: default;
}
.plan-chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}
.plan-chat-inp-fake {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.plan-chat-input svg { color: #00d4ff; opacity: 0.7; }
.plan-chat-stat { top: auto; bottom: -18px; right: -20px; left: auto; }

/* ── AI CHAT ─────────────────────────────────────────────────────── */
.plan-aichat-wrap { border-color: rgba(0,212,255,0.15); }
.plan-aichat-header { background: rgba(0,212,255,0.06) !important; }
.plan-aichat-ava { background: rgba(0,212,255,0.2) !important; }
.plan-aichat-ai-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(0,212,255,0.2);
  color: #00d4ff;
  letter-spacing: 0.5px;
}
.plan-aichat-msg { border-color: rgba(0,212,255,0.2) !important; }
.plan-aichat-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  margin: 5px 0;
}
.plan-aichat-bars span {
  flex: 1;
  background: rgba(0,212,255,0.5);
  border-radius: 2px;
  height: calc(var(--h) * 0.22px);
  animation: plan-bar-grow 1.8s ease-in-out infinite;
}
.plan-aichat-bars span:nth-child(2) { animation-delay: 0.2s; }
.plan-aichat-bars span:nth-child(3) { animation-delay: 0.4s; }
.plan-aichat-bars span:nth-child(4) { animation-delay: 0.6s; }
.plan-aichat-bars span:nth-child(5) { animation-delay: 0.8s; }
.plan-aichat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px 12px 12px 12px;
  align-self: flex-start;
  width: 52px;
}
.plan-aichat-typing span {
  width: 6px; height: 6px;
  background: rgba(0,212,255,0.6);
  border-radius: 50%;
  animation: plan-aichat-bounce 1.2s ease-in-out infinite;
}
.plan-aichat-typing span:nth-child(2) { animation-delay: 0.2s; }
.plan-aichat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes plan-aichat-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-4px); opacity: 1; }
}
.plan-aichat-stat { top: auto; bottom: -18px; right: -20px; left: auto; }

/* ── CRM KANBAN ──────────────────────────────────────────────────── */
.plan-crm-preview {
  position: relative;
  width: min(100%, 520px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-crm-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}
.plan-crm-logo {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(249,38,114,0.12);
  border: 1px solid rgba(249,38,114,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f92672;
}
.plan-crm-logo svg { width: 16px; height: 16px; }
.plan-crm-topbar-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); flex: 1; }
.plan-crm-topbar-add {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 5px;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  cursor: default;
}
.plan-crm-board {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  padding: 10px 10px 12px;
}
.plan-crm-col-hd {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plan-crm-col-hd--cyan   { background: rgba(0,212,255,0.1);   color: #00d4ff; }
.plan-crm-col-hd--purple { background: rgba(167,139,250,0.1); color: #a78bfa; }
.plan-crm-col-hd--green  { background: rgba(74,222,128,0.1);  color: #4ade80; }
.plan-crm-col-cnt {
  font-size: 11px;
  padding: 1px 5px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.plan-crm-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 7px 8px;
  margin-bottom: 5px;
}
.plan-crm-card-name   { font-size: 11px; color: rgba(255,255,255,0.8); margin-bottom: 3px; }
.plan-crm-card-amount { font-size: 13px; font-weight: 700; color: #00d4ff; }
.plan-crm-stat { top: auto; bottom: -18px; right: -20px; left: auto; }

/* ── BUSINESS AUTOMATION FLOW ────────────────────────────────────── */
.plan-flow-preview {
  position: relative;
  width: min(100%, 520px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 14px 14px 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-flow-hd { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.plan-flow-chain { display: flex; align-items: center; gap: 4px; overflow: hidden; }
.plan-flow-node {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 8px 10px;
}
.plan-flow-node--trigger  { border-color: rgba(0,212,255,0.3);  background: rgba(0,212,255,0.06); }
.plan-flow-node--condition{ border-color: rgba(249,38,114,0.3); background: rgba(249,38,114,0.06); }
.plan-flow-node--action   { border-color: rgba(167,139,250,0.3);background: rgba(167,139,250,0.06); }
.plan-flow-node--notify   { border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.06); }
.plan-flow-node-type {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.plan-flow-node--trigger  .plan-flow-node-type { color: #00d4ff; }
.plan-flow-node--condition .plan-flow-node-type { color: #f92672; }
.plan-flow-node--action   .plan-flow-node-type { color: #a78bfa; }
.plan-flow-node--notify   .plan-flow-node-type { color: #fbbf24; }
.plan-flow-node-label { font-size: 11px; color: rgba(255,255,255,0.75); }
.plan-flow-arrow { flex-shrink: 0; color: rgba(255,255,255,0.25); display: flex; align-items: center; position: relative; }
.plan-flow-arrow-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: #f92672;
  font-weight: 700;
}
.plan-flow-arrow svg { width: 20px; }
.plan-flow-stats {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.plan-flow-stat {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 7px 10px;
}
.plan-flow-stat b     { display: block; font-size: 17px; font-weight: 700; color: rgba(255,255,255,0.9); }
.plan-flow-stat small { font-size: 10px; color: rgba(255,255,255,0.4); }
.plan-flow-stat--cyan b { color: #00d4ff; }
.plan-flow-live {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #4ade80;
}
.plan-flow-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: plan-clas-pulse-anim 1.8s ease-in-out infinite;
}

/* ── ERP ─────────────────────────────────────────────────────────── */
.plan-erp-preview {
  position: relative;
  width: min(100%, 490px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-erp-hd {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.plan-erp-hd svg { color: #f92672; filter: drop-shadow(0 0 8px rgba(249,38,114,0.5)); }
.plan-erp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 7px;
}
.plan-erp-mod {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  overflow: hidden;
}
.plan-erp-mod::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: radial-gradient(ellipse at top left, currentColor, transparent 70%);
}
.plan-erp-mod--cyan   { border-color: rgba(0,212,255,0.2);   color: #00d4ff; }
.plan-erp-mod--purple { border-color: rgba(167,139,250,0.2); color: #a78bfa; }
.plan-erp-mod--orange { border-color: rgba(251,146,60,0.2);  color: #fb923c; }
.plan-erp-mod--red    { border-color: rgba(249,38,114,0.2);  color: #f92672; }
.plan-erp-mod-ico svg { width: 16px; height: 16px; }
.plan-erp-mod-name { font-size: 11px; color: rgba(255,255,255,0.75); }
.plan-erp-mod-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}
.plan-erp-center {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-erp-hub {
  width: 62px; height: 62px;
  background: rgba(11,12,18,0.8);
  border: 2px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #00d4ff;
  position: relative;
}
.plan-erp-hub-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(0,212,255,0.2);
  animation: plan-hub-spin 20s linear infinite;
}
.plan-erp-stat { top: auto; bottom: -18px; right: -20px; left: auto; }

/* ── AI NEURAL ───────────────────────────────────────────────────── */
.plan-ai-preview {
  position: relative;
  width: min(100%, 520px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 14px 14px 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-ai-hd { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.plan-ai-net {
  width: 100%;
  height: 265px;
  overflow: visible;
}
.plan-ai-node {
  fill: rgba(11,12,18,0.9);
  stroke-width: 1.5;
}
.plan-ai-node--in  { stroke: rgba(0,212,255,0.5);   fill: rgba(0,212,255,0.08); }
.plan-ai-node--h1  { stroke: rgba(167,139,250,0.6); fill: rgba(167,139,250,0.1); animation: plan-ai-pulse 2.8s ease-in-out infinite; }
.plan-ai-node--h2  { stroke: rgba(249,38,114,0.5);  fill: rgba(249,38,114,0.08); animation: plan-ai-pulse 2.2s ease-in-out infinite 0.5s; }
.plan-ai-node--out { stroke: rgba(74,222,128,0.6);  fill: rgba(74,222,128,0.12); animation: plan-ai-pulse 3s ease-in-out infinite 1s; }
@keyframes plan-ai-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; filter: drop-shadow(0 0 6px currentColor); }
}
.plan-ai-edge { stroke: rgba(255,255,255,0.05); stroke-width: 0.8; }
.plan-ai-edge--2 { stroke: rgba(167,139,250,0.08); }
.plan-ai-edge--3 { stroke: rgba(74,222,128,0.1); }
.plan-ai-lbl {
  font-size: 11px;
  fill: rgba(255,255,255,0.35);
  text-anchor: middle;
}
.plan-ai-metrics {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.plan-ai-metric {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 7px 10px;
}
.plan-ai-metric b     { display: block; font-size: 17px; font-weight: 700; color: rgba(255,255,255,0.9); }
.plan-ai-metric small { font-size: 10px; color: rgba(255,255,255,0.4); }
.plan-ai-metric--cyan b { color: #00d4ff; }
.plan-ai-live { position: static; margin-top: 6px; }

/* ── VOICE AI ────────────────────────────────────────────────────── */
.plan-voice-preview {
  position: relative;
  width: min(100%, 450px);
  margin: 24px auto;
  background: linear-gradient(170deg, rgba(22,33,62,0.88), rgba(11,12,16,0.72));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 24px 16px 18px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.plan-voice-mic {
  position: relative;
  width: 84px; height: 84px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-voice-mic-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,0.3);
}
.plan-voice-mic-ring--1 { animation: plan-voice-ring 2.4s ease-in-out infinite; }
.plan-voice-mic-ring--2 { animation: plan-voice-ring 2.4s ease-in-out infinite 0.8s; transform-origin: center; }
@keyframes plan-voice-ring {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.plan-voice-mic-core {
  width: 62px; height: 62px;
  background: rgba(0,212,255,0.12);
  border: 2px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.plan-voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 62px;
  margin-bottom: 14px;
}
.plan-voice-bar {
  width: 4px;
  height: var(--h, 20px);
  background: linear-gradient(to top, #00d4ff, rgba(0,212,255,0.3));
  border-radius: 2px;
  animation: plan-voice-wave 1.6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes plan-voice-wave {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
.plan-voice-text { margin-bottom: 14px; }
.plan-voice-recognizing {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.plan-voice-dots span {
  animation: plan-voice-dot 1.4s ease-in-out infinite;
}
.plan-voice-dots span:nth-child(2) { animation-delay: 0.2s; }
.plan-voice-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes plan-voice-dot {
  0%, 60%, 100% { opacity: 0.2; }
  30% { opacity: 1; }
}
.plan-voice-result {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: left;
}
.plan-voice-metrics { justify-content: center; }

/* ── Post-fix: rounded corners for full-bleed inner blocks (containers no
      longer clip) + badge stacking ─────────────────────────────────────── */
.plan-lms-player   { border-radius: 16px 16px 0 0; }
.plan-chat-header  { border-radius: 18px 18px 0 0; }
.plan-chat-input   { border-radius: 0 0 18px 18px; }
.plan-crm-topbar   { border-radius: 18px 18px 0 0; }
.plan-portal-sidebar { border-radius: 0 0 0 18px; }
.plan-cal-stat, .plan-cal-confirm, .plan-clas-new-badge, .plan-phone-badge { z-index: 3; }

/* dual-phone badge: was mispositioned (conflicting left/auto) — pin above center */
.plan-dualph-badge {
  top: -10px;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

/* ════════════════════════════════════════════════════════════════════════
   VISUAL DIVERSITY — per-visual signature animations
   ════════════════════════════════════════════════════════════════════════ */

@keyframes plan-gen-pulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.07); opacity: 1; }
}
@keyframes plan-gen-pulse-op {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes plan-gen-sweep {
  0% { transform: translateX(-130%); }
  55%, 100% { transform: translateX(240%); }
}
@keyframes plan-gen-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Booking: selected slots breathe */
@keyframes plan-cal-sel-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(0,212,255,0.15); }
  50% { box-shadow: 0 0 16px rgba(0,212,255,0.55); }
}
.plan-cal-slot--sel { animation: plan-cal-sel-glow 2.4s ease-in-out infinite; }

/* Portal: shimmer sweep across KPI cards */
.plan-portal-kpi { position: relative; overflow: hidden; }
.plan-portal-kpi::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.09), transparent);
  animation: plan-gen-sweep 4.5s ease-in-out infinite;
}
.plan-portal-kpi:nth-child(2)::after { animation-delay: 1.5s; }
.plan-portal-kpi:nth-child(3)::after { animation-delay: 3s; }

/* LMS: live progress + pulsing play button */
@keyframes plan-lms-watching {
  0%, 100% { width: 55%; }
  50% { width: 72%; }
}
.plan-lms-progress-fill { animation: plan-lms-watching 7s ease-in-out infinite; }
.plan-lms-play { animation: plan-gen-pulse 2.4s ease-in-out infinite; }

/* Webapp: sliders stay put (values must match positions) — thumbs glow instead */
@keyframes plan-cfg-thumb-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(0,212,255,0.5); }
  50% { box-shadow: 0 0 14px rgba(0,212,255,0.9), 0 0 26px rgba(0,212,255,0.3); }
}
.plan-cfg-thumb { animation: plan-cfg-thumb-glow 2.8s ease-in-out infinite; }
.plan-cfg-body > .plan-cfg-field:nth-of-type(4) .plan-cfg-thumb { animation-delay: 1.4s; }
.plan-cfg-result-val { animation: plan-gen-pulse 3.2s ease-in-out infinite; display: inline-block; }

/* SaaS: peak bar highlighted */
.plan-saas-bar:last-child {
  background: linear-gradient(to top, #00d4ff, rgba(0,212,255,0.55));
  box-shadow: 0 0 12px rgba(0,212,255,0.35);
}
.plan-saas-up { animation: plan-gen-pulse-op 2.6s ease-in-out infinite; }

/* Marketplace: product cards drift in stagger */
.plan-mrkt-card { animation: plan-drift-1 6.5s ease-in-out infinite; }
.plan-mrkt-card:nth-child(2) { animation: plan-drift-3 7.5s ease-in-out infinite 0.6s; }
.plan-mrkt-card:nth-child(3) { animation: plan-drift-5 7s ease-in-out infinite 1.1s; }
.plan-mrkt-card:nth-child(4) { animation: plan-drift-4 8s ease-in-out infinite 0.3s; }

/* Classifieds: freshest ad glows as "just published" */
@keyframes plan-clas-fresh {
  0%, 100% { border-color: rgba(255,255,255,0.07); box-shadow: none; }
  50% { border-color: rgba(0,212,255,0.4); box-shadow: 0 0 16px rgba(0,212,255,0.12); }
}
.plan-clas-ad:first-child { animation: plan-clas-fresh 3.6s ease-in-out infinite; }

/* Phone: gentle hover of the whole device + live tab */
.plan-phone-frame { animation: plan-drift-1 8s ease-in-out infinite; }
.plan-phone-tab--active { animation: plan-gen-pulse 2.6s ease-in-out infinite; }

/* Chat: dialogue replays — messages pop in sequence */
@keyframes plan-chat-msg-in {
  0% { opacity: 0; transform: translateY(10px); }
  5%, 100% { opacity: 1; transform: translateY(0); }
}
.plan-chat-msg, .plan-aichat-typing {
  animation: plan-chat-msg-in 11s ease-out infinite;
  animation-fill-mode: backwards;
}
.plan-chat-msgs > *:nth-child(2) { animation-delay: 1.6s; }
.plan-chat-msgs > *:nth-child(3) { animation-delay: 3.2s; }
.plan-chat-msgs > *:nth-child(4) { animation-delay: 4.8s; }

/* CRM: deal card being "dragged" to the next column */
@keyframes plan-crm-drag {
  0%, 55%, 100% { transform: translate(0, 0) rotate(0); box-shadow: none; }
  70% { transform: translate(5px, -4px) rotate(1.4deg); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
  85% { transform: translate(2px, 2px) rotate(-0.6deg); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
}
.plan-crm-col:nth-child(2) .plan-crm-card:nth-child(2) { animation: plan-crm-drag 6s ease-in-out infinite; }
.plan-crm-topbar-add { animation: plan-gen-pulse 3s ease-in-out infinite; }

/* Flow: dashes stream along the arrows */
@keyframes plan-flow-dash { to { stroke-dashoffset: -14; } }
.plan-flow-arrow svg path:first-child { animation: plan-flow-dash 1.1s linear infinite; }

/* ERP: module status dots blink in stagger */
.plan-erp-mod-dot { animation: plan-gen-pulse-op 2.2s ease-in-out infinite; }
.plan-erp-mod:nth-child(2) .plan-erp-mod-dot { animation-delay: 0.4s; }
.plan-erp-mod:nth-child(3) .plan-erp-mod-dot { animation-delay: 0.8s; }
.plan-erp-mod:nth-child(4) .plan-erp-mod-dot { animation-delay: 1.2s; }
.plan-erp-mod:nth-child(5) .plan-erp-mod-dot { animation-delay: 1.6s; }
.plan-erp-mod:nth-child(6) .plan-erp-mod-dot { animation-delay: 2s; }

/* AI: signals travel along the network edges */
@keyframes plan-ai-signal { to { stroke-dashoffset: -32; } }
.plan-ai-edge {
  stroke-dasharray: 5 11;
  animation: plan-ai-signal 2.6s linear infinite;
}
.plan-ai-edge--2 { animation-duration: 3.2s; animation-delay: 0.5s; }
.plan-ai-edge--3 { animation-duration: 2.2s; animation-delay: 1s; }

/* Voice: typing caret after recognized phrase */
.plan-voice-result::after {
  content: '▍';
  color: #00d4ff;
  margin-left: 3px;
  animation: plan-gen-blink 1s steps(1) infinite;
}

/* Respect reduced motion for all signature animations */
@media (prefers-reduced-motion: reduce) {
  .plan-cal-slot--sel,
  .plan-portal-kpi::after,
  .plan-lms-progress-fill,
  .plan-lms-play,
  .plan-cfg-fill, .plan-cfg-thumb, .plan-cfg-result-val,
  .plan-saas-bar, .plan-saas-up,
  .plan-mrkt-card,
  .plan-clas-ad:first-child, .plan-clas-pulse,
  .plan-phone-frame, .plan-phone-tab--active,
  .plan-chat-msg, .plan-aichat-typing, .plan-aichat-bars span,
  .plan-crm-col .plan-crm-card, .plan-crm-topbar-add,
  .plan-flow-arrow svg path, .plan-flow-dot,
  .plan-erp-mod-dot, .plan-erp-hub-ring,
  .plan-ai-edge, .plan-ai-node,
  .plan-voice-bar, .plan-voice-mic-ring, .plan-voice-result::after,
  .plan-aichat-typing span {
    animation: none !important;
  }
}

/* ── Проработанные карточки товаров: магазин ─────────────────────── */
.plan-shop-product-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-shop-product-icon {
  width: 34px;
  height: 34px;
  color: rgba(255,255,255,0.55);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.plan-shop-product:nth-child(1) .plan-shop-product-icon { color: rgba(0,212,255,0.75); }
.plan-shop-product:nth-child(2) .plan-shop-product-icon { color: rgba(167,139,250,0.8); }
.plan-shop-product:nth-child(3) .plan-shop-product-icon { color: rgba(249,38,114,0.7); }
.plan-shop-disc {
  position: absolute;
  top: 5px; left: 5px;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 5px;
  background: #f92672;
  color: #fff;
}
.plan-shop-product-title {
  font-size: 10px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan-shop-product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 3px;
  font-size: 9px;
}
.plan-shop-product-rating svg { width: 9px; height: 9px; color: #fbbf24; flex-shrink: 0; }
.plan-shop-product-rating b { color: rgba(255,255,255,0.85); font-weight: 700; }
.plan-shop-product-rating span { color: rgba(255,255,255,0.35); }
.plan-shop-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 5px;
}
.plan-shop-price-old {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

/* ── Проработанные карточки: доска объявлений ────────────────────── */
.plan-clas-ad-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-clas-ad-icon {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.55);
}
.plan-clas-ad:nth-child(1) .plan-clas-ad-icon { color: rgba(0,212,255,0.7); }
.plan-clas-ad:nth-child(2) .plan-clas-ad-icon { color: rgba(167,139,250,0.75); }
.plan-clas-ad:nth-child(3) .plan-clas-ad-icon { color: rgba(249,38,114,0.65); }
.plan-clas-posted {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  padding: 2px 0;
}

/* ── Реалистичный контент: лендинг ───────────────────────────────── */
.plan-lp-real-headline {
  height: auto !important;
  background: none !important;
  font-size: 17px;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  line-height: 1.2;
}
.plan-lp-real-subline {
  height: auto !important;
  background: none !important;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.plan-lp-real-cta {
  width: auto !important;
  height: auto !important;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #0b0c10;
  display: inline-flex;
  align-items: center;
}
.plan-lp-real-cta-ghost {
  width: auto !important;
  height: auto !important;
  padding: 5px 12px;
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
}
.plan-lp-real-feat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 8px !important;
}
.plan-lp-real-feat svg { width: 15px; height: 15px; color: #00d4ff; }
.plan-lp-real-feat b { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.8); line-height: 1.25; }
.plan-lp-real-form-h {
  height: auto !important;
  background: none !important;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.plan-lp-real-form-row span {
  height: auto !important;
  padding: 5px 9px;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
}
.plan-lp-real-form-row .plan-lp-real-form-btn {
  background: #00d4ff !important;
  color: #0b0c10;
  font-weight: 700;
  justify-content: center;
}
.plan-lp-real-form-sub {
  height: auto !important;
  background: none !important;
  font-size: 8px;
  color: rgba(255,255,255,0.35);
}

/* ── Реалистичный контент: корпоративный сайт ────────────────────── */
.plan-corp-real-title {
  height: auto !important;
  background: none !important;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}
.plan-corp-real-sub {
  height: auto !important;
  background: none !important;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}
.plan-corp-real-card { text-align: left; }
.plan-corp-real-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-corp-real-card-img svg { width: 20px; height: 20px; color: #00d4ff; }
.plan-corp-card--hl .plan-corp-real-card-img svg { color: #f92672; }
.plan-corp-real-card-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}
.plan-corp-real-card-sub {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ── Реалистичный контент: телефоны ──────────────────────────────── */
.plan-phone-real-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 0 12px;
}
.plan-phone-real-hero b { font-size: 13px; color: rgba(255,255,255,0.92); }
.plan-phone-real-hero span { font-size: 10px; color: #00d4ff; }
.plan-phone-real-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 0 9px;
  height: auto !important;
  min-height: 64px;
}
.plan-phone-real-card svg { color: #00d4ff; }
.plan-phone-real-card b { font-size: 10px; color: rgba(255,255,255,0.85); }
.plan-phone-real-card span { font-size: 8px; color: rgba(255,255,255,0.45); }
.plan-phone-real-webhero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 0 10px;
}
.plan-phone-real-webhero b { font-size: 12px; color: rgba(255,255,255,0.92); }
.plan-phone-real-webhero span { font-size: 9px; color: rgba(255,255,255,0.5); }
.plan-phone-real-webnav span {
  height: auto !important;
  background: none !important;
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.plan-phone-real-webnav span.is-active { color: #00d4ff; font-weight: 700; }
.plan-phone-real-webcard { align-items: center; }
.plan-phone-real-webcard-ico {
  width: 28px !important;
  height: 28px !important;
  border-radius: 5px;
  background: rgba(0,212,255,0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  flex-shrink: 0;
}
.plan-phone-real-webcard span {
  flex: 1;
  font-size: 9px;
  color: rgba(255,255,255,0.7);
}

/* ── Реалистичный контент: пара телефонов ────────────────────────── */
.plan-dualph-real-hd {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.plan-dualph-real-hd b { font-size: 11px; color: rgba(255,255,255,0.9); }
.plan-dualph-real-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}
.plan-dualph-real-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.plan-dualph-real-dot--cyan  { background: #00d4ff; box-shadow: 0 0 5px rgba(0,212,255,0.5); }
.plan-dualph-real-dot--green { background: #4ade80; }
.plan-dualph-real-text {
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Cookie-баннер ────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(420px, calc(100vw - 32px));
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(170deg, rgba(22, 33, 62, 0.92), rgba(11, 12, 16, 0.88));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 0.5px rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner.is-hiding  { opacity: 0; transform: translateY(16px); }

.cookie-banner-text {
  flex: 1;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.cookie-banner-link {
  color: #00d4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link:hover { color: #7deaff; }

.cookie-banner-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  background: #00d4ff;
  color: #0b0c10;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-banner-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.35);
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-wrap: wrap;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .cookie-banner-text { flex-basis: 100%; }
  .cookie-banner-btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity 0.2s ease; transform: none; }
  .cookie-banner.is-hiding { transform: none; }
}
