:root {
  --bg: #04090c;
  --bg-2: #071216;
  --card: #0b171c;
  --card-2: #102025;
  --line: rgba(46, 230, 208, 0.16);
  --cyan: #2ee6d0;
  --cyan-2: #7ff6e6;
  --cyan-dim: rgba(46, 230, 208, 0.12);
  --red: #e23b3b;
  --text: #e8f6f3;
  --muted: #8aa8a4;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(46, 230, 208, 0.12), transparent 60%),
    linear-gradient(180deg, #061015 0%, #04090c 55%, #030708 100%);
}
.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 230, 208, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 230, 208, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}

.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(4, 9, 12, 0.72);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #061316;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  color: var(--cyan);
  font-weight: 700;
  padding: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-mark.elmo-mark {
  background: #120f08;
  border-color: rgba(224,182,58,.35);
}
.logo-mark.elmo-mark img { object-fit: contain; background: transparent; }
.logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(46, 230, 208, 0.35);
}
.logo small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
}
.nav a:hover, .nav a.active { color: var(--cyan); background: var(--cyan-dim); }
.header-phone {
  color: var(--cyan);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  padding: 28px 0 0;
}
.hero-layout {
  width: min(1380px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
}
.side-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 14px;
  text-align: center;
  border: 2px solid var(--cyan);
  border-radius: 12px;
  color: var(--cyan);
  font-weight: 700;
  background: rgba(8, 22, 26, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 16px rgba(46, 230, 208, 0.12);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.side-btn:hover {
  transform: translateY(-2px);
  background: rgba(46, 230, 208, 0.14);
  color: #fff;
  box-shadow: 0 0 22px rgba(46, 230, 208, 0.28);
}
.side-btn.elmo {
  border-color: var(--cyan);
  color: var(--cyan);
}
.side-btn.elmo:hover { background: rgba(46, 230, 208, 0.14); color: #fff; }
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; }
  .side-btns { order: 2; display: grid; grid-template-columns: 1fr 1fr; }
}
.hero-stage {
  position: relative;
  min-height: min(78vh, 760px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #050b0e;
}
.hero-stage img.hero-img {
  width: 100%;
  height: min(78vh, 760px);
  object-fit: cover;
  object-position: center 30%;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,9,12,0.15) 0%, rgba(4,9,12,0.1) 45%, rgba(4,9,12,0.88) 100%),
    radial-gradient(circle at 50% 40%, transparent 28%, rgba(4,9,12,0.45) 100%);
  pointer-events: none;
}
.hero-crown {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1080px);
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.5));
}
.hero-logo {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  pointer-events: none;
}
.hero-logo .brand {
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(48px, 8vw, 92px);
  color: var(--cyan);
  letter-spacing: 0.06em;
  line-height: 1;
  transform-origin: center center;
  animation: heartbeat 1.15s ease-in-out infinite;
  text-shadow:
    0 0 18px rgba(46, 230, 208, 0.85),
    0 0 42px rgba(46, 230, 208, 0.45),
    0 0 80px rgba(226, 59, 59, 0.25);
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  12% { transform: scale(1.16); filter: brightness(1.25); }
  24% { transform: scale(0.96); filter: brightness(1); }
  36% { transform: scale(1.1); filter: brightness(1.18); }
  50% { transform: scale(1); filter: brightness(1); }
}

