/* XRM BOT — premium dark / electric blue */
:root {
  --bg: #03060d;
  --bg-2: #050a14;
  --bg-3: #0a1220;
  --line: rgba(120, 170, 255, 0.14);
  --line-strong: rgba(0, 170, 255, 0.35);
  --text: #e8eef8;
  --muted: #8a97ad;
  --dim: #5c6b82;
  --blue: #00aaff;
  --blue-2: #3dd0ff;
  --blue-deep: #0077cc;
  --ok: #3dffb5;
  --warn: #ffb347;
  --radius: 14px;
  --font-display: "Syne", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1180px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(0, 120, 255, 0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 30%, rgba(0, 60, 140, 0.18), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, #02040a 100%);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* FX */
.fx-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.fx-bg-character {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 13, 0.82) 0%, rgba(3, 6, 13, 0.45) 42%, rgba(3, 6, 13, 0.25) 100%),
    linear-gradient(180deg, rgba(3, 6, 13, 0.35) 0%, rgba(3, 6, 13, 0.2) 40%, rgba(2, 4, 10, 0.75) 100%),
    url("../../giris.png") 68% 40% / auto 132% no-repeat;
  opacity: 0.78;
  filter: saturate(1.05) contrast(1.04);
}

.fx-rain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.fx-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 3px
  );
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.fx-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.fx-pointer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.16), transparent 68%);
  transform: translate(-50%, -50%);
  left: 70%;
  top: 30%;
  transition: left 0.35s ease-out, top 0.35s ease-out;
  will-change: left, top;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(3, 6, 13, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  letter-spacing: 0.12em;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--blue);
  letter-spacing: 0.28em;
  font-weight: 600;
}

.nav-desktop {
  display: none;
  margin-left: auto;
  gap: 1.35rem;
}

.nav-desktop a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--text);
}

.header-inner > .btn-access {
  display: none;
}

.nav-toggle {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(10, 18, 32, 0.8);
  border-radius: 10px;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
}

.nav-panel {
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  background: rgba(3, 6, 13, 0.96);
}

.nav-panel[hidden] {
  display: none;
}

.nav-panel a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .header-inner > .btn-access {
    display: inline-flex;
  }

  .nav-toggle,
  .nav-panel {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #031018;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 0 0 1px rgba(0, 170, 255, 0.25), 0 10px 30px rgba(0, 140, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(61, 208, 255, 0.45), 0 14px 36px rgba(0, 170, 255, 0.35);
}

.btn-ghost {
  color: var(--text);
  background: rgba(8, 14, 26, 0.7);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(0, 170, 255, 0.12);
}

.btn-access {
  min-height: 40px;
  padding-inline: 1rem;
  color: #031018;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3rem;
  position: relative;
}

.hero .wrap {
  width: min(100% - 1rem, var(--max));
  margin-left: clamp(0.75rem, 2vw, 1.25rem);
  margin-right: auto;
}

.site-header .wrap {
  width: min(100% - 1rem, var(--max));
  margin-left: clamp(0.75rem, 2vw, 1.25rem);
  margin-right: auto;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-items: start;
}

.hero-copy {
  text-align: left;
  max-width: 34rem;
  margin: 0;
  padding: 0;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 6.2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 0.92;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.65);
}

.hero-tagline {
  margin: 0.65rem 0 1.35rem;
  color: var(--blue);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.42em;
  font-weight: 500;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
  justify-content: flex-start;
}

@media (min-width: 960px) {
  .hero-copy {
    max-width: 32rem;
  }

  .fx-bg-character {
    background:
      linear-gradient(90deg, rgba(3, 6, 13, 0.88) 0%, rgba(3, 6, 13, 0.5) 38%, rgba(3, 6, 13, 0.18) 70%, rgba(3, 6, 13, 0.35) 100%),
      linear-gradient(180deg, rgba(3, 6, 13, 0.3) 0%, rgba(3, 6, 13, 0.12) 45%, rgba(2, 4, 10, 0.7) 100%),
      url("../../giris.png") 78% 38% / auto 128% no-repeat;
  }
}

@media (max-width: 759px) {
  .fx-bg-character {
    background:
      linear-gradient(180deg, rgba(3, 6, 13, 0.55) 0%, rgba(3, 6, 13, 0.72) 55%, rgba(2, 4, 10, 0.9) 100%),
      url("../../giris.png") center 28% / auto 110% no-repeat;
    opacity: 0.55;
  }
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.55), rgba(3, 6, 13, 0.2));
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 40rem;
}

