/* ================================
   HERO – quasafe (refined, premium)
   ================================ */

/*
  Ziele:
  - weich & hell (Trust)
  - klare Typo-Hierarchie
  - Hero + Upload-Card als Einheit
*/

.q-hero {
  background: linear-gradient(
    180deg,
    #f5f9ff 0%,
    #ffffff 100%
  );
  position: relative;
}

/* Layout */
.q-hero-inner {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .q-hero-inner {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
  }
}

/* Headline */
.q-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.q-accent {
  color: var(--color-primary);
}

/* Subline */
.q-hero-subline {
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
  color: var(--color-text-muted);
}

/* Benefits */
.q-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.q-hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: var(--color-text);
}

.q-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(56, 182, 255, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ================================
   Upload Card – Key Element
   ================================ */

.q-upload-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid #eef2f7;

  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Upload Dropzone */
.q-upload-dropzone {
  margin: 1.5rem 0;
  padding: 2.5rem 1.5rem;
  border-radius: 14px;

  border: 2px dashed #dbeafe;
  background: #f8fbff;
  text-align: center;
}

/* Upload Icon */
.q-upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;

  border-radius: 12px;
  background: #e0f2fe;
  color: var(--color-primary);

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Upload Text */
.q-upload-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.q-upload-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
