:root {
  --bg: #0c1020;
  --text: #e8eaef;
  --muted: #b4bac6;
  --card: #121730;
  --gold: #ffcc1a;
  --gold2: #ffe680;
  --border: #1e2440;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(12px);
  background: linear-gradient(180deg, rgba(11,15,22,.85), rgba(11,15,22,.65));
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  height: 96px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo img { height: 72px; max-height: 72px; width: auto; display: block; }
.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 8px;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.04);
}
.cta {
  appearance: none;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0c1020;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: radial-gradient(120% 120% at 0% 0%, rgba(107,92,255,.18) 0%, rgba(0,224,174,.18) 100%), #0f1522;
  display: none;
}
.hero {
  padding: 88px 0 48px;
  background: linear-gradient(180deg, #0c1020 0%, #0d1326 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  gap: 24px;
}
.two-col {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0;
}
.hero .highlight { color: var(--gold); }
.hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  color: var(--muted);
  display: grid;
  gap: 6px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
}
.btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0c1020;
}
.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: #0f1522;
}
.hero-card {
  border-radius: 20px;
  background: #0f1522;
  border: 1px solid var(--border);
  padding: 16px;
  display: grid;
  gap: 12px;
  justify-items: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.hero-card img { width: 100%; border-radius: 16px; }
.card-btn { width: 100%; }
.metrics {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.metrics li {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.metrics span {
  color: var(--text);
  font-weight: 700;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about, .features, .ids, .how, .trust, .contact, .platform-card, .official {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.about h2, .features h2, .ids h2, .how h2, .trust h2, .contact h2, .platform-card h2, .official h2 {
  margin: 0 0 14px;
  font-size: 32px;
}
.grid {
  display: grid;
  gap: 16px;
}
.about-row { align-items: center; }
.media-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #0f1522;
  padding: 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
}
.media-card img { width: 100%; border-radius: 12px; }
.info-grid {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--muted);
}
.card p {
  margin: 0;
  font-weight: 600;
}
.features-grid {
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0f1522;
  min-width: 0;
}
.feature h3 {
  margin: 0 0 8px;
}
.feature.icon {
  text-align: center;
}
.platform-card .center { text-align: center; }
.blogs {
  padding: 56px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #0f1522;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.blog-card img { width: 100%; height: auto; display: block; }
.blog-content { padding: 14px; }
.blog-content h3 { margin: 0 0 8px; font-size: 16px; }
.meta { display: flex; gap: 12px; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.read { color: #ff3b3b; text-decoration: none; font-weight: 600; }
.read:hover { text-decoration: underline; }

.reviews-head {
  margin-bottom: 12px;
  background: linear-gradient(180deg, rgba(255,204,26,.18), rgba(255,255,255,0));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: #ffffff;
  color: #101525;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  border: 1px solid rgba(30,36,64,.25);
  padding: 14px;
  min-width: 0;
}
.review-meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: #5a657a; margin-bottom: 6px; }
.review-meta .name { font-weight: 700; color: #141a2b; }
.stars { color: #ffcc1a; margin-bottom: 8px; }
.review-card p { margin: 0; }

.faq {
  padding: 56px 0;
}
.accordion .item { border: 1px solid var(--border); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
.accordion .head {
  width: 100%;
  text-align: left;
  background: var(--gold);
  color: #111;
  padding: 12px 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.accordion .body {
  background: #2b2436;
  color: var(--text);
  padding: 12px 16px;
  display: none;
}
.accordion .item.open .body { display: block; }

.center { text-align: center; }
.muted { color: var(--muted); }
.badges { display: grid; grid-auto-flow: column; gap: 8px; justify-content: center; margin: 12px 0 20px; }
.pill { border: 1px solid var(--border); border-radius: 40px; padding: 8px 12px; background: #0f1522; }
.info-table {
  margin: 0 auto 16px;
  max-width: 980px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255,204,26,.12) 0%, rgba(255,255,255,0) 60%),
    #0f1522;
}
.info-table .row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.info-table .row:first-child { border-top: none; }
.info-table .row > div {
  padding: 16px 18px;
}
.info-table .row > div:first-child { color: var(--muted); }
.steps {
  margin: 0 0 18px;
  padding-left: 18px;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow: auto;
  padding-top: 16px;
}
.gallery img { border-radius: 12px; border: 1px solid var(--border); }
.site-footer.expanded {
  background: #2b2436;
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.site-footer .footer-links .links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.site-footer .footer-brand .brand {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--gold);
}
.site-footer .footer-brand .footer-logo {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}
.site-footer .footer-links h4,
.site-footer .footer-contact h4 { margin: 0 0 8px; }
.site-footer .footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.site-footer .footer-links a { color: var(--text); text-decoration: none; }
.site-footer .footer-links a:hover { text-decoration: underline; }
.site-footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3a3346;
  color: var(--text);
  text-decoration: none;
  margin-right: 6px;
}
.footer-tags .hl {
  color: var(--gold);
  font-weight: 700;
}
.footer-tags {
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
}
.footer-separator {
  height: 1px;
  background: rgba(255,255,255,.2);
  margin: 16px 0 8px;
}
.site-footer .legal { color: var(--muted); }

.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #091019;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  font-weight: 700;
}
.float-cta.whatsapp::before { content: "🟢"; }
.contact-inner {
  display: grid;
  gap: 10px;
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn.whatsapp {
  background: #25d366;
  color: #091019;
}
.btn.telegram {
  background: #2aa9e0;
  color: #091019;
}
.site-footer {
  padding: 28px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 12px;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--text); }
.legal { color: var(--muted); }
@media (max-width: 992px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }
  .menu-toggle { display: inline-block; }
  .two-col { grid-template-columns: 1fr; }
  .hero-inner.two-col .hero-card { order: 1; max-width: 420px; margin: 0 auto; }
  .hero-inner.two-col .hero-left { order: 2; }
  .hero-card { width: 100%; }
  .card-btn { width: 100%; }
  .info-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 32px; }
  .site-footer .social a { width: 32px; height: 32px; }
  .footer-tags { font-size: 12px; line-height: 1.6; }
  .info-table .row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .info-grid, .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .container { padding: 0 14px; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .cta { display: none; }
  .logo img { height: 52px; max-height: 52px; }
  .links-grid { grid-template-columns: 1fr; }
  .footer-tags { white-space: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .footer-tags span { margin-right: 6px; display: inline-block; }
  .float-cta { right: 12px; bottom: 12px; padding: 10px 14px; font-size: 14px; }
  .hero-cta .btn { width: 100%; }
  .badges { grid-auto-flow: row; grid-template-columns: 1fr; justify-content: start; }
  .accordion .head { font-size: 16px; }
  .accordion .body { font-size: 14px; }
  .footer-top p, .contact-lines p { font-size: 14px; }
}