.section-head-center {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.section-desc {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.section-head-center .section-desc {
  margin-inline: auto;
}

/* Modules */
.module-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .module-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.module-card {
  padding: 1.25rem 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(12, 22, 40, 0.9), rgba(5, 10, 20, 0.92));
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.module-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 40, 90, 0.28);
}

.module-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--dim);
}

.module-flag {
  color: var(--ok);
}

.module-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Features / panel */
.features-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.panel-frame {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  background: #050910;
  box-shadow: 0 0 0 1px rgba(0, 170, 255, 0.08), 0 30px 80px rgba(0, 40, 100, 0.35);
}

.panel-chrome {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 14, 26, 0.95);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.panel-dots {
  display: inline-flex;
  gap: 6px;
}

.panel-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a3548;
  display: block;
}

.panel-dots i:first-child { background: #ff5f57; }
.panel-dots i:nth-child(2) { background: #febc2e; }
.panel-dots i:nth-child(3) { background: #28c840; }

.panel-title {
  color: var(--text);
  font-weight: 600;
}

.panel-session {
  margin-left: auto;
  color: var(--ok);
}

.panel-body {
  padding: 1.1rem;
}

.panel-screen {
  min-height: 280px;
  padding: 1.1rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 170, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(0, 40, 80, 0.18), transparent 40%),
    #02060d;
  font-size: 0.82rem;
}

.panel-line {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.panel-hud {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.panel-hud div {
  padding: 0.55rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.panel-hud span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-bottom: 0.2rem;
}

.panel-hud b {
  font-weight: 600;
  color: var(--blue-2);
  font-size: 0.78rem;
}

.t-dim { color: var(--dim); }
.t-blue { color: var(--blue); }
.t-ok { color: var(--ok); }
.t-warn { color: var(--warn); }

.t-blink {
  animation: blink 1.2s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0.25; }
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
}

/* Stats */
.stats-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 860px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  padding: 1.35rem 1rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 12, 22, 0.75);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
  color: var(--blue-2);
}

.stat-card span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--dim);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 12, 22, 0.85);
  display: flex;
  flex-direction: column;
}

.price-card-featured {
  border-color: rgba(0, 170, 255, 0.55);
  background:
    linear-gradient(180deg, rgba(0, 90, 170, 0.18), rgba(6, 12, 22, 0.92));
  box-shadow: 0 0 40px rgba(0, 120, 255, 0.12);
}

@media (min-width: 900px) {
  .price-card-featured {
    transform: translateY(-8px);
  }
}

.price-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: #031018;
  background: var(--blue);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
}

.price-code {
  margin: 0 0 0.55rem;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.price-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.price-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.price-card ul {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.price-card li {
  font-size: 0.8rem;
  color: var(--dim);
  padding-left: 0.9rem;
  position: relative;
}

.price-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* Download */
.download-box {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 12, 22, 0.8);
}

@media (min-width: 860px) {
  .download-box {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.download-terminal .btn {
  margin-top: 1rem;
}

/* FAQ */
.faq-wrap {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(6, 12, 22, 0.75);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--blue);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 1.1rem 1.1rem;
  border-top: 1px solid transparent;
}

.faq-item.is-open .faq-a {
  border-top-color: var(--line);
  animation: faq-line 0.35s ease;
}

.faq-a p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

@keyframes faq-line {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.5rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: end;
}

.footer-brand p {
  margin: 0.55rem 0 0;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.footer-meta {
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--dim);
}

.footer-meta p {
  margin: 0.25rem 0;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .panel-hud {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .t-blink,
  .faq-item.is-open .faq-a {
    animation: none;
  }
  .fx-pointer-glow {
    transition: none;
  }
}

/* ── Modals ── */
body.modal-open {
  overflow: hidden;
}

.xrm-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.xrm-modal[hidden] {
  display: none;
}

.xrm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.xrm-modal-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(92vh, 920px);
  border-radius: 18px;
  border: 1px solid rgba(0, 170, 255, 0.35);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 170, 255, 0.08),
    0 30px 80px rgba(0, 20, 60, 0.55);
  isolation: isolate;
}

.xrm-modal-shell--sm {
  width: min(100%, 420px);
  max-height: none;
}

.xrm-modal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, rgba(2, 6, 14, 0.94) 0%, rgba(3, 8, 18, 0.96) 100%),
    url("../../giris.png") 70% 35% / cover no-repeat;
  opacity: 1;
  filter: none;
}

.xrm-modal-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../giris.png") 70% 35% / cover no-repeat;
  opacity: 0.14;
  filter: saturate(0.9) contrast(1.05);
  pointer-events: none;
}

