:root {
  --bg: #0b0f17;
  --bg2: #111827;

  --ink: #e5e7eb;
  --muted: #94a3b8;

  --line: rgba(255,255,255,.08);

  --brand: #f0b90b;
  --brand2: #f59e0b;

  --danger: #ff4d6d;

  --r: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: Poppins, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

/* ---------- GLOBAL ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =======================================================
   HEADER
   ======================================================= */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,16,24,.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .5px;
  font-family: Orbitron, system-ui;
}

.brand img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 8px rgba(240,185,11,.6));
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}
.nav a:hover { color: var(--ink); }

.btn {
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border: none;
  color: #021018;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 25px rgba(240,185,11,.22);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
}
.btn:hover { transform: translateY(-2px); opacity: .9; }
.btn.ghost { background: transparent; border: 1px solid #1f3446; color: var(--ink); }
.btn.xl { padding: 14px 24px; font-size: 1.05rem; }

/* Logo hover  */
header .brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  box-shadow: 0 0 25px rgba(240,185,11,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
header .brand img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 45px rgba(240,185,11,0.8);
}

/* =======================================================
   HERO SECTION
   ======================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
#particles { position: absolute; inset: 0; z-index: 0; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
}

.btc-wrap {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin: auto;
}

.btc {
  width: 100%;
  height: auto;
  animation: spin 14s linear infinite;
  filter: brightness(0) invert(1) drop-shadow(0 0 35px rgba(240,185,11,.45));
}

.ring {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 2px dashed rgba(240,185,11,.35);
  animation: rotate 18s linear infinite;
}
.ring-1 { inset: -6%; animation-duration: 22s; }

@keyframes spin { to { transform: rotateY(360deg); } }
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-copy h1 {
  font-family: Orbitron, system-ui;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.hero-copy h1 span { color: var(--brand); }

.hero-copy p {
  color: var(--muted);
  max-width: 50ch;
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
}

.hero .scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  color: var(--muted);
  font-size: 28px;
}

/* =======================================================
   GENERIC SECTIONS
   ======================================================= */
.section { padding: 80px 0; border-top: 1px solid var(--line); }
.section.alt { background: rgba(9,16,25,.35); }

.title {
  font-family: Orbitron, system-ui;
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 10px;
}
.title.center { text-align: center; margin-bottom: 28px; }

/* =======================================================
   GRID LAYOUTS
   ======================================================= */
.grid-2 { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* =======================================================
   TIMELINE
   ======================================================= */
.timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  padding: 100px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(240,185,11,0.35), rgba(245,158,11,0.35));
  box-shadow: 0 0 25px rgba(240,185,11,0.35);
  transform: translateY(-50%);
}

.titem {
  background: rgba(9,20,30,0.85);
  border: 1px solid rgba(240,185,11,0.25);
  border-radius: var(--r);
  box-shadow: 0 6px 25px rgba(240,185,11,0.12);
  text-align: center;
  padding: 28px 24px;
  width: 260px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.titem:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 45px rgba(240,185,11,0.35);
}

.titem::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 18px rgba(240,185,11,0.55);
  animation: pulseDot 2.5s infinite ease-in-out;
}

.titem span {
  color: var(--brand);
  font-family: Orbitron, system-ui;
  font-size: 17px;
  margin-bottom: 10px;
  display: block;
}


@keyframes pulseDot {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .9; }
  50% { transform: translateX(-50%) scale(1.25); opacity: 1; }
}

/* =======================================================
   HOW IT WORKS
   ======================================================= */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  align-items: stretch;
  justify-content: center;
  margin-top: 40px;
}

.step {
  background: radial-gradient(circle at top, rgba(240,185,11,0.08), rgba(9,20,30,0.9));
  border: 1px solid rgba(240,185,11,0.25);
  border-radius: var(--r);
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(240,185,11,0.10);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(240,185,11,0.14), rgba(245,158,11,0.10));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 0 40px rgba(240,185,11,0.25);
}
.step:hover::before { opacity: 1; }

.step span {
  display: inline-block;
  font-family: Orbitron, system-ui;
  font-weight: 700;
  color: var(--brand);
  font-size: 24px;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(240,185,11,0.55);
}

.step h3 {
  font-family: Poppins, sans-serif;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
}

.step p {
  color: #b8c6da;
  font-size: 15px;
  line-height: 1.6;
}

/* =======================================================
   AGENTS SECTION
   ======================================================= */
#agents {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 100px 0;
}

.agents-bg {
  position: absolute;
  inset: 0;
  background: url("assets/office.png") center/cover no-repeat;
  filter: brightness(0.3) blur(2px);
  transform: scale(1.1);
  animation: zoomSlow 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes zoomSlow {
  from { transform: scale(1.1); filter: brightness(0.3) blur(2px); }
  to { transform: scale(2.15); filter: brightness(0.45) blur(1.5px); }
}

#agents .container { position: relative; z-index: 2; }

#agents .title {
  color: var(--brand);
  text-shadow: 0 0 18px rgba(240,185,11,0.45);
  margin-bottom: 50px;
}

