/* =============================================================================
   /premium-uyelik public landing - onyx + gold premium tema
   =============================================================================
   Tema: kampanya-premium şeridi ve is-firsati landing ile aynı görsel dil.
   Onyx zemin + altın aksanlar; sayfa header light, .pu-page dark.
   Tüm sınıflar .pu-page (veya child) altında scoped, site genelini
   kirletmiyor. Hesabım > Premium kartlarındaki .premium-* sınıfları
   ile çakışmasın diye .pu- prefix kullanıldı.

   Renk skalası (is-firsati ile uyumlu):
     onyx-950: #06090f  (gövde)
     onyx-900: #0a0e14  (kart zemini)
     onyx-800: #11161f  (yumuşak yüzey)
     onyx-700: #1a212c  (border)
     gold-300: #f4d47c
     gold-400: #e5c46a  (ana altın)
     gold-500: #d4af37
     gold-600: #a07d22
   ============================================================================= */

.pu-page {
    position: relative;
    background: #06090f;
    color: #e5e7eb;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.pu-page * { box-sizing: border-box; }
.pu-page a { color: #f4d47c; text-decoration: none; transition: color .2s ease; }
.pu-page a:hover { color: #fff; }

/* Container */
.pu-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; }
.pu-container--narrow { max-width: 920px; }

/* -----------------------------------------------------------------------------
   Ambient background (gold blobs + ince grid + tepe parıltısı)

   .pu-page'de overflow:hidden var. Eski blob--1 top:-120px ile yerleştirilmişti;
   blur(120px)'in soft edge'i sayfa üst kenarında sertçe kesiliyor ve mobilde
   (genişlik ~390px, blob 720px) tüm üst kısmı asimetrik altın bir bant haline
   getiriyordu (header beyaz/yeşil → siyah arasında "kahverengi şerit" hissi).
   Çözüm: tüm blob'lar sayfa içine alınır ve .pu-ambient'e tepe fade mask'ı
   eklenir; böylece header'dan dark zemine geçiş yumuşar.
   ----------------------------------------------------------------------------- */
.pu-ambient {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    /* Tepede ve dipte mask ile yumuşak fade — header'dan dark zemine
       geçişte sert blob clip kenarı kalmasın. */
    mask-image: linear-gradient(180deg, transparent 0, #000 96px, #000 calc(100% - 40px), transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 96px, #000 calc(100% - 40px), transparent 100%);
}
.pu-ambient__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.pu-ambient__blob--1 {
    /* top:-120px → 40px: blob tamamen sayfa içinde; blur soft edge sayfa
       üst kenarında değil, kendi doğal halkasında biter. */
    top: 40px; left: -120px;
    width: 720px; height: 720px;
    background: rgba(212, 175, 55, 0.08);
}
.pu-ambient__blob--2 {
    top: 25%; right: -120px;
    width: 560px; height: 560px;
    background: rgba(212, 175, 55, 0.05);
    filter: blur(110px);
}
.pu-ambient__blob--3 {
    bottom: -160px; left: 30%;
    width: 640px; height: 640px;
    background: rgba(180, 83, 9, 0.06);
    filter: blur(140px);
}
.pu-ambient__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.55;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}

/* Mobil: ekran 390-420px civarında olduğunda 720px'lik blob'un yarısından
   fazlası viewport'a düşüyor; bu da sol-sağ asimetrik altın hâle yaratıyor.
   Mobilde blob'u küçült, sola çek ve opaklığını düşür → sağ taraf tarafsız
   dark, sol üstte ince ışıltı korunur. */
@media (max-width: 768px) {
    .pu-ambient {
        mask-image: linear-gradient(180deg, transparent 0, #000 64px, #000 calc(100% - 24px), transparent 100%);
        -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 64px, #000 calc(100% - 24px), transparent 100%);
    }
    .pu-ambient__blob--1 {
        top: 24px; left: -200px;
        width: 480px; height: 480px;
        background: rgba(212, 175, 55, 0.07);
        filter: blur(90px);
    }
    .pu-ambient__blob--2 {
        top: 35%; right: -200px;
        width: 420px; height: 420px;
        filter: blur(90px);
    }
    .pu-ambient__blob--3 {
        bottom: -120px; left: 20%;
        width: 460px; height: 460px;
        filter: blur(110px);
    }
}

/* -----------------------------------------------------------------------------
   Reveal animation (JS .visible class ekler)
   ----------------------------------------------------------------------------- */
.pu-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .85s cubic-bezier(.2,.8,.2,1),
                transform .85s cubic-bezier(.2,.8,.2,1);
}
.pu-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .pu-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* -----------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------------- */
.pu-hero {
    position: relative;
    z-index: 1;
    padding: 88px 0 64px;
    text-align: center;
}
@media (max-width: 768px) {
    .pu-hero { padding: 56px 0 40px; }
}

.pu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #f4d47c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.pu-eyebrow .bi { font-size: 14px; }

.pu-hero__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 5.5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0 auto 18px;
    max-width: 18ch;
}
.pu-hero__title-em {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(110deg, #fff5d6 0%, #f4d47c 22%, #d4af37 48%, #b8941f 70%, #d4af37 90%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: puShine 9s linear infinite;
    /* Block fallback - tarayıcılar -webkit-background-clip:text desteklemediğinde
       altın yerine düz renk render edilsin diye. */
    -webkit-text-fill-color: transparent;
}
/* Mobilde başlık iki satıra sarınca "%5" tek başına alta düşmesin -
   bilerek ayrı satırda büyük altın vurgu olarak göster. */
@media (max-width: 560px) {
    .pu-hero__title {
        max-width: none;
        font-size: 30px;
        line-height: 1.15;
    }
    .pu-hero__title-em {
        display: block;
        margin-top: 6px;
        font-size: 64px;
        line-height: 1;
    }
}
@keyframes puShine {
    0%   { background-position: 200% 50%; }
    100% { background-position: -50% 50%; }
}

.pu-hero__sub {
    color: rgba(229, 231, 235, 0.78);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.6;
    margin: 0 auto 32px;
    max-width: 62ch;
}
.pu-hero__sub strong {
    color: #f4d47c;
    font-weight: 700;
}

/* CTA wrapper - hero ve bottom-cta'da iki butonu yan yana (desktop)
   veya stack (mobile) tutar. Önceki margin-left: 8px sadece inline
   hizalamada çalışıyordu; mobilde stack olunca aralarında boşluk
   kalmıyordu. Flex + gap ile her iki layout'ta da düzgün boşluk. */
.pu-hero__ctas {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
/* Wrapper içindeyken secondary CTA'nın eski margin-left'i sıfırlanır;
   yoksa flex gap (12px) ile margin (8px) toplanıp 20px boşluk olur. */
.pu-hero__ctas .pu-hero__cta-secondary {
    margin-left: 0;
}
@media (max-width: 560px) {
    .pu-hero__ctas {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .pu-hero__ctas .pu-hero__cta,
    .pu-hero__ctas .pu-hero__cta-secondary {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
}

/* Selector spec: .pu-page a global rengini (#f4d47c) ezdiği için
   CTA'larda .pu-page prefix ile spec yükseltildi - yoksa altın zemin
   üzerine altın yazı oluşuyor ve metin okunmuyor. */
.pu-page a.pu-hero__cta,
.pu-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f4d47c 0%, #d4af37 55%, #a07d22 100%);
    color: #0a0e14;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.pu-page a.pu-hero__cta:hover,
.pu-hero__cta:hover {
    color: #0a0e14;
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.36),
                inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.pu-hero__cta .bi { font-size: 16px; }

.pu-page a.pu-hero__cta-secondary,
.pu-hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.pu-page a.pu-hero__cta-secondary:hover,
.pu-hero__cta-secondary:hover {
    color: #fff;
    border-color: rgba(244, 212, 124, 0.55);
    background: rgba(244, 212, 124, 0.10);
}

/* Hero rakam vitrini - 3 küçük metric */
.pu-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 56px auto 0;
}
@media (max-width: 640px) {
    .pu-stats { grid-template-columns: 1fr; gap: 12px; max-width: 320px; }
}
.pu-stat {
    padding: 22px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.16);
    text-align: center;
    backdrop-filter: blur(6px);
}
.pu-stat__num {
    display: block;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 6px;
}
.pu-stat__num em {
    font-style: normal;
    background: linear-gradient(110deg, #fff5d6 0%, #f4d47c 30%, #d4af37 60%, #a07d22 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.pu-stat__lbl {
    font-size: 12px;
    color: rgba(229, 231, 235, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

/* -----------------------------------------------------------------------------
   Section helpers
   ----------------------------------------------------------------------------- */
.pu-section {
    position: relative;
    z-index: 1;
    padding: 72px 0;
}
@media (max-width: 768px) {
    .pu-section { padding: 48px 0; }
}
.pu-section--tight { padding: 56px 0; }

.pu-section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.pu-section__eyebrow {
    display: inline-block;
    color: #f4d47c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.pu-section__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.pu-section__sub {
    color: rgba(229, 231, 235, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   Nasıl çalışır - 3 adım
   ----------------------------------------------------------------------------- */
.pu-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
}
@media (max-width: 880px) {
    .pu-steps { grid-template-columns: 1fr; }
}
.pu-step {
    position: relative;
    padding: 28px 24px 26px;
    background: linear-gradient(180deg, #0d121b 0%, #0a0e14 100%);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .25s ease, transform .25s ease;
}
.pu-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 160px at 0% 0%, rgba(212, 175, 55, 0.10), transparent 60%);
    pointer-events: none;
}
.pu-step:hover {
    border-color: rgba(212, 175, 55, 0.42);
    transform: translateY(-3px);
}
.pu-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(244, 212, 124, 0.18), rgba(212, 175, 55, 0.06));
    border: 1px solid rgba(212, 175, 55, 0.36);
    color: #f4d47c;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
    position: relative;
}
.pu-step__title {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.pu-step__desc {
    color: rgba(229, 231, 235, 0.7);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}
.pu-step__desc strong { color: #f4d47c; font-weight: 600; }

/* -----------------------------------------------------------------------------
   Avantaj kartları
   ----------------------------------------------------------------------------- */
.pu-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 880px) {
    .pu-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .pu-benefits { grid-template-columns: 1fr; }
}
.pu-benefit {
    padding: 22px 22px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: border-color .25s ease, background .25s ease;
}
.pu-benefit:hover {
    border-color: rgba(212, 175, 55, 0.32);
    background: rgba(212, 175, 55, 0.04);
}
.pu-benefit__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.14);
    color: #f4d47c;
    font-size: 20px;
    margin-bottom: 14px;
}
.pu-benefit__title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
}
.pu-benefit__desc {
    color: rgba(229, 231, 235, 0.66);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   Showcase: rozet kartı (büyük)
   ----------------------------------------------------------------------------- */
.pu-showcase {
    position: relative;
    background: linear-gradient(135deg, #0a0e14 0%, #11161f 60%, #0a0e14 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 24px;
    padding: 48px clamp(24px, 4vw, 56px);
    overflow: hidden;
}
.pu-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 240px at 110% -20%, rgba(212, 175, 55, 0.18), transparent 60%);
    pointer-events: none;
}
.pu-showcase__row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
@media (max-width: 880px) {
    .pu-showcase__row { grid-template-columns: 1fr; gap: 28px; }
}
.pu-showcase__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 34px);
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.pu-showcase__lead {
    color: rgba(229, 231, 235, 0.74);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0 0 20px;
}
.pu-showcase__list {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 10px;
}
.pu-showcase__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(229, 231, 235, 0.86);
    font-size: 14.5px;
    line-height: 1.55;
}
.pu-showcase__list .bi {
    color: #f4d47c;
    font-size: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
}