.xrm-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.xrm-modal-close:hover {
  border-color: var(--blue);
  color: var(--blue-2);
}

.xrm-modal-scroll {
  position: relative;
  z-index: 2;
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: 1.5rem 1.4rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 170, 255, 0.35) transparent;
}

.xrm-modal-shell--sm .xrm-modal-scroll {
  max-height: none;
}

.xrm-modal-head {
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}

.xrm-modal-kicker {
  margin: 0 0 0.4rem;
  color: var(--blue-2);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 600;
}

.xrm-modal-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.xrm-modal-intro {
  margin: 0 0 0.75rem;
  color: #dce6f5;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
}

.xrm-modal-intro em {
  color: #7adfff;
  font-style: normal;
  font-weight: 600;
}

.price-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

@media (min-width: 820px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.price-block {
  margin-top: 0;
  padding: 1.05rem 0.95rem 1.1rem;
  border: 1px solid rgba(0, 170, 255, 0.28);
  border-radius: 14px;
  background: rgba(4, 10, 20, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.price-block-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.price-block-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 170, 255, 0.35);
  background: rgba(0, 100, 180, 0.2);
  font-size: 1rem;
}

.price-block-head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #fff;
}

.price-open {
  margin: 0;
  color: #b7c4d8;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 500;
}

.price-open strong {
  color: #7adfff;
  font-weight: 700;
}

.price-open span {
  color: #8a97ad;
}

.price-table-wrap {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0, 170, 255, 0.22);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.price-table th,
.price-table td {
  padding: 0.62rem 0.8rem;
  text-align: left;
}

.price-table thead th {
  background: rgba(0, 120, 200, 0.28);
  color: #9ae6ff;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.price-table tbody tr {
  border-top: 1px solid rgba(120, 170, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.price-table tbody tr:nth-child(even) {
  background: rgba(0, 45, 90, 0.28);
}

.price-table td {
  color: #eef3fa;
  font-weight: 500;
}

.price-table td:last-child {
  text-align: right;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.price-access {
  margin-top: 0.85rem;
}

.price-access-title {
  margin: 0 0 0.35rem;
  color: #7adfff;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.price-access p {
  margin: 0 0 0.5rem;
  color: #c5d0e0;
  font-size: 0.8rem;
  line-height: 1.55;
  font-weight: 500;
}

.price-access p strong {
  color: #fff;
  font-weight: 700;
}

.price-access ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.28rem;
}

.price-access li {
  position: relative;
  padding-left: 0.9rem;
  color: #d7e0ec;
  font-size: 0.78rem;
  font-weight: 500;
}

.price-access li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--blue-2);
}

.xrm-modal-site {
  margin: 1.15rem 0 0;
  text-align: center;
}

.xrm-modal-site a {
  color: #7adfff;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 208, 255, 0.4);
  padding-bottom: 0.15rem;
}

.xrm-modal-site a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.contact-dc {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 0.35rem 0 0.5rem;
  text-align: center;
}

.contact-dc-btn {
  width: 100%;
  min-height: 52px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.contact-dc-url {
  color: #7adfff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  word-break: break-all;
  border-bottom: 1px solid rgba(61, 208, 255, 0.35);
  padding-bottom: 0.15rem;
}

.contact-dc-url:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.contact-channels {
  display: grid;
  gap: 0.75rem;
  padding: 0.15rem 0 0.35rem;
}

.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 170, 255, 0.22);
  background: rgba(4, 10, 20, 0.82);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.contact-channel:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 170, 255, 0.5);
  box-shadow: 0 12px 28px rgba(0, 40, 90, 0.28);
}

.contact-channel-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-channel--dc .contact-channel-icon {
  color: #c9d6ff;
  background: linear-gradient(145deg, rgba(88, 101, 242, 0.35), rgba(0, 80, 180, 0.2));
  border-color: rgba(88, 101, 242, 0.4);
}

.contact-channel--ig .contact-channel-icon {
  color: #ffd4ec;
  background: linear-gradient(145deg, rgba(225, 48, 108, 0.35), rgba(131, 58, 180, 0.28));
  border-color: rgba(225, 48, 108, 0.35);
}

.contact-channel-body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.contact-channel-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}

.contact-channel-cta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #7adfff;
}

.contact-channel--ig .contact-channel-cta {
  color: #ff9ec8;
}

.contact-channel-url {
  font-size: 0.72rem;
  color: #9aabc2;
  letter-spacing: 0.02em;
  word-break: break-all;
}

.contact-channel-go {
  color: var(--dim);
  font-size: 1.1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-channel:hover .contact-channel-go {
  color: #fff;
  transform: translateX(2px);
}
