* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #020b06;
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
}

.widget {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 76px 28px 28px;
  background:
    radial-gradient(circle at 8% 18%, rgba(168,255,47,.16), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(168,255,47,.18), transparent 28%),
    radial-gradient(circle at 50% 42%, rgba(168,255,47,.05), transparent 34%),
    linear-gradient(135deg, rgba(168,255,47,.10) 0 1px, transparent 1px 160px),
    linear-gradient(45deg, rgba(168,255,47,.07) 0 1px, transparent 1px 190px),
    linear-gradient(180deg, #031109 0%, #010704 100%);
}

.widget::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 18%, rgba(168,255,47,.10) 19%, transparent 21%),
    linear-gradient(295deg, transparent 0%, transparent 35%, rgba(168,255,47,.08) 36%, transparent 38%),
    linear-gradient(70deg, transparent 0%, transparent 62%, rgba(168,255,47,.09) 63%, transparent 65%);
  opacity: .75;
}

.widget::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(168,255,47,.18) 0 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .08;
}

/* TOP MENU */

.hamburger-btn {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 20;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(168,255,47,.35);
  border-radius: 13px;
  background: rgba(3,18,10,.92);
  color: #a8ff2f;
  font-size: 22px;
  cursor: pointer;
  box-shadow:
    0 0 14px rgba(168,255,47,.24),
    inset 0 0 18px rgba(168,255,47,.08);
}

.hamburger-btn:hover {
  background: rgba(168,255,47,.10);
}

.top-ticker {
  position: absolute;
  top: 18px;
  left: 82px;
  right: 20px;
  height: 46px;
  overflow: hidden;
  border-radius: 14px;
  z-index: 15;
  border: 1px solid rgba(168,255,47,.20);
  background: linear-gradient(90deg, rgba(3,18,10,.98), rgba(7,30,15,.95));
  box-shadow:
    inset 0 0 15px rgba(168,255,47,.04),
    0 0 12px rgba(168,255,47,.08);
}

.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  margin-right: 55px;
  color: #a8ff2f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  text-shadow: 0 0 8px rgba(168,255,47,.25);
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SIDE MENU */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -290px;
  z-index: 99;
  width: 270px;
  height: 100vh;
  padding: 24px 18px;
  background:
    radial-gradient(circle at top left, rgba(168,255,47,.18), transparent 35%),
    linear-gradient(180deg, #031109 0%, #010704 100%);
  border-right: 1px solid rgba(168,255,47,.30);
  box-shadow: 0 0 28px rgba(168,255,47,.18);
  transition: .28s ease;
}

.side-menu.active {
  left: 0;
}

.menu-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(168,255,47,.25);
  border-radius: 12px;
  background: rgba(0,0,0,.28);
  color: #a8ff2f;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 22px;
}

.menu-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #a8ff2f;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .4px;
}

.side-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  margin-bottom: 12px;
  padding: 0 15px;
  border-radius: 13px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid rgba(168,255,47,.20);
  background: rgba(3,18,10,.88);
  box-shadow:
    inset 0 0 18px rgba(168,255,47,.05),
    0 0 12px rgba(168,255,47,.08);
}

.side-menu a i {
  color: #a8ff2f;
}

.side-menu a:hover {
  color: #a8ff2f;
  border-color: rgba(168,255,47,.48);
  background: rgba(168,255,47,.10);
}

/* CHIPS */

.chip {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .78;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter:
    drop-shadow(0 0 8px rgba(168,255,47,.35))
    drop-shadow(0 0 24px rgba(168,255,47,.24))
    drop-shadow(0 0 34px rgba(255,215,0,.24));
  animation:
    chipFloat 8s ease-in-out infinite,
    chipGlow 3.5s ease-in-out infinite;
}

.chip-left {
  width: 132px;
  height: 132px;
  left: -68px;
  top: 390px;
  background-image: url("assets/chip1.png");
}

.chip-right {
  width: 124px;
  height: 124px;
  right: -62px;
  top: 690px;
  background-image: url("assets/chip2.png");
  animation:
    chipFloatRight 9s ease-in-out infinite,
    chipGlow 3.5s ease-in-out infinite;
}

@keyframes chipGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 7px rgba(168,255,47,.28))
      drop-shadow(0 0 15px rgba(255,215,0,.18));
  }
  50% {
    filter:
      drop-shadow(0 0 18px rgba(168,255,47,.58))
      drop-shadow(0 0 34px rgba(255,215,0,.42));
  }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(-18deg); }
  50% { transform: translateY(-10px) rotate(-9deg); }
}

@keyframes chipFloatRight {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-12px) rotate(28deg); }
}

/* HERO */

.hero {
  position: relative;
  z-index: 2;
  min-height: 285px;
  margin-bottom: 14px;
  padding: 26px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(168,255,47,.22);
  background:
    linear-gradient(90deg, rgba(3,18,10,.98) 0%, rgba(3,18,10,.88) 55%, rgba(3,18,10,.45) 100%),
    radial-gradient(circle at 82% 50%, rgba(168,255,47,.10), transparent 38%);
  box-shadow:
    inset 0 0 28px rgba(168,255,47,.04),
    0 0 24px rgba(0,0,0,.24);
}

.hero-text {
  position: relative;
  z-index: 2;
  width: 58%;
}

.support-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8ff2f;
}

.support-title strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.support-title span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 800;
  color: #dce8d5;
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 9px rgba(0,0,0,.38);
}

.hero h1 b {
  font-weight: 900;
}

.hero h1 span {
  color: #a8ff2f;
  font-weight: 900;
}