/* Sağ kart - rozet vitrini */
.pu-tier {
    position: relative;
    border-radius: 20px;
    background:
        radial-gradient(140% 90% at 0% 0%, rgba(244, 212, 124, 0.22), transparent 55%),
        linear-gradient(160deg, #1a212c 0%, #0a0e14 100%);
    border: 1px solid rgba(212, 175, 55, 0.32);
    padding: 28px 26px 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.pu-tier__crown {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f4d47c 0%, #d4af37 60%, #a07d22 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0a0e14;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.32);
}
.pu-tier__name {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 6px;
    color: #f4d47c;
}
.pu-tier__rate {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 56px;
    line-height: 1;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -0.03em;
}
.pu-tier__rate-suffix {
    color: rgba(229, 231, 235, 0.7);
    font-size: 15px;
    margin-bottom: 18px;
}
.pu-tier__meta {
    border-top: 1px dashed rgba(212, 175, 55, 0.22);
    padding-top: 14px;
    display: grid;
    gap: 8px;
}
.pu-tier__meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
}
.pu-tier__meta-row .lbl { color: rgba(229, 231, 235, 0.62); }
.pu-tier__meta-row .val { color: #fff; font-weight: 600; }

/* -----------------------------------------------------------------------------
   FAQ - dark accordion
   ----------------------------------------------------------------------------- */
.pu-faq {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}
.pu-faq__item {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease;
}
.pu-faq__item.is-open {
    border-color: rgba(212, 175, 55, 0.32);
    background: rgba(212, 175, 55, 0.04);
}
.pu-faq__btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 56px 18px 22px;
    line-height: 1.45;
    cursor: pointer;
    position: relative;
}
.pu-faq__btn:focus-visible {
    outline: 2px solid #f4d47c;
    outline-offset: -2px;
}
.pu-faq__icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: #f4d47c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .25s ease;
}
.pu-faq__item.is-open .pu-faq__icon {
    transform: translateY(-50%) rotate(45deg);
    background: rgba(212, 175, 55, 0.28);
    color: #fff;
}
.pu-faq__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.pu-faq__item.is-open .pu-faq__panel {
    max-height: 600px;
}
.pu-faq__body {
    padding: 0 22px 18px;
    color: rgba(229, 231, 235, 0.74);
    font-size: 14.5px;
    line-height: 1.65;
}
.pu-faq__body strong { color: #f4d47c; font-weight: 600; }

/* -----------------------------------------------------------------------------
   Alt CTA bandı
   ----------------------------------------------------------------------------- */
.pu-bottom-cta {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 56px 0 96px;
}
.pu-bottom-cta__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.4vw, 38px);
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.pu-bottom-cta__sub {
    color: rgba(229, 231, 235, 0.7);
    font-size: 16px;
    line-height: 1.6;
    max-width: 56ch;
    margin: 0 auto 24px;
}

/* -----------------------------------------------------------------------------
   Mini fine-print rozetleri
   ----------------------------------------------------------------------------- */
.pu-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}
.pu-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(229, 231, 235, 0.82);
    font-size: 13px;
    font-weight: 500;
}
.pu-trust__item .bi { color: #f4d47c; font-size: 14px; }
