/* Homepage mobile correction — header zone, hero, trust only (<= 480px) */

@media (max-width: 480px) {
  /* ── Hero: true mobile composition ── */
  .hero {
    padding: 86px 0 24px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
  }

  .hero__content,
  .hero__picture {
    grid-column: auto;
    grid-row: auto;
  }

  .hero__picture {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__illustration {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
  }

  .hero__content {
    order: 2;
    width: 100%;
  }

  .hero__content h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
  }

  .hero__text {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 0;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    justify-content: center;
  }

  .hero__actions .hero__announcements-link {
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 8px 0 0;
  }

  /* ── Trust / assurance cards: one per row ── */
  .trust-features {
    padding: 16px 0 24px;
  }

  .trust-features__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .trust-feature {
    width: 100%;
    border-radius: var(--radius-pill);
    padding: 12px 16px;
    gap: 12px;
  }

  .trust-feature__icon {
    width: 36px;
    height: 36px;
  }

  .trust-feature__icon svg {
    width: 18px;
    height: 18px;
  }

  .trust-feature__title {
    font-size: 0.8125rem;
    font-weight: 700;
  }

  .trust-feature__text {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
}

@media (max-width: 390px) {
  .hero__content h1 {
    font-size: 1.6875rem;
  }
}

@media (max-width: 375px) {
  .hero {
    padding-top: 82px;
  }

  .hero__content h1 {
    font-size: 1.625rem;
  }
}
