/* =====================================================
   HOME V2 — digital-marketplace style sections
   (trust strip, how-it-works, payment strip)
   Loaded after modern.css / modern-conversion.css.
   ===================================================== */

/* ---------- Trust / instant-delivery strip ---------- */
.lm-trust-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin:26px 0 6px;
}
.lm-trust-item{
    display:flex;
    align-items:flex-start;
    gap:13px;
    background:#fff;
    border:1px solid var(--lm-border);
    border-radius:18px;
    padding:18px;
    transition:.2s;
}
.lm-trust-item:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 28px rgba(15,23,42,.06);
    border-color:#bfdbfe;
}
.lm-trust-ico{
    flex:0 0 auto;
    width:42px;height:42px;
    border-radius:12px;
    background:var(--lm-soft);
    color:var(--lm-primary);
    display:flex;align-items:center;justify-content:center;
}
.lm-trust-item strong{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#0f172a;
    margin-bottom:3px;
}
.lm-trust-item p{
    margin:0;
    font-size:12.5px;
    color:#64748b;
    line-height:1.5;
}

/* ---------- How it works ---------- */
.lm-howit{
    display:flex;
    align-items:stretch;
    gap:10px;
    margin:46px 0 10px;
    padding:30px 26px;
    background:linear-gradient(135deg,#0f172a,#111827 55%,#1e3a8a);
    border-radius:26px;
    box-shadow:var(--lm-shadow);
}
.lm-howit-step{
    flex:1;
    min-width:0;
    color:#fff;
}
.lm-howit-num{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;height:32px;
    border-radius:10px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    font-weight:600;
    font-size:14px;
    margin-bottom:12px;
}
.lm-howit-step h4{
    font-size:14.5px;
    font-weight:600;
    margin:0 0 6px;
}
.lm-howit-step p{
    font-size:12.5px;
    color:#cbd5e1;
    line-height:1.55;
    margin:0;
}
.lm-howit-arrow{
    flex:0 0 auto;
    align-self:center;
    color:rgba(255,255,255,.35);
}

/* ---------- Payment methods strip ---------- */
.lm-payment-strip{
    margin:44px 0 8px;
    padding:22px 26px;
    border:1px dashed var(--lm-border);
    border-radius:20px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
    justify-content:space-between;
}
.lm-payment-label{
    font-size:13px;
    font-weight:600;
    color:#475569;
    white-space:nowrap;
}
.lm-payment-icons{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}
.lm-payment-pill{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:9px 13px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid var(--lm-border);
    font-size:12.5px;
    font-weight:700;
    color:#334155;
}
.lm-payment-pill svg{ color:var(--lm-primary); flex:0 0 auto; }

@media (max-width:991px){
    .lm-trust-strip{ grid-template-columns:repeat(2,1fr); }
    .lm-howit{ flex-direction:column; gap:18px; }
    .lm-howit-arrow{ display:none; }
    .lm-payment-strip{ flex-direction:column; align-items:flex-start; }
}
@media (max-width:560px){
    .lm-trust-strip{ grid-template-columns:1fr; }
}

/* =====================================================
   FINAL CLEANUP — hero banner inside hero + correct flow
   ===================================================== */
.lm-home{
    background:
        radial-gradient(circle at 8% 4%, rgba(37,99,235,.08), transparent 28%),
        linear-gradient(180deg,#f8fbff 0%,#f6f9ff 42%,#fff 100%);
}
.lm-hero{
    margin-top:8px;
    align-items:stretch;
}
.lm-hero-content{
    display:flex!important;
    flex-direction:column;
    justify-content:center;
    gap:14px;
    padding:42px!important;
    min-height:360px!important;
    border:1px solid rgba(255,255,255,.12);
}
.lm-hero-banner{
    position:relative;
    z-index:2;
    width:100%;
}
.lm-hero-swiper{
    border-radius:20px!important;
    overflow:hidden!important;
    background:rgba(255,255,255,.08)!important;
    box-shadow:0 20px 44px rgba(0,0,0,.22)!important;
    border:1px solid rgba(255,255,255,.18);
}
.lm-hero-swiper img{
    width:100%!important;
    height:210px!important;
    object-fit:cover!important;
    display:block!important;
}
.lm-hero-swiper .swiper-button-next,
.lm-hero-swiper .swiper-button-prev{
    width:38px!important;
    height:38px!important;
    border-radius:999px!important;
    background:rgba(15,23,42,.72)!important;
    color:#fff!important;
    border:1px solid rgba(255,255,255,.22)!important;
    backdrop-filter:blur(10px);
    box-shadow:0 12px 28px rgba(15,23,42,.28);
}
.lm-hero-swiper .swiper-button-next:after,
.lm-hero-swiper .swiper-button-prev:after{
    font-size:14px!important;
    font-weight:600!important;
}
.lm-hero-swiper .swiper-pagination-bullet{
    background:#fff!important;
    opacity:.45!important;
}
.lm-hero-swiper .swiper-pagination-bullet-active{
    opacity:1!important;
    width:18px!important;
    border-radius:999px!important;
}
.lm-hero-actions,
.lm-trust-row{ position:relative; z-index:2; }
.lm-primary-btn,.lm-secondary-btn{
    box-shadow:0 12px 24px rgba(15,23,42,.16);
}
.lm-trust-row span{
    backdrop-filter:blur(10px);
}
.lm-trust-strip{
    margin-top:20px!important;
    margin-bottom:26px!important;
}
.lm-trust-ico svg,
.lm-payment-pill svg{
    color:#2563eb!important;
    stroke:#2563eb!important;
    opacity:1!important;
}
.lm-trust-ico{
    background:#eaf3ff!important;
    color:#2563eb!important;
}
.lm-category-card,
.lm-product-card,
.lm-blog-card,
.lm-payment-strip{
    box-shadow:0 16px 36px rgba(15,23,42,.06)!important;
}
.lm-payment-strip{
    margin:42px 0 22px!important;
    background:linear-gradient(135deg,#fff,#f8fbff)!important;
    border:1px solid #dbeafe!important;
    border-radius:24px!important;
}
.lm-payment-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#0f172a!important;
    font-size:14px!important;
}
.lm-payment-label:before{
    content:"";
    width:10px;height:10px;
    border-radius:999px;
    background:#2563eb;
    box-shadow:0 0 0 6px rgba(37,99,235,.12);
}
.lm-payment-pill{
    background:#fff!important;
    border-color:#cfe0ff!important;
    padding:11px 15px!important;
    box-shadow:0 6px 18px rgba(37,99,235,.05);
}
.lm-howit{
    margin:24px 0 26px!important;
    position:relative!important;
    z-index:1!important;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    background:
        radial-gradient(circle at 0% 0%,rgba(96,165,250,.30),transparent 30%),
        linear-gradient(135deg,#0f2a62,#123f91 58%,#0b5bd3)!important;
}
.lm-howit:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:radial-gradient(rgba(255,255,255,.20) 1px, transparent 1px);
    background-size:28px 28px;
    opacity:.20;
}
.lm-howit-step,.lm-howit-arrow{ position:relative; z-index:2; }
.lm-blog-section{
    padding:0 0 60px!important;
    margin-top:0!important;
}
.lm-blog-section .lm-section-head{
    margin-top:0!important;
}
.lm-section-head{
    position:relative;
}
.lm-section-head span{
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.lm-section-head span:before{
    content:"";
    width:4px;height:22px;
    border-radius:999px;
    background:#2563eb;
    box-shadow:0 0 0 5px rgba(37,99,235,.10);
}
@media (max-width:991px){
    .lm-hero-content{ padding:28px!important; }
    .lm-hero-swiper img{ height:220px!important; }
}
@media (max-width:767px){
    .lm-hero-card{ display:block!important; }
    .lm-hero-content{ min-height:auto!important; border-radius:24px!important; }
    .lm-hero-swiper img{ height:165px!important; }
    .lm-payment-strip{ margin:30px 0 18px!important; }
    .lm-howit{ margin:18px 0 22px!important; padding:22px!important; }
}

/* başlık çizgi ikonları kaldırıldı */
.lm-section-head span:before{display:none!important;content:none!important;}
.lm-section-head span{border-left:0!important;padding-left:0!important;}