.time-info {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 13px;
  border: 1px solid rgba(168,255,47,.18);
  background: rgba(0,0,0,.26);
}

.time-info i,
.time-info b {
  color: #a8ff2f;
}

.time-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.38;
  color: #dce8d5;
}

.hero-headset {
  position: absolute;
  right: 18px;
  top: 12px;
  width: 42%;
  height: calc(100% - 24px);
  background:
    radial-gradient(circle at 50% 58%, rgba(168,255,47,.10), transparent 48%),
    url("assets/headset.png") center / contain no-repeat;
  filter: drop-shadow(0 0 11px rgba(168,255,47,.18));
  opacity: .92;
}

/* LOGO */

.logo-area {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 0 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(168,255,47,.08);
  border-bottom: 1px solid rgba(168,255,47,.08);
}

.logo-area img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: none;
  animation: none;
}

/* FORM */

form {
  position: relative;
  z-index: 2;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.input-row,
.message-area,
.trust-row {
  border: 1px solid rgba(168,255,47,.18);
  background: rgba(3,18,10,.86);
  box-shadow:
    inset 0 0 18px rgba(118,255,35,.04),
    0 0 18px rgba(0,0,0,.12);
}

.input-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  padding: 15px;
  border-radius: 14px;
}

.input-row label,
.message-area label,
.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.input-row label i,
.message-area label i,
.section-title i,
.trust-row i {
  color: #a8ff2f;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(168,255,47,.18);
  border-radius: 10px;
  outline: none;
  background: rgba(0,0,0,.32);
  color: #fff;
  padding: 15px;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
}

input:focus,
textarea:focus {
  border-color: #a8ff2f;
  box-shadow: 0 0 0 3px rgba(168,255,47,.11);
}

input::placeholder,
textarea::placeholder {
  color: #7f8b7b;
}

.section-title {
  justify-content: center;
  margin: 15px 0 12px;
}

/* AGENTS */

.agents {
  display: grid;
  grid-template-columns: repeat(6, 90px);
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.agent {
  min-height: 96px;
  padding: 10px 5px;
  border-radius: 12px;
  border: 1px solid rgba(168,255,47,.18);
  background: rgba(3,18,10,.86);
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: inset 0 0 14px rgba(168,255,47,.03);
}

.agent input {
  display: none;
}

.agent-avatar {
  width: 50px;
  height: 50px;
  margin: 0 auto 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(168,255,47,.16), transparent 70%);
  box-shadow: 0 0 14px rgba(168,255,47,.22);
}

.agent-avatar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.agent strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}

.agent:has(input:checked) {
  border-color: #a8ff2f;
  box-shadow: 0 0 16px rgba(168,255,47,.28);
  transform: translateY(-2px);
}

/* MESSAGE */

.message-area {
  position: relative;
  margin-bottom: 14px;
  padding: 15px;
  border-radius: 14px;
}

.message-area textarea {
  min-height: 88px;
  margin-top: 12px;
  resize: vertical;
}

#counter {
  position: absolute;
  right: 24px;
  bottom: 21px;
  color: #b8c1b3;
  font-size: 11px;
}

/* BUTTONS */

.main-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #caff49 0%, #8dd726 100%);
  color: #071003;
  font-size: 17px;
  font-weight: 900;
  font-family: 'Inter', Arial, sans-serif;
  cursor: pointer;
  box-shadow:
    0 0 20px rgba(168,255,47,.30),
    0 7px 18px rgba(0,0,0,.24);
}

.main-btn:hover {
  filter: brightness(1.06);
}

.main-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.quick-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(168,255,47,.24);
  background: rgba(3,18,10,.94);
  color: #a8ff2f !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 900;
  font-family: 'Inter', Arial, sans-serif;
  box-shadow:
    inset 0 0 18px rgba(168,255,47,.05),
    0 0 12px rgba(168,255,47,.10);
}

.quick-btn:hover {
  background: rgba(168,255,47,.10);
}

/* RESULT */

#result {
  text-align: center;
  margin-top: 12px;
  font-weight: 800;
  font-size: 13px;
}

#result.success {
  color: #a8ff2f;
}

#result.error {
  color: #ff4c4c;
}

/* TRUST */

.trust-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  border-radius: 14px;
  padding: 14px;
  margin-top: 16px;
}

.trust-row div {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.trust-row b {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  color: #fff;
}

.trust-row span {
  display: block;
  color: #b8c1b3;
  font-size: 11px;
  line-height: 1.28;
}

/* MOBILE */

@media(max-width: 700px) {
  .widget {
    padding: 70px 14px 14px;
    max-width: 100%;
  }

  .hamburger-btn {
    top: 14px;
    left: 14px;
    width: 50px;
    height: 50px;
  }

  .top-ticker {
    top: 18px;
    left: 78px;
    right: 12px;
    height: 42px;
  }

  .ticker-track span {
    font-size: 11px;
    margin-right: 35px;
  }

  .hero {
    min-height: 205px;
    padding: 16px;
  }

  .hero-text {
    width: 68%;
  }

  .hero h1 {
    font-size: 16px;
  }

  .time-info {
    padding: 9px 11px;
  }

  .time-info p {
    font-size: 10px;
  }

  .hero-headset {
    width: 42%;
    right: 2px;
  }

  .logo-area {
    margin: 10px 0 15px;
    padding: 10px 0;
  }

  .logo-area img {
    max-width: 260px;
  }

  .input-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .section-title {
    justify-content: flex-start;
  }

  .agents {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 7px;
  }

  .agent {
    flex: 0 0 78px;
  }

  .quick-btn {
    font-size: 12px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .chip {
    opacity: .45;
  }
}