* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

.dark-body {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 191, 0, 0.20), transparent 16%),
    radial-gradient(circle at 50% 30%, rgba(255, 140, 0, 0.10), transparent 22%),
    radial-gradient(circle at 20% 35%, rgba(41, 98, 255, 0.14), transparent 20%),
    radial-gradient(circle at 80% 35%, rgba(0, 153, 255, 0.10), transparent 20%),
    linear-gradient(180deg, #07114a 0%, #08103a 30%, #0a1445 58%, #090f2e 100%);
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.dark-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 201, 71, 0.16), transparent 10%),
    radial-gradient(circle at 15% 60%, rgba(65, 125, 255, 0.08), transparent 18%),
    radial-gradient(circle at 85% 62%, rgba(65, 125, 255, 0.08), transparent 18%);
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1220px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hidden {
  display: none !important;
}

.top-line {
  border-bottom: 1px solid rgba(255, 196, 72, 0.22);
  background: rgba(5, 10, 38, 0.78);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.top-line-inner {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 140px;
  height: 140px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.brand-logo {
  width: 180%;
  height: 180%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffe08b;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9bb8ff;
}

.top-links {
  display: flex;
  gap: 18px;
  color: #d8e5ff;
}

.top-links a {
  transition: color 0.2s ease;
}

.top-links a:hover {
  color: #ffd667;
}

.eyebrow {
  color: #ffd667;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}

.eyebrow.small {
  font-size: 12px;
  margin-bottom: 6px;
}

.card,
.landing-card,
.info-card,
.bestchange-card {
  background: linear-gradient(180deg, rgba(10, 23, 73, 0.94), rgba(8, 16, 52, 0.96));
  border: 1px solid rgba(255, 199, 94, 0.18);
  border-radius: 24px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(93, 148, 255, 0.06) inset;
}

.card {
  padding: 24px;
}

.landing-layout {
  padding: 42px 0 48px;
  display: grid;
  gap: 24px;
}

.landing-hero {
  padding: 36px;
}

.landing-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: #fff4c7;
  margin-bottom: 18px;
  max-width: 980px;
}

.hero-text {
  color: #d8e5ff;
  font-size: 18px;
  line-height: 1.6;
  max-width: 860px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info-card {
  padding: 24px;
}

.info-card h2 {
  color: #fff0b8;
  margin-bottom: 10px;
  font-size: 28px;
}

.info-card p {
  color: #d6e1ff;
  line-height: 1.6;
}

.methods-grid,
.directions-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.preview-col {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(117, 159, 255, 0.12);
  border-radius: 16px;
  padding: 18px;
}

.preview-col h3,
.method-box h3 {
  color: #fff0b8;
  margin-bottom: 10px;
  font-size: 28px;
}

.preview-col ul {
  padding-left: 18px;
  color: #d6e1ff;
}

.preview-col li {
  margin-bottom: 6px;
}

.method-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(117, 159, 255, 0.12);
  border-radius: 20px;
  padding: 22px;
}

.method-box p {
  color: #d6e1ff;
  line-height: 1.6;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #fff0b8;
}

.landing-bottom-btn {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.primary-btn,
.secondary-btn,
.danger-btn {
  border: none;
  border-radius: 16px;
  padding: 16px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.primary-btn {
  background: linear-gradient(180deg, #ffd667 0%, #ffb300 100%);
  color: #111827;
  box-shadow: 0 14px 28px rgba(255, 174, 0, 0.20);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255, 174, 0, 0.26);
}

.secondary-btn {
  background: linear-gradient(180deg, rgba(19, 43, 117, 0.92), rgba(10, 22, 68, 0.96));
  color: #fff;
  border: 1px solid rgba(122, 164, 255, 0.16);
}

.secondary-btn:hover {
  border-color: rgba(255, 206, 92, 0.26);
  transform: translateY(-1px);
}

.danger-btn {
  background: linear-gradient(180deg, #7f1d1d 0%, #4f1111 100%);
  color: #fff;
  border: 1px solid rgba(255, 120, 120, 0.22);
}

.message {
  min-height: 18px;
  font-size: 14px;
  color: #b6ffb6;
}

/* MODERN DIRECTIONS */
.directions-section {
  padding: 28px;
}

.directions-head {
  margin-bottom: 22px;
}

.directions-subtext {
  margin-top: 10px;
  max-width: 720px;
  color: #c8d7ff;
  font-size: 16px;
  line-height: 1.6;
}

.modern-directions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.modern-direction-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  min-height: 220px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 33, 96, 0.72), rgba(9, 20, 67, 0.92));
  border: 1px solid rgba(104, 142, 255, 0.16);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.modern-direction-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 214, 103, 0.28);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 214, 103, 0.06) inset;
}

