:root {
  --bg-0: #0d1012;
  --bg-1: #12171a;
  --bg-2: #10191c;
  --surface: rgba(20, 25, 28, 0.86);
  --surface-soft: rgba(23, 29, 32, 0.72);
  --line: rgba(56, 217, 196, 0.34);
  --line-soft: rgba(56, 217, 196, 0.2);
  --text: #eaf3f1;
  --muted: #8fa3a0;
  --gold: #38d9c4;
  --gold-soft: #a6f0e4;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(55, 212, 196, 0.2), transparent 34%),
    radial-gradient(circle at 85% 14%, rgba(43, 83, 159, 0.24), transparent 38%),
    radial-gradient(circle at 48% 78%, rgba(55, 212, 196, 0.08), transparent 42%),
    linear-gradient(160deg, #0a0d14 0%, #090d17 44%, #060911 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(55, 212, 196, 0.06) 0%, transparent 30%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 0 1px,
      transparent 1px 120px
    );
  opacity: 0.6;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(90% 70% at 50% -20%, transparent 0%, rgba(4, 6, 10, 0.55) 70%, rgba(2, 4, 7, 0.9) 100%);
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.ambient {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(86px);
  pointer-events: none;
  z-index: -1;
}

.ambient-left {
  left: -120px;
  top: 60px;
  background: rgba(55, 212, 196, 0.24);
}

.ambient-right {
  right: -140px;
  bottom: 80px;
  background: rgba(40, 66, 114, 0.44);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(8, 11, 18, 0.96), rgba(6, 9, 15, 0.76)),
    radial-gradient(120% 160% at 50% -80%, rgba(55, 212, 196, 0.16), transparent 58%);
  border-bottom: 1px solid rgba(55, 212, 196, 0.22);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark-image {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-title-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-crown {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
  opacity: 0.95;
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}

.brand-text small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
  margin-top: 3px;
}

.nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(55, 212, 196, 0.96), rgba(55, 212, 196, 0.16));
  transform: scaleX(0.03);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.main-nav a:hover {
  color: var(--gold-soft);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-xl {
  padding: 13px 22px;
  font-size: 1.02rem;
  border-radius: 14px;
}

.btn-gold {
  border-color: rgba(55, 212, 196, 0.58);
  background: linear-gradient(135deg, #8ef4ea, #2ebfb1 52%, #24a89b);
  color: #0a1716;
  box-shadow: 0 14px 30px rgba(28, 179, 164, 0.34), inset 0 1px 0 rgba(188, 255, 248, 0.5);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(12, 15, 21, 0.62);
  color: #dde2eb;
}

.auth-balance-badge,
.profile-nav-link {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 9px 12px;
  text-decoration: none;
  background: rgba(12, 14, 20, 0.5);
}

.profile-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.profile-nav-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.hero {
  padding: 30px 0 34px;
}

.first-screen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.first-screen .hero {
  display: flex;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
  padding: 14px 0 16px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.73rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 5.4vw, 4.25rem);
  line-height: 1.06;
}

.hero-lead {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.62;
}

.hero-benefits {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-benefits article {
  position: relative;
  padding: 4px 0 10px 14px;
  border: none;
  border-left: 2px solid rgba(55, 212, 196, 0.45);
  background: transparent;
  backdrop-filter: none;
  transition: transform 0.25s ease;
}

.hero-benefits article::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 12px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(55, 212, 196, 0.95), rgba(55, 212, 196, 0));
  transform: scaleX(0.02);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.hero-benefits article:hover {
  transform: translateY(-2px);
}

.hero-benefits article:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.benefit-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.benefit-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
  flex-shrink: 0;
}

.hero-benefits h3 {
  font-size: 1rem;
}

.hero-benefits p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta .btn-xl {
  min-width: 206px;
  min-height: 50px;
}

.hero-stage {
  min-height: 0;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  justify-self: end;
  width: 100%;
  align-self: start;
}