.agents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  justify-items: center;
  align-items: stretch;
}

.agent {
  background: rgba(10,20,30,0.8);
  border: 1px solid rgba(240,185,11,0.25);
  border-radius: var(--r);
  box-shadow: 0 6px 25px rgba(240,185,11,0.12);
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(10px);
}

.agent:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 45px rgba(240,185,11,0.35);
}

.agent img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.agent:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.agent .meta { padding: 18px 14px; }

.agent h3 {
  font-family: Orbitron, system-ui;
  color: var(--brand);
  margin-bottom: 4px;
  text-shadow: 0 0 12px rgba(240,185,11,0.4);
}

.agent p {
  color: #b8c6da;
  font-size: 15px;
  line-height: 1.5;
}

/* =======================================================
   ABOUT SECTION
   ======================================================= */
#about {
  background: linear-gradient(180deg, rgba(10,16,24,0.8), rgba(12,20,34,0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 0;
  text-align: center;
}

#about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
}

#about .title {
  font-size: clamp(36px, 5vw, 52px);
  color: var(--brand);
  text-shadow: 0 0 15px rgba(240,185,11,0.45);
  margin-bottom: 20px;
}

#about p {
  color: #c7d5ea;
  line-height: 1.7;
  font-size: 18px;
  max-width: 700px;
}

#about .ticks { margin: 20px 0; text-align: left; }
#about .btn { margin-top: 20px; }

/* =======================================================
   FEATURES SECTION
   ======================================================= */
#features {
  background: rgba(10,18,28,0.7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 0;
}

#features .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

#features .card {
  background: rgba(9,20,30,0.75);
  border: 1px solid rgba(240,185,11,0.20);
  padding: 28px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(240,185,11,0.08);
}

#features .card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 0 28px rgba(240,185,11,0.22);
}

#features .card h3 {
  color: var(--brand);
  margin-bottom: 10px;
  font-family: Orbitron, system-ui;
}

#features .card p {
  color: #bcd2e4;
  line-height: 1.6;
}

/* =======================================================
   PARTNERS SECTION
   ======================================================= */
#partners {
  background: rgba(8,14,22,0.85);
  border-top: 1px solid var(--line);
  padding: 100px 0;
}

#partners .title {
  text-align: center;
  color: var(--brand);
  text-shadow: 0 0 10px rgba(240,185,11,0.35);
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.logos img {
  max-width: 160px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.logos img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* =======================================================
   FAQ SECTION
   ======================================================= */
#faq {
  background: rgba(10,18,26,0.85);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

#faq .title {
  color: var(--brand);
  text-align: center;
  text-shadow: 0 0 12px rgba(240,185,11,0.35);
  margin-bottom: 36px;
}

.faq details {
  background: rgba(9,20,30,0.65);
  border: 1px solid rgba(240,185,11,0.15);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 12px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(240,185,11,0.05);
}

.faq details:hover {
  border-color: rgba(240,185,11,0.30);
  box-shadow: 0 0 20px rgba(240,185,11,0.10);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 20px;
}

.faq summary::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand);
  font-size: 20px;
  transition: transform 0.3s ease;
}

details[open] summary::after { transform: rotate(180deg); }

.faq p {
  color: #b8c6da;
  margin-top: 10px;
  line-height: 1.6;
}

/* =======================================================
   FOOTER + CONTACT
   ======================================================= */
.footer {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.1);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  padding: 8px 22px;
  border-radius: 999px;
  color: #021018;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 0 22px rgba(240,185,11,0.35);
  transition: .3s ease;
}

.contact-btn img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 6px rgba(240,185,11,0.4));
  border-radius: 6px;
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(240,185,11,0.55);
}

/* =======================================================
   RESPONSIVE — ORDERED (768 then 480) => CONSISTENT
   ======================================================= */
