/* ══════════════════════════════════════
   AURA AESTHETIC — Trust / Stats Section
   Mobile-first → Desktop @1024px
   Pencil: Mobile 390x435, Desktop 1440x550
   ══════════════════════════════════════ */

/* ══════════════════════════════════
   MOBILE (390px frame, 435px tall)
   Centered layout
   Tag: centered, y:56
   Title: x:24, y:107 (32px, centered)
   Desc: x:24, y:231
   Stats row: x:24, y:316, h:63 (horizontal, space-around, 32px numbers)
   ══════════════════════════════════ */

/* ── Section ── */
.trust {
  background: var(--c-bg-dark);
  padding: 56px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ── Decorative "AURA" Background Text ── */
.trust__bg-text {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  /* Mobile: hidden or small */
  font-size: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Inner Container ── */
.trust__inner {
  position: relative;
  z-index: 1;
}

/* ── Section Title: 32px mobile, centered ── */
.trust__title {
  font-family: var(--ff-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
  margin-top: 16px;
  margin-bottom: 16px;
}

.trust__title-desktop {
  display: none;
}

.trust__title-mobile {
  display: block;
}

/* ── Description ── */
.trust__desc {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 48px;
}

/* ── Cards Row: horizontal, space-around on mobile ── */
.trust__cards {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto;
}

/* ── Card Base ── */
.trust__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}



/* ── Card Number: 32px on mobile ── */
.trust__card-number {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 6px;
}

/* Accent variant for card 1 (rose gold) */
.trust__card-number--accent {
  color: var(--c-accent);
}

/* ── Card Label ── */
.trust__card-label {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.33);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}





/* ══════════════════════════════════════
   DESKTOP — 1440x550, bg #0C0C0C
   Decorative "AURA": x:-30, y:40, 280px, #FFFFFF05
   Content block: 1312px at x:64, y:80
   Stats cards: 1000px at x:220, y:270, h:200px (3 cards, gap 24px)
   Each card: ~317px wide, 200px tall, border-radius 20px
   Card 1: bg #161616, accent line, "2,000+" #C4967A 48px
   Card 2: border 1px #FFFFFF12, "15年" white 48px
   Card 3: bg #161616, "99.7%" white 48px
   ══════════════════════════════════════ */
@media (min-width: 1024px) {

  .trust {
    padding: 80px 0;
  }

  /* Decorative bg text: x:-30, y:40, 280px */
  .trust__bg-text {
    font-size: 280px;
    letter-spacing: 40px;
    top: 40px;
    left: -30px;
    transform: none;
    color: rgba(255, 255, 255, 0.02);
  }

  .trust__title {
    font-size: 44px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .trust__title-desktop {
    display: inline;
  }

  .trust__title-mobile {
    display: none;
  }

  .trust__desc {
    font-size: 15px;
    margin-bottom: 56px;
  }

  /* Cards: centered, 1000px wide, gap 24px */
  .trust__cards {
    max-width: 1000px;
    margin: 0 auto;
    gap: 24px;
    justify-content: center;
  }

  .trust__card {
    padding: 0;
  }

  /* Card numbers: 48px on desktop */
  .trust__card-number {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .trust__card-label {
    font-size: 12px;
    letter-spacing: 3px;
  }
}