.hero-stage-glow {
  position: absolute;
  inset: 6% -4% -6% -4%;
  background:
    radial-gradient(60% 55% at 50% 55%, rgba(55, 212, 196, 0.32) 0%, rgba(55, 212, 196, 0.05) 45%, transparent 70%),
    radial-gradient(40% 40% at 50% 80%, rgba(90, 255, 239, 0.25) 0%, transparent 70%);
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.hero-stage-art {
  position: relative;
  z-index: 2;
  width: 142%;
  max-width: 1080px;
  height: auto;
  display: block;
  transform: translateX(6%);
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 70px rgba(55, 212, 196, 0.24));
  animation: none;
}

.hero-stage-floor {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 78%;
  height: 36px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(55, 212, 196, 0.45), transparent 70%);
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* ── Trust-strip: платёжные способы и гарантии вместо сухой статистики ── */
.trust-strip {
  padding: 18px 0 26px;
  border-top: 1px solid var(--line-soft);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(56, 217, 196, 0.06), rgba(13, 16, 24, 0.6));
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.trust-item svg {
  width: 22px; height: 22px; flex: none;
  color: var(--gold);
}

@media (max-width: 900px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
}

.section {
  padding: 42px 0;
  scroll-margin-top: 84px;
}

#catalog.section {
  padding-top: 68px;
}

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

.section-head.no-action {
  display: block;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(1.64rem, 3vw, 2.4rem);
}

.cards-grid,
.tiers-grid,
.steps-grid,
.guarantee-grid,
.reviews-grid {
  display: grid;
  gap: 14px;
}

.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 22px;
}
.service-card.is-wide {
  grid-column: span 2;
}
.service-card.is-wide .service-body { padding: 20px 26px; }
.service-card.is-wide .service-media .service-logo { width: 30%; max-width: 150px; }
@media (max-width: 1180px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card.is-wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .cards-grid { grid-template-columns: minmax(0, 1fr); }
  .service-card.is-wide { grid-column: span 1; }
}

/* Premium guarantee cards */
.premium-grid {
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.guarantee-card {
  background: linear-gradient(135deg, rgba(55, 212, 196, 0.08) 0%, rgba(14, 17, 24, 0.96) 100%);
  border: 1px solid rgba(55, 212, 196, 0.25);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guarantee-card:hover {
  border-color: rgba(55, 212, 196, 0.5);
  background: linear-gradient(135deg, rgba(55, 212, 196, 0.12) 0%, rgba(14, 17, 24, 0.98) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(55, 212, 196, 0.15);
}

.guarantee-card:hover::before {
  opacity: 1;
}

.guarantee-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(55, 212, 196, 0.15), rgba(55, 212, 196, 0.05));
  border: 1px solid rgba(55, 212, 196, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  filter: brightness(1.2) contrast(1.1);
}

.guarantee-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px 0;
  letter-spacing: -0.3px;
}

.guarantee-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px 0;
  line-height: 1.6;
}

.guarantee-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--gold);
  background: rgba(55, 212, 196, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(55, 212, 196, 0.2);
}

/* Premium review cards */
.premium-reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: linear-gradient(135deg, rgba(12, 14, 20, 0.9) 0%, rgba(55, 212, 196, 0.06) 100%);
  border: 1px solid rgba(55, 212, 196, 0.2);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(55, 212, 196, 0.1), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  border-color: rgba(55, 212, 196, 0.4);
  background: linear-gradient(135deg, rgba(12, 14, 20, 0.95) 0%, rgba(55, 212, 196, 0.09) 100%);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(55, 212, 196, 0.12);
}

.review-card:hover::after {
  opacity: 1;
}

.review-stars {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 20px 0;
  font-weight: 500;
  font-style: italic;
}

.review-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(55, 212, 196, 0.1);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.review-role {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.service-card,
.tier,
.steps-grid article,
.guarantee-grid article,
.reviews-grid article,
.contact-box,
.faq-list details {
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(14, 17, 24, 0.96), rgba(9, 12, 20, 0.82));
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.service-card {
  --accent: #37d4c4;
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(12, 14, 20, 0.95), rgba(6, 7, 12, 0.95));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), box-shadow 0.45s ease, border-color 0.3s ease;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, transparent 35%, color-mix(in srgb, var(--accent) 55%, transparent) 70%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 35%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 70px -10px color-mix(in srgb, var(--accent) 50%, transparent);
}

