.carman-hero-dark {
  --carman-hero-dark-height: 480px;
  --carman-hero-dark-overlay-start: rgba(10, 17, 26, 0.9);
  --carman-hero-dark-overlay-end: rgba(10, 17, 26, 0.55);
  --carman-hero-dark-text: #ffffff;
  --carman-hero-dark-muted: #cbd5f5;
  --carman-hero-dark-accent: #2d7bf4;
  --carman-hero-dark-badge-bg: rgba(255, 255, 255, 0.1);
  --carman-hero-dark-badge-border: rgba(255, 255, 255, 0.2);
  --carman-hero-dark-badge-text: #ffffff;
  --carman-hero-dark-primary-bg: #1d6fff;
  --carman-hero-dark-primary-text: #ffffff;
  --carman-hero-dark-primary-border: transparent;
  --carman-hero-dark-secondary-bg: rgba(255, 255, 255, 0.08);
  --carman-hero-dark-secondary-text: #ffffff;
  --carman-hero-dark-secondary-border: rgba(255, 255, 255, 0.2);
  font-family: var(--carman-font-body, "Manrope", sans-serif);
  position: relative;
  min-height: var(--carman-hero-dark-height);
  color: var(--carman-hero-dark-text);
  overflow: hidden;
}

.carman-hero-dark * {
  box-sizing: border-box;
}

.carman-hero-dark__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0b1320;
}

.carman-hero-dark__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--carman-hero-dark-overlay-start), var(--carman-hero-dark-overlay-end));
}

.carman-hero-dark__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  text-align: center;
}

.carman-hero-dark__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--carman-hero-dark-badge-bg);
  border: 1px solid var(--carman-hero-dark-badge-border);
  color: var(--carman-hero-dark-badge-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.carman-hero-dark__badge svg,
.carman-hero-dark__badge i {
  width: 14px;
  height: 14px;
}

.carman-hero-dark__title {
  font-family: var(--carman-font-head, "Manrope", sans-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.carman-hero-dark__title-accent {
  color: var(--carman-hero-dark-accent);
}

.carman-hero-dark__title-accent.is-new-line {
  display: block;
}

.carman-hero-dark__subtitle {
  margin: 0 auto 26px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--carman-hero-dark-muted);
}

.carman-hero-dark__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.carman-hero-dark__button {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carman-hero-dark__button--primary {
  background: var(--carman-hero-dark-primary-bg);
  color: var(--carman-hero-dark-primary-text);
  border-color: var(--carman-hero-dark-primary-border);
  box-shadow: 0 14px 26px rgba(45, 123, 244, 0.35);
}

.carman-hero-dark__button--primary:hover {
  transform: translateY(-1px);
}

.carman-hero-dark__button--secondary {
  background: var(--carman-hero-dark-secondary-bg);
  color: var(--carman-hero-dark-secondary-text);
  border-color: var(--carman-hero-dark-secondary-border);
}

@media (max-width: 768px) {
  .carman-hero-dark__container {
    padding: 72px 18px 56px;
  }

  .carman-hero-dark__actions {
    flex-direction: column;
    align-items: center;
  }

  .carman-hero-dark__button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
