/* ===============================
   Home – YourCard (clean / pro)
   =============================== */

.yc-hero{
  padding: 5rem 0 3rem;
  background:
    radial-gradient(900px 400px at 10% 10%, rgba(1,94,155,.10), transparent 60%),
    radial-gradient(800px 360px at 90% 0%, rgba(1,94,155,.08), transparent 55%),
    #fff;
}

.yc-badge{
  display: inline-flex;
  align-items: center;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--yc-primary);
  background: rgba(1,94,155,.10);
  border: 1px solid rgba(1,94,155,.18);
}

.yc-h1{
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: .6rem 0 1rem;
  color: #0f172a;
}

.yc-lead{
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.6;
  max-width: 42rem;
}

.yc-hero-btn{
  border-radius: 14px;
  padding: .85rem 1.1rem;
  font-weight: 700;
}

.btn-outline-primary{
  border-color: var(--yc-primary);
  color: var(--yc-primary);
}
.btn-outline-primary:hover{
  background: rgba(1,94,155,.08);
  border-color: var(--yc-primary);
  color: var(--yc-primary);
}

.yc-store-row{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.yc-store-badge{
  width: 190px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}
.yc-store-badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}

.yc-mini-proof{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.yc-mini-proof-item{
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .08);
  border-radius: 16px;
  padding: .85rem .9rem;
}
.yc-mini-proof-title{
  font-weight: 800;
  color: #0f172a;
  font-size: .95rem;
}
.yc-mini-proof-text{
  color: #64748b;
  font-size: .88rem;
  margin-top: .15rem;
}

.yc-phone-wrap{
  border-radius: 28px;
  padding: 1.2rem;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(2, 6, 23, .08);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  display: inline-block;
}
.yc-phone{
  max-width: 50%;
  height: auto;
}

.yc-section{
  padding: 4rem 0;
}

.yc-section-alt{
  background: rgba(1,94,155,.04);
  border-top: 1px solid rgba(2,6,23,.06);
  border-bottom: 1px solid rgba(2,6,23,.06);
}

.yc-section-head{
  margin-bottom: 1.5rem;
  max-width: 46rem;
}

.yc-h2{
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 .6rem;
}

.yc-muted{
  color: #64748b;
  line-height: 1.65;
}

.yc-card{
  height: 100%;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .08);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.yc-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0,0,0,.10);
}
.yc-card-title{
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .35rem;
}
.yc-card-text{
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.yc-mini-card{
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .08);
  border-radius: 16px;
  padding: 1rem;
}
.yc-mini-card-title{
  font-weight: 800;
  color: #0f172a;
  margin-bottom: .2rem;
}
.yc-mini-card-text{
  color: #64748b;
  margin: 0;
}

.yc-media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(2, 6, 23, .08);
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
  display: inline-block;
  background: #fff;
}
.yc-media-img{
  width: 100%;
  height: auto;
  display: block;
}

.yc-download{
  background: rgba(1,94,155,.04);
  border: 1px solid rgba(1,94,155,.14);
  border-radius: 22px;
  padding: 2rem;
}

.yc-qr{
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, .08);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
.yc-qr-text{
  color: #64748b;
  font-size: .9rem;
}

/* Responsive */
@media (max-width: 991.98px){
  .yc-hero{ padding: 3.5rem 0 2rem; }
  .yc-mini-proof{ grid-template-columns: 1fr; }
  .yc-store-badge{ width: 175px; }
}