/* Срезанный угол — фирменная форма карточки-пропуска Keyra */
.service-card {
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  border-radius: 8px;
}
.service-media {
  border-bottom: 2px dashed rgba(255, 255, 255, 0.14);
}

.service-card:hover::before { opacity: 1; }

.service-media {
  position: relative;
  height: 340px;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #050608;
  isolation: isolate;
}

.service-media .service-logo {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 46%;
  max-width: 210px;
  height: auto;
  object-fit: contain;
  display: block;
  transform: translate(-50%, -54%) scale(1);
  filter:
    drop-shadow(0 14px 34px rgba(0, 0, 0, 0.85))
    drop-shadow(0 0 28px color-mix(in srgb, var(--accent) 70%, transparent))
    brightness(1.12);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1), filter 0.4s ease;
  animation: serviceLogoFloat 6s ease-in-out infinite;
}

.service-logo-invert {
  filter:
    invert(1)
    drop-shadow(0 14px 34px rgba(0, 0, 0, 0.85))
    drop-shadow(0 0 28px color-mix(in srgb, var(--accent) 70%, transparent))
    brightness(1.12);
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(78% 62% at 50% 42%, color-mix(in srgb, var(--accent) 36%, transparent) 0%, transparent 68%),
    radial-gradient(42% 34% at 78% 28%, color-mix(in srgb, var(--accent) 28%, transparent) 0%, transparent 100%),
    linear-gradient(180deg, rgba(13, 16, 24, 0.34) 0%, rgba(6, 9, 14, 0.92) 100%);
  filter: saturate(1) contrast(1.08) brightness(0.86);
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1), filter 0.4s ease;
}

.service-card:hover .service-media::before {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.14) brightness(0.95);
}

.service-card:hover .service-media .service-logo {
  transform: translate(-50%, -56%) scale(1.07);
  filter:
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 44px color-mix(in srgb, var(--accent) 90%, transparent))
    brightness(1.18);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55) 78%, rgba(0,0,0,0.9) 100%),
    linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.08) 50%, transparent 62%);
  pointer-events: none;
}

.service-halo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  width: 78%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--accent) 65%, transparent) 0%,
    color-mix(in srgb, var(--accent) 28%, transparent) 32%,
    transparent 70%
  );
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(.2,.7,.2,1);
  animation: serviceHaloPulse 5s ease-in-out infinite;
}

.service-card:hover .service-halo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

@keyframes serviceLogoFloat {
  0%, 100% { transform: translate(-50%, -54%) scale(1); }
  50%      { transform: translate(-50%, -58%) scale(1.015); }
}

@keyframes serviceHaloPulse {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 0.92; }
}

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}

.service-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.service-card h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.32rem;
  margin: 0;
  letter-spacing: 0.01em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 0;
}

.service-meta {
  margin: 0;
  padding: 8px 10px;
  list-style: none;
  border: 1px solid rgba(55, 212, 196, 0.16);
  background: linear-gradient(160deg, rgba(14, 17, 24, 0.86), rgba(9, 12, 20, 0.62));
  border-radius: 16px;
  backdrop-filter: blur(4px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.service-meta li {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

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

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.service-price .from {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.service-price strong {
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin: 0;
}

.service-price .period {
  font-size: 0.78rem;
  color: var(--muted);
}

.service-foot .btn {
  padding: 10px 16px;
  font-size: 0.86rem;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.78);
  backdrop-filter: blur(8px);
}

.service-modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 980px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(55, 212, 196, 0.26);
  background:
    radial-gradient(140% 95% at 80% -15%, rgba(55, 212, 196, 0.18) 0%, transparent 48%),
    linear-gradient(170deg, rgba(12, 16, 26, 0.98), rgba(7, 10, 18, 0.98));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.7);
  z-index: 1;
  padding: 26px;
}

.service-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 15, 24, 0.8);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal-hero {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: center;
}

