body{
  font-family: Inter, system-ui;
  background: linear-gradient(180deg,#f8fafc,#eef2ff);
}

/* HERO */
.success-hero{
  padding:130px 0 90px;
}

.success-hero h1{
  font-size:52px;
  font-weight:900;
  letter-spacing:-1px;
}

.success-hero h1 span{
  background: linear-gradient(90deg,#000000,#ff0000);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.success-hero p{
  font-size:18px;
  opacity:.7;
}

.badge-success{
  background:linear-gradient(90deg,#dcfce7,#bbf7d0);
  color:#15803d;
  padding:8px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

/* STORIES */
.stories-section{
  padding:90px 0;
}

.story-card{
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  cursor:pointer;
  transition:.4s ease;
  position:relative;
}

.story-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  background:linear-gradient(120deg,transparent,rgba(34,197,94,.25));
  opacity:0;
  transition:.4s;
}

.story-card:hover::after{
  opacity:1;
}

.story-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 35px 80px rgba(0,0,0,.25);
}

.story-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.story-info{
  padding:18px;
  text-align:center;
}

.story-info h6{
  font-weight:800;
  margin-bottom:4px;
  font-size:16px;
}

.story-info small{
  opacity:.65;
}

/* CTA */
.cta-section{
  padding:100px 0;
  background:linear-gradient(135deg,#0000009a,#fd0d059a);
}

.cta-section h3{
  font-weight:900;
  font-size:32px;
}

.cta-section p{
  opacity:.7;
}

.cta-section .btn{
  font-size:18px;
  padding:14px 40px;
}.story-card img{
  aspect-ratio: 4 / 3;
}