.direction-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #081338;
  background: linear-gradient(180deg, #ffe082 0%, #ffbf1f 100%);
  box-shadow: 0 10px 24px rgba(255, 191, 31, 0.22);
}

.direction-content {
  flex: 1;
}

.direction-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff0b8;
}

.direction-content p {
  color: #d3e0ff;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.direction-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.direction-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(113, 152, 255, 0.14);
  color: #eef4ff;
  font-size: 13px;
  font-weight: 600;
}

.directions-action {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* ORDER PAGE */
.order-layout {
  padding: 40px 0 48px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
  align-items: start;
}

.bestchange-card {
  padding: 18px;
}

.bc-top-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.bc-select-box label {
  display: block;
  margin-bottom: 8px;
  color: #e8eeff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bc-search {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  border-radius: 14px;
  border: 1px solid rgba(92, 128, 220, 0.30);
  background: linear-gradient(180deg, rgba(11, 25, 77, 0.96), rgba(8, 17, 56, 0.98));
  color: #f4f7ff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bc-search::placeholder {
  color: #7f98d6;
}

.bc-search:focus {
  border-color: rgba(105, 158, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(80, 131, 231, 0.14);
}

.bc-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bc-column {
  background: linear-gradient(180deg, rgba(9, 20, 61, 0.92), rgba(6, 13, 44, 0.96));
  border-radius: 18px;
  border: 1px solid rgba(79, 112, 205, 0.26);
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.bc-column-title {
  padding: 16px 16px 14px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, rgba(31, 77, 188, 0.34), rgba(15, 36, 102, 0.18));
  color: #f5f8ff;
  border-bottom: 1px solid rgba(95, 128, 216, 0.22);
  backdrop-filter: blur(8px);
}

.bc-list {
  max-height: 760px;
  overflow-y: auto;
  padding: 8px;
  background: linear-gradient(180deg, rgba(8, 19, 60, 0.98) 0%, rgba(6, 15, 49, 0.98) 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(129, 152, 214, 0.65) rgba(255, 255, 255, 0.04);
}

.bc-list::-webkit-scrollbar {
  width: 10px;
}

.bc-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.bc-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(130, 153, 221, 0.95), rgba(92, 114, 183, 0.95));
  border-radius: 999px;
  border: 2px solid rgba(8, 19, 60, 0.9);
}

.bc-group-title {
  margin: 10px 0 6px;
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #d7e3ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(98, 127, 207, 0.14);
  border-radius: 12px;
}

.bc-group-title:first-child {
  margin-top: 0;
}

.bc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  padding: 13px 12px;
  color: #f7f9ff;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.bc-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(101, 134, 225, 0.20);
  transform: translateY(-1px);
}