.service-modal-brand {
  width: 128px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  border: 1px solid rgba(55, 212, 196, 0.26);
  background: radial-gradient(circle at 50% 40%, rgba(55, 212, 196, 0.18), rgba(8, 11, 18, 0.95));
  display: grid;
  place-items: center;
}

.service-modal-brand img {
  width: 62%;
  max-height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(55, 212, 196, 0.22));
}

.service-modal-subtitle {
  color: var(--muted);
  margin: 6px 0 0;
}

.service-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.service-modal-panel {
  border: 1px solid rgba(55, 212, 196, 0.18);
  border-radius: 16px;
  padding: 16px;
  background: rgba(10, 14, 22, 0.62);
}

.service-modal-panel h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.service-modal-list,
.service-modal-steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #d6dcea;
}

.service-modal-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-offers {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offer-card {
  border: 1px solid rgba(55, 212, 196, 0.2);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(15, 19, 29, 0.9), rgba(8, 11, 18, 0.9));
}

.offer-card-premium {
  border-color: rgba(255, 255, 255, 0.18);
}

.offer-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-card h4 {
  margin-top: 8px;
  font-size: 1.2rem;
}

.offer-card p {
  color: var(--muted);
}

.offer-price {
  margin: 12px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.offer-price strong {
  font-family: "Inter", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gold-soft);
}

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

.section-lead {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.tier {
  padding: 20px;
  border-radius: 8px;
  border-left: 2px solid rgba(55, 212, 196, 0.3);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.tier p {
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 0;
}

.tier-amount {
  font-size: 0.85rem;
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 14px;
}

.tier-progress {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(55, 212, 196, 0.22);
  overflow: hidden;
}

.tier-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #24a89b 0%, #37d4c4 55%, #8ef4ea 100%);
  box-shadow: 0 0 16px rgba(55, 212, 196, 0.35);
  transition: width 0.4s ease;
}

.tier-status {
  margin-top: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #aeb8cb;
}

.tier-status-ready {
  color: #8de9a2;
}

.tier-gold {
  border-color: rgba(55, 212, 196, 0.42);
  box-shadow: 0 20px 40px rgba(55, 212, 196, 0.1);
}

.tier-black {
  background: linear-gradient(160deg, rgba(20, 21, 25, 0.98), rgba(7, 9, 14, 0.92));
}

.steps-grid {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}

.steps-grid article {
  padding: 18px;
  border-radius: 18px;
  border-left: 2px solid rgba(55, 212, 196, 0.28);
}

.step-arrow {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-soft);
  text-shadow: 0 0 20px rgba(55, 212, 196, 0.45), 0 0 34px rgba(55, 212, 196, 0.35);
  animation: arrowShimmer 2.1s ease-in-out infinite;
  transform: translateY(-4px);
}

@keyframes arrowShimmer {
  0%,
  100% {
    opacity: 0.58;
    filter: brightness(0.95);
  }
  50% {
    opacity: 1;
    filter: brightness(1.3);
  }
}

.steps-grid span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.steps-grid p,
.guarantee-grid p,
.reviews-grid p {
  color: var(--muted);
  line-height: 1.58;
}

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

.guarantee-grid article,
.reviews-grid article {
  padding: 18px;
  border-radius: 18px;
  border-left: 2px solid rgba(55, 212, 196, 0.26);
}

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

.reviews-grid span {
  color: var(--gold-soft);
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 14px 16px;
  border-radius: 14px;
  border-left: 2px solid rgba(55, 212, 196, 0.28);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  color: var(--muted);
  margin: 10px 0 0;
}

.contact-box {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  border-left: 2px solid rgba(55, 212, 196, 0.35);
}

.contact-box p {
  color: var(--muted);
  line-height: 1.65;
}
.contact-box p a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.contact-box p a:hover {
  text-decoration: underline;
}

/* Membership Simple Grid - Новая упрощенная система членства */
.membership-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin: 32px 0;
}