@media (max-width: 768px) {
  /* Header mobile */
  .top .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .brand {
    flex: 1 1 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .nav {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    margin-bottom: 10px;
  }

  .nav a { font-size: 15px; }

  .cta {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .btn.xl {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

 
  .timeline {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    max-width: 100%;
  }
  .timeline .titem { width: 100%; margin: 0 auto; }

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

@media (max-width: 480px) {
 
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy h1 { font-size: 32px; }
  .hero-copy p { font-size: 15px; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  /* Agents tighter */
  .agents { grid-template-columns: 1fr; }
  .agent img { height: 220px; }
}

/* =======================================================
  
   ======================================================= */
.bn-hero{
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.04), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(255,255,255,.03), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}

.bn-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 40px;
  align-items: start;
}

.bn-left{ padding-top: 10px; }

.bn-big-number{
  font-family: Orbitron, system-ui;
  font-weight: 800;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  letter-spacing: .5px;
  color: var(--brand);
  text-shadow: 0 0 18px rgba(240,185,11,.18);
  margin-bottom: 14px;
}

.bn-title{
  font-family: Orbitron, system-ui;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
  color: rgba(255,255,255,.92);
  margin-bottom: 18px;
}

.bn-sub{
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.5;
  max-width: 52ch;
  margin-bottom: 26px;
}

.bn-badges{
  display:flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.bn-badge{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.8);
}

.bn-laurel{
  color: rgba(240,185,11,.9);
  font-size: 18px;
  opacity: .9;
}

.bn-badge-top{
  font-family: Orbitron, system-ui;
  color: var(--brand);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.bn-badge-bottom{
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin-top: 4px;
}

.bn-cta{
  display:flex;
  gap: 16px;
  align-items:center;
  flex-wrap: wrap;
}

.bn-pill{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.78);
  min-width: 280px;
}

.bn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #111;
  font-weight: 800;
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(240,185,11,.18);
  transition: .25s ease;
}
.bn-btn:hover{
  transform: translateY(-2px);
  opacity: .95;
}

.bn-right{
  display:flex;
  justify-content:flex-end;
}

.bn-card{
  width: 100%;
  max-width: 620px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 18px 18px 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.bn-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 4px 6px 10px;
}

.bn-tabs{
  display:flex;
  gap: 14px;
  align-items:center;
}

.bn-tab{
  border: none;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-weight: 800;
  cursor: default;
  font-size: 16px;
  opacity: .65;
}

.bn-tab.active{
  opacity: 1;
  position: relative;
}

.bn-tab.active::after{
  content:"";
  display:block;
  width: 14px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  margin-top: 6px;
}

.bn-link{
  color: rgba(255,255,255,.55);
  text-decoration:none;
  font-weight:600;
  font-size: 14px;
}
.bn-link:hover{ color: rgba(255,255,255,.78); }

.bn-table{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 8px 6px;
}

.bn-row{
  display:grid;
  grid-template-columns: 1.2fr .8fr .45fr;
  align-items:center;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.06);
}

.bn-coin{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.bn-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 900;
}

.bn-coin strong{ color: rgba(255,255,255,.92); }

.bn-coin span{
  color: rgba(255,255,255,.45);
  margin-left: 8px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.bn-price{
  text-align:right;
  font-weight: 800;
  color: rgba(255,255,255,.9);
}

.bn-change{
  text-align:right;
  font-weight: 800;
}
.bn-up{ color: #21c784; }
.bn-down{ color: #f6465d; }

.bn-hint{
  padding: 6px 10px 2px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  text-align: right;
}


@media (max-width: 900px){
  .bn-container{ grid-template-columns: 1fr; }
  .bn-right{ justify-content: flex-start; }
  .bn-card{ max-width: 100%; }
}

@media (max-width: 600px){
  .bn-hero{ padding: 60px 0; }

  .bn-cta{ flex-direction: column; align-items: stretch; gap: 10px; }
  .bn-pill{ min-width: 0; width: 100%; }
  .bn-btn{ width: 100%; justify-content: center; }

  .bn-coin span{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    display: block;
    margin-left: 0;
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.2;
  }

  .bn-row{
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "coin price"
      "coin time";
    row-gap: 6px;
  }
  .bn-coin{ grid-area: coin; }
  .bn-price{ grid-area: price; }
  .bn-change{ grid-area: time; }

  .bn-card{
    border-radius: 18px;
    padding: 14px 14px 10px;
  }

  .bn-hint{ text-align: left; }
}

@media (max-width: 380px){
  .bn-row{ padding: 10px; }
  .bn-price{ font-size: 13px; }
}


html, body{
  width: 100%;
  overflow-x: hidden;
}


.hero-inner > *,
.bn-container > *,
.bn-card *,
.bn-row > *,
.grid-2 > *,
.cards > *,
.grid-4 > *,
.agents > *,
.timeline > *{
  min-width: 0;
}

img, svg, video, canvas{
  max-width: 100%;
  height: auto;
}

.bn-coin,
.bn-coin span{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}


.bn-card{
  overflow: hidden;
}


/* =======================================================

   ======================================================= */

   .contact-btn{
    width: auto !important;
    height: auto !important;
    min-height: unset !important;
    max-width: 100%;
    align-self: center;       
    justify-content: center;
    white-space: nowrap;
    line-height: 1.1;
    padding: 10px 18px;       
    border-radius: 999px;
  }
  
  .contact-btn img{
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 auto;
  }
  
 
  @media (max-width: 600px){
    .contact-btn{
      display: inline-flex !important;
      gap: 10px;
    }
  }
  
  .bn-change{
    text-align:right;
    font-weight:900;
    white-space:nowrap;
  }
  
  .bn-change.bn-up{ color:#21c784; }
  .bn-change.bn-down{ color:#f6465d; }
  .bn-change.muted{ color: rgba(255,255,255,.55); }
  
  .bn-change.bn-up::before{ content:"▲ "; font-size:12px; }
  .bn-change.bn-down::before{ content:"▼ "; font-size:12px; }