.bc-row.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(116, 153, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.bc-name {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.bc-code {
  font-size: 12px;
  opacity: 0.9;
  color: #9eb4ea;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.order-form-card {
  padding: 24px;
}

.card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.card-head h2 {
  font-size: 30px;
  line-height: 1.08;
  color: #fff0b8;
}

.badge-live {
  padding: 8px 12px;
  border-radius: 999px;
  color: #0d132f;
  border: 1px solid rgba(255, 215, 120, 0.3);
  background: linear-gradient(180deg, #ffd667 0%, #ffbd2c 100%);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 174, 0, 0.20);
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.switch-row {
  display: flex;
  gap: 10px;
}

.mode-btn {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(128, 171, 255, 0.18);
  background: linear-gradient(180deg, rgba(16, 34, 100, 0.88), rgba(10, 20, 63, 0.95));
  color: #dbe6ff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.mode-btn:hover {
  border-color: rgba(255, 214, 103, 0.26);
}

.mode-btn.active {
  background: linear-gradient(180deg, #ffd667 0%, #ffb300 100%);
  color: #111827;
  border-color: #ffd667;
  box-shadow: 0 12px 24px rgba(255, 174, 0, 0.22);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #d7e2ff;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(114, 156, 255, 0.18);
  background: linear-gradient(180deg, rgba(13, 29, 87, 0.88), rgba(9, 20, 65, 0.92));
  color: #fff;
  outline: none;
  font-size: 16px;
  transition: 0.2s ease;
}

select {
  color: #fff !important;
  background: linear-gradient(180deg, #0d1d57, #091441) !important;
}

select option {
  background: #0d1d57;
  color: #ffffff;
}

.field input[readonly] {
  opacity: 0.95;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9cb0e8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 206, 92, 0.48);
  box-shadow: 0 0 0 3px rgba(255, 196, 72, 0.10);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.note-box {
  padding: 14px 16px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 194, 70, 0.12), rgba(255, 194, 70, 0.04)),
    linear-gradient(180deg, rgba(17, 42, 117, 0.92), rgba(10, 23, 73, 0.96));
  color: #fff3c4;
  font-size: 14px;
  border: 1px solid rgba(255, 199, 94, 0.20);
}

/* ADMIN */
.admin-layout {
  padding: 34px 0 48px;
  position: relative;
  z-index: 1;
}

.admin-header {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-header h1 {
  font-size: clamp(30px, 4vw, 48px);
  color: #fff0b8;
}

.admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-actions select {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(114, 156, 255, 0.18);
  background: linear-gradient(180deg, rgba(13, 29, 87, 0.88), rgba(9, 20, 65, 0.92));
  color: #fff;
}

.admin-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
}

.requests-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 720px;
  overflow-y: auto;
}

.request-item {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 27, 84, 0.88), rgba(8, 18, 58, 0.94));
  border: 1px solid rgba(117, 159, 255, 0.12);
  cursor: pointer;
  transition: 0.2s ease;
}

.request-item:hover {
  border-color: rgba(255, 199, 94, 0.18);
}

.request-item.active {
  border-color: rgba(255, 208, 94, 0.34);
  background: linear-gradient(180deg, rgba(255, 200, 80, 0.10), rgba(10, 24, 73, 0.96));
}

.request-item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.request-id {
  color: #ffd667;
  font-weight: 800;
}

.request-status {
  font-size: 12px;
  color: #e5eeff;
  background: rgba(255, 255, 255, 0.07);
  padding: 6px 10px;
  border-radius: 999px;
}

.request-main {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff0b8;
}

.request-sub {
  color: #dbe6ff;
  font-size: 14px;
  margin-bottom: 6px;
}

.request-meta {
  color: #9eb4ed;
  font-size: 13px;
}

.empty-state {
  color: #d0dcff;
  padding: 12px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-box {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12, 27, 84, 0.84), rgba(8, 18, 58, 0.92));
  border: 1px solid rgba(117, 159, 255, 0.10);
}

.detail-box span {
  display: block;
  color: #a9bee9;
  margin-bottom: 6px;
  font-size: 13px;
}

.detail-box strong {
  font-size: 16px;
  color: #fff0b8;
}

.admin-buttons {
  display: flex;
  gap: 10px;
}

@media (max-width: 1200px) {
  .order-layout,
  .admin-grid,
  .methods-grid,
  .directions-preview,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .modern-directions-grid {
    grid-template-columns: 1fr;
  }

  .modern-direction-card {
    min-height: auto;
  }

  .direction-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 820px) {
  .top-line-inner,
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-2,
  .detail-grid,
  .admin-buttons,
  .bc-top-selects,
  .bc-table {
    grid-template-columns: 1fr;
    display: grid;
  }

  .switch-row,
  .hero-buttons {
    flex-direction: column;
  }

  .landing-hero h1 {
    font-size: 40px;
  }

  .brand-mark {
    width: 76px;
    height: 76px;
  }

  .landing-hero,
  .card,
  .info-card,
  .directions-section {
    padding: 22px;
  }
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.auth-card {
  width: min(520px, 100%);
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 23, 73, 0.94), rgba(8, 16, 52, 0.96));
  border: 1px solid rgba(255, 199, 94, 0.18);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(93, 148, 255, 0.06) inset;
}