.membership-level {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(55, 212, 196, 0.25);
  background: linear-gradient(160deg, rgba(14, 17, 24, 0.95), rgba(8, 11, 18, 0.85));
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
}

.membership-level::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(55, 212, 196, 0.5), rgba(55, 212, 196, 0.2) 50%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.membership-level:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 212, 196, 0.45);
  background: linear-gradient(160deg, rgba(14, 17, 24, 0.98), rgba(8, 11, 18, 0.9));
  box-shadow: 0 16px 40px rgba(55, 212, 196, 0.12);
}

.membership-level:hover::before {
  opacity: 1;
}

.level-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: radial-gradient(circle at 35% 35%, rgba(55, 212, 196, 0.3), rgba(55, 212, 196, 0.08));
  border: 2px solid rgba(55, 212, 196, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform 0.3s ease;
}

.membership-level:hover .level-circle {
  transform: scale(1.08) rotate(6deg);
  border-color: rgba(55, 212, 196, 0.55);
}

.membership-level h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #f3f6fc;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.level-threshold {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}

.level-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(55, 212, 196, 0.5);
  opacity: 0.7;
  padding: 0 6px;
}

.silver-level .level-circle {
  background: radial-gradient(circle at 35% 35%, rgba(192, 192, 192, 0.25), rgba(192, 192, 192, 0.05));
  border-color: rgba(192, 192, 192, 0.35);
}

.silver-level:hover .level-circle {
  border-color: rgba(192, 192, 192, 0.55);
}

.silver-level .level-threshold {
  color: #c0c0c0;
}

.gold-level .level-circle {
  background: radial-gradient(circle at 35% 35%, rgba(55, 212, 196, 0.3), rgba(55, 212, 196, 0.08));
  border-color: rgba(55, 212, 196, 0.35);
}

.gold-level .level-threshold {
  color: var(--gold);
}

.platinum-level .level-circle {
  background: radial-gradient(circle at 35% 35%, rgba(100, 200, 255, 0.25), rgba(100, 200, 255, 0.05));
  border-color: rgba(100, 200, 255, 0.35);
}

.platinum-level:hover .level-circle {
  border-color: rgba(100, 200, 255, 0.55);
}

.platinum-level .level-threshold {
  color: #64c8ff;
}

/* Activation Path - Путь до активации */
.activation-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 48px 0;
  padding: 32px 20px;
  border-radius: 20px;
  border: 1px solid rgba(55, 212, 196, 0.18);
  background: linear-gradient(160deg, rgba(14, 17, 24, 0.92), rgba(8, 11, 18, 0.88));
  flex-wrap: wrap;
}

.path-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
}

.path-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(55, 212, 196, 0.4);
  background: linear-gradient(135deg, rgba(55, 212, 196, 0.15), rgba(55, 212, 196, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-soft);
  transition: all 0.3s ease;
}

.path-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(55, 212, 196, 0.4);
  background: linear-gradient(135deg, rgba(55, 212, 196, 0.15), rgba(55, 212, 196, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-soft);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(55, 212, 196, 0.15);
}

.path-step:hover .path-circle {
  transform: scale(1.1);
  border-color: rgba(55, 212, 196, 0.65);
  box-shadow: 0 0 30px rgba(55, 212, 196, 0.3);
}

.path-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f3f6fc;
  margin: 0;
  text-align: center;
}

.path-number {
  display: block;
  font-size: 20px;
}

.path-arrow {
  color: rgba(55, 212, 196, 0.6);
  font-size: 24px;
  margin: 0 2px;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.path-step:hover ~ .path-arrow {
  opacity: 1;
  color: rgba(55, 212, 196, 0.95);
}
.site-footer {
  margin-top: 10px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.9), rgba(6, 8, 13, 0.96));
}