.hand-btn {
  position: absolute;
  z-index: 4;
  width: min(280px, 34vw);
  min-height: 132px;
  border: 1px solid rgba(46, 230, 208, 0.35);
  background: linear-gradient(180deg, rgba(8, 22, 26, 0.72), rgba(5, 14, 17, 0.86));
  backdrop-filter: blur(10px);
  color: var(--text);
  border-radius: 22px;
  padding: 18px 18px 16px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(46,230,208,0.08) inset;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hand-btn:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--cyan);
  box-shadow: 0 18px 50px rgba(46,230,208,0.18);
}
.hand-btn.left { left: 5%; bottom: 22%; }
.hand-btn.right { right: 5%; bottom: 22%; }
.hand-btn .kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.hand-btn .name {
  display: block;
  margin-top: 6px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.15;
}
.hand-btn.left .name { color: #ff6b6b; }
.hand-btn.right .name { color: var(--cyan); }
.hand-btn .hint {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.pulse {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(46,230,208,0.6);
  animation: pulse 1.8s infinite;
}
.hand-btn.left .pulse { background: #ff6b6b; box-shadow: 0 0 0 0 rgba(226,59,59,0.55); }
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Sections */
.section { padding: 72px 0; }
.section h2 {
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.lead { color: var(--muted); max-width: 720px; margin-bottom: 32px; }

.banner-section {
  padding: 8px 0 0;
}
.banner-strip {
  margin: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}
.banner-strip img {
  width: 100%;
  height: auto;
  background: transparent;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 180px;
}
.card h3 { font-size: 18px; margin: 10px 0 8px; }
.card p { color: var(--muted); font-size: 14px; }
.icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--cyan-dim);
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
}
.icon.red { background: rgba(226,59,59,0.12); color: #ff6b6b; }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-cyan { background: var(--cyan); color: #04201c; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-max {
  background: linear-gradient(135deg, #4f6bff, #7a4dff);
  color: #fff;
  border-color: transparent;
}
.btn:hover { filter: brightness(1.08); }

/* Page hero */
.page-hero {
  padding: 48px 0 10px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
}
.crumb { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.crumb a { color: var(--cyan); }

.service-list { display: grid; gap: 14px; }
.service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}
.service-item h3 { font-size: 17px; }
.service-item p { color: var(--muted); font-size: 14px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}
.form, .aside {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
input, textarea, select {
  width: 100%;
  background: #081214;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.aside p { color: var(--muted); margin: 8px 0; }
.aside a { color: var(--cyan); }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
footer h4 { color: var(--text); margin-bottom: 8px; }
footer a:hover { color: var(--cyan); }

@media (max-width: 900px) {
  .cards, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav, .header-phone { display: none; }
  .burger { display: grid; place-items: center; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(4,9,12,0.96);
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }
  .hand-btn {
    width: min(46%, 240px);
    min-height: 110px;
    padding: 14px;
  }
  .hand-btn.left { left: 3%; bottom: 14%; }
  .hand-btn.right { right: 3%; bottom: 14%; }
  .service-item { grid-template-columns: 48px 1fr; }
  .service-item .go { display: none; }
}

@media (max-width: 560px) {
  .hero-stage, .hero-stage img.hero-img { min-height: 620px; height: 620px; }
  .hand-btn {
    position: relative;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    margin: 10px 0 0;
  }
  .hero-controls {
    position: absolute;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 5;
  }
  .hero-caption { display: none; }
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.price-table th { color: var(--muted); font-weight: 700; background: #0a181c; }
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; color: var(--cyan); font-weight: 700; }
.price-table th:last-child { color: var(--muted); }
.note { color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.legal p { color: var(--muted); margin: 0 0 12px; }
.legal h2 { font-size: 22px; margin: 28px 0 10px; }
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.project img { width: 100%; height: 190px; object-fit: cover; }
.project div { padding: 14px 14px 16px; }
.project h3 { font-size: 16px; margin-bottom: 4px; }
.project p { color: var(--muted); font-size: 13px; }
@media (max-width: 900px) {
  .projects { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .projects { grid-template-columns: 1fr; }
  .side-btns { grid-template-columns: 1fr; }
}
.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 18px 0 28px;
}
.doc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.doc h3 { margin-bottom: 8px; }
.doc p { color: var(--muted); font-size: 14px; }
.checks { margin: 0 0 8px 18px; color: var(--muted); }
@media (max-width: 700px) { .docs { grid-template-columns: 1fr; } }

.letter {
  background: #f4efe4;
  color: #1c1a16;
  border-radius: 8px;
  padding: 42px 48px 36px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.letter h1, .letter h2 { color: #141210; letter-spacing: 0; }
.letter h1 { font-size: clamp(26px, 3vw, 34px); margin: 10px 0 16px; }
.letter h2 { font-size: 18px; margin: 26px 0 10px; border-bottom: 1px solid #d7d0c3; padding-bottom: 6px; }
.letter p, .letter li { color: #3a372f; }
.letter .meta { color: #6a6458; font-size: 13px; line-height: 1.5; }
.letter .sign { margin-top: 28px; color: #3a372f; }
.letter table { width: 100%; border-collapse: collapse; margin: 10px 0 16px; }
.letter td { border-bottom: 1px solid #ddd6c8; padding: 10px 8px; vertical-align: top; font-size: 14px; }
.letter td:first-child { width: 38%; font-weight: 700; color: #1c1a16; }
.letter-page { background:
  radial-gradient(800px 400px at 50% -10%, rgba(46,230,208,0.08), transparent 60%),
  #0b0f11; }

.float-stage { position: relative; overflow: hidden; min-height: 320px; padding-top: 36px; padding-bottom: 48px; }
@media (max-width: 700px) { .floater { display: none; } }
.floater {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 86px;
  padding: 10px 8px;
  border-radius: 16px;
  background: rgba(8,22,26,0.88);
  border: 1px solid rgba(46,230,208,0.28);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  animation: floaty 7s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.floater span.ic { font-size: 26px; line-height: 1; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (max-width: 700px) { .floater { display: none; } }

.call-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: start;
  margin: 8px 0 36px;
}
.call-card {
  background: linear-gradient(180deg, #13c4b0, #0aa896);
  color: #04201c;
  border-radius: 22px;
  padding: 26px 22px 22px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(46,230,208,0.22);
}
.call-card h2 { color: #04201c; font-size: 26px; line-height: 1.2; margin-bottom: 10px; }
.call-card p { color: #06332d; }
.call-card .phone-pill {
  display: block;
  margin: 16px 0 10px;
  background: #ff8a3d;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
}
.call-card .stars { color: #fff3a8; font-size: 14px; }
.phone-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}
.phone-form .phone-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 4px 6px 4px 14px;
  min-width: min(360px, 100%);
  border: 1px solid #d7e4e1;
}
.phone-form .phone-box span { color: #333; font-weight: 700; }
.phone-form input[type="tel"] {
  flex: 1;
  margin: 0;
  border: 0;
  background: transparent;
  color: #111;
  padding: 10px 8px;
}
.phone-form .send {
  background: var(--cyan);
  color: #04201c;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  cursor: pointer;
}
.perk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0 28px;
}
.perk {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}
.perk b { color: var(--cyan); }
.phone-form .symptom {
  flex: 1 1 100%;
  background: #fff;
  color: #111;
  border-radius: 14px;
  border: 1px solid #d7e4e1;
  padding: 12px 14px;
}
.plus-list { color: var(--muted); margin: 0 0 18px 18px; }
.plus-list li { margin: 6px 0; }
.brand-line {
  color: var(--cyan);
  letter-spacing: 0.04em;
  font-size: 13px;
  font-weight: 700;
  opacity: .85;
  margin: 8px 0 28px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0 28px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.step b { color: var(--cyan); font-size: 20px; }
.step h3 { margin: 6px 0 6px; font-size: 16px; }
.step p { color: var(--muted); font-size: 14px; }
.mini-price {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: 8px 0 10px;
}
.mini-price div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.mini-price div:last-child { border-bottom: 0; }
.mini-price b { color: var(--cyan); white-space: nowrap; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  margin: 0 0 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin-top: 8px; }
@media (max-width: 900px) {
  .call-grid, .perk-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

.calc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  margin: 8px 0 28px;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 18px;
}
.calc label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
}
.calc input[type="number"], .calc select {
  width: 140px;
  background: #071216;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
}
.calc .check { justify-content: flex-start; color: var(--text); }
.calc-sum {
  background: #071c20;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.calc-sum .sum {
  font-size: 36px;
  font-weight: 800;
  color: var(--cyan);
  margin: 6px 0 8px;
}
.calc-sum .muted, .calc-sum p { color: var(--muted); margin: 6px 0; }
@media (max-width: 980px) {
  .calc-grid { grid-template-columns: 1fr; }
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.client {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.client .mark {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(46,230,208,.12);
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 10px;
}
.client h3 { font-size: 16px; margin-bottom: 4px; }
.client p { color: var(--muted); font-size: 13px; }
@media (max-width: 980px) { .client-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .client-grid { grid-template-columns: 1fr; } }

.shop-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:8px 0 28px; }
.shop-card { background:var(--card); border:1px solid var(--line); border-radius:16px; padding:18px; display:flex; flex-direction:column; gap:8px; }
.shop-card .tag { color:var(--cyan); font-size:12px; font-weight:800; }
.shop-card .sum { display:flex; gap:10px; align-items:baseline; }
.shop-card s { color:var(--muted); }
.shop-card b { color:var(--cyan); font-size:22px; }
.shop-card .buy { margin-top:auto; }
.modal { position:fixed; inset:0; background:rgba(0,0,0,.65); display:flex; align-items:center; justify-content:center; z-index:80; padding:16px; }
.modal[hidden] { display:none; }
.modal-card { background:#0d1b20; border:1px solid var(--line); border-radius:18px; padding:22px; max-width:460px; width:100%; position:relative; }
.modal-x { position:absolute; right:12px; top:8px; background:none; border:0; color:#fff; font-size:28px; cursor:pointer; }
.modal-card label { display:block; margin:8px 0; color:var(--muted); font-size:13px; }
.modal-card input[type="text"], .modal-card input:not([type="checkbox"]):not([type="hidden"]) {
  width:100%; margin-top:4px; background:#071216; color:var(--text); border:1px solid var(--line); border-radius:10px; padding:10px 12px;
}
.modal-card .check { display:flex; gap:8px; align-items:flex-start; }
.modal-card .ok { color:var(--cyan); margin-top:10px; }
@media (max-width:900px){ .shop-grid { grid-template-columns:1fr; } }

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.price-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}
.price-tab:hover { background: rgba(46,230,208,.12); }
.price-full td { vertical-align: top; }
.price-full .p-now {
  white-space: nowrap;
  font-weight: 800;
  color: var(--cyan);
}
.price-full .p-rng {
  white-space: nowrap;
  color: var(--muted);
  font-size: 13px;
}
.price-full .p-desc {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  margin-top: 6px;
  max-width: 640px;
}
@media (max-width: 720px) {
  .price-full th:nth-child(3), .price-full td:nth-child(3) { display: none; }
}

.soon-banner {
  display: inline-block;
  margin: 8px 0 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  background: rgba(46,230,208,.08);
  animation: soonpulse 2.2s ease-in-out infinite;
}
@keyframes soonpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,230,208,.35); }
  50% { box-shadow: 0 0 0 8px rgba(46,230,208,0); }
}
.elmo-body .soon-banner {
  border-color: var(--e-gold, #e0b63a);
  color: var(--e-gold, #e0b63a);
  background: rgba(224,182,58,.1);
}