.auth-card h1 {
  font-size: 36px;
  line-height: 1.1;
  color: #fff0b8;
  margin-bottom: 20px;
}

.auth-back {
  display: inline-block;
  margin-bottom: 18px;
  color: #cfe0ff;
  font-size: 14px;
}

.auth-back:hover {
  color: #ffd667;
}

.auth-links {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-links a {
  color: #dbe7ff;
}

.auth-links a:hover {
  color: #ffd667;
}

.auth-links-column {
  flex-direction: column;
}

.reset-link-box {
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(113, 152, 255, 0.14);
  color: #eef4ff;
  word-break: break-word;
}

.reset-link-box a {
  color: #ffd667;
}

.account-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-box p,
.account-note {
  color: #dbe6ff;
  font-size: 16px;
  line-height: 1.5;
}

.hero-top-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
}

.account-status-card {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 39, 109, 0.72), rgba(9, 20, 67, 0.94));
  border: 1px solid rgba(108, 149, 255, 0.16);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.account-status-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffd667;
  margin-bottom: 14px;
}

.account-status-text {
  color: #dbe6ff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.success-text {
  color: #bfffc7;
  font-weight: 700;
}

.account-user-name {
  color: #fff0b8;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.account-status-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account-status-actions .primary-btn,
.account-status-actions .secondary-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .hero-top-row {
    grid-template-columns: 1fr;
  }
}
/* HOME PAGE REFRESH */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.hero-main,
.hero-side-grid {
  min-width: 0;
}

.hero-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}

.hero-text.compact,
.directions-subtext.compact {
  max-width: 760px;
}

.hero-features-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-features-inline span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(120, 157, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  font-size: 14px;
  font-weight: 600;
}

.mini-stat-card,
.account-status-card,
.rates-card,
.calculator-card,
.step-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(117, 159, 255, 0.14);
  border-radius: 20px;
  padding: 18px;
}

.mini-stat-card {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-stat-card span {
  color: #9fb7ef;
  font-size: 13px;
}

.mini-stat-card strong {
  color: #fff0b8;
  font-size: 20px;
  line-height: 1.25;
}

.mini-stat-card.accent {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(255, 191, 31, 0.14), rgba(31, 69, 160, 0.14));
  border-color: rgba(255, 206, 92, 0.24);
}

.account-status-card {
  grid-column: span 2;
}

.account-status-title {
  color: #fff0b8;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.account-status-text {
  color: #d8e5ff;
  margin-bottom: 14px;
}

.account-status-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.account-user-name,
.success-text {
  color: #bfe9b4;
  margin-bottom: 12px;
}

.section-head-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.section-note {
  color: #9fb7ef;
  font-size: 14px;
  text-align: right;
}

.rate-calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.rates-table-head,
.rate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.rates-table-head {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(117, 159, 255, 0.14);
  color: #9fb7ef;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rates-list {
  margin-top: 6px;
}

.rate-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-row strong {
  color: #f5f8ff;
  font-size: 15px;
}

.rate-row span {
  color: #ffd667;
  font-weight: 800;
  white-space: nowrap;
}

.calculator-head h3 {
  color: #fff0b8;
  font-size: 28px;
  margin-bottom: 8px;
}

.calculator-head p {
  color: #c8d7ff;
  margin-bottom: 18px;
}

.calc-result-box {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 191, 31, 0.10), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 206, 92, 0.16);
}

.calc-result-box span,
.calc-result-box small {
  display: block;
}

.calc-result-box span {
  color: #9fb7ef;
  margin-bottom: 8px;
}

.calc-result-box strong {
  color: #fff4c7;
  font-size: 32px;
  line-height: 1.1;
}

