:root {
  --bg: #0b0f12;
  --card: #12171b;
  --muted: #9aa7b0;
  --text: #e6edf3;
  --brand: #ff5722;
  --brand-2: #f7e306;
  --danger: #ff6666;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "arial";
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.pbz-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 18, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.header-nav,
.header-nav div {
  display: flex;
}
.header-nav div .toggle-lang {
  margin-right: 20px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand-logo {
  height: 40px;
  width: 40px;
  display: block;
}
.nav-logo {
  font-size: 18px;
  font-family: "ninoMT";
}

.logo-plus {
  color: #ff5722;
}
.logo-point {
  color: #f7e306;
  font-weight: 600;
}

/* Language Toggle */
.toggle-lang {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.toggle-lang:hover {
  transform: scale(1.1);
}

.img-lang {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-actions a {
  text-decoration: none;
  color: inherit;
  opacity: 0.95;
}
.cta {
  background: var(--brand);
  color: #072814;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.burger {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  line-height: 0;
}

/* Drawer (mobile menu) */
.drawer {
  display: none;
  position: fixed;
  inset: 60px 0 auto 0;
  z-index: 49;
  background: rgba(11, 15, 18, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  top: auto;
}
.drawer.open {
  display: block;
}
.drawer-inner {
  display: grid;
  gap: 10px;
  padding: 12px 0;
}
.drawer-link {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-actions {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .nav-logo {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .brand-logo {
    height: 30px;
    width: 30px;
  }
  .nav {
    padding: 10px 0;
  }
}
/* Main Content */
.main-content {
  padding: 3rem 0;
}

.title-section {
  text-align: center;
  margin-bottom: 2rem;
}

.main-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "ninoMT";
}

.highlight {
  color: #ff5722;
}

.subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 32rem;
  margin: 0 auto;
}
/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 0;
}
.exchange-offer {
  text-align: center;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.pad {
  padding: 22px;
}
.tabs {
  display: flex;
  background: #0e1317;
  border-radius: 12px;
  padding: 6px;
  gap: 6px;
}
.tab {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  border-radius: 10px;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  border: none;
  font-size: 16px;
  background-color: var(--bg);
}
.tab.active {
  background: var(--brand);
  color: var(--text);
}
.line {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 18px 0;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
input,
select {
  width: 100%;
  background: #0d1216;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text);
  padding: 14px 14px;
  font-size: 16px;
  outline: none;
}
input:focus {
  border-color: var(--brand);
}
.hint {
  margin: 10px 0;
  font-size: 12px;
  color: var(--muted);
}
.toggle-lang {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.toggle-lang .img-lang {
  height: 20px;
  width: 26px;
}

.partners-card a {
  color: #ff5722;
  cursor: pointer;
}
.copy {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #0d1216;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: #ff5722;
  font-size: 18px;
  letter-spacing: 1px;
}
.exp-copy {
  text-align: center;
  margin: 0 auto;
}
.calculator-btn {
  width: 100%;
  background-color: #ff5722;
  color: var(--text);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.calculator-btn:hover {
  background-color: #ec5228;
}
.instruction {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #ff5722;
  font-weight: 500;
}
.instruction a {
  cursor: pointer;
}
.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 12px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}
.btn.primary {
  background: var(--brand);
  color: #062512;
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.stack {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.howtoinstruction li a {
  color: #ff5722;
  cursor: pointer;
}
.clickable a {
  color: #ff5722;
  cursor: pointer;
}
.administrator {
  height: 200px;
}
/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.stat {
  background: #0e1317;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
}
.k {
  font-size: 24px;
  font-weight: 800;
}

/* List */
.list {
  display: grid;
  gap: 14px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}
.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0f1418;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
}
.muted {
  color: var(--muted);
}

/* Sections */
section {
  padding: 54px 0;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* FAQ */
details {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
}
details + details {
  margin-top: 12px;
}
summary {
  cursor: pointer;
  font-weight: 600;
}

/* Online Indicator */
.online-indicator {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #1f2937;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #374151;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1000;
}

.online-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #ff5722;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.online-indicator span {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
}
/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
  color: var(--muted);
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.messenger-widget {
  position: fixed;
  z-index: 200;
  bottom: 5rem;
  right: 2rem;
  height: 40px;
  width: 40px;
}
.messenger-widget img,
.messenger-widget a {
  height: 40px;
  width: 40px;
}
/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .row {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .online-indicator {
    bottom: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
  }

  .online-indicator span {
    font-size: 0.75rem;
  }
  .main-title {
    font-size: 2rem;
  }
  .pad {
    margin: 15px;
  }
}
@media (max-width: 560px) {
  .stats {
    grid-template-columns: 1fr;
  }
  .main-title {
    font-size: 1.5rem;
  }
  .pad {
    margin: 10px;
  }
}
.wrap-left {
  float: left;
  width: min(40%, 260px);
  margin: 0 16px 10px 0;
}
.wrap-right {
  float: right;
  width: min(40%, 260px);
  margin: 0 0 10px 16px;
}

/* კონტეინერის გასუფთავება, რომ შემდეგი ბლოკები არ „აიწიოს“ */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.social-networks a img {
  height: 30px;
  width: 30px;
}

/* მობილურზე — სურათი ზევით, ტექსტი ქვემოთ */
@media (max-width: 600px) {
  .wrap-left,
  .wrap-right {
    float: none;
    display: block;
    width: 100%;
    margin: 0 0 12px 0;
  }
}
.page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}

/* ღილაკი მოდალის გასახსნელად */
.open-btn {
  background: #1f6feb;
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.open-btn:hover {
  filter: brightness(1.1);
}

/* --- Modal --- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  z-index: 50;
  padding: 16px;
  width: 100%;
  height: 100%;
}
.modal[aria-hidden="false"] {
  display: flex;
}
.dialog {
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.close {
  background: transparent;
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}
.close:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* --- Carousel area --- */
.viewport {
  position: relative;
  overflow: hidden;
  height: auto;
}
.track {
  display: flex;
  transition: transform 420ms ease;
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 16px;
}
.media {
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}
.media img {
  height: 100%;
  max-height: 75vh;
  object-fit: cover;
  display: block;
  margin: auto;
}
.text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 410px;
  overflow: auto;
}
.text h4 {
  margin: 0;
  font-size: 22px;
}
.text p {
  margin: 0;
  line-height: 1.55;
  color: #cdd6e1;
}
.text::-webkit-scrollbar {
  width: 8px; /* სქროლის სისქე */
  height: 8px; /* ჰორიზონტალური scrollbar-ის სიმაღლე */
}
.text::-webkit-scrollbar-track {
  background: #cdd6e1;
}

.text::-webkit-scrollbar-thumb {
  background: #ff5722;
}

.text::-webkit-scrollbar-thumb:hover {
  background: #ff5722;
}

/* Controls */
.ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--ctrl-size);
  height: var(--ctrl-size);
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: var(--ctrl-bg);
  color: #fff;
  cursor: pointer;
}
.ctrl:hover {
  background: var(--ctrl-bg-hover);
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.ctrl svg {
  width: 20px;
  height: 20px;
}

/* Video modal */
.video-shell {
  background: #000;
  max-width: 900px;
  width: 92%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.video-close {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 100;
}
.video-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Dots (სურვილისამებრ) */
.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px 0 16px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
}
.dot[aria-current="true"] {
  background: #fff;
}
.explain > section {
  padding: 10px 0;
}
.explain {
  max-width: 800px;
  margin: auto;
}
.explain h2,
h3 {
  text-align: center;
}
/* Responsive */
@media (max-width: 720px) {
  .slide {
    grid-template-columns: 1fr;
  }
  .media img {
    max-height: 40vh;
  }
  .text {
    max-height: 200px;
  }
}

.wa-launcher {
  position: fixed;
  right: 2rem;
  bottom: 9rem;
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 0;
}
.wa-launcher img {
  width: 40px;
  height: 40px;
}
.wa-panel {
  position: fixed;
  right: 2rem;
  bottom: 12rem;
  z-index: 9999;
  width: 320px;
  max-width: calc(100% - 36px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.wa-header {
  background: #25d366;
  color: #fff;
  padding: 12px 14px;
  font-weight: 600;
}
.wa-body {
  padding: 12px 14px;
  font-size: 14px;
  color: #0e1317;
}
.wa-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #eee;
  background: #fafafa;
}
.wa-input input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}
.wa-send {
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 420px) {
  .wa-panel {
    right: 8px;
    left: 8px;
    width: auto;
  }
  .wa-launcher {
    right: 1rem;
    bottom: 8rem;
  }
  .messenger-widget {
    right: 1rem;
    bottom: 4rem;
  }
}
