.hero--currency {
  padding-block: var(--space-16) var(--space-12);
}

.currency-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.currency-hero__lead {
  max-width: 34rem;
  font-size: var(--font-size-lg);
}

.currency-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.currency-hero__visual {
  position: relative;
  min-height: 220px;
}

.currency-hero__chip-glow {
  position: absolute;
  inset: 12% 10% 18% 10%;
  background: radial-gradient(circle at 30% 20%, rgba(245, 197, 66, 0.55), transparent 60%), radial-gradient(circle at 70% 70%, rgba(73, 209, 255, 0.45), transparent 65%);
  filter: blur(12px);
  opacity: 0.9;
}

.currency-hero__chip-stack {
  position: absolute;
  inset: 18% 14% 10% 14%;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245, 197, 66, 0.5);
  background: radial-gradient(circle at top, rgba(11, 15, 31, 0.9), rgba(5, 8, 20, 0.98)), repeating-radial-gradient(circle at 50% 10%, rgba(245, 197, 66, 0.55), rgba(245, 197, 66, 0.55) 2px, transparent 2px, transparent 5px);
  box-shadow: var(--shadow-lg);
}

.currency-section-header {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-8);
}

.currency-intro-grid {
  align-items: flex-start;
}

.currency-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.currency-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.currency-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle, #f5c542 0, #ff4f6a 45%, #49d1ff 100%);
  box-shadow: 0 0 8px rgba(245, 197, 66, 0.7);
}

.currency-list--compact li {
  margin-bottom: var(--space-1);
}

.currency-image-block {
  max-width: 480px;
  margin-inline: auto;
}

.currency-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top, #1b2440 0, #050814 55%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-md);
}

.currency-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.currency-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.currency-steps .card {
  height: 100%;
}

.currency-safe {
  margin-top: var(--space-4);
}

.currency-atmosphere-grid .card {
  height: 100%;
}

.currency-custom-cta {
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(245, 197, 66, 0.16), rgba(5, 8, 20, 0.98));
  border: 1px solid rgba(245, 197, 66, 0.4);
  box-shadow: var(--shadow-md);
}

.currency-custom-note {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.currency-contact-form {
  width: 100%;
}

.currency-consent-group {
  margin-top: var(--space-2);
}

.currency-consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.currency-consent-label input[type="checkbox"] {
  margin-top: 0.15rem;
}

.currency-bottom-cta {
  padding-bottom: var(--space-16);
}

@media (max-width: 960px) {
  .currency-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .currency-hero__visual {
    order: -1;
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero--currency {
    padding-block: var(--space-12) var(--space-10);
  }

  .currency-section-header {
    text-align: left;
  }

  .currency-custom-cta {
    padding: var(--space-4);
  }

  .currency-hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