.calc-result-box small {
  margin-top: 8px;
  color: #c8d7ff;
}

.calc-btn {
  width: 100%;
}

.advantages-grid,
.steps-grid.compact-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.advantage-card h2 {
  font-size: 24px;
}

.steps-section {
  padding: 28px;
}

.step-box {
  min-height: 180px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffe082 0%, #ffbf1f 100%);
  color: #081338;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-box h3 {
  color: #fff0b8;
  margin-bottom: 10px;
  font-size: 22px;
}

.step-box p {
  color: #d6e1ff;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .hero-grid,
  .rate-calc-grid,
  .advantages-grid,
  .steps-grid.compact-steps {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    align-items: start;
  }

  .hero-main {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .top-line-inner,
  .section-head-flex,
  .hero-buttons,
  .account-status-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .top-links {
    flex-wrap: wrap;
  }

  .hero-grid,
  .hero-side-grid,
  .rate-calc-grid,
  .advantages-grid,
  .steps-grid.compact-steps,
  .info-grid,
  .methods-grid,
  .modern-directions-grid {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .mini-stat-card.accent,
  .account-status-card {
    grid-column: span 1;
  }

  .landing-hero,
  .card,
  .directions-section,
  .steps-section {
    padding: 22px;
  }

  .landing-hero h1 {
    font-size: 34px;
  }

  .hero-features-inline span,
  .landing-btn,
  .calc-btn {
    width: 100%;
  }

  .section-note {
    text-align: left;
  }

  .calc-result-box strong {
    font-size: 26px;
  }
}

.order-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.order-sidebar,
.order-card {
  border-radius: 24px;
}

.exchange-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 14px;
  color: #c7d8ff;
}

.field input,
.field select,
.panel-search {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(114, 156, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  outline: none;
}

.field input::placeholder,
.panel-search::placeholder {
  color: #8ea4d6;
}

.select-panels {
  align-items: start;
}

.select-panel {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(114, 156, 255, 0.16);
}

.panel-head {
  margin-bottom: 12px;
  color: #ffffff;
}

.panel-search {
  margin-bottom: 12px;
}

.bc-list {
  max-height: 360px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-group-title {
  padding: 8px 10px;
  font-size: 13px;
  color: #9fb6ea;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bc-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
  color: #eaf1ff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.bc-row:hover {
  border-color: rgba(114, 156, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.bc-row.active {
  border-color: rgba(114, 156, 255, 0.5);
  background: rgba(114, 156, 255, 0.12);
}

.bc-name {
  font-size: 14px;
}

.bc-code {
  font-size: 13px;
  color: #9fb6ea;
  white-space: nowrap;
}

.mode-switch {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.mode-btn {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(114, 156, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}

.mode-btn.active,
.mode-btn:hover {
  background: rgba(114, 156, 255, 0.14);
  border-color: rgba(114, 156, 255, 0.42);
}

.side-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #c7d8ff;
}

.order-calc-box {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(114, 156, 255, 0.16);
}

.order-calc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff0b8;
}

.order-calc-head span {
  color: #c7d8ff;
  font-size: 14px;
}

.calc-disclaimer {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #9fb6ea;
}

.form-message {
  min-height: 24px;
  font-size: 14px;
}

.wide-btn {
  width: 100%;
}

@media (max-width: 980px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ФИКСИРОВАННАЯ МОНЕТКА */
.coin-helper {
  position: fixed;
  right: 50px;
  bottom: 20px;
  width: 280px;
  z-index: 9999;
  pointer-events: none;
  
}

/* картинка */
.coin-helper img {
  border-radius: 40px;
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: drop-shadow(0 00px 90px rgba(198, 201, 10, 0.568));
  animation: floatCoin 4s ease-in-out infinite;
}

/* АНИМАЦИЯ "ХМАРКА" */
@keyframes floatCoin {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* легкое появление */
.coin-helper {
  animation: fadeInCoin 1s ease forwards;
}

@keyframes fadeInCoin {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* мобильная версия */
@media (max-width: 768px) {
  .coin-helper {
    width: 120px;
    right: 10px;
    bottom: 10px;
  }
}