.footer-grid {
  padding: 26px 0 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.footer-grid h3 {
  margin: 0;
}

.footer-grid p {
  color: var(--muted);
}

.footer-grid nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-grid nav a {
  text-decoration: none;
  color: #d6dbe5;
}

.copyright {
  margin: 0;
  padding: 0 0 22px;
  text-align: center;
  color: #7f8898;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .hero-stage-art {
    width: 100%;
    max-width: 900px;
    transform: none;
  }

  .hero-stage {
    min-height: 0;
  }

  .first-screen {
    min-height: auto;
  }

  .first-screen .hero {
    display: block;
    padding-top: 34px;
    padding-bottom: 18px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step-arrow {
    justify-self: center;
    transform: rotate(90deg);
    margin: 2px 0;
  }

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

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

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: auto auto;
    grid-template-areas: "brand toggle";
  }

  /* backdrop-filter создаёт свой containing block для потомков с
     position:fixed — раскладная панель меню ужималась до высоты шапки
     вместо всего экрана. На телефоне эффект стекла всё равно почти не
     заметен, а вот баг заметен сразу. */
  .site-header { backdrop-filter: none; }

  .membership-simple-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .level-connector {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .activation-path {
    gap: 8px;
  }

  .brand { grid-area: brand; }

  .nav-toggle {
    grid-area: toggle;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: rgba(14, 16, 22, 0.7);
    color: var(--text);
    padding: 8px 12px;
  }

  /* Выезжает справа поверх страницы, а не разворачивается под шапкой —
     иначе на телефоне список из 6 пунктов сталкивал контент вниз. */
  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 220;
    width: min(300px, 82vw);
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 76px 16px 20px;
    border-left: 1px solid var(--line-soft);
    background: rgba(10, 13, 16, 0.98);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
  }

  .main-nav a::after { content: none; }

  .nav-overlay {
    position: fixed; inset: 0; z-index: 210;
    background: rgba(4, 6, 8, 0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .header-actions {
    display: none;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 0;
    gap: 18px;
  }

  .hero-cta {
    margin-top: 24px;
  }

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

  .service-modal-grid,
  .service-offers {
    grid-template-columns: 1fr;
  }

  .service-modal-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .cards-grid,
  .tiers-grid,
  .guarantee-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .step-arrow {
    transform: rotate(90deg);
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .first-screen .hero {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .hero-cta {
    margin-top: 20px;
  }

  .section {
    padding: 34px 0;
  }

  .btn-xl {
    min-width: 0;
    width: 100%;
  }

  .hero-cta {
    width: 100%;
  }

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

/* ═══════════════════════════════════════════════════════════════════════
   Редизайн главной v2 — редакционная композиция вместо типового лендинга
   ═══════════════════════════════════════════════════════════════════════ */

:root { --gold-2: #2bb3a3; }

/* ── Hero v2 ── */
.hero-v2 { padding: 30px 0 60px; overflow: visible; }
.hero-v2-inner {
  position: relative; padding: 40px 0 20px;
  display: grid; grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px; align-items: center;
}

.hero-atmosphere { position: absolute; inset: -80px -40px auto -40px; height: 500px; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; }
.hero-glow-a { left: -160px; top: -60px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(56,217,196,0.1), transparent 70%); }

.hero-v2 .hero-copy { position: relative; z-index: 2; min-width: 0; }
.hero-v2 .hero-lead { max-width: 460px; }

.hero-rating { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--muted); }
.hero-rating svg { flex: none; }

/* Волна из иконок сервисов — просто фон справа, без рамки и карточки */
.hero-visual { position: relative; z-index: 2; min-height: 460px; }
.hero-icon-wave {
  position: absolute; inset: 0; z-index: 0;
  padding: 10px 10px 0;
  display: flex; flex-direction: column; gap: 22px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.55;
  transform: rotate(-7deg) scale(1.15);
  -webkit-mask-image: radial-gradient(65% 75% at 50% 32%, black 25%, transparent 72%);
          mask-image: radial-gradient(65% 75% at 50% 32%, black 25%, transparent 72%);
}
.hero-icon-wave-row { display: flex; justify-content: space-between; gap: 20px; }
.hero-icon-wave-row--offset { transform: translateX(32px); }
.hero-icon-chip {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--gold) 10%, var(--bg-1));
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
}
.hero-icon-chip img { width: 24px; height: 24px; filter: brightness(0) invert(1); opacity: 0.5; }

@media (max-width: 900px) {
  .hero-v2-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { max-width: 320px; min-height: 280px; }
}
@media (max-width: 640px) {
  .hero-visual { display: none; }
}

/* ── Бегущая строка сервисов ── */
.marquee-strip {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  background: rgba(56,217,196,0.03); padding: 18px 0; overflow: hidden; margin-top: 8px;
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 28s linear infinite; }
.marquee-set { display: flex; align-items: center; }
.marquee-set span { font-size: 20px; font-weight: 700; letter-spacing: 0.02em; color: var(--text); white-space: nowrap; padding: 0 14px; }
.marquee-set i { width: 5px; height: 5px; border-radius: 50%; flex: none; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── Каталог: редакционный индекс ── */
.catalog-index { display: flex; flex-direction: column; }
.catalog-row {
  display: grid; grid-template-columns: 34px 56px 1fr 170px auto;
  align-items: center; gap: 20px; padding: 20px 18px 20px 16px;
  border-top: 1px solid var(--line-soft);
  border-left: 3px solid transparent;
  border-radius: 0; background: none; backdrop-filter: none; box-shadow: none;
  clip-path: none; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease;
}
.catalog-index .catalog-row:last-child { border-bottom: 1px solid var(--line-soft); }
.catalog-row:hover { background: rgba(56,217,196,0.04); transform: none; border-left-color: var(--accent); }
.catalog-row::before { content: none; }

.catalog-row.is-popular { background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 6%, transparent), transparent 70%); border-left-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.catalog-row.is-popular:hover { border-left-color: var(--accent); }

.catalog-num { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.catalog-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, color-mix(in srgb, var(--accent) 92%, white 4%), color-mix(in srgb, var(--accent) 78%, black 14%));
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--accent) 75%, transparent);
  flex: none;
}
.catalog-icon { width: 21px; height: 21px; stroke: var(--accent); }
.catalog-logo {
  width: 24px; height: 24px; object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.catalog-row .service-body { min-width: 0; }
.catalog-row .service-head { margin: 0; display: flex; align-items: center; gap: 10px; }
.catalog-row .service-head h3 { font-size: 22px; font-weight: 700; }
.catalog-row .service-body p { margin: 2px 0 0; font-size: 13px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.catalog-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.catalog-badge {
  display: inline-flex; align-items: center; flex: none;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  color: #0d1114; background: var(--gold);
}

.catalog-row .service-foot {
  margin: 0; padding: 0; border: none; display: flex; align-items: center; justify-content: flex-end; gap: 16px; white-space: nowrap;
}
.catalog-row .service-price {
  flex-direction: row; white-space: nowrap;
  padding: 7px 14px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}
.catalog-row .service-price strong { color: var(--gold); font-size: 1.15rem; }
.catalog-row .btn-gold { box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--accent) 70%, transparent); }

