 .wrap {
      max-width: 860px;
      margin: 0 auto;
      padding: 1.5rem 1rem;
      font-family: system-ui, sans-serif;
    }

    .top-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: #fff0f0; border: 0.5px solid #fca5a5;
      color: #991b1b; font-size: 12px; font-weight: 500;
      padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
    }
    .top-badge svg { width: 13px; height: 13px; flex-shrink: 0; }

    /* ── Hero: image upar, text neeche ── */
    .hero-row {
      display: flex;
      flex-direction: column;
      border-radius: 16px; overflow: hidden;
      border: 0.5px solid #e5e7eb; margin-bottom: 1.5rem;
    }
    .hero-img { position: relative; overflow: hidden;  height: auto; }
    .hero-img img { width: 100%;   height: auto;object-fit: contain; display: block; }
    .hero-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(200,30,30,0.25));
    }
    .hero-text {
      background: #c81e1e;
      padding: 1.75rem 1.75rem;
    }
    .hero-text h2 { color: #fff; font-size: 22px; font-weight: 500; line-height: 1.3; margin-bottom: 10px; }
    .hero-text p  { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.7; margin-bottom: 1.25rem; }
    .hero-tag {
      display: inline-block; background: rgba(255,255,255,0.15); color: #fecaca;
      font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 100px;
      border: 0.5px solid rgba(255,255,255,0.25); margin-right: 6px; margin-bottom: 6px;
    }

    .stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 1.5rem; }
    .stat-box {
      background: #fff; border: 0.5px solid #e5e7eb; border-radius: 12px;
      padding: 14px 16px; display: flex; align-items: center; gap: 12px;
    }
    .stat-icon {
      width: 36px; height: 36px; border-radius: 8px; background: #fff0f0;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .stat-icon svg { width: 18px; height: 18px; }
    .stat-num { font-size: 15px; font-weight: 500; color: #111; }
    .stat-lbl { font-size: 11px; color: #6b7280; margin-top: 2px; }

    .bottom-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 12px; }
    .includes-card {
      background: #fff; border: 0.5px solid #e5e7eb;
      border-radius: 14px; padding: 1.25rem;
    }
    .card-label {
      font-size: 11px; font-weight: 500; color: #6b7280;
      text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px;
    }
    .pt-list { list-style: none; }
    .pt-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px; color: #111; padding: 7px 0;
      border-bottom: 0.5px solid #f3f4f6;
    }
    .pt-list li:last-child { border-bottom: none; }
    .pt-dot { width: 7px; height: 7px; border-radius: 50%; background: #dc2626; flex-shrink: 0; }

    .right-col { display: flex; flex-direction: column; gap: 10px; }
    .info-box {
      background: #f9fafb; border: 0.5px solid #e5e7eb;
      border-radius: 12px; padding: 1rem 1.1rem;
    }
    .info-box h4 { font-size: 13px; font-weight: 500; color: #111; margin-bottom: 5px; }
    .info-box p  { font-size: 12.5px; color: #6b7280; line-height: 1.55; }

    .actions { display: flex; gap: 10px; margin-top: 1.5rem; }
    .btn-primary {
      flex: 1; text-align: center; background: #dc2626; color: #fff;
      font-size: 14px; font-weight: 500; padding: 12px; border-radius: 10px;
      text-decoration: none; display: block; border: none; cursor: pointer;
    }
    .btn-outline {
      flex: 1; text-align: center; background: transparent; color: #111;
      font-size: 14px; font-weight: 500; padding: 12px; border-radius: 10px;
      border: 0.5px solid #d1d5db; text-decoration: none; display: block; cursor: pointer;
    }

    /* ── Tablet ≤640px ── */
    @media (max-width: 640px) {
      .hero-img  { height: 200px; }
      .hero-text { padding: 1.25rem; }
      .hero-text h2 { font-size: 19px; }
      .stats-row { grid-template-columns: 1fr 1fr; }
      .bottom-row { grid-template-columns: 1fr; }
    }

    /* ── Mobile ≤420px ── */
    @media (max-width: 420px) {
      .hero-img  { height: 160px; }
      .hero-text h2 { font-size: 17px; }
      .hero-text p  { font-size: 12px; }
      .stats-row { grid-template-columns: 1fr; }
      .stat-box  { padding: 10px 12px; }
      .includes-card { padding: 1rem; }
      .pt-list li { font-size: 12.5px; }
      .actions { flex-direction: column; }
    }