.fav-toggle-btn {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-soft); background: transparent;
  color: var(--muted); cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.fav-toggle-btn svg { width: 17px; height: 17px; }
.fav-toggle-btn:hover { color: #ff6b81; border-color: rgba(255, 107, 129, 0.4); }
.fav-toggle-btn.is-active { color: #ff6b81; border-color: rgba(255, 107, 129, 0.5); background: rgba(255, 107, 129, 0.08); }
.fav-toggle-btn.is-active svg { fill: currentColor; }

.catalog-empty-favorites {
  padding: 44px 18px; text-align: center; color: var(--muted); font-size: 14px; line-height: 1.5;
}

/* Пакеты в общем ряду каталога — тот же список, что и у обычных товаров */
.catalog-icon-wrap--bundle {
  background: none; border: none; box-shadow: none; overflow: visible;
}
.bundle-row-icons { display: flex; align-items: center; }
.bundle-row-icon {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, color-mix(in srgb, var(--bl-accent) 92%, white 4%), color-mix(in srgb, var(--bl-accent) 78%, black 14%));
  border: 2px solid var(--bg-0);
  box-shadow: 0 4px 10px -4px color-mix(in srgb, var(--bl-accent) 70%, transparent);
  margin-left: -11px;
}
.bundle-row-icon:first-child { margin-left: 0; }
.bundle-row-icon img { width: 14px; height: 14px; object-fit: contain; filter: brightness(0) invert(1); }

.bundle-row-price { gap: 6px; }
.bundle-row-old {
  text-decoration: line-through; color: var(--muted);
  font-size: 0.76rem; font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.catalog-badge--save {
  background: color-mix(in srgb, var(--accent) 78%, var(--gold) 22%);
  color: #04211d;
}

@media (max-width: 900px) {
  /* Раньше на телефоне прятали 2 из 3 иконок — не видно было, что входит
     в комплект. Оставляем все три, просто мельче. */
  .bundle-row-icon { width: 24px; height: 24px; margin-left: -10px; border-width: 1.5px; }
  .bundle-row-icon:first-child { margin-left: 0; }
  .bundle-row-icon img { width: 12px; height: 12px; }
}

@media (max-width: 900px) {
  .catalog-row { grid-template-columns: 32px 40px 1fr; grid-template-areas: "num icon body" "num icon foot"; row-gap: 8px; }
  .catalog-tag { display: none; }
  .catalog-row .service-foot {
    grid-area: foot; justify-content: flex-start; padding-left: 0;
    flex-wrap: wrap; white-space: normal; row-gap: 8px;
  }
  .catalog-row .service-foot .btn-gold { flex: 1 1 auto; }
}
@media (max-width: 480px) {
  .catalog-row .service-foot .btn-gold { flex-basis: 100%; }
}

/* ── Уровни доступа v2 ── */
.tiers-grid-v2 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tier-card {
  position: relative; padding: 24px 18px; border-radius: 16px;
  border: 1px solid var(--line-soft); background: var(--surface-soft);
}
.tier-card.is-active { border-color: rgba(56,217,196,0.3); background: rgba(56,217,196,0.05); }
.tier-card.is-diamond { border-color: var(--gold); background: linear-gradient(160deg, rgba(56,217,196,0.14), rgba(56,217,196,0.04)); }
.tier-card-badge {
  position: absolute; top: -11px; left: 18px; background: var(--gold); color: #0d1114;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; padding: 3px 10px; border-radius: 999px;
}
.tier-crest { width: 26px; height: 26px; stroke: var(--muted); margin-bottom: 12px; display: block; }
.tier-card.is-active .tier-crest { stroke: var(--gold); }
.tier-card h3 { font-size: 20px; margin-bottom: 2px; }
.tier-card-badge2 { margin: 0 0 2px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; }
.tier-card-range { margin: 0 0 16px; font-size: 12px; color: var(--muted); }
.tier-perks { list-style: none; margin: 0; padding-top: 14px; border-top: 1px dashed var(--line-soft); display: flex; flex-direction: column; gap: 9px; }
.tier-perks li { position: relative; padding-left: 20px; font-size: 12.5px; line-height: 1.4; color: var(--text); }
.tier-perks li.no { color: #5c6c69; }
.tier-perks li::before { position: absolute; left: 0; top: 1px; font-weight: 700; }
.tier-perks li.yes::before { content: "✓"; color: var(--gold); }
.tier-perks li.no::before { content: "✕"; color: #4b5a58; }

@media (max-width: 1100px) {
  .tiers-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .tiers-grid-v2 { grid-template-columns: 1fr; }
}

/* ── Как это работает v2 ── */
.steps-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.steps-grid-v2 article { border: none; background: none; padding: 0; }
.step-num { display: block; font-family: "Playfair Display", serif; font-size: 56px; font-weight: 700; color: rgba(56,217,196,0.28); line-height: 1; margin-bottom: 6px; }
.steps-grid-v2 h3 { font-size: 18px; margin-bottom: 8px; }
.steps-grid-v2 p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 780px) {
  .steps-grid-v2 { grid-template-columns: 1fr; }
}

/* ── Гарантии: svg вместо растровых иконок ── */
.guarantee-icon-svg { width: 24px; height: 24px; }
